body {
    font-family: 'Varela Round', sans-serif;
}
.footer-title,
.product-list li a,
.navbar,
p {
    font-family: 'Varela Round', sans-serif;
}

.hero-img {
  height: 430px;
  object-fit: cover;
  border-radius: 10px;
}

.about-box {
  border-left: 4px solid #f37a20;
  padding-left: 15px;
}

.about-title {
  color: #f37a20;
  font-size: 30px;
  font-weight: 700;
}

.about-text {
  font-size: 17px;
  color: #111;
  line-height: 1.7;
}

.call-separator {
    font-size: 18px;
    font-weight: 600;
    color: #94a3b8;
}
  

.v-title {
  color: #f37a20;
  font-size: 28px;
  font-weight: 700;
}

.v-text {
  font-size: 18px;
  color: #111;
  line-height: 1.7;
}

.text-prev,
.text-next {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 28px;
  color: #888;
  cursor: pointer;
}

.text-prev:hover,
.text-next:hover {
  color: #f37a20;
}

.text-prev { left: -10px; }
.text-next { right: -10px; }









/* ===============================
   HERO SLIDER BASE
================================ */

.hero-slide {
  position: relative;
  width: 100%;

  overflow: hidden;
  background: #f5f5f5;
}

/* FULL WIDTH IMAGE (CLEAR) */
.hero-bg {
  width: 100%;


  object-position: center;
  display: block;
}

/* ===============================
   CONTENT OVER IMAGE
================================ */

.hero-content {
  position: absolute;
  left: 6%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 470px;

  /* Brand glass background */
  background: linear-gradient(
    135deg,
    rgba(11, 44, 93, 0.7),
    rgba(20, 63, 125, 0.6)
  );


  padding: 30px;
  border-radius: 14px;

  box-shadow: 0 25px 55px rgba(0,0,0,0.25);
  color: #fff;
}


/* HEADING */
.hero-content h1 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 14px;
}

/* PARAGRAPH */
.hero-content p {
  font-size: 17px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 26px;
}

