        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
      .container-grid{
        max-width: 1360px;
        padding-inline: 15px;
        margin: auto;
    }

        body {
            font-family: 'Hanken Grotesk', Sans-serif; 
            color: #333;
            overflow-x: hidden;
        }
        p { font-size:15px;color:#606060; line-height:1.5em; }
        /* Heading Font Family */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Archivo', Sans-serif;
        }
        h2 { color:#191919;font-size:38px; line-height:1.1em;font-weight:700; }
        a {
            text-decoration: none;
            color: #333;
        }
        ul {
            list-style: none;
        }
        .header {
            max-width: 1325px;
            background-color: #ffffff;
            padding: 10px 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            border-radius: 15px;
            margin: 10px auto;
            position: sticky;
            top: 0;
            z-index: 999; 
            
        }
        .container {
            
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo img {
            width: 180px;
            vertical-align: middle;
        }
        .nav-menu ul {
            display: flex;
            gap: 30px; 
        }

        .nav-menu a {
            font-family: 'Archivo', Sans-serif; 
            font-size: 15px;
            font-weight: 500;
            padding: 5px 0;
            transition: color 0.3s;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: #CC92C1; 
            font-weight: 600;
        }
        .contact-btn {
           
    display: inline-flex;
    align-items: center;
    padding: 14px 35px;
    border-radius: 30px;
    background-image: linear-gradient(115deg, #00195B 0%, #CC92C1 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

        }
        .contact-btn:hover {background:linear-gradient(115deg, #CC92C1 0%, #00195B 100%); }
        .menu-toggle {
            display: none;
        }
/*=================hero section ==========================*/
.hero-acme {
    /*width: 1140px;*/
    padding: 80px 20px 5px 20px;
    overflow: hidden;
    margin: 0 auto;
      }
        .hero-acme-container {
            /*max-width: 1140px; */
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px; /
            align-items: center;
        }
        .hero-acme-left {
            padding-right: 40px; 
            position: relative; 
        }
        .welcome-tag {
            font-size: 14px;
            font-weight: 600;
            color: #2b3149;
            padding: 5px 15px;
            border: 1px solid #103CE7;margin-left: 12px;
            display: inline-block;
            transform: rotate(-5deg) translateX(-10px); 
            background-color: #f7f7fa; 
        }
        .heading-main {
            font-size: 60px; margin: 0;
            line-height: 1.1;
            font-weight: 700;
            color: #191919;
        }
        .heading-main {
  animation: zoomIn 1s ease forwards;
  transform: scale(0);
  opacity: 0;
}

/* Keyframes */
@keyframes zoomIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

        .heading-accent {
            font-size: 120px;
            font-weight: 900;
            display: block;
            line-height: 1;
            background: linear-gradient(115deg, #00195B, #CC92C1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-fill-color: transparent;
        }

        .description {
            margin-top: 20px;
            margin-bottom: 35px;
            max-width: 90%; 
        }
        .btn-get-started {
            display: inline-flex;
            align-items: center;
            padding: 14px 35px;
            border-radius: 30px;
            background-image: linear-gradient(115deg, #00195B 0%, #CC92C1 100%); 
            color: #fff;
            font-size: 16px;
            font-weight: 500;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        .fa-arrow-right:before {
    content: "\f061";
    margin-left: 10px;
}

        /*.btn-get-started::after {
            content: '→'; 
            margin-left: 10px;
            font-size: 18px;
            transition: margin-left 0.3s ease;
        }*/

        .btn-get-started:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(75, 75, 122, 0.3);
            background-image: linear-gradient(115deg, #CC92C1 0%, #00195B 100%);
        }
        .hero-acme-illustration-bottom {
            width: 250px;
            height: auto;
            z-index: 10;
        }
        .hero-acme-illustration-bottom img {
            width: 100%;
            height: auto;
            display: block;
        }
   .hero-acme-illustration-bottom img {
  animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px); 
  }
  100% {
    transform: translateY(0); 
  }
}
       .hero-acme-right {
        padding: 10px 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px; 
  animation: pulseShadow 2.5s ease-in-out infinite;
}

@keyframes pulseShadow {
  0% {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  }
  50% {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.35);
  }
  100% {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  }
}
        .hero-acme-right img.seo-graphic {
            max-width: 100%;width: 100%;
            height: 100%;
            display: block;object-fit: contain;
            
        }
/*======================================================AGC GRID SECTION===============*/
.agc {padding: 80px 20px;}
.agc-container {
    /*max-width: 1140px;*/
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}
.agc-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    border: 1px solid #eee;
}
.agc-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}
.agc-image {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 25px;
}
.agc-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease-in-out;
    display: block;
}
.agc-item:hover .agc-image img {
    transform: scale(1.1);
}
.agc-title {
    font-size: 26px;
    font-weight: 400;
    color: #191919;
    margin-bottom: 15px;
    font-family: 'Archivo', Sans-serif;
}

/*================================about section=====================*/
.ab-acme {
  padding: 0px 20px 50px 20px;
  background-color: #fff;
}
.ab-acme-container {
 /* max-width: 1140px;*/
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ab-acme-left {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ab-acme-left img {
  width: 90%;
}
.ab-acme-right {
  padding: 10px;
}
.ab-acme-subtitle {
  color: #9c27b0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ab-acme-title {
  font-family: 'Archivo', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #333;
  line-height: 1.2;
  margin-bottom: 20px;
}
.ab-acme-description {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}
.ab-acme-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 20px;
  margin-bottom: 30px;
}
.ab-acme-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ab-acme-icon {
  width: 22px;
  height: 22px;
  background-color: #9c27b0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.ab-acme-icon::before {
  content: '\2713';
  color: #fff;
  font-size: 13px;
  line-height: 1;
}
.ab-acme-feature-item p {
  font-size: 15px;
  color: #555;
  margin: 0;
}
/*=============================scroll heading section=================*/
.scroll-heading {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: #f5f5f5;
  padding: 45px 0;
}
.scroll-heading .scroll-track {
  display: inline-flex;
  align-items: center;
  gap: 50px;
  animation: scroll-left 70s linear infinite;
}
.scroll-heading .scroll-track h2 {
  font-size: 60px;
  font-weight: 700;
  color: #2b3149;
  font-family: 'Archivo', sans-serif;
  white-space: nowrap;
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/*==================home service section=======================*/
.serv-acme {
  padding: 100px 20px 80px 20px;
  background: #fff;
}
.serv-acme-container {
  /*max-width: 1140px;*/
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}
.serv-acme-subtitle {
  color: #CC92C1;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.serv-acme-title {
  margin: 10px 0 20px;
}
.serv-acme-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.serv-acme-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px 30px;
}
.serv-acme-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  padding: 40px 15px 20px;
  position: relative;
  text-align: left;
  transition: all 0.3s ease;
}
.serv-acme-card:hover {
  transform: translateY(-5px); background: #000;
}
.serv-acme-card:hover h3 {color:#fff;}
.serv-acme-card:hover  p {color:#fff;}
.serv-acme-icon {
    position: absolute;
    top: -40px;
    left: 20px;
    /*background: linear-gradient(115deg, #00195B, #CC92C1);
    opacity: 0.3;*/
    color: #CC92C1;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 33px;
}
.serv-acme-icon::before {
    content: "";
    position: absolute;
    /* top: -40px; */
    /* left: 20px; */
    background: linear-gradient(115deg, #00195B, #CC92C1);
    opacity: 0.15;
    color: #CC92C1;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 33px;
}
.serv-acme-card:hover .serv-acme-icon{background: linear-gradient(115deg, #00195B, #CC92C1);/*z-index: 77;*/opacity: 1;}
.serv-acme-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 20px;
    color: #191919;
}
.serv-acme-card p {
  margin-bottom: 20px;
}
.serv-btn {
    height: 40px;
    width: 40px;
    background: linear-gradient(115deg, #00195B, #CC92C1);
    font-size: 20px;
    rotate: -35deg;
    border-radius: 50%;
    text-decoration: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.serv-btn svg {
    width: 25px;
}
.serv-acme-card:hover .serv-btn svg {
    rotate: 34deg;
}
.serv-acme-card a{text-decoration: none;}


/*==========================================RESERCH GRID FOUR SECTION==================*/
.research-grid {padding: 0px 20px; }
         .research-grid .container {
            display: grid;
              gap: 30px;
             text-align: center;
            padding: 60px 20px;
            color: #ffffff;
            background: #000229;
           border-radius: 10px;
           box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
           }
          .research-grid .container {
                grid-template-columns: repeat(4, 1fr); 
            }
        .research-grid .container {
            max-width: 100%; width: 100%; 
            margin: 0 auto; 
            padding: 0 10px; 
        }
        .research-grid .container {
            display: grid;
            gap: 30px;
            padding: 40px 20px 50px 20px;
            text-align: center;
        }
        .grid-item {  display: flex; flex-direction: column; align-items: center;padding: 20px 10px;}
        .star-icon {
            font-size: 48px;
            color: #ffffff; 
            margin-bottom: 15px;
        }

        .grid-item h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .grid-item p {
            font-size: 14px;
            line-height: 1.5;
            color: #fff;
            min-height: 70px; 
            margin-bottom: 25px;
            max-width: 250px; 
        }
        .step-btn {
            display: inline-block;
            padding: 10px 20px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            color: white; 
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .step-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
        }
        .step-1 {background: linear-gradient(90deg, #1e90ff, #5ac8fa);   }

        .step-2 {background: linear-gradient(90deg, #9370db, #d8bfd8);   }

        .step-3 { background: linear-gradient(90deg, #00bfff, #1e90ff);   }

        .step-4 {background: linear-gradient(90deg, #8a2be2, #c71585);  }


        /*===========================WHAT WE DO SECTION CSS ==================*/
        .what-do {
      padding: 60px 0px;
    }

    .what-do-container {
     /* max-width: 1140px;*/
      margin: 0 auto;
      padding: 0 20px;
    }

    .what-do-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .what-do-left {
      padding-right: 20px;
    }

    .what-do-subheading {
    font-size: 12px;
    color: #CC92C1;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
    }

    .what-do-heading {
      margin-bottom: 20px;
    }

    .what-do-para {
      font-size: 16px;
      line-height: 1.7;
      color: #555;
      margin-bottom: 30px;
    }

    .skill-item {
      margin-bottom: 25px;
    }

    .skill-info {
      display: flex;
      justify-content: space-between;
      margin-bottom: 8px;
      font-size: 15px;
      font-weight: 600;
      color: #444;
    }

    .progress-bar-container {
      width: 100%;
      background-color: #e0e0e0;
      height: 10px;
      border-radius: 5px;
      overflow: hidden;
    }

    .progress-bar-fill {
      height: 100%;
      background: linear-gradient(90deg, #9370db, #c71585);
      border-radius: 5px;
      transition: width 0.8s ease-out;
    }

    .what-do-right {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }

    .what-do-image {
      max-width: 100%;
      height: auto;
    }
/*----------------------------------------------------------------------------------------------------------*/
/*=============================FOOTER=====================================================================*/
/*---------------------------------------------------------------------------------------------------*/

.footer a {
    text-decoration: none;
    color: inherit; 
}
.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer {
    background-color: #000229; 
    color: #ffffff;
    padding: 60px 20px 20px; 
    font-family: 'Archivo', sans-serif;
    position: relative; 
}
.footer-container {
    /*max-width: 1200px;*/
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; 
    gap: 30px; 
    justify-content: space-between;
}
.footer-col {
    flex: 1; 
    min-width: 250px; 
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    color: #fff;
    font-weight: 600;
}
.footer-col h3::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -9px;
    height: 2px;
    width: 50px;
    background-color: #fff;
}
.about-company .footer-logo img {
    height: 50px; 
    margin-bottom: 20px;
}
.about-company p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #fff;
}
.about-company p a {
    color: #CC92C1; 
    font-weight: 500;
}
.email-subscribe {
    display: flex;
    margin-top: 25px;
}
.email-subscribe input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    background-color: #33354c;
    color: #fff;
    font-size: 14px;
}
.email-subscribe input::placeholder {
    color: #bbb;
}
.email-subscribe button {
    padding: 12px 20px;
    background-color: #CC92C1; 
    color: #fff;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.email-subscribe button:hover {
    background-color: #CC92C1;
}
.technologies-ul a {
    gap: 10px;
}
.technologies ul li,
.useful-links ul li {
    margin-bottom: 12px;
}
.technologies ul li a,
.useful-links ul li a {
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}
.technologies ul li a:hover,
.useful-links ul li a:hover {
    color: #CC92C1;
}
.technologies ul li a i,
.useful-links ul li a i {
    margin-right: 10px;
    color: #fff; 
    font-size: 15px;
}
.get-in-touch address p {
    font-size: 14px; font-style: normal; line-height: 1.1em;
    margin-bottom: 15px;
    display: flex; color:#fff;
    align-items: flex-start;
}
.get-in-touch address p i {
    margin-right: 10px;
    color: #fff;
    font-size: 16px;
    margin-top: 2px; 
}
.get-in-touch address p a {
    
}
.get-in-touch address p a:hover {
    color: #CC92C1;
}
.footer-bottom {
    border-top: 1px solid #33354c;
    padding-top: 25px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; 
    gap: 20px; 
    font-size: 14px;
    /*max-width: 1200px;*/
    margin-left: auto;
    margin-right: auto;
}
.footer-bottom p {
    margin: 0;
    color: #fff;
    font-size: 14px;
}
.social-icons {
    display: flex;
    gap: 15px;
}
.social-icons a {
    color: #000000;
    width: 35px;
    height: 35px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.social-icons a:hover {
    background-color: #CC92C1; 
    color: #fff;
}
.footer-bottom p a {
    color: #CC92C1;
}
.scroll-to-top {
    width: 45px;
    height: 45px;
    background-color: #00e676;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 230, 118, 0.4);
    transition: background-color 0.3s ease;
    z-index: 100;
}
.scroll-to-top:hover {
    background-color: #00c666;
}








.whatsapp-btn {
    background-color: #1bd741;
    color: white;
    padding: 7px 8px;
    text-decoration: none;
    margin-top: 20px;
    align-items: center;
    display: flex;
    gap: 10px;
    border-radius: 50%
}

.whatsapp-btn,.whatsapp-btn .icon-what {
    font-size: 30px
}

.whatfixed {
    position: fixed;
    left: 24px;
    bottom: 55px;
    z-index: 9;
}

.acme_links>ul>li:hover a {
    color: #71b23f
}

@keyframes video-out {
    to {
        top: -30px;
        right: -30px;
        bottom: -30px;
        left: -30px;
        opacity: 0
    }
}

.whatsapp-btn:before {
    content: "";
    position: absolute;
    box-shadow: 0 0 20px #1bd741;
    top: 20px;
    right: 0;
    bottom: 0;
    left: 0;
    animation-duration: 2s;
    border-radius: 50%;
    opacity: 0;
    animation-name: video-out;
    opacity: 1;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite
}







 /*----------------------------------------------------------------------------------------------------------*/
 /* =================================Responsive Design (Max-width 1024px)===================================== */
 /*----------------------------------------------------------------------------------------------------------*/
@media (max-width: 1024px) {
    .header {  max-width: 100%;margin: 0; border-radius: 0; }
    .container { width: 100%;  justify-content: space-between; position: relative;flex-direction: row-reverse; }
    a.contact-btn {
    display: none;
}
    .menu-toggle {display: block;background: none;border: none;font-size: 24px; cursor: pointer; color: #333; order: -1; z-index: 1001;}
    .contact-btn {margin-left: auto;}
    .nav-menu {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, #F3F6FD 0%, #D8E2F2 100%);
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease-in-out, visibility 0.3s, opacity 0.3s;
}
    .nav-menu.open {visibility: visible; opacity: 1;  transform: translateX(0); }
    .nav-menu ul { flex-direction: column;padding: 20px 20px 20px; gap: 3px;}
    .nav-menu li a { display: block; padding: 10px 0; font-size: 16px;  border-bottom: 1px solid #eee; }
    .hero-acme-container {grid-template-columns: 1fr;  gap: 50px; max-width: 767px;}
    .hero-acme-left {order: 1; text-align: center;padding-right: 0; }
    .hero-acme-right {order: 2; margin-left: 0;text-align: center;}            
    .heading-main { font-size: 45px;}
    .heading-accent {font-size: 75px; display: inline;   }            
    .welcome-tag, .description {margin-left: auto;margin-right: auto;}            
    .description {max-width: 80%; } 
    .agc-container {grid-template-columns: 1fr 1fr; gap: 25px;    }
    .ab-acme-container {gap: 40px;}
    .ab-acme-title { font-size: 30px;}
    .scroll-track h2 { font-size: 45px;}
    .serv-acme-container {gap: 30px;}
    .serv-acme-right {grid-template-columns: 1fr;  }
    .research-grid .container {grid-template-columns: repeat(2, 1fr); }


        }

/*--------------------------------------------------------------------------------------------------------------------*/
/*=========================RESPONSIVE 768PX===========================================*/
/* -------------------------------------------------------------------------------------------------------------------*/
@media (max-width: 768px) {
    h2 { color:#191919;font-size:28px; line-height:1.2em; }
    .logo img {width: 150px;}
    .nav-menu {width: 70%;}
    .footer { padding: 37px 0px 18px 0px;}
    .footer-col { margin-bottom: -8px;}
    .hero-acme {padding: 40px 15px 5px 15px;max-width: 360px;}
    .hero-acme-container {max-width:360px;gap: 0px;}            
    .heading-main {font-size: 35px; }          
    .heading-accent {font-size: 45px; }
    .agc {padding: 35px 15px 30px 15px;}
    .agc-container {grid-template-columns: 1fr;gap: 20px;  }
    .agc-item {padding: 25px 15px;}
    .ab-acme-right {
    padding: 0;
}
    .agc-title { font-size: 18px;}
    .agc-description {font-size: 14px;}
    .ab-acme {padding: 0px 15px 30px 15px;}
    .ab-acme-container {grid-template-columns: 1fr;text-align: center;gap: 10px;}
    .ab-acme-left {order: 1; }
    .ab-acme-right {order: 2;text-align: left;}
    .ab-acme-left img {max-width: 350px; }
    .ab-acme-features {grid-template-columns: 1fr;}
    .ab-acme-title {font-size: 28px;margin-bottom: 15px;}
    .ab-acme-description {font-size: 15px;margin-bottom: 20px;}
    .scroll-track h2 { font-size: 26px !important;}
    .scroll-heading .scroll-track{gap:30px;}
    .serv-acme-container {grid-template-columns: 1fr; gap: 15px; }
    .serv-acme-title {font-size: 26px; }
    .serv-acme-right {grid-template-columns: 1fr; margin-top: 60px;gap: 60px;margin-bottom: 25px;}
    .serv-acme {padding: 27px 15px 20px 15px; }
    .research-grid {padding: 0px 15px;}
    .research-grid .container {grid-template-columns: 1fr;gap:0px;padding: 15px 10px; }
    .what-do-grid {grid-template-columns: 1fr;gap: 15px;  }
    .what-do-right {order: -1;padding:0;  }
    .what-do-left {  padding-right: 0; text-align: left;  }
    .what-do-heading {font-size: 30px;margin-bottom: 15px; }
    .what-do-para {     }
    .skill-info, .progress-bar-container {max-width: 400px; margin-left: auto;  margin-right: auto;}
    .what-do-image {width: 100%;}
    .what-do { padding: 20px 15px 20px 15px;}
.description {
    max-width: 80%;
    margin-bottom: 25px;
}
.scroll-heading { padding: 30px 0;}
.grid-item p {margin-bottom: 0px;}
.step-4 { margin-top: 20px;}
.what-do-container {padding: 0px;}
.what-do-para {margin-bottom: 25px;}


        }