    :root {
      --primary-blue: #1e293b;
      --accent-green: #22c55e;
      --accent-green-light: #22e76a;
      --accent-green-dark: #03c54a;
      --footer-bg: #1e293b;
      --white: #fff;
      --gray-light: #cbd5e1;
      --bg: #f6f3f3;
      --font-main: 'Inter', Arial, Helvetica, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      background: var(--bg);
      min-height: 100vh;
      font-family: var(--font-main);
      color: var(--primary-blue);
      overflow-x: hidden;
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Header Styles */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      z-index: 1000;
      padding: 15px 0;
      border-bottom: 1px solid rgba(44, 62, 80, 0.1);
      transition: all 0.3s ease;
    }

    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }

    

    logo {
      display: flex;
      align-items: center;
    }
    .logo img {
      height: 38px;
      margin-right: 12px;
      display: block;
    }
    
    /* Navigation Styles */
    .navigation {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    .nav-list {
      display: flex;
      list-style: none;
      gap: 3rem;
      align-items: center;
      margin: 0;
      padding: 0;
    }

    .nav-link {
      text-decoration: none;
      color: #64748b;
      font-weight: 500;
      font-size: 16px;
      transition: all 0.3s ease;
      position: relative;
    }

    .nav-link:hover,
    .nav-link.active {
      color: #22c55e;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: #22c55e;
      transition: width 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }

    /* Hamburger Menu */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      padding: 5px;
      z-index: 1001;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: var(--primary-blue);
      margin: 3px 0;
      transition: all 0.3s ease;
      border-radius: 2px;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Mobile Navigation */
    .mobile-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: white;
      z-index: 1000;
      padding: 100px 30px 30px;
      transition: right 0.3s ease;
      box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }

    .mobile-nav.active {
      right: 0;
    }

    .mobile-nav-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .mobile-nav-list li {
      margin: 20px 0;
    }

    .mobile-nav-list a {
      display: block;
      text-decoration: none;
      color: var(--primary-blue);
      font-weight: 500;
      font-size: 18px;
      padding: 10px 0;
      border-bottom: 1px solid #f0f0f0;
      transition: all 0.3s ease;
    }

    .mobile-nav-list a:hover,
    .mobile-nav-list a.active {
      color: var(--accent-green);
      padding-left: 10px;
    }

    .mobile-cta {
      margin-top: 40px;
    }

    /* Overlay */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* Button Styles */
    .btn {
      padding: 15px 30px;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 16px;
      font-family: inherit;
    }

    .btn-primary {
      background: #22c55e;
      color: white;
      border: 2px solid #22c55e;
    }

    .btn-primary:hover {
      background: #16a34a;
      border-color: #16a34a;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    }

    .header-cta .btn {
      padding: 12px 24px;
      font-size: 14px;
    }

    /* Main Content */
    main {
      padding-top: 88px;
      min-height: 100vh;
    }

    /* Contact Banner */
    .contact-banner {
      background: var(--white);
      border-radius: 1.5rem;
      box-shadow: 0 2px 24px rgba(34,197,94,0.06);
      margin: 40px auto 38px auto;
      text-align: center;
      max-width: 1220px;
      padding: 36px 20px 26px 20px;
    }

    .contact-banner-title {
      font-size: 2.05rem;
      font-weight: 900;
      color: var(--primary-blue);
      text-transform: uppercase;
      margin-bottom: 11px;
      letter-spacing: 0.02em;
    }

    .contact-banner-desc {
      color: var(--primary-blue);
      font-size: 1.17rem;
      font-weight: 500;
      margin-bottom: 6px;
    }

    .contact-banner-getintouch {
      color: var(--accent-green-dark);
      font-size: 1.07rem;
      margin-bottom: 17px;
      font-weight: 600;
      letter-spacing: 0.012em;
    }

    .banner-flex {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      justify-content: center;
      align-items: flex-start;
      width: 100%;
      margin: 34px auto 0;
      max-width: 1000px;
    }

    /* Contact Form Section */
    .contact-form-section {
      background: var(--bg);
      border-radius: 21px;
      box-shadow: 0 2px 12px rgba(30,41,59,0.08);
      padding: 41px 36px 27px 36px;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 7px;
    }

    .form-group label {
      font-weight: 600;
      color: var(--primary-blue);
      font-size: 1.09rem;
      letter-spacing: 0.01em;
      margin-bottom: 2px;
    }

    .form-group input, 
    .form-group textarea {
      width: 100%;
      padding: 15px 14px;
      border: 1.4px solid #e1e7ee;
      border-radius: 10px;
      font-size: 1.04rem;
      font-family: var(--font-main);
      background: #f8fafc;
      transition: border 0.3s ease;
      color: var(--primary-blue);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 70px;
      max-height: 150px;
      font-size: 1rem;
    }

    .form-group input:focus, 
    .form-group textarea:focus {
      border-color: var(--accent-green);
      outline: none;
      box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
    }

    .captcha-box {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 10px 0;
    }

    #captcha {
      display: inline-block;
      padding: 10px 16px;
      border-radius: 10px;
      background: #e3fcec;
      color: var(--accent-green-dark);
      font-size: 1.02rem;
      font-family: var(--font-main);
      letter-spacing: 0.04em;
      font-weight: 700;
    }

    .refresh-captcha {
      background: var(--accent-green-light);
      color: var(--white);
      border: none;
      border-radius: 10px;
      padding: 8px 12px;
      font-size: 0.75rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .refresh-captcha:hover {
      background: var(--accent-green-dark);
    }

    .form-btn {
      background: var(--accent-green);
      color: var(--white);
      border: none;
      border-radius: 10px;
      padding: 18px 0;
      font-size: 1.15rem;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 1px 4px rgba(30,41,59,0.04);
      transition: all 0.3s ease;
      margin-top: 10px;
      width: 100%;
    }

    .form-btn:hover {
      background: var(--accent-green-dark);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    }

    .form-btn:disabled {
      opacity: 0.7;
      cursor: not-allowed;
      transform: none;
    }

    /* Contact Details Section */
    .contact-details-section {
      background: var(--bg);
      border-radius: 21px;
      box-shadow: 0 2px 12px rgba(30,41,59,0.08);
      padding: 38px 36px 24px 36px;
    }

    .contact-company {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--primary-blue);
      margin-bottom: 25px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 20px;
      font-size: 1rem;
      line-height: 1.5;
    }

    .contact-icon {
      font-size: 1.2rem;
      color: var(--accent-green);
      flex-shrink: 0;
      width: 20px;
    }

    .contact-links {
      color: var(--accent-green-dark);
      font-weight: 600;
    }

    .contact-hours {
      color: var(--primary-blue);
    }

    /* Location Section */
    .location-section {
      text-align: center;
      padding: 40px 20px;
      background: linear-gradient(135deg, #f8fafc 76%, #e0f9f1 100%);
      border-radius: 1.5rem;
      margin: 0 auto 48px auto;
      max-width: 950px;
      box-shadow: 0 2px 14px rgba(30,41,59,0.05);
    }

    .location-title {
      font-size: 2rem;
      color: var(--primary-blue);
      font-weight: 700;
      margin-bottom: 10px;
    }

    .location-desc {
      font-size: 1.04rem;
      color: var(--primary-blue);
      margin-bottom: 30px;
    }

    .mapouter-wrapper {
      display: flex;
      justify-content: center;
      width: 100%;
    }

    .mapouter {
      width: 100%;
      max-width: 600px;
      height: 400px;
      position: relative;
      border-radius: 15px;
      overflow: hidden;
    }

    .gmap_canvas {
      width: 100%;
      height: 100%;
      overflow: hidden;
      background: none !important;
    }

    .gmap_iframe {
      width: 100%;
      height: 100% !important;
      border: none;
    }

    /* Careers Section */
    .careers-section {
      text-align: center;
      padding: 40px 20px;
      background: linear-gradient(135deg, #f8fafc 76%, #e0f9f1 100%);
      border-radius: 1.5rem;
      margin: 0 auto 48px auto;
      max-width: 950px;
      box-shadow: 0 2px 14px rgba(30,41,59,0.05);
    }

    .careers-title {
      font-size: 2rem;
      font-weight: 700;
      color: var(--accent-green);
      margin-bottom: 20px;
      letter-spacing: 0.014em;
      text-transform: uppercase;
    }

    .careers-list {
      margin: 0 auto 30px auto;
      font-size: 1.04rem;
      color: var(--primary-blue);
      line-height: 1.8;
    }

    .careers-highlight {
      color: var(--accent-green-dark);
      font-size: 1.5rem;
      font-weight: 700;
      text-transform: uppercase;
      display: block;
      margin-top: 20px;
    }

    .careers-contact {
      margin-top: 20px;
      font-size: 1rem;
      color: var(--primary-blue);
      font-weight: 500;
      margin-bottom: 20px;
    }

    .careers-note {
      margin-top: 20px;
      color: #5f7f7e;
      font-size: 0.9rem;
      font-style: italic;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.5;
    }

    /* Footer */
    .footer {
      background: var(--footer-bg);
      color: white;
      padding: 3.2rem 0 1.5rem;
    }

    .footer .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 26px;
    }

    .footer-info {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 2rem;
      margin-bottom: 2.2rem;
      align-items: flex-start;
    }

    .footer-logo-section {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      margin-bottom: 0.7rem;
    }
    .footer-logo img {
      height: 40px;
      width: auto;
      border-radius: 6px;
      margin-right: 12px;
      background: none;
      padding: 2px;
    }
    .footer-logo-section p {
      color: var(--gray-light);
      font-size: 0.99rem;
      line-height: 1.6;
      font-weight: 400;
      margin-bottom: 0;
    }

    .footer-section h3 {
      font-weight: 600;
      margin-bottom: 0.9rem;
      color: var(--accent-green);
    }

    .footer-section ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-section ul li {
      margin-bottom: 0.4rem;
    }

    .footer-section ul li a {
      color: var(--gray-light);
      text-decoration: none;
      transition: color 0.2s ease;
      font-weight: 400;
    }

    .footer-section ul li a:hover {
      color: var(--accent-green);
    }

    .contact-info p {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.5rem;
      color: var(--gray-light);
      font-weight: 400;
    }

    .contact-info .contact-icon {
      color: var(--accent-green);
      width: 17px;
      font-size: 1.03em;
      text-align: center;
    }

    .footer-bottom {
      border-top: 1px solid #334155;
      padding-top: 1.2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.98rem;
    }

    .footer-bottom p {
      color: var(--gray-light);
      font-weight: 400;
      margin: 0;
    }

    .footer-links {
      display: flex;
      gap: 1.6rem;
    }

    .footer-links a {
      color: var(--gray-light);
      text-decoration: none;
      transition: color 0.2s ease;
      font-weight: 400;
    }

    .footer-links a:hover {
      color: var(--accent-green);
    }

    /* Success Message */
    .success-message {
      display: none;
      color: var(--accent-green);
      font-weight: 600;
      margin-top: 15px;
      padding: 10px;
      background: #e3fcec;
      border-radius: 8px;
      text-align: center;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .banner-flex {
        gap: 2rem;
      }

      .contact-form-section,
      .contact-details-section {
        padding: 30px 25px;
      }

      .footer-info {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
      }
    }

    @media (max-width: 768px) {
      .navigation {
        display: none;
      }

      .header-cta {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .logo-text {
        font-size: 1.1rem;
      }

      .banner-flex {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 20px;
      }

      .contact-banner-title {
        font-size: 1.8rem;
      }

      .contact-banner-desc {
        font-size: 1rem;
      }

      .contact-banner-getintouch {
        font-size: 0.95rem;
      }

      .contact-form-section,
      .contact-details-section {
        padding: 25px 20px;
      }

      .location-title,
      .careers-title {
        font-size: 1.6rem;
      }

      .mapouter {
        height: 300px;
      }

      .footer-info {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
      }

      .footer-logo-section,
      .footer-logo {
        align-items: center;
        justify-content: center;
      }

      .footer-logo-section {
        margin-bottom: 1.6rem;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
     
    }

    @media (max-width: 480px) {
      .container {
        padding: 0 15px;
      }

      .header {
        padding: 12px 0;
      }

      .header-content {
        gap: 1rem;
      }

      .logo-placeholder {
        width: 32px;
        height: 32px;
        font-size: 1rem;
      }

      .logo-text {
        font-size: 1rem;
      }

      main {
        padding-top: 70px;
      }

      .contact-banner {
        margin: 20px auto;
        padding: 25px 15px;
        border-radius: 1rem;
      }

      .contact-banner-title {
        font-size: 1.5rem;
      }

      .contact-banner-desc {
        font-size: 0.9rem;
      }

      .contact-form-section,
      .contact-details-section {
        padding: 20px 15px;
        border-radius: 15px;
      }

      .location-section,
      .careers-section {
        padding: 25px 15px;
        border-radius: 1rem;
        margin-bottom: 30px;
      }

      .footer {
        padding: 2rem 0 1rem;
      }

      .footer .container {
        padding: 0 15px;
      }

      .mobile-nav {
        width: 100%;
        right: -100%;
      }

      .careers-highlight {
        font-size: 1.2rem;
      }
    }

    @media (max-width: 360px) {
      .contact-form-section,
      .contact-details-section {
        padding: 15px 10px;
      }

      .form-group input,
      .form-group textarea {
        padding: 12px 10px;
        font-size: 0.95rem;
      }

      .form-btn {
        padding: 15px 0;
        font-size: 1rem;
      }
    }
  
    @media (max-width: 768px) {  
  .contact-info p {
    justify-content: center;
    }
  .contact-info a {
    color:#ffffff
    }
}