/* BUTTON */
.hero-btn {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(135deg, #ff7a18, #ff9f1a);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 22px rgba(255,122,24,0.45);
}

.hero-btn:hover {
  background: linear-gradient(135deg, #e96b0c, #ff8c00);
  transform: translateY(-2px);
}

/* ===============================
   SLIDER ARROWS
================================ */

.slider-arrow {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 10;
}

.slider-arrow button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  cursor: pointer;
  font-size: 20px;
  color: #333;
  transition: all 0.3s ease;
}

.slider-arrow button:hover {
  background: #ff7a18;
  color: #fff;
}

/* ===============================
   FLOATING CALL & WHATSAPP
================================ */

.floating-contact {
  position: fixed;
  left: 15px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-contact a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.floating-call {
  background: #ff7a18;
}

.floating-whatsapp {
  background: #25d366;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .hero-content {
    max-width: 480px; display: none;
    padding: 28px;
  }

  .hero-content h1 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {


  .hero-content {
    left: 5%;
    right: 5%;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 22px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-btn {
    padding: 12px 26px;
  }
}


















.back{background:#fffee3 !important; padding:10px; border-radius: 5px;} 




/* CONTACT BUTTON */
.btn-orange {
    background: #f37a20;
    color: white;
    padding: 7px 18px;
    border-radius: 6px;
    font-weight: 600;
}
.btn-orange:hover {
    background: #d96a17;
}

/* MENU STYLING */
.main-menu li {
    position: relative;
    list-style: none;
}
.main-menu li a {
    text-decoration: none;
    color: #222;
    font-size: 14px;
    font-weight: 600; text-transform: uppercase; 
}
.main-menu li a:hover {
    color: #f37a20;
}

/* DROPDOWN */
.dropdown-toggle::after {

    font-size: 12px;
    margin-left: 4px;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 240px;
    border-radius: 6px;
    padding: 10px 0;
    display: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    z-index: 9999;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu li a {
    padding: 5px 15px;
    display: block;
    color: #333; border-bottom:1px dashed #ccc;
}
.dropdown-menu li a:hover {
    background: #f5f5f5;
    color: #f37a20;
}

/* TOP BAR (WHERE CONTACT INFO IS) */
.top-bar {
    border-bottom: 1px solid #eee; background: #bddfff;
}

/* MENU BAR (LOGO + NAV) */
.menu-bar {
    background: #d3d1d1;
}


/* DESKTOP DEFAULT */
.top-bar-new {
    background: #eaf4ff;
    border-bottom: 1px solid #dbeafe;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

/* CALL INLINE */
.top-call-inline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.call-label-inline {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
}

.call-number {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
    animation: callPulse 2.2s infinite;
}

/* CONTACT BUTTON */
.contact-btn {
    background: #2563eb;
    color: #fff;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
}

/* PULSE */
@keyframes callPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.07); color: #16a34a; }
    100% { transform: scale(1); }
}

/* 📱 MOBILE FIX */
@media (max-width: 768px) {

    /* Hide Contact Us */
    .top-action {
        display: none;
    }

    /* Center phone */
    .topbar-inner {
        justify-content: center;
    }

    .top-call-inline {
        justify-content: center;
    }

    .call-number {
        font-size: 20px;
    }
}



/* HAMBURGER BUTTON */
.menu-toggle {
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

/* MOBILE MENU SLIDE-IN PANEL */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;          /* Full screen */
  overflow-y: auto;       /* SCROLL ENABLED */
  background: white;
  padding: 20px;
  box-shadow: -3px 0 10px rgba(0,0,0,0.2);
  transition: 0.4s ease;
  z-index: 99999;
}


.mobile-menu.active {
  right: 0;
}

/* Close Button */
.close-menu {
  font-size: 32px;
  background: none;
  border: none;
  float: right;
  margin-bottom: 20px;
}

/* Mobile Menu Links */
.mobile-menu ul li {
  list-style: none;
  padding: 4px 0;
  border-bottom: 1px solid #eee;
}
.small-icon {
  font-size: 10px;
  margin-left: 4px;
  color: #777;   /* light grey */
  font-weight: normal;
}
.mobile-menu ul li a {
  text-decoration: none;
  color: #333;
  font-size: 16px; font-weight:normal;
}

/* Mobile Dropdown Style */
.mobile-dropdown {
  font-weight: bold;
  cursor: pointer;
}

.mobile-dropdown .sub-menu {
  display: none;
  padding-left: 15px;
}

.mobile-dropdown.open .sub-menu {
  display: block;
}




/* Desktop default */
.topbar-flex {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}

/* Button styling same */
.top-btn {
  padding: 5px 15px;
  font-size: 14px;
}
.call-info a{color:#111 !important; text-decoration: none;}
.f-box a{color:#fff !important; text-decoration: none;}
/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 576px) {
    .menu-bar {
    background: #def2ff;
}



  .topbar-flex {
    flex-direction: column;   /* niche aa jayega */
    justify-content: center;
    text-align: center;
    gap: 4px;
  }

  .call-info strong {
    display: block;
    font-size: 14px;
  }

  .small.text-muted {
    font-size: 15px;
  }

  .top-btn {

    font-size: 15px;
  }
}

.about-text {
  font-size: 18px;
  color: #444;
  line-height: 1.8;

  margin: auto;
}

.btn-enquiry {
  background: #f37a20;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.btn-enquiry:hover {
  background: #d96a17;
  color: #fff;
}

.carousel-control-prev,
.carousel-control-next {
  width: 45px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 100%;
  background-color: rgba(0,0,0,0.6);
  border-radius: 50%;
  padding: 15px;
}



.brand-parallax {
  position: relative;
  min-height: 420px;
  background:
    linear-gradient(
      135deg,
      #0b2c5d 0%,
      #143f7d 60%,
      #0b2c5d 100%
    );
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Light transparent layer */
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.12),
    rgba(0,0,0,0.25)
  );
  z-index: 1;
}

.parallax-content {
  text-align: center;
  max-width: 720px;
  margin: auto;
  padding: 90px 20px;
  position: relative;
  z-index: 2;
}

/* Small brand label */
.parallax-tagline {
  display: inline-block;
  margin-bottom: 14px;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  color: #ffd200;
}

/* Heading */
.parallax-content h2 {
  font-size: 54px;
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
}

.parallax-content h2 span {
  color: #ffd200;
}

/* Paragraph */
.parallax-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #e5eaf2;
  margin-bottom: 35px;
}

/* Button */
.parallax-btn {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(135deg, #ffd200, #ffb703);
  color: #0b2c5d;
  font-size: 15px;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.parallax-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

/* Mobile */
@media (max-width: 768px) {
  .brand-parallax {
    background-attachment: scroll;
  }

  .parallax-content h2 {
    font-size: 30px;
  }

  .parallax-logo {
    max-width: 200px;
  }
}


/* PARALLAX BACKGROUND */
.parallax-banner {
  background-image: url('../data1/images/1.jpg');
  height: 420px;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;   /* center horizontally */
  align-items: center;        /* center vertically */
  text-align: center;         /* center text */
}

/* DARK OVERLAY */
.parallax-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

/* CONTENT BOX */
.parallax-content {
  position: relative;
  max-width: 700px;
  color: #fff; border: 2px solid #567fd2;
  z-index: 2; padding: 40px 20px; border-radius:20px;
}

.parallax-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.parallax-content p {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* CTA BUTTON */
.btn-parallax {
  background: #f37a20;
  padding: 12px 28px;
  color: #fff;
  font-size: 18px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.btn-parallax:hover {
  background: #d56917;
}




.clients-section{
  padding: 70px 0;
  background: #f9fafb;
}

.clients-title{
  text-align:center;
  font-size:30px;
  font-weight:700;
  margin-bottom:40px;
}

/* Slider */
.clients-slider{
  overflow: hidden;
  position: relative;
}

/* Track */
.clients-track{
  display: flex;
  width: max-content;
  animation: scrollClients 35s linear infinite;
}

/* Logos */
.clients-track img{
  height: 70px;

  object-fit: contain;

  opacity: 0.8;
  transition: all .3s ease;
}

.clients-track img:hover{
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

/* Pause on hover */
.clients-slider:hover .clients-track{
  animation-play-state: paused;
}

/* Animation */
@keyframes scrollClients{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-50%);
  }
}

/* Mobile */
@media(max-width:768px){
  .clients-track img{
    height:55px;
    margin:0 25px;
  }
}








/* JOIN COMMUNITY SECTION */
.join-section {
    padding: 40px 0 30px;
    background: #fff;
}

.join-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 25px;
    color: #000;

}

.join-btn {
    background: #f37a20;
    padding: 12px 35px;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

.join-btn:hover {
    background: #d56817;
}

/* PROJECTS SECTION */
.projects-section {
    padding: 50px 0;
    background: #fff;
}

.projects-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.projects-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;

}

.projects-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.projects-gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .projects-gallery {
        grid-template-columns: 1fr;
    }
}









/* SECTION BACKGROUND */
.category-section {
    padding: 50px 0;
    background: #fff;
}

/* HEADING */
.category-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
}

/* GRID */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* BOX */
.cat-box {
    position: relative;
    overflow: hidden;
}

/* IMAGE */
.cat-box img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 6px;
    transition: 0.4s ease;
}

/* HOVER EFFECT */
.cat-box:hover img {
    transform: scale(1.05);
}

/* CATEGORY TEXT */
.cat-name {
    position: absolute;
    left: 15px;
    bottom: 15px;
    color: black;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px 12px;
    border-radius: 4px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .cat-box img {
        height: 260px;
    }
}








/* FOOTER MAIN */
.ac-footer {
   background: linear-gradient(135deg, #0b2c5d 0%, #143f7d 60%, #0b2c5d 100%);
    color: #fff;
    padding-top: 40px;
    font-family: 'Poppins', sans-serif;
}

/* TOP ICON BAR */
.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 25px; background:#143f7d; padding:30px; border-radius: 100px;


}

.f-box {
    display: flex;
    align-items: center;
    gap: 12px; 
}

.f-icon {
    width: 45px;
    height: 45px;
}

/* MIDDLE PRODUCTS SECTION */
.footer-mid {
    padding: 40px 0;
}

.footer-column h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin: 4px 0;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    text-decoration: underline;
    opacity: 0.9;
}

