* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: sans-serif;
   
}

html,
body {
   height: 100%;
   width: 100%;
   overflow-x: clip;
   
   
   ;
}

nav {
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white; /* ADDED: Solid background for fixed position */
    height: 70px;
    
    /* CRITICAL FIXES FOR POSITIONING: */
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* ADDED */
}

.logo {
   color: #000;
}

.logo h1 {
   font-size: 24px;
   transition: transform 0.3s ease-in-out;
}

.logo h1:hover {
   transform: scale(1.1);
}

#menuList {
   display: flex;
   list-style: none;
   gap: 30px;
   align-items: center;
}

#menuList li {
   position: relative;
}

#menuList li a {
   text-decoration: none;
   color: rgb(0, 0, 0);
   font-size: 18px;
   padding: 8px 12px;
   transition: color 0.3s ease-in-out;
}

#menuList li a::after {
   content: "";
   position: absolute;
   left: 0;
   bottom: -5px;
   width: 0;
   height: 2px;
   background: #0cc0df;
   transition: width 0.3s ease-in-out;
}

#menuList li a:hover {
   color: #0cc0df;
}

#menuList li a:hover::after {
   width: 100%;
}

.menu-icon {
   display: none;
   cursor: pointer;
}

.menu-icon img {
   width: 30px;
   transition: transform 0.3s ease-in-out;
}

.nav-right a {
   display: flex;
   padding: 12px 20px;
   font-size: 18px;
   font-weight: bold;
   color: white;
   text-decoration: none;
   background: #0cc0df;
   border-radius: 8px;
   transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
   box-shadow: 0px 5px 10px rgba(12, 192, 223, 0.3);
   position: relative;
   overflow: hidden;
}

.nav-right a:hover {
   transform: translateY(-3px);
   background: #004aad;
}

main {
   display: flex;
   flex-direction: column;
   justify-content: center;
   min-height: calc(90vh - 6rem);
}

.container {
   display: flex;
   align-items: center;
   justify-content: space-between;
   max-width: 1200px;
   width: 90%;
   margin: auto;
   min-height: calc(90vh - 6rem);
   flex-wrap: wrap;
}

.content {
   max-width: 40rem;
   margin: auto;
   text-align: center;
}

.content h1 {
   font-size: 50px;
   padding-bottom: 30px;
}

.nimz {
   color: #004aad;
}

.liot {
   color: #0cc0df;
}

.description {
   font-size: 18px;
   letter-spacing: 0.05em;
   max-width: 35rem;
   margin: auto;
}

.button {
   display: flex;
   justify-content: center;
   gap: 1rem;
}

