body {
    font-family: 'Poppins', Arial, sans-serif;
    background: #fff;
    color: #222;
    margin: 0;
    padding: 0;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    
  }
  
  
  .about {
    padding: 2.5rem 0 1.5rem 0;
  }
  .about-container {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
  }
  .about-img {
    width: 320px;
    height: 200px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(108,99,255,0.10);
  }
  .about-text h3 {
    margin: 0 0 0.2em 0;
    color: #6c63ff;
    font-size: 1.3rem;
  }
  .about-text h4 {
    margin: 0 0 0.5em 0;
    font-size: 1.1rem;
    color: #fbb040;
  }
  .about-text p {
    margin: 0.2em 0;
    color: #444;
    font-size: 1rem;
  }
  .about-row{
    margin-top: 80px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    
  }
  
  .about-section {
    width: 100%;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    margin: 48px auto 32px auto;
    padding: 32px 24px;
    max-width: 100vw;
    box-sizing: border-box;
  }
  
  .about-heading {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #18181a;
    margin-bottom: 40px;
    letter-spacing: 1px;
  }
  
  .about-row {
    display: flex;
    flex-direction: row;
    /* align-items: flex-start; */
    justify-content: center;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
  }
  
  .about-text {
    flex: 1.5;
    text-align: left;
    font-family: 'poppine', Arial, sans-serif;
  }
  
  .about-title .highlight {
    color: #723fa3;
    font-weight: 700;
    font-size: 1.1em;
    letter-spacing: 1px;
  }
  
  .about-tagline {
    color: #f7941d;
    font-weight: 600;
    margin: 10px 0 24px 0;
    font-size: 1.1em;
    line-height: 1.5;
  }
  
  .about-text p {
    color: #444;
    font-size: 1em;
    margin-bottom: 15px;
    line-height: 1.7;
  }
  
  .about-image {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
  }
  
  .about-image img {
    width: 380px;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    border: 3px solid #fff;
  }
  
  @media (max-width: 900px) {
    .about-row {
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }
    .about-image img {
      width: 100%;
      max-width: 350px;
      height: auto;
    }
    .about-text {
      text-align: center;
    }
    .about-section {
      padding: 24px;
    }
    .about-heading {
      font-size: 2rem;
      margin-bottom: 32px;
    }
    .about-title .highlight {
      font-size: 1em;
  
    }
    .about-tagline {
      font-size: 1em;
      margin-bottom: 20px;
    }
    .about-text p {
      font-size: 0.95em;
      margin-bottom: 10px;
    }
  }
  
  @media (max-width: 600px) {
     .about-section {
      padding: 16px;
     }
     .about-heading {
      font-size: 1.6rem;
      margin-bottom: 20px;
     }
     .about-tagline {
      font-size: semibold;
      margin-bottom: 15px;
      font-style: poppins;
      font-size: 28px;
      margin-top: 2px;
  
     }
     .about-text p {
       font-size: 0.9em;
       margin-bottom: 8px;
     }
     .about-image img {
      width: 100%;
      height: auto;
     }
  }
  
  .services {
    background: #f7f7fa;
    padding: 60px 0;
  }
  
  .services h3 {
    text-align: center;
    color: #18181a;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 1px;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  .service-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    padding: 40px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
  
  .service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
  }
  
  .service-icon {
    font-size: 2.5rem;
    /* background: #ffb84d; */
    color: #fff;
    border-radius: 50%;
    width: 400px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: transform 0.4s cubic-bezier(.4,2,.6,1);
    overflow: hidden;
  }
  
  .service-icon img {
    display: block;
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 50%;
  }
  
  .service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
  }
  
  .service-card h4 {
    margin: 0 0 10px 0;
    color: #723fa3;
    font-size: 1.1em;
    font-weight: 700;
    position: relative;
    padding-left: 15px;
    text-transform: uppercase;
  }
  
  .service-card h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background-color: #f7941d;
    border-radius: 2px;
  }
  
  .service-card p {
    color: #444;
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .services-grid {
      grid-template-columns: 1fr;
      gap: 20px;
      padding: 0 16px;
      max-width: 400px;
    }
    .services h3 {
      font-size: 1.8rem;
      margin-bottom: 30px;
    }
    .service-card {
      padding: 30px 20px;
    }
    .service-icon {
      width: 70px;
      height: 70px;
      font-size: 2rem;
      margin-bottom: 15px;
    }
    .service-icon img {
      width: 50px;
      height: 50px;
    }
    .contact-form {
      padding: 1.2rem 0.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .services h3 {
      font-size: 1.6rem;
      margin-bottom: 25px;
    }
    .service-card {
      padding: 25px 15px;
    }
    .service-icon {
      width: 60px;
      height: 60px;
      font-size: 1.8rem;
      margin-bottom: 10px;
    }
    .service-icon img {
      width: 40px;
      height: 40px;
    }
  }
  
  .services-grid .service-card:last-child {
    grid-column: 1 / -1;
    width: 406px;
    height: 471px;
    justify-self: center;
  }
  
  @media (max-width: 768px) {
    .services-grid .service-card:last-child {
      grid-column: auto;
      justify-self: auto;
    }
  }
  
  
  
  .testimonials {
    background: #f7f7fa;
    padding: 60px 0;
  }
  .testimonials h3 {
    text-align: center;
    color: #18181a;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 1px;
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .testimonial-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    padding: 30px 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
  .testimonial-card p {
    color: #444;
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0 0 15px 0;
  }
  .testimonial-card span {
    display: block;
    margin-top: 0;
    color: #723fa3;
    font-weight: 700;
    font-size: 0.9em;
  }
  .testimonial-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .clients {
    padding: 60px 0;
    background: #fff;
  }
  .clients h3 {
    text-align: center;
    color: #18181a;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 1px;
  }
  .clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    margin-left: 15px;
  }
  .clients-logos img {
    height: 30px;
    width: 30px;
    width: auto;
    object-fit: contain;
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    transition: transform 0.2s ease;
  }
  .clients-logos img:hover {
    transform: scale(1.1);
  }
  
  @media (max-width: 900px) {
    .about-container, .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .about-img {
      width: 100%;
      max-width: 350px;
    }
    .services-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      padding: 0 16px;
    }
  }
  
  @media (max-width: 600px) {
    .container {
      width: 98%;
      padding: 0 0.5rem;
    }
    .services-grid {
      grid-template-columns: 1fr;
      gap: 15px;
      padding: 0 10px;
    }
    .service-card {
      padding: 20px 10px;
    }
    .testimonials-grid {
      flex-direction: column;
      gap: 1rem;
    }
    .clients-logos {
      gap: 1rem;
    }
    .contact-form {
      padding: 1.2rem 0.5rem;
    }
  }
    .hero {
        text-align: center;
        padding: 40px 0 0 0;
        background: #fff;
        position: relative;
      }
      .hero h2 {
    margin: 0;
    font-size: 3.625rem;
    color: #1D1B29;
    letter-spacing: 2px;
    font-weight: 700;
  }
  
   
      .hero-semicircle {
        width: 100%;
        max-width: 800px;
        margin: 0 auto 0 auto;
        height: 260px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: flex-end;
      }
      .hero-icon {
        position: absolute;
        
        border-radius: 50%;
        width: 120px;
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 24px #0001;
        border: 6px solid #fff;
        z-index: 2;
      }
      .hero-icon img {
        width: 80px;
        height: 80px;
        object-fit: contain;
        border-radius: 50%;
       
      }
      .hero-center-img {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, 10%);
        width: 200px;
        height: 200px;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 4px 24px #0002;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 3;
      }
      .hero-center-img img {
        width: 315px;
        height: 250px;
        object-fit: contain;
        border-radius: 2px;
        background: #9e2f2f;
      }
      .hero-icon.left {
        left: 0;
        top: 70%;
        transform: translate(-70%, -50%);
      }
      .hero-icon.left-mid {
        left: 18%;
        top: 10%;
        transform: translate(-50%, 0);
      }
      .hero-icon.right-mid {
        right: 18%;
        top: 10%;
        transform: translate(50%, 0);
      }
      .hero-icon.right {
        right: 0;
        top: 70%;
        transform: translate(70%, -50%);
      }
      .brand-title {
    margin: 0;
     font-size: 3.925rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
    justify-content: center;
    gap: 0.3em;
  }
  .brand-title span {
    display: inline-block;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
  }
  
     .hero-banner {
        margin-top: 120px;
        background: #18181a;
        color: #ffb84d;
        font-size: 2rem;
        font-weight: 700;
        border-radius: 100vw 100vw 0 0 / 120px 120px 0 0;
        padding: 32px 0 24px 0;
        max-width: 100vw;
        width: 100%;
        letter-spacing: 1px;
      }
      @media (max-width: 900px) {
        .hero-semicircle {
          max-width: 98vw;
          height: 180px;
        }
        .hero-icon, .hero-icon img {
          width: 80px;
          height: 80px;
        }
        .hero-center-img {
          width: 120px;
          height: 120px;
        }
        .hero-center-img img {
          width: 90px;
          height: 90px;
        }
        .hero-banner {
          font-size: 1.2rem;
          margin-top: 60px;
          padding: 18px 0 12px 0;
        }
      }
      @media (max-width: 600px) {
        .hero-title, .hero-gradient {
          font-size: 1.2rem;
        }
        .hero-semicircle {
          height: 110px;
        }
        .hero-icon, .hero-icon img {
          width: 48px;
          height: 48px;
        }
        .hero-center-img {
          width: 70px;
          height: 70px;
        }
        .hero-center-img img {
          width: 50px;
          height: 50px;
        }
        .hero-banner {
          font-size: 1rem;
          margin-top: 30px;
          padding: 10px 0 6px 0;
        }
      }
  
      .container1 {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
      }
  
      .column {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
  
      .image-wrapper {
     
        border-radius: 40px;
        overflow: hidden;
        padding: 5px;
       
      }
  
      .image-wrapper img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 40px;
      }
  
      /* Fixed height for left/right column images */
      .left-right .image-wrapper {
        border-radius: 40px;
        width: 390px;
      }
  
      /* 75% height for middle column images */
      .middle .image-wrapper {
         /* 75% of 300px */
        /* width: 324px; */
        width: 300px;
        border-radius: 40px;
      }
  
      @media (max-width: 768px) {
        .container1 {
          flex-direction: column;
          align-items: center;
          padding: 10px; /* Adjust padding for smaller screens */
        }
  
        .column {
          width: 100%; /* Make columns take full width */
          gap: 10px; /* Adjust gap for stacked items */
        }
  
        .left-right .image-wrapper,
        .middle .image-wrapper {
          width: 100%; /* Images take full width of the column */
          height: auto;
          /* Allow height to adjust proportionally */
        }
  
        .middle {
          margin-top: 10px; /* Adjust or remove margin-top for stacked layout */
        }
  
        .clients-logos {
          display: flex;
          flex-wrap: nowrap;
          overflow-x: auto;
          padding-bottom: 20px; /* Add padding to prevent scrollbar from covering content */
          scrollbar-width: thin;
          scrollbar-color: #fbb040 #f1f1f1;
          -webkit-overflow-scrolling: touch;
          justify-content: flex-start; /* Align logos to the start of the container */
          gap: 20px; /* Restore gap between logos */
        }
  
        /* Customize scrollbar for Webkit browsers (Chrome, Safari) */
        .clients-logos::-webkit-scrollbar {
          height: 8px;
        }
  
        .clients-logos::-webkit-scrollbar-track {
          background: #f1f1f1;
          border-radius: 10px;
        }
  
        .clients-logos::-webkit-scrollbar-thumb {
          background: #fbb040;
          border-radius: 10px;
        }
  
        .clients-logos::-webkit-scrollbar-thumb:hover {
          background: #6c63ff;
        }
  
        .clients-logos img {
          height: 200px; /* Adjusted height for mobile */
          width: auto; /* Allow width to adjust based on aspect ratio */
          flex-shrink: 0; /* Prevent logos from shrinking */
        }
      }
  
      .contact-container {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        padding: 120px 50px;
        border-radius: 50px;
        background-color: #fff;
        border: 1px solid transparent;
        transition: border-color 0.3s ease-in-out;
        max-width: 1200px;
        margin: auto;
        gap: 40px;
        flex-wrap: wrap;
      }
      
      /* .contact-container:hover {
        border-color: #f4af37;
      } */
      
      .left-section {
        flex: 1;
        text-align: center;
    
      }
      
      .envelope {
        position: absolute;
        width: 80px;
        height: auto;
      }
  
      .envelope.top-left {
        top: 0;
        left: 0;
      }
  
      .envelope.bottom-left {
        bottom: 0;
        left: 0;
        transform: rotate(180deg);
      }
  
      .logo {
        width: 100%;
        max-width: 100%;
        height: 300px;
        object-fit: contain;
      }
      
      .brand-name {
        font-size: 14px;
        letter-spacing: 10px;
        margin-top: 20px;
        font-weight: 600;
      }
      
      .purple { color: #5E2CA5; }
      .orange { color: #FFA726; }
      .blue   { color: #42A5F5; }
      
      .right-section {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      
      .form-row {
        display: flex;
        gap: 20px;
      }
      
      input,
      textarea {
        background-color: #f2f2f2;
        border: none;
        padding: 15px;
        border-radius: 8px;
        font-size: 16px;
        flex: 1;
      }
      
      input::placeholder,
      textarea::placeholder {
        color: #555;
      }
      
      .full-width {
        width: 100%;
        
      }
      
      textarea {
        resize: none;
        height: 100px;
      }
      
      button {
        background-color: #f4af37;
        border: none;
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: bold;
        cursor: pointer;
        width: fit-content;
        align-self: flex-end;
        transition: background 0.3s ease;
      }
      
      button:hover {
        background-color: #e59b1b;
      }
    
   
  
  /* Hamburger Menu Styles */
  .hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
  }
  
  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #222;
    margin: 5px 0;
    transition: all 0.3s ease;
  }
  
  
  
   
  
  /* Contact Section Responsive Styles */
  @media (max-width: 992px) {
    .contact-container {
      padding: 60px 30px;
      gap: 40px;
    }
    
    .right-section {
      max-width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
      padding: 30px;
      gap: 30px;
    }
  
    .form-row {
      flex-direction: column;
      gap: 16px;
    }
  
    .logo {
      width: 220px;
    }
  
    .brand-name {
      font-size: 18px;
      letter-spacing: 4px;
    }
  
    .right-section h3 {
      font-size: 1.8rem;
    }
  
    input, textarea {
      padding: 14px;
    }
  
    button {
      width: 100%;
      max-width: none;
    }
  }
  
  @media (max-width: 480px) {
    .contact-container {
      padding: 20px;
      border-radius: 20px;
    }
  
    .logo {
      width: 180px;
    }
  
    .brand-name {
      font-size: 16px;
      letter-spacing: 3px;
    }
  
    .right-section h3 {
      font-size: 1.6rem;
    }
  }
  
  
  
  
  
    /* Footer */
    .footer-container {
      padding: 0 1rem;
     
    }
    
    .footer-column h3 {
      font-size: 1.2rem;
    }
    
    .social-icons a {
      width: 32px;
      height: 32px;
      line-height: 32px;
      font-size: 12px;
    }
  
  
  /* Fix for service card last child */
  @media (max-width: 768px) {
    .services-grid .service-card:last-child {
      width: 100%;
      height: auto;
    }
  }
  
  /* Footer */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: row;
      align-items: center;
      gap: 20px;
    }
  
    .footer-column {
      min-width: 100%;
      text-align: center;
    }
  
    .footer-column h4,
    .footer-column h3,
    .footer-column ul,
    .footer-column p {
      text-align: center;
      color: #1a1a1a;
   }
   .footer-column ul li {
      color: #666;
    }
  
    .footer-bottom {
      flex-direction: row;
      gap: 10px;
    }
  
    .footer-bottom p,
    .footer-links a {
       color: #666;
    }
  
    .logo {
      font-size: 0.9rem;
    }
  }
  
  /* Add some basic styling for the new footer structure if needed */
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li:last-child {
    margin-bottom: 0;
  }
  
  .footer-column h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #18181a;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding: 1rem 2rem;
    border-top: 1px solid #eee;
  }
  
  .footer-bottom p {
    margin: 0;
    font-size: 0.95rem;
    color: #444;
  }
  
  .footer-links a {
    color: #444;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.2s ease;
  }
  
  .footer-links a:hover {
    color: #fbb040;
  }
  
  .footer-bottom .footer-links {
    display: flex;
    gap: 20px; /* Adjust gap between links */
  }
    /* Footer */
    .footer-container {
      flex-direction: row;
      align-items: center;
      text-align: center;
      gap: 30px;
    }
    
    .footer-column {
      width: 100%;
      max-width: 300px;
    }
    
    .social-icons {
      justify-content: center;
    }
  
  @media (max-width: 768px) {
    .footer-bottom .footer-links {
      flex-direction: row;
      gap: 5px; /* Adjust gap for stacked links */
      margin-top: 10px; /* Space above stacked links */
    }
    .footer-links a {
      margin-left: 0; /* Remove left margin for stacked links */
    }
  }
  
      /* Footer Base Styles */
  
  
      footer {
        background-color: #f8f8f8;
        color: #666;
        padding: 40px 20px 20px;
        text-align: left;
      }
      
      .footer-container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 30px;
        max-width: 1000px;
        margin: 0 auto;
      }
  
      .footer-column {
        flex: 1;
        min-width: 200px;
        max-width: 300px;
        text-align: left;
      }
  
      .footer-column h4 {
        color: #1a1a1a;
        font-size: 16px;
        margin-bottom: 15px;
        font-weight: 600;
        text-transform: uppercase;
      }
  
      .footer-column h3 {
        margin-top: 5px;
        margin-bottom: 15px;
        font-size: 1.2em;
        color: #1a1a1a;
      }
  
      .footer-column ul {
        list-style: none;
        padding: 0;
      }
  
      .footer-column ul li {
        margin-bottom: 8px;
        font-size: 14px;
        color: #666;
      }
  
      .footer-column p {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
      }
  
      .logo {
        width: 100px;
        height: auto;
        margin-bottom: 10px;
        display: inline-block;
      }
  
      .highlight {
        color: #1a1a1a;
      }
  
      .tagline, .social-icons {
        display: none;
      }
  
      .footer-bottom {
        border-top: 1px solid #eee;
        margin-top: 30px;
        padding-top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        font-size: 13px;
        color: #666;
        max-width: 1000px;
        margin: 30px auto 0 auto;
      }
  
      .footer-bottom p {
         color: #666;
      }
  
      .footer-links a {
        color: #666;
        text-decoration: none;
        margin-left: 15px;
      }
  
      .footer-links a:hover {
        text-decoration: underline;
      }
  
      /* Footer Responsive */
      @media (max-width: 768px) {
        .footer-container {
          flex-direction: row;
          align-items: center;
          gap: 20px;
        }
  
        .footer-column {
          min-width: 100%;
          text-align: center;
        }
  
        .footer-column h4,
        .footer-column h3,
        .footer-column ul,
        .footer-column p {
          text-align: center;
          color: #1a1a1a;
       }
       .footer-column ul li {
          color: #666;
        }
  
        .footer-bottom {
          flex-direction: row;
          gap: 10px;
        }
  
        .footer-bottom p,
        .footer-links a {
           color: #666;
        }
  
        .logo {
          margin: 0 auto 10px auto;
        }
      }
  header {
      background: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
      padding: 0.5rem 0;
      position: sticky;
      top: 0;
      z-index: 100;
    }
    /* Responsive Header Styles */
    header {
      background-color: #fff;
      padding: 1rem 0;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem;
      position: relative;
    }
    
    .header-logo {
      height: 50px;
      width: auto;
      z-index: 1001;
    }
    
    .hamburger {
      display: none;
      cursor: pointer;
      z-index: 1001;
    }
    
    .hamburger span {
      display: block;
      width: 25px;
      height: 3px;
      background: #222;
      margin: 5px 0;
      transition: all 0.3s ease;
    }
    
    nav {
      display: flex;
      align-items: center;
    }
    
    nav ul {
      list-style: none;
      display: flex;
      gap: 2rem;
      margin: 0;
      padding: 0;
      align-items: center;
    }
    
    nav a {
      text-decoration: none;
      color: #222;
      font-weight: 500;
      transition: color 0.2s;
    }
    
    nav a:hover {
      color: #fbb040;
    }
    
    .btn-primary {
      background: #fbb040;
      color: #fff;
      padding: 0.6rem 1.5rem;
      border: none;
      border-radius: 25px;
      font-weight: 700;
      text-decoration: none;
      transition: background 0.2s;
      box-shadow: 0 2px 8px rgba(251,176,64,0.15);
    }
    
    .btn-primary:hover {
      background: #6c63ff;
    }
    
    /* Mobile Navigation */
    @media (max-width: 768px) {
      .hamburger {
        display: block;
      }
    
      nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease;
        z-index: 1000;
      }
    
      nav.active {
        right: 0;
      }
    
      nav ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
      }
    
      nav ul li {
        width: 100%;
      }
    
      nav a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
      }
    
      .btn-primary {
        margin-top: 1rem;
      }}
      .container {
          width: 90%;
          max-width: 1200px;
          margin: 0 auto;
          
        }
        
        header {
          background: #fff;
          box-shadow: 0 2px 8px rgba(0,0,0,0.04);
          padding: 0.5rem 0;
          position: sticky;
          top: 0;
          z-index: 100;
        }
        /* Responsive Header Styles */
        header {
          background-color: #fff;
          padding: 1rem 0;
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .nav-container {
          display: flex;
          flex-wrap: wrap;
          align-items: center;
          justify-content: space-between;
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 1rem;
        }
        
        .header-logo {
          height: 50px;
          width: auto;
        }
        
        
        
        .nav-container {
          display: flex;
          align-items: center;
          justify-content: space-between;
        }
        
        .header-logo {
          height: 50px;
          width: auto;
        }
        
        .logo {
          font-size: 2rem;
          font-weight: 700;
          color: #6c63ff;
          letter-spacing: 2px;
        }
        
        nav ul {
          list-style: none;
          display: flex;
          gap: 2rem;
          margin: 0;
          padding: 0;
        }
        
        nav a {
          text-decoration: none;
          color: #222;
          font-weight: 500;
          transition: color 0.2s;
        }
        nav a:hover {
          color: #fbb040;
        }
        
        .btn-primary {
          background: #fbb040;
          color: #fff;
          padding: 0.6rem 1.5rem;
          border: none;
          border-radius: 25px;
          font-weight: 700;
          text-decoration: none;
          transition: background 0.2s;
          box-shadow: 0 2px 8px rgba(251,176,64,0.15);
        }
        .btn-primary:hover {
          background: #6c63ff;
        }
        /* Mobile Navigation */
      @media (max-width: 768px) {
          .hamburger {
            display: block;
          }
        
          nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: #fff;
            flex-direction: column;
            justify-content: center;
            transition: right 0.3s ease;
            z-index: 1000;
          }
        
          nav.active {
            right: 0;
          }
        
          nav ul {
            flex-direction: column;
            gap: 2rem;
            text-align: center;
          }
        
          nav ul li {
            width: 100%;
          }
        
          nav a {
            display: block;
            padding: 1rem;
            font-size: 1.2rem;
          }
        
          .btn-primary {
            margin-top: 1rem;
          }
        
          /* Hamburger Animation */
          .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);
          }
        }
        /* Global Responsive Styles */
      @media (max-width: 1200px) {
          .container {
            width: 95%;
          }}
  
          @media (max-width: 600px) {
              .container {
                  width: 98%;
                  padding: 0 0.5rem;
              }
          }
          .nav-container {
              display: flex
          ;
              align-items: center;
              justify-content: space-between;
          }
          .nav-container {
              display: flex
          ;
              flex-wrap: wrap;
              align-items: center;
              justify-content: space-between;
              max-width: 1200px;
              margin: 0 auto;
              padding: 0 1rem;
          }
          .container {
              width: 90%;
              max-width: 1200px;
              margin: 0 auto;
          }
       
          div {
              display: block;
              unicode-bidi: isolate;
          }
          body {
              font-family: 'Montserrat', Arial, sans-serif;
              background: #fff;
              color: #222;
              margin: 0;
              padding: 0;
          }

/* Animation Styles */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.animate-on-scroll.fade-in-up {
  transform: translateY(40px);
}
.animate-on-scroll.fade-in-left {
  transform: translateX(-40px);
}
.animate-on-scroll.fade-in-right {
  transform: translateX(40px);
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}