/* SOCIAL ICONS */
.social-icons img {
    width: 28px;
    margin-right: 10px;
}

/* COPYRIGHT BAR */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.3);
    text-align: center;
    padding: 14px 0;
    font-size: 15px;
    background: rgba(0,0,0,0.1);
    margin-top: 20px;
}

.footer-bottom a {
    color: #fff;
    margin-left: 5px;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    .f-box {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-mid {
        text-align: center;
    }
    .footer-column {
        margin-bottom: 25px;
    }
    .footer-column ul li a {
        font-size: 14.5px;
    }
}





.footer-product-area {
    padding: 30px;
}

.footer-title {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* PRODUCT LIST DEFAULT */
.product-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-list li {
  margin-bottom: 8px;
}

.product-list a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.product-list a:hover {
  color: #ff9800;
}

/* 📱 MOBILE VIEW – 2 COLUMNS */
@media (max-width: 575px) {

  .footer-product-area .col-12 {
    width: 100%;
  }

  .product-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 12px;
  }

  .product-list li {
    margin-bottom: 6px;
  }
}












.clients-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    gap: 40px;
    animation: scroll 25s linear infinite;
}

.clients-track img {
    height: 100px;
    width: auto;
    object-fit: contain;

    transition: 0.3s; border: 1px solid #f2f2f2;
}