.btn-get-started {
   text-decoration: none;
   padding: 0.7rem 1.2rem;
   border-radius: 50px;
   font-size: 1.2rem;
   font-weight: 600;
   letter-spacing: 0.1rem;
   margin-top: 30px;
   transition: background 0.5s ease, transform 0.3s ease;
   background: linear-gradient(to right, #004aad, #0cc0df);
   color: white;
   border: none;
}

.btn-get-started:hover {
   background: linear-gradient(to right, #0cc0df, #004aad);
   transform: scale(1.1);
}

.icon-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 20px;
   justify-content: center;
   align-items: center;
   padding: 20px;
   max-width: 600px;
   margin: auto;
   gap: 40px;
}

.icon {
   font-size: 2rem;
   display: flex;
   justify-content: center;
   align-items: center;
   background: #f4f4f4;
   border-radius: 10px;
   padding: 20px;
   transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
   cursor: pointer;
}

.icon:hover {
   transform: scale(1.1);
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.why-container {
   background: rgba(240, 243, 255, 1);
   border-radius: 12px;
   padding: 15px 20px;
   text-align: left;
   max-width: 1100px;
   min-height: 100px;
   margin: 10px auto;
   display: flex;
   flex-direction: column;
   justify-content: center;
}


.why-container h2 {
   margin-top: 2px;
   margin-bottom: 5px;
}


.why-container p {
   margin-bottom: 2px;
   font-size: 17px;
   color: #333;
   line-height: 1.2;
}


.previous-section {
   margin-bottom: 5px;
}


.next-section {
   margin-top: 5px;
}

.info-section {
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   width: 100%;
   padding: 40px 0;
   margin-top: 100px;
}

.section-title {
   margin-bottom: 20px;
   font-size: 2rem;
   font-weight: bold;
}

.parent {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 20px;
   width: 80%;
   max-width: 1200px;
   justify-content: center;
}

.parent div {
   background: #f7f9fc;
   padding: 20px;
   border-radius: 12px;
   box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
   text-align: center;
   transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
   cursor: pointer;
}

.parent div:hover {
   transform: translateY(-10px);
   box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
   background: #e6efff;
}

div h1 {
   font-size: 1.5rem;
   margin-bottom: 12px;
}

div p {
   font-size: 1.2rem;
   margin-bottom: 15px;
   margin-top: 40px;
}

div img {
   max-width: 100px;
   margin-top: 10px;
   transition: transform 0.3s ease-in-out;
}


.achievement-section {
   background-color: var(--bg-primary);
   padding: 6rem 0;
}

.container {
   max-width: 1200px;
   margin: 0 auto;
}

.content-wrapper {
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 2rem;
}


.image-container {
   flex: 1;
   max-width: 40%;
   text-align: center;
}

.image-container img {
   max-width: 100%;
   height: auto;
   border-radius: 10px;
   mix-blend-mode: multiply;
}


.achievement-boxes {
   flex: 1;
   max-width: 55%;
}

.achievement-heading {
   font-size: 2.5rem;
   font-weight: bold;
   text-align: left;
   margin-bottom: 2rem;
   color: var(--text-primary);
}


.counter-content-wrapper {
   background: #ffffff;
   padding: 1.2rem;
   border-radius: 10px;
   box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
   text-align: left;
   margin-bottom: 1rem;
   display: flex;
   align-items: center;
   gap: 1rem;
   width: 90%;

}


.inner-counter-content {
   flex: 1;
}


.counter-title {
   font-size: 2.5rem;
   font-weight: bold;
   color: var(--primary-color);
   display: inline-block;
}

.counter-sub-title {
   font-size: 1rem;
   font-weight: 600;
   color: var(--text-secondary);
   display: block;
   margin: 0.5rem 0;
}

.comparison-section {
   text-align: center;
   padding: 4rem 1rem;
   background-color: #ffffff;
}

.comparison-section h2 {
   font-size: 1.8rem;
   font-weight: 600;
   color: #333;
   margin-bottom: 2.5rem;
}

.comparison-container {
   display: flex;
   justify-content: center;
   gap: 3rem;
   flex-wrap: wrap;
}

.other-comp,
.nimz-comp {
   flex: 1;
   max-width: 550px;
   padding: 2.5rem;
   border-radius: 12px;
   text-align: left;
   box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease-in-out;
}

.other-comp:hover,
.nimz-comp:hover {
   transform: translateY(-5px);
}

.other-comp {
   background: #ffffff;
   border: 2px solid #ccc;
}

.other-comp h3 {
   color: #333;
   font-size: 1.5rem;
   font-weight: 600;
   margin-bottom: 1.5rem;
}

.other-comp ul {
   list-style: none;
   padding: 0;
}

.other-comp li {
   color: #555;
   font-size: 1.1rem;
   margin-bottom: 1.3rem;
   font-weight: 500;
}

.nimz-comp {
   background: #eef2ff;
   border: 2px solid #999;
}

.nimz-comp h3 {
   color: #333;
   font-size: 1.5rem;
   font-weight: 600;
   margin-bottom: 1.5rem;
}

.nimz-comp ul {
   list-style: none;
   padding: 0;
}

.nimz-comp li {
   color: #555;
   font-size: 1.1rem;
   margin-bottom: 1.3rem;
   font-weight: 500;
}

.faq-container {
   width: 90%;
   max-width: 1000px;
   margin: 80px auto;
   padding: 35px;
   border-radius: 12px;
   text-align: center;
   font-family: 'Poppins', sans-serif;
}


.faq-nav {
   display: flex;
   justify-content: center;
   gap: 60px;
   margin-bottom: 40px;
}

.faq-nav button {
   background: #f5f5f5;
   border: none;
   padding: 12px 28px;
   cursor: pointer;
   font-weight: 600;
   border-radius: 8px;
   font-size: 16px;
   transition: 0.3s ease-in-out;
   color: #333;
}

.faq-nav button:hover {
   background: #d9d9d9;
   transform: translateY(-2px);
}

.faq-nav button.active {
   background: #004aad;
   color: white;
}


.faq-section {
   text-align: left;
   padding: 15px 25px;
}

.faq-item {
   background: #f9f9f9;
   padding: 20px;
   margin: 15px 0;
   border-radius: 8px;
   font-size: 16px;
   font-weight: 500;
   cursor: pointer;
   transition: all 0.3s ease-in-out;
   border-left: 4px solid #004aad;
}

.faq-item:hover {
   background: #f0f0f0;
   transform: scale(1.01);
}


.faq-answer {
   width: 100%;
   max-width: 100%;
   margin-top: 20px;
   display: block;
   overflow: hidden;
   max-height: 0;
   opacity: 0;
   transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

.faq-answer.open {
   opacity: 1;
   max-height: 500px;
}


.faq-answer.show {
   opacity: 1;
   max-height: 200px;
   padding: 15px;
}

.testimonial-section {
   text-align: center;
   padding: 40px;

}

h2 {
   font-size: 24px;
   color: #004aad;
   margin-bottom: 20px;
}

/* =======================================
   1. Clients Section Styling (Modern Tech/SaaS with Poppins)
   ======================================= */
.clients-section {
    padding: 100px 20px;
   
    text-align: center;
    
    /* Poppins Font Applied */
    font-family: 'Poppins', sans-serif;
}

/* --- Typography: MATCHING UPLOADED IMAGE STYLE --- */
.clients-title h2 {
    font-size: 3rem; /* Increased size to match visual impact */
    color: #004aad; /* Solid dark blue color */
    font-weight: 800; /* Extra bold */
    margin-bottom: 60px;
    
    /* Removed Gradient and Uppercase effects */
    text-transform: none; 
    letter-spacing: normal;
    
    display: inline-block;
    position: relative;
}

/* Removed the small dot under the title */
.clients-title h2::after {
    content: none; 
}

/* --- The Tech Grid --- */
.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 850px;
    margin: 0 auto 70px;
}

/* --- "Tech Card" Style --- */
.client-logo {
    width: 180px;
    height: 100px;
    background: #ffffff;
    
    /* Border instead of heavy Shadow */
    border: 2px solid #eef2f7; 
    border-radius: 8px; 
    
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

/* Hover Effects: Border color change + slight lift */
.client-logo:hover {
    border-color: #0cc0df; 
    transform: translateY(-5px);
    background: #fdfdfd;
    box-shadow: 0 10px 25px rgba(0, 74, 173, 0.08); 
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- Outline Buttons (Ghost Buttons) --- */
.clients-cta {
    margin-top: 40px;
}

.clients-cta h3 {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Container to separate buttons */
.clients-cta a {
    margin: 0 12px;
}

.cta-button {
    display: inline-block;
    
    /* Outline Style */
    background: transparent;
    border: 2px solid #004aad;
    color: #004aad;
    
    font-weight: 700;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 6px; 
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button:hover {
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 74, 173, 0.3);
}

/* Sliding gradient fill on hover */
.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #004aad, #0cc0df);
    transition: width 0.3s ease;
    z-index: -1; 
}

.cta-button:hover::before {
    width: 100%; 
}

/* =======================================
   2. Responsive Styles
   ======================================= */
@media (max-width: 768px) {
    .clients-title h2 {
        font-size: 2.5rem; /* Adjusted for mobile view */
    }
    
    .clients-logos {
        gap: 15px;
    }
    
    .client-logo {
        width: 45%; 
        height: 80px;
    }
    
    .clients-cta a {
        display: block; 
        margin: 15px auto;
        max-width: 260px;
    }
}
h3 {
   color: #004aad;
   margin-bottom: 5px;
}

p {
   font-size: 14px;
   color: #555;
}

.stars {
   color: #f4c150;
   font-size: 16px;
   margin-top: 10px;
}



.footer {
   background-color: #ffffff; 
   color: #ffffff;
   padding: 50px 20px;
   margin-top: 50px;
}

.footer-container {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   max-width: 1200px;
   margin: auto;
   gap: 30px;
}

.footer-about {
   flex: 1;
   min-width: 250px;
}

.footer-about h2 {
   font-size: 24px;
   font-weight: bold;
   margin-bottom: 15px;
}

.footer-about p {
   font-size: 14px;
   line-height: 1.6;
   color: gray; 
}


.footer-links, .footer-follow, .footer-legal {
   flex: 1;
   min-width: 200px;
}

.footer h3 {
   font-size: 18px;
   margin-bottom: 15px;
   color: #000000; 
}

.footer ul {
   list-style: none;
   padding: 0;
}

.footer ul li {
   margin-bottom: 10px;
}

.footer ul li a {
   color: gray;
   text-decoration: none;
   font-size: 14px;
   transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
   display: inline-block;
}

.footer ul li a:hover {
   color: #0CC0DF; 
   transform: translateX(5px);
}


.social-icons {
   display: flex;
   gap: 15px;
   padding: 0;
}

.social-icons li {
   list-style: none;
}

.social-icons a {
   color: #b3d9ff; 
   font-size: 18px;
   transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.social-icons a:hover {
   color: #0CC0DF; 
   transform: scale(1.1);
}


.footer-bottom {
   text-align: center;
   border-top: 1px solid #0a3b80; 
   padding-top: 10px;
   margin-top: 20px;
}

.footer-bottom p {
   font-size: 12px;
   color: gray; 
   margin: 0;
}

.whatsapp-btn {
   position: fixed;
   bottom: 40px;
   right: 20px;
   background-color: #25D366;
   width: 60px;
   height: 60px;
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: 24px;
   color: white;
   cursor: pointer;
   box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
   z-index: 998;
}


.chat-popup {
   display: none;
   position: fixed;
   bottom: 120px;
   right: 20px;
   width: 320px;
   background: white;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
   border-radius: 10px;
   overflow: hidden;
   animation: fadeIn 0.3s ease-in-out;
}


.chat-popup header {
   background: #25D366;
   color: white;
   padding: 15px;
   font-size: 18px;
   font-weight: bold;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.chat-popup header .close-btn {
   cursor: pointer;
   font-size: 20px;
}


.chat-body {
   padding: 15px;
   font-size: px;
}

.chat-body p {
   margin-bottom: 10px;
   
}


.chat-body .contact-card {
   display: flex;
   align-items: center;
   padding: 10px;
   background: #f5f5f5;
   border-radius: 8px;
   cursor: pointer;
   transition: 0.3s;
}

.chat-body .contact-card:hover {
   background: #e0e0e0;
}

.contact-card img {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   margin-right: 10px;
}

.contact-card .contact-info {
   flex: 1;
}

.contact-card .contact-info .name {
   font-weight: bold;
}

.contact-card .contact-info .role {
   font-size: 12px;
   color: gray;
}
.whatsapp-btn {
    position: fixed;
    bottom: 40px;
    right: 20px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    
    /* Flexbox for perfect centering */
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Ensure no internal padding throws off the center */
    padding: 0; 
    
    cursor: pointer;
    box-shadow: 0 0 18px rgba(37, 211, 102, 0.7);
    transition: 0.3s ease;
    z-index: 999;
    animation: waFloat 3s infinite ease-in-out;
    
    /* Remove underline if using an <a> tag */
    text-decoration: none; 
}

/* WhatsApp icon inside the button */
.whatsapp-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.3));
    
    /* CRITICAL FOR CENTERING: */
    display: block; /* Removes inline line-height spacing */
    margin: 0;      /* Removes default browser margins */
}

/* Hover Effect */
.whatsapp-btn:hover {
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.9);
}



@keyframes fadeIn {
   from { opacity: 0; transform: translateY(10px); }
   to { opacity: 1; transform: translateY(0); }
}

.hidden-h1 {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 1px;
  width: 1px;
  overflow: hidden;
}


/*Responsive Design*/


@media screen and (max-width: 1024px) {
   nav {
      padding: 10px 20px;
   }

   #menuList {
      gap: 20px;
      padding-right: 0;
   }

   .content h1 {
      font-size: 40px;
   }

   .description {
      font-size: 16px;
   }

   .why-container {
      max-width: 90%;
      padding: 12px 18px;
      min-height: 90px;
   }

   .why-container h2 {
      font-size: 20px;
   }

   .why-container p {
      font-size: 16px;
      line-height: 1.3;
   }

   .parent {
      grid-template-columns: repeat(2, 1fr);
   }

   .info-section {
      margin-top: 40px;
   }

   .content-wrapper {
      flex-direction: column;
      text-align: center;
   }

   .image-container {
      max-width: 60%;
   }

   .achievement-boxes {
      max-width: 80%;
   }

   .counter-title {
      font-size: 2.2rem;
   }

   .comparison-container {
      gap: 2rem;
   }

   .other-comp,
   .nimz-comp {
      max-width: 450px;
      padding: 1.8rem;
   }

   .comparison-section h2 {
      font-size: 1.8rem;
   }

   .faq-container {
      width: 95%;
      padding: 25px;
   }

   .faq-nav {
      gap: 40px;
   }

   .faq-nav button {
      padding: 10px 24px;
      font-size: 14px;
   }

   .faq-item {
      font-size: 15px;
      padding: 18px;
   }

   .faq-answer.show {
      max-height: 180px;
      padding: 12px;
   }
   .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
   }

   .footer-about,
   .footer-links,
   .footer-follow,
   .footer-legal {
      min-width: 100%;
      margin-bottom: 20px;
   }
}



