* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .fixed-phone-popup {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #007bff;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    z-index: 9999;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.4);
    transition: transform 0.2s;
  }
  
  .fixed-phone-popup:hover {
    transform: scale(1.1);
  }
  
  /* Pulse effect */
  .phone-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    background-color: rgba(0, 123, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-animation 1.5s infinite;
    z-index: -1;
  }
  
  @keyframes pulse-animation {
    0% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 0.8;
    }
    50% {
      transform: translate(-50%, -50%) scale(1.5);
      opacity: 0.4;
    }
    100% {
      transform: translate(-50%, -50%) scale(2);
      opacity: 0;
    }
  }
  
  .phone-icon-popup {
    position: relative;
    z-index: 2;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0em 2em;
  }
  
  /* Top Bar */
  .top-bar {
    background: #3e49c9;
    color: #fff;
    padding: 0.9rem 0;
    font-size: 14px;
  }
  
  .top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .top-left,
  .top-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
  }
  
  .top-left a img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
  }
  
  .top-right a {
    color: #fff;
    font-size: 13px;
  }
  
  /* Navbar */
  .navbar {
    background: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
  }
  
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .logo img{
    height: 80px;
  }
  
 
  
  /* Hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background: #3e49c9;
    transition: 0.3s;
  }
  
  .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(5px, -5px);
  }
  
  nav#nav-menu {
    display: flex;
  }
  
  /* Navigation */
  nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  nav ul li a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  nav ul li a:hover {
    color: #3e49c9;
  }
  
  .download-btn {
    background: #6c63ff;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 14px;
  }
  
  /* Hero Section */
  .hero {
    /* background: #dadada; */
    color: #fff;
    padding: 0rem 0em;
    text-align: center;
    /* height: 80vh; */
    width: 100%;
    margin-top: 1vw;
    overflow: hidden;
    
  }
  .banner{
    height: 80vh;
    width: 100%;
    /* background-color: orange; */
  }
  .banner img{
    height: 100%;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .tagline {
    font-family: cursive;
    font-size: 1.3rem;
    margin: 1rem 0;
  }
  
  .hero p {
    max-width: 700px;
    margin: 0.5rem auto;
    font-size: 1rem;
  }
  
  .hero .btns {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .hero .btns a {
    padding: 0.6rem 1rem;
    border-radius: 5px;
    color: #fff;
  }
  
  .hero .btns .contact-btn {
    background: orange;
  }
  
  .hero .btns .mail-btn {
    background: #333;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }
    .hero {
        /* background: #dadada; */
        color: #fff;
        padding: 0rem 0em;
        text-align: center;
        /* height: 80vh; */
        width: 100vw;
        margin-top: 1vw;
        
      }
      .banner{
        height: 20vh;
        width: 100%;
        /* background-color: orange; */
      }
      .banner img{
        height: 100%;
      }
      
  
    nav#nav-menu {
      display: none;
      flex-direction: column;
      background: #fff;
      width: 100%;
      position: absolute;
      top: 70px;
      left: 0;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      z-index: 999;
    }
  
    nav#nav-menu.active {
      display: flex;
    }
  
    nav#nav-menu ul {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      padding: 1rem 0;
    }
  
    nav#nav-menu ul li a {
      color: #3e49c9;
      font-size: 1.1rem;
      padding: 0.5rem 1rem;
    }
  
    .download-btn {
      display: none;
    }
  
    .top-bar .container {
      flex-direction: column;
      gap: 0.5rem;
      padding: 0em 2em;
      align-items: flex-start;
    }
  
    .hero h1 {
      font-size: 2rem;
    }
  
    .hero .tagline {
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 480px) {
    .logo {
      font-size: 1.3rem;
    }
  
    nav ul {
      flex-direction: column;
      align-items: center;
    }
  
    .hero h1 {
      font-size: 1.6rem;
    }
  
    .top-left, .top-right {
      justify-content: center;
    }
  }
  .swiper-auto-section {
    padding: 2rem 0;
    background: #f2f2f2;
  }
  
  .autoSwiper {
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .autoSwiper .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 10px;
  }
  .about-section {
    padding: 60px 20px;
    background: #f9f9f9;
  }
  
  .about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
  }
  
  .about-left {
    flex: 1 1 45%;
    position: relative;
  }
  
  .img-wrapper {
    position: relative;
  }
  
  .main-img {
    width: 100%;
    border-radius: 10px;
  }
  
  .small-img {
    width: 180px;
    border-radius: 10px;
    position: absolute;
    bottom: -20px;
    left: -20px;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }
  
  .about-right {
    flex: 1 1 50%;
  }
  
  .about-right h5 {
    color: #3a3aed;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
  }
  
  .about-right h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #222;
  }
  
  .about-right .highlight {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .feature-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  .feature-box .icon {
    font-size: 24px;
    color: #ff6600;
  }
  
  .read-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #655dff;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .read-more-btn:hover {
    background: #413cbe;
  }
  
  @media (max-width: 768px) {
    .about-container {
      flex-direction: column;
    }
  
    .features {
      grid-template-columns: 1fr;
    }
  
    .small-img {
      display: none;
    }
  }
  .project-video-section {
    padding: 60px 20px;
    background: #fff;
  }
  
  .project-video-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
  }
  
  .video-left {
    flex: 1 1 55%;
  }
  
  .video-left h5 {
    color: #3a3aed;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  
  .video-left h2 {
    font-size: 28px;
    color: #222;
    margin-bottom: 20px;
  }
  
  .video-left .quote {
    border-left: 4px solid #8888ff;
    padding-left: 15px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
  }
  
  .know-more-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #655dff;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
  }
  
  .know-more-btn:hover {
    background: #453cc4;
  }
  
  .video-right {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .video-thumb {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background: #f2f2f2;
    border: 6px solid #fff;
  }
  
  .video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .play-btn {
    position: absolute;
    top: 45%;
    left: 45%;
    transform: translate(-50%, -50%);
    background: white;
    color: #ff5a00;
    font-size: 26px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }
  
  .label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6600;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
  }
  
  @media (max-width: 768px) {
    .project-video-container {
      flex-direction: column;
      gap: 30px;
    }
  
    .video-thumb {
      width: 240px;
      height: 240px;
    }
  
    .video-left h2 {
      font-size: 22px;
    }
  
    .play-btn {
      width: 40px;
      height: 40px;
      font-size: 20px;
    }
  }
  .products-section {
    padding: 50px 20px;
    background: #f8f8f8;
  }
  
  .products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
  }
  
  .product-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    padding: 30px 20px;
    position: relative;
    transition: transform 0.3s ease;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
  }
  
  .product-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: orange;
    color: white;
    padding: 6px 10px;
    font-size: 14px;
    border-radius: 5px;
  }
  
  .product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 30px;
  }
  
  .product-card h3 {
    font-size: 18px;
    margin-top: 15px;
    color: #222;
  }
  
  .product-card p {
    font-size: 15px;
    color: #555;
    margin: 10px 0 20px;
  }
  
  .product-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  /* Styling for the <a> links to look like buttons */
  .product-buttons a.product-link-button {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #3f3dff;
    background: white;
    color: #3a3aed;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .product-buttons a.product-link-button:last-child {
    background: #3f3dff;
    color: white;
  }
  
  .product-buttons a.product-link-button:hover {
    opacity: 0.85;
  }
  
  
  /* counter */

  .counter-section {
    background-color: #3f51b5;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    width: 90vw;
    border-radius: 10px;
    margin-left: 5vw;

  }
  
  .counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .counter-box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .counter-box i {
    font-size: 40px;
    margin-bottom: 15px;
  }
  
  .counter-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
  }
  
  .counter-box p {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 8px;
    letter-spacing: 1px;
  }
  .stats-section {
    background: #eef0ff;
    padding: 60px 20px;
  }
  
  .stats-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .stat-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
  }
  
  .stat-card:hover {
    transform: translateY(-5px);
  }
  
  .stat-card i {
    font-size: 40px;
    color: #3f51b5;
    margin-bottom: 15px;
  }
  
  .stat-card h2 {
    font-size: 34px;
    font-weight: 700;
    margin: 0;
    color: #000;
  }
  
  .stat-card p {
    font-size: 16px;
    font-weight: 500;
    margin-top: 8px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
    
  /* feedback */

  .testimonial-section {
    padding: 80px 20px;
    background: #fff;
    
  }
  
  .testimonial-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
  }
  
  .testimonial-swiper-container {
    flex: 1 1 450px;
    background: #f8f8ff;
    border-radius: 20px;
    padding: 30px;
    position: relative;
}