.clients-track img:hover {
    filter: grayscale(0%);
    transform: scale(1.08);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}




#breadcrum-inner-block {
    padding: 70px 0;
    background-color: #fafafa;
    position: relative;
    text-align: center;
}



.breadcrum-inner-header {
    position: relative;
    z-index: 2;
}

.breadcrum-inner-header h1 {
    color: #000;
    font-size: 42px;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 18px;
}

.breadcrum-inner-header a {
    color: #000;
    font-size: 16px;
    text-decoration: none;
    padding: 0 5px;
}

.breadcrum-inner-header a span {
    font-weight: 600;
    text-decoration: underline;
}

.breadcrum-inner-header a:hover {
    opacity: 0.7;
}

.breadcrum-inner-header i.fa-circle {
    font-size: 6px;
    color: #fff;
    margin: 0 6px;
}







/* PRODUCT GRID MAIN */
/* product image container hover */
.product-grid {
    overflow: hidden;
    border: 1px solid #eee;
    transition: 0.3s ease;
}

.product-grid:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transform: translateY(-6px);
}

.product-image img {
    width: 100%;
    transition: transform 0.4s ease;
}

.product-grid:hover .product-image img {
    transform: scale(1);
}
.product-image {
    position: relative;
}

.product-image .pic-2 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: .4s ease;
}

.product-grid:hover .pic-2 {
    opacity: 1;
}

.product-grid:hover .pic-1 {
    opacity: 0;
}





/* PRODUCT CARD BOX */
.product-grid {
    border: 1px solid #e5e5e5;
    padding: 15px;
    background: #fff;
    transition: 0.3s ease;
    border-radius: 6px;
    margin-bottom: 30px;
}

/* Hover shadow */
.product-grid:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