@media screen and (max-width: 768px) {

   nav ul {
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      height: auto;
      flex-direction: column;
      text-align: center;
      gap: 10px;
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.5s ease-in-out;
      
      background-color: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(20px);


      padding: 15px 0;
      z-index: 1000;
   }


   .menu-icon {
      display: block;
      cursor: pointer;
      margin-bottom: 20px;
   }


   .nav-menu .contact {
      display: block;
   }


   .nav-right a {
      display: none;
   }


   #menuList {
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      background: #fff;
      padding: 0;
      text-align: center;
      flex-direction: column;
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.5s ease-in-out;
   }

   #menuList.active {
      max-height: 500px;
      padding: 20px 0;
   }

   #menuList li {
      margin: 10px 0;
   }


   .icon-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      justify-content: center;
      align-items: center;
      margin-top: -20px;
   }

   .icon {
      width: 80px;
      height: 80px;
      display: flex;
      justify-content: center;
      align-items: center;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 10px;
      font-size: 1.5rem;
   }

   .why-container {
      max-width: 95%;
      padding: 10px 15px;
      min-height: 80px;
   }

   .why-container h2 {
      font-size: 18px;
   }

   .why-container p {
      font-size: 15px;
      line-height: 1.4;
   }

   .parent {
      grid-template-columns: repeat(1, 1fr);
   }

   .info-section {
      margin-top: 40px;
   }

   .image-container {
      max-width: 80%;
   }

   .achievement-boxes {
      max-width: 90%;
   }

   .counter-content-wrapper {
      flex-direction: column;
      text-align: center;
      padding: 1rem;
   }

   .counter-title {
      font-size: 2rem;
   }

   .comparison-container {
      flex-direction: column;
      align-items: center;
   }

   .other-comp,
   .nimz-comp {
      max-width: 90%;
      padding: 1.6rem;
   }

   .comparison-section h2 {
      font-size: 1.6rem;
   }

   .other-comp h3,
   .nimz-comp h3 {
      font-size: 1.2rem;
   }

   .other-comp li,
   .nimz-comp li {
      font-size: 0.95rem;
      margin-bottom: 1rem;
   }

   .faq-container {
      width: 100%;
      margin: 50px auto;
      padding: 20px;
   }

   .faq-nav {
      flex-direction: column;
      gap: 15px;
      align-items: center;
   }

   .faq-nav button {
      width: 90%;
      text-align: center;
      font-size: 14px;
      padding: 12px;
   }

   .faq-item {
      font-size: 14px;
      padding: 15px;
   }

   .faq-answer.show {
      max-height: 160px;
      padding: 10px;
   }
   .testimonial-container {
      flex-direction: column;
      align-items: center;
  }

  .testimonial-card {
      width: 90%;
      max-width: 320px;
  }
  .footer-container {
   flex-direction: column;
   text-align: center;
}