.testimonial-slide {
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    text-align: left;
    height: 70vh;
    padding: 4.5em 2em;
    width: 40vw;
    /* background-color: red; */
  }
  
  .stars {
    color: #ffa534;
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .testimonial-text {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
  }
  
  .testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .testimonial-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }
  
  .testimonial-user h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
  }
  
  .testimonial-user span {
    font-size: 14px;
    color: #888;
  }
  
  .testimonial-summary {
    flex: 1 1 400px;
  }
  
  .testimonial-summary h5 {
    color: #6c63ff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
  }
  
  .testimonial-summary h2 {
    font-size: 32px;
    margin-top: 10px;
    font-weight: 700;
  }
  
  .testimonial-summary p {
    color: #666;
    font-size: 15px;
    margin-top: 15px;
  }
  
  .feedback-boxes {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  
  .feedback-boxes .box {
    background: #f1f3ff;
    padding: 25px;
    border-radius: 15px;
    flex: 1 1 160px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  }
  
  .feedback-boxes .box h1 {
    font-size: 28px;
    color: #ff6c00;
    margin: 0;
  }
  
  .feedback-boxes .box p {
    font-size: 14px;
    color: #444;
    margin-top: 10px;
  }
  
  /* Swiper navigation */
  .testimonial-nav .swiper-button-prev,
  .testimonial-nav .swiper-button-next {
    background: #e5e7ff;
    padding: 10px;
    border-radius: 50%;
    color: #444;
    width: 40px;
    height: 40px;
  }

  /* footer */
  /* Call to Action Section */
.cta-section {
    background: #6c63ff;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
  }
  
  .cta-container h2 {
    font-size: 30px;
    font-weight: bold;
  }
  
  .cta-container p {
    margin: 10px 0;
    font-size: 16px;
  }
  
  .cta-button {
    display: inline-block;
    background: #fff;
    color: #6c63ff;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    margin: 15px 10px;
    text-decoration: none;
  }
  
  .cta-button span {
    font-weight: bold;
  }
  
  .cta-phone {
    margin-top: 10px;
    font-weight: 600;
    font-size: 18px;
  }
  
  /* Footer Section */
  .footer-section {
    background: #121212;
    color: #fff;
    padding: 60px 20px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-col {
    flex: 1 1 0px;
    min-width: 200px;
  }
  
  .footer-col h3,
  .footer-col h4 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .footer-col p {
    font-size: 14px;
    line-height: 1.7;
  }
  .footer-col:nth-child(2){
    /* background-color: rebeccapurple; */
    padding-left: 8vw;
  }
  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-col ul li {
    font-size: 14px;
    padding: 5px 0;
    color: #ddd;
  }
  
  .footer-col ul.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
  }
  
  .footer-socials {
    margin-top: 20px;
  }
  
  .footer-socials a {
    color: #fff;
    margin-right: 15px;
    font-size: 18px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
  
    .cta-container h2 {
      font-size: 24px;
    }
  
    .cta-button {
      margin: 10px 0;
    }
  }
  
  
  