/* TITLE */
.product-content .title a {
    font-size: 18px;
    font-weight: 600;
    color: #004aad;  /* Popcorn blue style */
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-content .title a:hover {
    color: #ff6f00; /* Orange hover */
}

/* PRICE */
.product-content .price {
    font-size: 15px;
    color: #444;
    font-weight: 500;
    margin-bottom: 8px;
}

/* ENQUIRE BUTTON */
.add-cart {
    display: inline-block;
    padding: 8px 16px;
    background: #ff6f00;
    color: #fff !important;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 5px;
    transition: 0.3s ease;
}

.add-cart:hover {
    background: #e65c00;
}

/* CENTER ALIGN TEXT */
.product-content {
    text-align: left;   /* If you want center: change to text-align:center */
    padding-top: 12px;
}










/* ==========================================
   GLOBAL SECTION SPACING
========================================== */
.section-block {
    padding: 70px 0;
}

.section-light {
    background: #f9f9f9;
}

.section-dark {
    background: #fff;
}

/* ==========================================
   PROFESSIONAL HEADING BLOCK
========================================== */
.about-heading-title {
    position: relative;
    margin-bottom: 35px;
        margin-top: 65px;
    padding-left: 10px; 
}

#featured-service-block{background-color: #f2f2f2; padding-bottom: 70px;}
.about-heading-title h2 {
    font-size: 34px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
}

.about-heading-title h2 span {
    color: #F57C00;
}


#about-company{padding:40px;}
/* ==========================================
   PROFESSIONAL PARAGRAPH
========================================== */
.inner-secon-tl {
    font-size: 17px;
    line-height: 1.75;
    color: #555;
    margin-top: 15px;
}

/* ==========================================
   RIGHT & LEFT IMAGES
========================================== */
.user-lt-above img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.user-lt-above img:hover {
    transform: scale(1.02);
}

/* ==========================================
   FEATURED SERVICE BLOCK (Premium)
========================================== */
.service-item-fearured {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #eee;
    transition: 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);

}

.service-item-fearured:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.service-item-fearured h3 {
    margin-top: 20px;
    font-size: 19px;
    font-weight: 700;
    color: #222;
}

.service-item-fearured p {


    margin-top: 10px;
}

/* Service icons */
.svt-spec-service-icon i {
    font-size: 42px;
    color: #F57C00;
    transition: 0.3s;
}

.service-item-fearured:hover .svt-spec-service-icon i {
    transform: scale(1.2);
}

/* ==========================================
   CLIENTS GRID (Premium Look)
========================================== */
.client-logo-grid img {
    width: 100%;
    padding: 18px;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #fff;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.client-logo-grid img:hover {
    transform: scale(1.06);
    border-color: #F57C00;
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}


/* ==========================================
   RESPONSIVE CLEANUP
========================================== */
@media (max-width: 768px) {
    .about-heading-title h2 {
        font-size: 26px;
    }

    .about-heading-title h1 {
        font-size: 16px;
    }

    .inner-secon-tl {
        font-size: 15px;
    }

    .section-block {
        padding: 40px 0;
    }

    .service-item-fearured {
        min-height: auto;
        margin-bottom: 20px;
    }
}





/* =========================
   CLIENT SECTION
========================= */
.clients-section {
    padding: 60px 0;

}

.clients-heading h1 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.clients-heading p {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
    line-height: 1.6;
}

/* Decorative lines */
.decor-line {
    width: 60px;
    height: 3px;
    background: #f57c00;
    margin: 10px auto;
    border-radius: 10px;
}

.decor-icons i {
    font-size: 10px;
    color: #f57c00;
    margin: 0 4px;
}

/* =========================
   CLIENT LOGO GRID
========================= */
.clients-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
    align-items: center;
}

.client-logo {
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s ease;
}

.client-logo img {
    width: 100%;
    max-height: 80px;
    object-fit: contain;
    opacity: 0.85;
    transition: 0.3s ease-in-out;
}

.client-logo:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.client-logo:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Mobile Fix */
@media (max-width: 576px) {
    .clients-heading h1 {
        font-size: 26px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}











.gallery-box {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    cursor: pointer;
}

.gallery-box img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .3s;
}