.social-icons {
   justify-content: center;
}

.footer ul li a {
   display: block;
}
.achievement-boxes{
   margin-left: 30px;
}

}




@media screen and (min-width: 769px) {
   .nav-menu .contact {
      display: none;
   }
}



@media screen and (max-width: 480px) {
   .icon-grid {
      grid-template-columns: repeat(2, 1fr);
      margin-top: -20px;
   }

   .icon {
      font-size: 1.5rem;
      padding: 15px;
   }

   .why-container {
      max-width: 100%;
      padding: 8px 12px;
      min-height: auto;
   }

   .why-container h2 {
      font-size: 16px;
      margin-bottom: 3px;
   }

   .why-container p {
      font-size: 14px;
      line-height: 1.5;
   }

   .parent {
      grid-template-columns: repeat(1, 1fr);
   }

   .info-section {
      margin-top: 40px;
   }

   .image-container {
      max-width: 100%;
   }

   .achievement-boxes {
      max-width: 100%;
   }

   .counter-title {
      font-size: 1.8rem;
   }

   .counter-sub-title {
      font-size: 0.9rem;
   }

   .counter-content-wrapper {
      padding: 0.8rem;
   }

   .comparison-container {
      flex-direction: column;
      align-items: center;
   }

   .other-comp,
   .nimz-comp {
      max-width: 100%;
      padding: 1.5rem;
   }

   .comparison-section h2 {
      font-size: 1.4rem;
   }

   .other-comp h3,
   .nimz-comp h3 {
      font-size: 1.1rem;
   }

   .other-comp li,
   .nimz-comp li {
      font-size: 0.9rem;
      margin-bottom: 0.9rem;
   }

   .faq-container {
      width: 100%;
      padding: 15px;
      margin: 30px auto;
   }

   .faq-nav {
      flex-direction: column;
      gap: 10px;
   }

   .faq-nav button {
      width: 100%;
      font-size: 14px;
      padding: 10px;
   }

   .faq-item {
      font-size: 14px;
      padding: 12px;
      margin: 10px 0;
   }

   .faq-answer.show {
      max-height: 140px;
      padding: 8px;
   }
   .testimonial-card {
      width: 95%;
      padding: 15px;
  }

  h3 {
      font-size: 18px;
  }

  p {
      font-size: 13px;
  }

  .stars {
      font-size: 14px;
  }
  .footer {
   padding: 30px 10px;
}

.footer-container {
   flex-direction: column;
   text-align: center;
   gap: 20px;
}

.footer-about h2 {
   font-size: 20px;
}

.footer h3 {
   font-size: 16px;
}

.footer ul li a {
   font-size: 12px;
}

.social-icons {
   justify-content: center;
}

.social-icons a {
   font-size: 16px;
}


}


@media screen and (min-width: 769px) {
   .contact {
      display: none;
   }
}

@media screen and (max-width: 768px) {
   .contact {
      display: block;
   }
}