  :root {
        --navy: #0a1a3e;
        --blue: #0077ff;
        --white: #f4f7fa;
        --gray: #4b5563;
        --emerald: #00c46c;
        --light-blue: rgba(0, 119, 255, 0.1);
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Inter", sans-serif;
        background-color: var(--white);
        color: var(--gray);
        line-height: 1.6;
        overflow-x: hidden;
      }

      h1,
      h2,
      h3,
      h4 {
        color: var(--navy);
        font-weight: 700;
        line-height: 1.2;
      }

      .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      .btn {
        display: inline-block;
        padding: 14px 32px;
        border-radius: 4px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
      }

      .btn-primary {
        background-color: #00e6a4;
        color: white;
        border: none;
      }

      .btn-primary:hover {
        background-color: #0055cc;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 119, 255, 0.2);
      }

      .btn-secondary {
        background-color: transparent;
        color: var(--navy);
        border: 2px solid var(--navy);
      }

      .btn-secondary:hover {
        background-color: var(--navy);
        color: white;
      }

      section {
        padding: 100px 0;
      }

      .section-header {
        text-align: center;
        margin-bottom: 60px;
      }

      .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
      }

      .section-header h2:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--blue), var(--emerald));
        border-radius: 2px;
      }

      .section-header p {
        max-width: 700px;
        margin: 0 auto;
        font-size: 1.1rem;
      }

      /* Header & Navigation */
      header {
        background-color: black;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        position: fixed;
        width: 100%;
        z-index: 1000;
      }

      .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
      }

      .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
      }

      .logo span {
        color: #00e6a4;
      }

      .logo i {
        margin-right: 8px;
        color: var(--emerald);
      }

      .nav-links {
        display: flex;
        list-style: none;
      }

      .nav-links li {
        margin-left: 30px;
      }

      .nav-links a {
        text-decoration: none;
        color: white;
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
      }

      .nav-links a:hover {
        color: var(--blue);
      }

      .nav-links a.active {
        color: var(--blue);
      }

      .nav-links a.active:after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--blue);
      }

      .mobile-menu {
        display: none;
        font-size: 1.5rem;
        cursor: pointer;
      }

      /* Hero Section */
      .hero {
  background: 
    linear-gradient(135deg, rgba(6, 17, 48, 0.432) 0%, rgba(10, 25, 70, 0.226) 60%),
    url("https://plus.unsplash.com/premium_photo-1731730342472-211b1020d8f6?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTN8fGltYWdlcyUyMDNEJTIwZm9yJTIwYSUyMHRlY2glMjBjb21wYW55JTIwd2Vic2l0ZXxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&q=60&w=700");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
}


      .hero-content {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 2;
      }

      .hero h1 {
        font-size: 3.5rem;
        color: #00e6a4;
        margin-bottom: 20px;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s ease forwards 0.5s;
      }

      .hero p {
        font-size: 1.3rem;
        margin-bottom: 40px;
        opacity: 0.9;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s ease forwards 0.8s;
      }

      .hero-btns {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 60px;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s ease forwards 1.1s;
      }

      .hero .btn-secondary {
        color: white;
        border-color: white;
      }

      .hero .btn-secondary:hover {
        background-color: white;
        color: var(--navy);
      }

      .hero-shapes {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
      }

      .shape {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(
          135deg,
          rgba(0, 119, 255, 0.1) 0%,
          rgba(0, 196, 108, 0.1) 100%
        );
      }

      .shape-1 {
        width: 300px;
        height: 300px;
        top: -150px;
        right: -100px;
        animation: float 20s infinite ease-in-out;
      }

      .shape-2 {
        width: 200px;
        height: 200px;
        bottom: -50px;
        left: -50px;
        animation: float 15s infinite ease-in-out reverse;
      }

      /* Contact Section */
      .contact {
        background-color: black;
        color: white;
      }
      .contact h2{
        color: #00e6a4;
      }

      .contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: start;
      }

      .contact-info h3 {
        margin-bottom: 20px;
        font-size: 1.5rem;
        color: #00e6a4;
      }

      .contact-info p {
        margin-bottom: 30px;
        color: white;
      }

      .contact-methods {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
      }

      .contact-method {
        display: flex;
        align-items: center;
        padding: 20px;
        background-color: var(--white);
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
      }

      .contact-method:hover {
        transform: translateY(-5px);
      }

      .contact-icon {
        width: 60px;
        height: 60px;
        background-color: var(--light-blue);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        color: #00e6a4;
        font-size: 1.5rem;
      }

      .contact-details h4 {
        margin-bottom: 5px;
        font-size: 1.2rem;
      }

      .contact-details p {
        margin-bottom: 0;
        color: var(--gray);
      }

      .social-links-contact {
        display: flex;
        gap: 15px;
        margin-top: 20px;
      }

      .social-link-contact {
        width: 45px;
        height: 45px;
        background-color: var(--light-blue);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--blue);
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1.2rem;
      }

      .social-link-contact:hover {
        background-color: var(--blue);
        color: white;
        transform: translateY(-3px);
      }

      .contact-form {
        background-color: var(--white);
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      }

      .form-group {
        margin-bottom: 20px;
      }

      .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: var(--navy);
      }

      .form-control {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-family: "Inter", sans-serif;
        transition: border-color 0.3s ease;
      }

      .form-control:focus {
        outline: none;
        border-color: var(--blue);
        box-shadow: 0 0 0 3px rgba(0, 119, 255, 0.1);
      }

      textarea.form-control {
        min-height: 120px;
        resize: vertical;
      }

      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
      }

      /* Offices Section */
      .offices {
        background-color: var(--white);
      }
      .offices h2{
        color: #00e6a4;
      }
    

      .office-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
      }

      .office-card {
        background-color: black;
        border-radius: 8px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
        text-align: center;
      }

      .office-card:hover {
        transform: translateY(-10px);
      }

      .office-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 20px;
        background-color: rgba(210, 226, 231, 0.192);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: #02fa93;
      }

      .office-card h3 {
        margin-bottom: 15px;
        font-size: 1.3rem;
        color:white;
      }

      .office-card p {
        margin-bottom: 15px;
      }

      .office-hours {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #eee;
        color: white;
      }

      .office-hours h4 {
        margin-bottom: 10px;
        font-size: 1rem;
        color: #00e6a4;
      }

      .office-hours p {
        font-size: 0.9rem;
        margin-bottom: 5px;
      }

      /* FAQ Section */
      .faq {
        background-color: black;
      }
      .faq h2{
        color: #00e6a4;
      }
      .faq p{
        color: white;
      }

      .faq-container {
        max-width: 800px;
        margin: 0 auto;
      }

      .faq-item {
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
      }

      .faq-question {
        padding: 20px;
        background-color: var(--white);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background-color 0.3s ease;
      }

      .faq-question:hover {
        background-color: var(--light-blue);
      }

      .faq-question h3 {
        margin: 0;
        font-size: 1.1rem;
        
      }
      


      .faq-icon {
        color: #00e6a4;
        transition: transform 0.3s ease;
      }

      .faq-answer {
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        background-color: black;
      }

      .faq-item.active .faq-answer {
        padding: 20px;
        max-height: 500px;
      }

      .faq-item.active .faq-icon {
        transform: rotate(180deg);
      }

      /* CTA Section */
      .cta {
        background: linear-gradient(135deg, var(--navy) 0%, #1a2d5e 100%);
        color: white;
        text-align: center;
      }

      .cta h2 {
        color: #00e6a4;
        margin-bottom: 20px;
      }

      .cta p {
        max-width: 700px;
        margin: 0 auto 30px;
        font-size: 1.1rem;
        opacity: 0.9;
      }

      /* Footer */
      footer {
        background-color: black;
        color: white;
        padding: 70px 0 30px;
      }

      .footer-content {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 50px;
      }

      .footer-col h3 {
        color: var(--emerald);
        margin-bottom: 25px;
        font-size: 1.3rem;
        position: relative;
      }

      .footer-col h3:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 40px;
        height: 3px;
        background-color: #00e6a4;
      }

      .footer-col p {
        margin-bottom: 20px;
        opacity: 0.8;
      }

      .footer-links {
        list-style: none;
      }

      .footer-links li {
        margin-bottom: 12px;
      }

      .footer-links a {
        color: white;
        text-decoration: none;
        opacity: 0.8;
        transition: opacity 0.3s ease;
      }

      .footer-links a:hover {
        opacity: 1;
      }

      .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
      }

      .social-link {
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: background-color 0.3s ease;
      }

      .social-link:hover {
        background-color: var(--blue);
      }

      .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0.7;
        font-size: 0.9rem;
      }

      /* Animations */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes float {
        0%,
        100% {
          transform: translateY(0) rotate(0deg);
        }
        50% {
          transform: translateY(-20px) rotate(5deg);
        }
      }

      /* Particle Animation */
      .particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
      }

      .particle {
        position: absolute;
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        animation: floatParticle 15s infinite linear;
      }

      @keyframes floatParticle {
        0% {
          transform: translateY(100vh) rotate(0deg);
          opacity: 0;
        }
        10% {
          opacity: 1;
        }
        90% {
          opacity: 1;
        }
        100% {
          transform: translateY(-100px) rotate(360deg);
          opacity: 0;
        }
      }

      /* Form Success Message */
      .form-success {
        display: none;
        background-color: var(--emerald);
        color: white;
        padding: 15px;
        border-radius: 4px;
        margin-bottom: 20px;
        text-align: center;
      }

      /* Responsive Design */
      @media (max-width: 992px) {
        .footer-content {
          grid-template-columns: 1fr 1fr;
        }

        .contact-container {
          grid-template-columns: 1fr;
          gap: 40px;
        }
      }

      @media (max-width: 768px) {
        .nav-links {
          display: none;
          position: absolute;
          top: 100%;
          left: 0;
          width: 100%;
          background-color: black;
          flex-direction: column;
          padding: 20px;
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-links.active {
          display: flex;
        }

        .nav-links li {
          margin: 10px 0;
        }

        .mobile-menu {
          display: block;
        }
        .mobile-menu i{
          color: white;
        }

        .hero h1 {
          font-size: 2.5rem;
        }

        .hero-btns {
          flex-direction: column;
          align-items: center;
        }

        .hero-btns .btn {
          width: 100%;
          max-width: 250px;
          margin-bottom: 10px;
        }

        .section-header h2 {
          font-size: 2rem;
        }

        .footer-content {
          grid-template-columns: 1fr;
        }

        .form-row {
          grid-template-columns: 1fr;
        }

        .office-grid {
          grid-template-columns: 1fr;
        }
      }