.gallery-box:hover img {
    transform: scale(1.08);
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

#lightbox-img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

/* Buttons */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    font-size: 45px;
    color: white;
    cursor: pointer;
    padding: 10px;
}

.prev-btn { left: 30px; }
.next-btn { right: 30px; }

.prev-btn:hover,
.next-btn:hover { color: #ff9800; }









.section-padding {
    padding: 70px 0;
    background: #f8f9fc;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
}
.section-title span {
    color: #ff7a00;
}
.divider {
    width: 80px;
    height: 4px;
    background: #ff7a00;
    margin: 12px auto 0;
    border-radius: 10px;
}

/* CONTACT CARDS */
.contact-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: .3s ease;
}
.contact-card a{color:#111; text-decoration: none;}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.contact-card .icon {
    width: 50px;
    margin-bottom: 12px;
}

/* FORM BOX */
.attractive-form {
    background: #ffffffd9;
    padding: 40px;
    border-radius: 18px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}
.form-header h3 {
    margin: 0;
    font-weight: 700;
}
.form-header p {
    color: #555;
}

/* INPUT FIELDS WITH ICONS */
.input-group {
    position: relative;
    margin-bottom: 18px;
}
.input-icon {
    position: absolute;
    top: 16px;
    left: 14px;
    font-size: 18px;
    color: #888;
}
.form-control {
    height: 50px;
    padding-left: 45px;
    border-radius: 12px;
}
.textarea-box .input-icon {
    top: 18px;
}
.textarea {
    height: 120px;
    padding-top: 14px;
}

/* BUTTONS */
.button-group {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}
.btn-orange {
    background: #ff7a00;
    color: #fff;
    padding: 12px 28px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
}
.btn-orange:hover { background: #e46a00; }
.btn-light {
    background: #ddd;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
}

/* MAP FULL WIDTH */
.map-box iframe {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}





/* Floating Icons Container */
.floating-icons {
    position: fixed;
    left: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999999;
}

/* Common Icon Styling */
.float-icon {
    width: 55px;
    height: 55px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: 0.3s ease;
    border: 2px solid #f1f1f1;
}

.float-icon:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* CALL ICON */
.call-icon {
    background: #ff7a00;
    color: #fff;
}
.call-icon:hover {
    background: #e86a00;
}

/* WHATSAPP ICON */
.whatsapp-icon {
    background: #25D366;
    color: #fff;
}
.whatsapp-icon:hover {
    background: #1eb653;
}







/* Scroll to Top Button */
#scrollTopBtn {
    position: fixed;
    right: 25px;
    bottom: 30px;
    width: 55px;
    height: 55px;
    background: #ff7a00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    z-index: 999999;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
}

#scrollTopBtn:hover {
    transform: scale(1.15);
    background: #e66a00;
}





/* PROJECTS */
.projects-section {
  padding: 90px 0;
  background: linear-gradient(180deg,#f7f9fc,#fff);
}

.projects-title {
  text-align:center;
  font-size:42px;
  font-weight:800;
  color:#0b2c5d;
}

.projects-text {
  max-width:760px;
  margin:12px auto 45px;
  text-align:center;
  color:#555;
}

/* SLIDER */
.projects-slider {
  position:relative;
  overflow:hidden;
}

.projects-track {
  display:flex;
  gap:24px;
  transition:.6s ease;
}

.project-card {
  min-width:320px;
  height:230px;
  border-radius:18px;
  overflow:hidden;
  cursor:pointer;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.project-card img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s;
}

.project-card:hover img {
  transform:scale(1.12);
}

/* ARROWS */
.proj-nav {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:50%;
  border:none;
  background:#fff;
  font-size:22px;
  cursor:pointer;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
  z-index:10;
}

.proj-nav:hover {
  background:#ff9800;
  color:#fff;
}

.proj-nav.prev { left:-10px; }
.proj-nav.next { right:-10px; }

/* LIGHTBOX */
.lightbox {
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.9);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.lightbox img {
  max-width:85%;
  max-height:85%;
  border-radius:12px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position:absolute;
  color:#fff;
  font-size:40px;
  cursor:pointer;
  user-select:none;
}

.lightbox-close {
  top:20px;
  right:30px;
}

.lightbox-prev {
  left:30px;
  top:50%;
  transform:translateY(-50%);
}

.lightbox-next {
  right:30px;
  top:50%;
  transform:translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-close:hover {
  color:#ff9800;
}












.image-slider {
  width: 100%;
  overflow: hidden;
}



/* RIGHT SIDE BULLETS */
.custom-indicators {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.custom-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.6);
  border: none;
}

.custom-indicators .active {
  background-color: #ff9800;
}

/* arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* mobile */
@media (max-width: 768px) {
  .slider-img {
    height:100%;
  }
.f-icon{display: none;}
  .custom-indicators {
    right: 10px;
  }
}






.help-btn {
  position: fixed;
  right: 24px;
  bottom: 124px;
  background: #25D366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: all 0.3s ease;
}

.help-btn:hover {
  transform: translateY(-3px) scale(1.05);
}

.wa-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.help-text {
  font-size: 15px;
}

/* CHAT BOX */
.chat-box {
  position: fixed;
  right: 25px;
  bottom: 90px;
  width: 320px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  overflow: hidden;
  display: none;
  z-index: 9999;
  animation: slideUp 0.3s ease;
}

/* HEADER */
.chat-header {
  background: #2b2f4b;
  color: #fff;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header p {
  font-size: 12px;
  margin: 0;
  opacity: 0.8;
}

.chat-close {
  cursor: pointer;
  font-size: 20px;
}

/* BODY */
.chat-body {
  padding: 16px;
  background: #f4f6fb;
}

.chat-msg {
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* FOOTER */
.chat-footer {
  padding: 15px;
  text-align: center;
}

.start-chat-btn {
  display: block;
  background: #25D366;
  color: #fff;
  padding: 12px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.start-chat-btn:hover {
  background: #1ebe5d;
}

/* ANIMATION */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .chat-box {
    width: 90%;
    right: 5%;
  }
}




.ac-counter-section {
  position: relative;
  background: url("../images/slider/slide5.jpg") center/cover no-repeat;
  padding: 80px 20px;
  color: #fff;
}

.ac-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.ac-counter-section .container {
  position: relative;
  z-index: 2;
}

.ac-counter-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 50px;
}

.ac-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.ac-counter-box {
  padding: 30px 15px;
  border-radius: 12px;
  background: rgba(0,0,0,0.5);

}

.ac-counter-box span {
  font-size: 42px;
  font-weight: 800;
  color: #ff9c1a;
}

.ac-counter-box p {
  margin-top: 10px;
  font-size: 16px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 992px) {
  .ac-counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .ac-counter-grid {
    grid-template-columns: 1fr;
  }
}









.awards-section {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(
    135deg,
    #0b2c5d 0%,
    #143f7d 50%,
    #0b2c5d 100%
  );
  overflow: hidden;
}

.awards-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}

.awards-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  margin: auto;
  color: #fff;
}

.awards-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  background: rgba(255,255,255,0.15);
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.awards-content h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 15px;
}

.awards-content h2 span {
  color: #f9c74f;
}

.awards-content p {
  font-size: 17px;
  color: #eaeaea;
  max-width: 650px;
  margin: 0 auto 60px;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.award-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.18),
    rgba(255,255,255,0.05)
  );
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  transition: 0.4s ease;
}

.award-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0,0,0,0.35);
}

.award-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}

.award-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #fff;
}

.award-card span {
  font-size: 14px;
  color: #f1f1f1;
}

/* Responsive */
@media (max-width: 768px) {
  .awards-grid {
    grid-template-columns: 1fr;
  }

  .awards-content h2 {
    font-size: 32px;
  }

  .awards-section {
    padding: 80px 20px;
  }
}



.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 10px;
    background: #25D366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 55px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease; padding:10px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}


/* ICON CONTAINER */
.icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    position: relative;
    flex-shrink: 0;
}

/* OUTER RING EFFECT */
.icon-wrap::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    opacity: 0.25;
    transition: 0.3s ease;
}

/* WHATSAPP */
.f-box.whatsapp .icon-wrap {
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}
.f-box.whatsapp .icon-wrap::before {
    background: #25D366;
}

/* CALL */
.f-box.call .icon-wrap {
    background: linear-gradient(135deg, #0d6efd, #084298);

}
.f-box.call .icon-wrap::before {
    background: #0d6efd;
}

/* LOCATION */
.f-box.location .icon-wrap {
    background: linear-gradient(135deg, #f4c430, #cbac0a);
  
}
.f-box.location .icon-wrap::before {
    background: #cbac0a;
}

/* HOVER MICRO-INTERACTION */
.f-box:hover .icon-wrap {
    transform: translateY(-3px) scale(1.05);
}

.f-box:hover .icon-wrap::before {
    inset: -10px;
    opacity: 0.15;
}







.whatsapp-btn {
    background: #25D366 !important;
    color: #fff !important;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-btn i {
    font-size: 18px;
}

.whatsapp-btn:hover {
    background: #1ebe5d !important;
    color: #fff !important;
    transform: translateY(-2px);
}



.client-strip.refined {
    margin: 5px 0 25px;
    padding: 26px 30px;
    background: #fafbfc;              /* very light background */
    border-radius: 10px;
    border: 1px solid #eef1f4;
}

.client-strip.refined h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;                    /* dark classy grey */
}

.client-strip.refined h4 span {
    color: #2563eb;                    /* soft royal blue */
}

.client-strip.refined ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}





.client-strip.refined ul li {
    position: relative;
    padding: 12px 14px 12px 44px;
    font-size: 15px;
    color: #1f2937;                 /* darker text */
    line-height: 1.6;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #eef1f4;
    transition: all 0.25s ease;
}

/* icon-style bullet */
.client-strip.refined ul li::before {
    content: "✓";
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #25D366;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* hover effect – subtle */
.client-strip.refined ul li:hover {
    border-color: #25D366;
    background: #f6fffa;
    transform: translateY(-2px);
}



.client-showcase {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    margin: 60px 0;
    background: linear-gradient(135deg, #f4f9ff, #ffffff);
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,.06);
}

/* BIG STATE CIRCLE */
.state-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 18px 45px rgba(37,99,235,.35);
    flex-shrink: 0;
}

.state-circle span {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

/* SCHOOL LIST */
.school-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.school-item {
    padding: 12px 20px;
    background: #ffffff;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

/* HOVER = DYNAMIC FEEL */
.school-item:hover {
    background: #2563eb;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(37,99,235,.35);
}




.state-animated-wrap {
    text-align: center;
    padding: 30px 30px;

    background: linear-gradient(120deg, #eef9ff, #ffffff, #f0fff4);
    background-size: 300% 300%;
    animation: bgMove 10s ease infinite;
    border-radius: 24px;
}

/* BACKGROUND ANIMATION */
@keyframes bgMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* BIG CENTER CIRCLE */
.state-circle {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f25d1c, #f25d1c);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 60px rgba(22,163,74,.45);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

.state-circle span {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.15;

}

/* SCHOOL LIST */
.school-animated-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.school-animated-list span {
    padding: 14px 24px;
    background: #ffffff;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    animation: floatUp 1s ease forwards;
}

.school-animated-list span:nth-child(1) { animation-delay: .2s; }
.school-animated-list span:nth-child(2) { animation-delay: .4s; }

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.school-animated-list em {
    font-style: normal;
    font-weight: 400;
    color: #6b7280;
    margin-left: 6px;
}
