@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
html, body {
  overflow-x: hidden;
}
body {
  margin: 0;
  /* font-family: "Poppins", sans-serif; */
  font-family: "Inter", sans-serif !important;
  background-color: #f8f9fa;
  scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, h6, p {
  font-family: "Inter", sans-serif !important;
}
button:hover, .allButton:hover 
{
  background: #000;
  background: linear-gradient(90deg, #4B3EA7, #00B2E1);
  transform: translateY(-3px);
}

/* ===== Header ===== */
.main-header {
  /* background: linear-gradient(90deg, #0062ff, #4e54c8); */
  /* background: linear-gradient(90deg, #4B3EA7, #8C2F4E); */
  background: linear-gradient(90deg, #00B2E1, #4B3EA7);
  /* background: #181c24; */
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 1000;
}

.main-header .navbar-brand {
  color: #fff !important;
  letter-spacing: 1px;
}

.main-header .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  margin-left: 1.2rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.main-header .nav-link:hover,
.main-header .nav-link.active,
.main-header .dropdown-item:hover {
  color: #ffe700 !important;
  /* text-decoration: underline; */
}

.main-header .nav-link.active {
  font-weight: 600;
}

/* Dropdown */
.navbar .dropdown-menu {
  background: linear-gradient(120deg, #4e54c8, #8f94fb);
  border: none;
  border-radius: 8px;
}

.dropdown-item {
  color: #fff !important;
  transition: background 0.3s ease;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Sticky Header */
.main-header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  /* background: linear-gradient(90deg, #4e54c8, #8f94fb); */
  /* background: linear-gradient(90deg, #8A7FE0, #D36E93); */
  background: linear-gradient(90deg, #33C9EE, #6A5CC3);
  /* background: #181c24; */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.5s ease forwards;
  /* padding: 0.5rem 0 !important; */
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}
.book_a_demo{
  border: 1px solid #fff;
  border-radius: 25px;
  padding: 10px 20px !important;
}
.book_a_demo:hover{
  /* background: linear-gradient(90deg, #33C9EE, #6A5CC3); */
  /* color: yellow !important;
  border: 1px solid transparent;
  border-radius: 25px;
  background: 
    linear-gradient(90deg, #33C9EE, #6A5CC3) border-box;
  -webkit-mask: 
    linear-gradient(#fff 0 0) padding-box, 
    linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: xor;
          mask-composite: exclude; */
}

/* Hero */
.hero-section {
  height: 85vh;
  /* background: linear-gradient(120deg, #4e54c8, #8f94fb); */
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

/* Page header */
.page-header {
  padding: 6rem 0 3rem;
  background: linear-gradient(120deg, #4e54c8, #8f94fb);
  color: #fff;
  text-align: center;
}

/* Footer */
footer {
  background-color: #1b1b1b;
  color: #ccc;
  text-align: center;
  padding: 1rem 0;
}

/* Scroll-to-top button */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(90deg, #4e54c8, #8f94fb);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  width: 45px;
  height: 45px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  z-index: 999;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
}

.scroll-top-btn:hover {
  background: linear-gradient(90deg, #8f94fb, #4e54c8);
  transform: scale(1.1);
}

/****Home Page****/
/* ===== Carousel Styling ===== */
.hero-section .carousel {
  width: 100%;
}

.hero-section .carousel-item {
  position: relative;
  width: 100%;
  height: 85vh;
  /* full screen height; change to 500px if you prefer shorter */
  overflow: hidden;
}

.hero-section .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transform: scale(1);
  transition: transform 6s ease;
  /* subtle zoom if desired */
}

.hero-section .carousel-item.active img {
  transform: scale(1.05);
  /* gentle zoom for cinematic feel */
}

/* ===== Smooth Fade Transition ===== */
.hero-section .carousel.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 1.2s;
  transition-timing-function: ease-in-out;
}

.hero-section .carousel.carousel-fade .carousel-item.active,
.hero-section .carousel.carousel-fade .carousel-item-next.carousel-item-start,
.hero-section .carousel.carousel-fade .carousel-item-prev.carousel-item-end {
  opacity: 1;
  z-index: 1;
}

/* ===== Caption Styling ===== */
.hero-section .carousel-caption {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 12px;
  padding: 25px 35px;
  max-width: 700px;
  width: 90%;
  opacity: 0;
  transform: translate(-50%, 30px);
  transition: all 1s ease;
}

.hero-section .carousel-item.active .carousel-caption {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Staggered text animation */
.hero-section .carousel-caption h5 {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.8s ease;
  transition-delay: 0.3s;
}

.hero-section .carousel-caption p {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
  transition-delay: 0.8s;
}

.hero-section .carousel-item.active .carousel-caption h5 {
  opacity: 1;
  transform: translateY(0);
}

.hero-section .carousel-item.active .carousel-caption p {
  opacity: 1;
  transform: translateY(0);
}
.hero-section .carousel-indicators button,  .hero-section .carousel-indicators button.active 
{
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 0;
}
.hero-section .carousel-indicators button.active {
  background: linear-gradient(90deg, #33C9EE, #6A5CC3);
}
/* .hero-section .carousel-control-next, .hero-section .carousel-control-prev 
{
  width: 4%;
  height: 10%;
  top: 50%;
  border-radius: 50%;
  background: #000;
  bottom: auto;
}
.hero-section .carousel-control-next {
  right: 2%;
}
.hero-section .carousel-control-prev {
  left: 2%;
} */

/* ===== Explore Button ===== */
.explore-btn {
  margin-top: 20px;
  padding: 10px 28px;
  background: linear-gradient(90deg, #00B2E1, #4B3EA7);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
}

.explore-btn:hover {
  background: linear-gradient(90deg, #33C9EE, #6A5CC3);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/********/
.allHeading {
  /* color: #012169; */
  color: #005baa;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
}
.allButton {
  background: linear-gradient(90deg, #00B2E1, #4B3EA7);
  color: #fff;
  border: none;
  padding: 13px 35px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: background 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  text-align: center;
}
.about_section {
  background-color: #ffffff;
}
.about_section h2 {

}
.about_section img {
  height: 350px;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/****************/
/* ===== Section Styling ===== */
    .why-choose {
      position: relative;
      /* background: linear-gradient(120deg, #e0f7fa, #eef3ff, #f3e5f5); */
      /* background: linear-gradient(90deg, #c9f3ff, #d6d2f7); */
      background: linear-gradient(90deg, #f2fcff, #f3f0ff);
      background-size: 300% 300%;
      animation: gradientShift 15s ease infinite;
      padding: 80px 0;
      overflow: hidden;
    }

    /* Animated Gradient Keyframes */
    @keyframes gradientShift {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }

    .why-choose::before,
    .why-choose::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      background: rgba(75, 62, 167, 0.1);
      animation: float 10s ease-in-out infinite;
      z-index: 0;
    }

    .why-choose::before {
      width: 180px;
      height: 180px;
      top: 10%;
      left: 5%;
    }

    .why-choose::after {
      width: 80px;
      height: 80px;
      bottom: 0%;
      right: 8%;
      animation-delay: 4s;
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-30px);
      }
    }

    /* ===== Title ===== */
    .section-title {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
      z-index: 1;
    }

    /* .section-title h2 {
      font-weight: 700;
      font-size: 2.2rem;
      background: linear-gradient(90deg, #00B2E1, #4B3EA7);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 10px;
    } */

    /* .section-title p {
      color: #555;
      font-size: 1rem;
    } */

    /* ===== Card Styling ===== */
    .choose-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      text-align: center;
      padding: 40px 30px;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      z-index: 1;
    }

    .choose-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, rgba(0, 178, 225, 0.15), rgba(75, 62, 167, 0.15));
      transition: all 0.5s ease;
      z-index: 0;
    }

    .choose-card:hover::before {
      left: 0;
    }

    .choose-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }

    .choose-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px auto;
      background: linear-gradient(135deg, #00B2E1, #4B3EA7);
      color: #fff;
      font-size: 2rem;
      transition: all 0.4s ease;
      z-index: 1;
      position: relative;
      flex-shrink: 0;
    }

    .choose-card:hover .choose-icon {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .choose-card h5 {
      font-weight: 600;
      font-size: 1.2rem;
      margin-bottom: 12px;
      /* color: #333; */
      color: #005baa;
    }

    .choose-card p {
      font-size: 0.95rem;
      color: #666;
      line-height: 1.6;
      flex-grow: 1;
    }

    /* ===== Responsive ===== */
    @media (max-width: 767px) {
      .choose-card {
        margin-bottom: 25px;
      }
    }
  /*******CTA Section*********/
  /* ===== CTA Section ===== */
    .cta-section {
      position: relative;
      overflow: hidden;
      text-align: center;
      color: #fff;
      padding: 100px 20px; /* Reduced height */
      height: 40vh; /* Keep responsive height */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Background image with parallax effect */
    .cta-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 120%;
      background: url("https://images.unsplash.com/photo-1531297484001-80022131f5a1?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat fixed;
      transform: translateZ(0);
      z-index: 0;
    }

    /* Gradient overlay */
    .cta-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, rgba(0,178,225,0.85), rgba(75,62,167,0.85));
      z-index: 1;
    }

    /* Content */
    .cta-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
      margin: 0 auto;
    }

    /* Sequential fade-in animations */
    .cta-content h2,
    .cta-content p,
    .cta-content a {
      opacity: 0;
      transform: translateY(25px);
      animation: fadeUp 1s ease forwards;
    }

    .cta-content h2 {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 10px;
      animation-delay: 0.3s;
    }

    .cta-content p {
      font-size: 1.05rem;
      margin-bottom: 25px;
      animation-delay: 0.8s;
    }

    .cta-content a {
      animation-delay: 1.2s;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(25px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Button */
    .cta-btn {
      background: #fff;
      color: #4B3EA7;
      font-weight: 600;
      padding: 12px 32px;
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .cta-btn:hover {
      background: #4B3EA7;
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .cta-section {
        height: auto;
        padding: 80px 20px;
      }
      .cta-content h2 {
        font-size: 1.8rem;
      }
      .cta-content p {
        font-size: 1rem;
      }
    }
  /***********End******************/
  /*******Footer Section**********/
  .top_footer, .bottom_footer {
    background: #181c24;
  }
  .top_footer h5 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
  }
  .top_footer .quickLinks li, .followUs li
  {
    list-style: none;
  }
  .top_footer .quickLinks li a {
    color: #b0bec5;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-bottom: 5px;
    font-size: 14px;
  }
  .top_footer .quickLinks li a:hover {
    color: #ffe700;
  }
  .top_footer .followUs li {
    display: inline-block;
    margin-right: 10px;
    text-align: center;
    /* background: #fff; */
    border-radius: 50%;
  }
  .top_footer .followUs li a {
    display: block;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 3px 0px;
    /* color: #000; */
    font-size: 25px;
  }

  .top_footer .followUs li a:hover {
    background: linear-gradient(90deg, #33C9EE, #6A5CC3);
  }
  .top_footer .followUs li a:hover i {
    color: #fff;
  }
  .top_footer p, .bottom_footer p, 
  .contact_info i, .contact_info span 
  {
    color: #b0bec5;
    font-size: 13px;
  }
  .bottom_footer {
    border-top: 1px solid #232a36;
  }
  .bottom_footer p span {
    color: #ffe700;
  }

  /********Uniform Category Swiper Slider*********/
  .Uniform_Categories {
    background: #f8f9fa;
  }
  .Uniform_Categories .swiper {
      width: 100%;
      padding: 60px 0;
    }

    .Uniform_Categories .swiper-slide {
      display: flex;
      justify-content: center;
    }

    .Uniform_Categories .card {
      /* width: 100%;
      max-width: 280px; */
      border: none;
      border-radius: 12px;
      overflow: hidden;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .Uniform_Categories .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .Uniform_Categories .card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .Uniform_Categories .card-body {
      text-align: center;
      padding: 15px;
    }

    .Uniform_Categories .card-body h5 {
      /* color: #4B3EA7; */
      color: #005baa;
      font-weight: 600;
      font-size: 1.1rem;
      height: 42px;
    }

    .Uniform_Categories .card-body p {
      font-size: 0.9rem;
      color: #555;
      margin: 0;
      /* height: 86px; */
      /* overflow: hidden; */
    }

    .swiper-pagination-bullet {
      background-color: #005baa;
      opacity: 0.8;
    }

    .Uniform_Categories .swiper-button-next,
    .Uniform_Categories .swiper-button-prev {
      /* color: #4B3EA7; */
      color: #005baa;
    }

    /******Category section Vertical Accordion Start******/
     /* Tabs styling */
    .category_section .nav-pills .nav-link {
      border-radius: 0.5rem;
      margin-bottom: 10px;
      padding: 12px 18px;
      font-weight: 500;
      background: #f1f1f1;
      color: #333;
      transition: 0.3s ease;
      border: 1px solid #dee2e6;
    }

    .category_section .nav-pills .nav-link:hover {
      background: #e6e6e6;
    }

    /* Active tab with your gradient */
    .category_section .nav-pills .nav-link.active {
      background: linear-gradient(90deg, #00B2E1, #4B3EA7);
      color: #fff !important;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      border: none;
    }

    /* Smooth content card */
    .category_section .tab-content {
      padding: 20px;
      background: #ffffff;
      border-radius: 10px;
      border: 1px solid #eee;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    }
    /* Smooth Fade + Slide Animation for Tab Content */
    .category_section .tab-pane {
      opacity: 0;
      transform: translateY(40px) scale(0.98);
      transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .category_section .tab-pane.show.active {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .category_section .tab-content .tab-pane  img{
      height: 280px;
      object-fit: contain;
      border: none;
      /* animation: fadeInContent 0.5s ease; */
    }
  /********End Uniform Category Swiper Slider*********/

  /********Logo Section Slider*********/
  .client-section {
      background: #f9f9f9;
      padding: 60px 0;
    }
    .client-logo {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      padding: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .client-logo img {
      max-height: 60px;
      width: auto;
      opacity: 0.8;
      transition: opacity 0.3s ease;
      width: 100%;
    }
    .client-logo:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    .client-logo:hover img {
      opacity: 1;
    }

.our_brand_logo {
    position: relative;
    /* padding: 20px 0; */
    overflow: hidden;
}
.our_brand_logo .logo_items {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.our_brand_logo .logo_items a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
}

.our_brand_logo .logo_items a img {
    height: 125px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    /* filter: grayscale(100%);
    transition: filter 0.3s ease; */
}

/* .our_brand_logo .logo_items img:hover {
    filter: grayscale(0%);
  } */
@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}
  /********Logo Section Slider*********/

/********Testimonials Section Starts**********/
.testimonials_section {
  background: linear-gradient(90deg, #e0e7ff 60%, #f0fdfa 100%);
}
.testimonials_section .swiper-slide {
  display: flex;
  height: auto;                 /* important */
  justify-content: center;
}

.testimonials_section .testimonial-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 380px;
  text-align: center;
  transition: 0.3s ease;

  /* equal height rules */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
}

.testimonials_section .testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.testimonials_section .img-box {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}
.testimonials_section .client-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #4B3EA7;
}

.testimonials_section .testimonial-card p {
  font-size: 15px;
  color: #333;
  flex-grow: 1;                  /* makes text area flexible */
  margin-bottom: 15px;
  font-style: italic;
  text-align: left;
}

.testimonials_section .testimonial-card .author {
  color: #0056D2;
  display: block;
  font-weight: 600;
  margin-top: 10px;
  text-align: left;
}
/******Testimonials Section End*******/
/******Case Study Section Start*******/
.case_stydy {
  background: url('../images/boy-hugging-girls-near-school.jpg') center/cover no-repeat fixed;
  background-color: #000;
  /* opacity: 0.6; */
  height: 300px;
}
.case_stydy p {
  color: #fff;
}
.case_stydy .case_stydy_overlay {
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  content: "";
  height: 100%;
  opacity: 0.6;
}
.case_study_table {
  border: 1px solid #ccc;
}
.case_study_table th, .case_study_table td {
  padding: 10px 10px;
  border: 1px solid #ccc;
}
/******Case Study Section End*******/

/******Get A Quote Starts*******/
  .get_a_quote.offcanvas {
    background: #f8f9fa;
  }
  .get_a_quote .offcanvas-header {
    background: linear-gradient(90deg, #00B2E1, #4B3EA7);
    align-items: unset;
  }
  .get_a_quote .offcanvas-title {
    font-weight: 700;
    font-size: 1.4rem;
  }
  .get_a_quote .btn-close {
    transform: none;
    background-image: none;
  }
  .get_a_quote .btn-close:hover {
    background: none !important;
  }
  .get_a_quote .btn-close i {
    font-size: 20px;
  }
  /* Upload Preview Box */
  .get_a_quote #uploadPreview {
    width: 120px;
    height: 120px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 10px;
    border: 2px dashed #6A5CC3;
    background: #f3f3f3;
    padding: 5px;
    transition: 0.3s ease;
  }
  .get_a_quote #uploadPreview:hover {
    transform: scale(1.05);
    border-color: #33C9EE;
  }
/******Get A Quote End*******/

/******Design Studio Section******/
.design_studio {
  /* background: linear-gradient(90deg, #eefbff, #f1efff); */
  background: linear-gradient(90deg, #f2fcff, #f3f0ff);
}
.design_studio button:hover {
  color: #fff !important;
}
/******Design Studio Section******/
/*******Segment Section Start********/
/* Segment Cards */
  .Segment_section .segment-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 300px;
    cursor: pointer;
    transition: transform .3s ease;
  }

  .Segment_section .segment-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
  }

  .Segment_section .segment-card:hover img {
    transform: scale(1.1);
  }

  .Segment_section .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #00B2E1cc, #4B3EA7cc);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: .3s ease;
    padding: 20px;
  }

  .Segment_section .segment-card:hover .overlay {
    opacity: 1;
  }

  .Segment_section .overlay h4 {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
  }
/******Segment Section End********/

/******Blog Section********/
.blog_section {
  background: rgba(75, 62, 167, 0.1);
}
.blog_section .card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}
.blog_section .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
.blog_section .card img {
  border-radius: 16px 16px 0 0;
  /* height: 200px;
  object-fit: cover; */
}
.blog_section .card-title {
  color: #005baa;
  font-size: 19px;
  /* min-height: 70px; */
}
/* .blog_section .card-text {
  min-height: 100px;
} */
 .blog_details_section ul li {
  list-style: disc;
 }
/*****Blog Section End******/
/******FAQ Section Start*******/
/* .faq_section .faq-header {
  background: linear-gradient(90deg, #00B2E1, #4B3EA7);
  padding: 70px 0;
  text-align: center;
  color: #fff;
}

.faq_section .faq-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
} */

.faq_section .faq-section {
  padding: 60px 0;
}
.faq_section .accordion-button:hover {
  color: #fff !important;
}

.faq_section .accordion-button:focus {
  box-shadow: none;
}
.faq_section .accordion-button {
  background-color: #f1f5ff;
  color: #4B3EA7;
}

.faq_section .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, #00B2E1, #4B3EA7);
  color: #fff;
  /* background-color: #f1f5ff;
  color: #4B3EA7; */
  font-weight: 600;
}

.faq_section .accordion-body {
  background: #fff;
  border-left: 3px solid #4B3EA7;
  border-radius: 0 0 6px 6px;
}
/******FAQ Section End*******/
/*****Solutions Page Starts here******/
.solutions_section .banner-section {
    position: relative;
    width: 100%;
    height: 30vh;
    min-height: 400px;
    background-image:
        url('../images/banner/children-celebrating-indian-republic-day.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 20px; */
}

.solutions_section .banner-content {
    color: white;
    text-align: center;
    max-width: 800px;
    background: rgba(128, 127, 127, 0.45);
    padding: 20px 30px;
    border-radius: 10px;
}

.solutions_section .banner-content h1 {
    font-size: 30px;
    font-weight: 700;
}

.solutions_section .banner-content p {
    font-size: 16px;
    line-height: 1.6;
}


@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* .ervice-card */

.solutions_section .service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.solutions_section .service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    border-color: rgba(102, 126, 234, 0.5);
}

.solutions_section .service-icon {
    font-size: 40px;
    display: block;
    margin: 0 auto;
    text-align: center;
    color: #007bff;
}

.solutions_section .service-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 8px;
}

.solutions_section .service-subtitle {
    font-weight: 500;
    color: #2b2b2c;
    font-size: 1.1rem;
    margin-bottom: 15px;
    min-height: 52px;
}

.solutions_section .service-card p {
    color: #080808;
    line-height: 1.2;
    text-align: justify;
}

/* Modal Styling */
.solutions_section .modal-content {
    border-radius: 25px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.solutions_section .modal-header {
    background: linear-gradient(90deg, #00B2E1cc, #4B3EA7cc);
    color: white;
    border: none;
    padding: 10px 20px;
}

.solutions_section .modal-title {
    font-weight: 500;
    font-size: 24px;
}

.solutions_section .modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.solutions_section .modal-body {
    padding: 20px;
    max-height: 70vh;
    overflow-y: auto;
}

.solutions_section .modal-body strong {
    color: #667eea;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 15px;
    margin-top: 20px;
}

.solutions_section .modal-body strong:first-child {
    margin-top: 0;
}

.solutions_section .modal-body ul {
    list-style: none;
    padding: 0;
}

.solutions_section .modal-body li {
    padding: 2px 0 10px 35px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.solutions_section .modal-body li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.solutions_section .modal-btn {
    font-size: 1rem;
    font-weight: 600;
    color: #007bff;
    background: transparent;
    outline: none;
    border: 0;
}

/* quality-section */

.solutions_section .quality-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.solutions_section .quality-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.solutions_section .quality-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.solutions_section .quality-content {
    max-width: 550px;
}

.solutions_section .quality-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.solutions_section .quality-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #444;
}

/* cta-banner */
.solutions_section .cta-banner {
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
    margin-top: 50px;
    background: linear-gradient(rgba(114, 116, 238, 0.55), rgba(66, 64, 216, 0.55)),
        url('../images/banner/images.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
}

.solutions_section .cta-inner h3 {
    font-size: 32px;
    font-weight: 700;
}

.solutions_section .cta-inner p {
    font-size: 18px;
    margin-bottom: 20px;
}

.solutions_section .cta-btn {
    background: linear-gradient(90deg, #00B2E1cc, #4B3EA7cc);
    border: none;
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
}

.solutions_section .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/*********End Solutions***********/
/*****About us Starts******/
.aboutUs_section .hero_banner img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.aboutUs_section .section-title {
  font-weight: 700;
  margin-bottom: 30px;
}

.aboutUs_section .mission-vision-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s;
}

.aboutUs_section .mission-vision-card:hover {
  transform: translateY(-10px);
}

.aboutUs_section .mission-vision-card i {
  font-size: 3rem;
  margin-bottom: 20px;
}

.aboutUs_section .mission-card {
  border-top: 4px solid #667eea;
}

.aboutUs_section .vision-card {
  border-top: 4px solid #764ba2;
}

.aboutUs_section .value-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s;
}

.aboutUs_section .value-card:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.aboutUs_section .value-card i {
  font-size: 2rem;
}

.aboutUs_section .flip-card {
  background-color: transparent;
  width: 90%;
  height: 250px;
  perspective: 1000px;
  margin-bottom: 20px;
}

.aboutUs_section .mission-vision-card {
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aboutUs_section .mission-vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.aboutUs_section .mission-card {
  border-top: 4px solid #667eea;
  /* corporate blue */
}

.aboutUs_section .vision-card {
  border-top: 4px solid #764ba2;
  /* accent purple */
}

/* Gradient header for all modals */
.aboutUs_section .modal-header {
  background: linear-gradient(90deg, #667eea, #764ba2);
  color: #fff;
  padding-left: 2rem;
  padding-right: 2rem;
}

.aboutUs_section .modal-header .modal-title {
  font-weight: 600;
}

.aboutUs_section .modal-header .btn-close {
  filter: invert(1);
  /* makes close button white */
}

.aboutUs_section .modal-body {
  padding: 1.5rem 2rem;
}

.aboutUs_section .section-title {
  font-weight: 700;
  text-transform: uppercase;
  color: #333;
}

.aboutUs_section .table {
  border-radius: 8px;
  overflow: hidden;
}

.aboutUs_section .table thead {
  background: linear-gradient(90deg, #667eea, #764ba2);
  color: #fff;
}

.aboutUs_section .table td,
.aboutUs_section .table th {
  vertical-align: middle;
}

.aboutUs_section .table tbody tr:hover {
  background-color: #f8f9fa;
  transition: background-color 0.3s ease;
}

/* html {
  font-size: 16px !important;
} */


.aboutUs_section .flip-card {
  background-color: transparent;
  width: 100%;
  height: 180px;
  /* reduced height */
  perspective: 1000px;
  margin-bottom: 20px;
}

.aboutUs_section .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.aboutUs_section .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.aboutUs_section .flip-card-front,
.aboutUs_section .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  /* reduced padding */
}

.aboutUs_section .flip-card-front {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 1rem;
  /* slightly smaller text */
}

.aboutUs_section .flip-card-back {
  background: #f8f9fa;
  color: #333;
  transform: rotateY(180deg);
  flex-direction: column;
  font-size: 0.95rem;
  /* compact text size */
}

/* Custom column for 5 equal cards */
/* @media (min-width: 992px) {
  .col-lg-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
  }
} */

.aboutUs_section .value-card {
  cursor: pointer;
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aboutUs_section .value-card:hover {
  transform: translateY(-5px);
}

.aboutUs_section .cta_section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.aboutUs_section .cta_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.aboutUs_section .cta_section .container {
  position: relative;
  z-index: 1;
}

.aboutUs_section .btn-cta-primary {
  background: white;
  color: #764ba2;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.aboutUs_section .btn-cta-primary:hover {
  background: #ffc107;
  color: #764ba2;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.aboutUs_section .btn-cta-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.aboutUs_section .btn-cta-outline:hover {
  background: white;
  color: #764ba2;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.aboutUs_section .cta_section h2 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.aboutUs_section .cta_section .lead {
  font-size: 1.3rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
/*******About Us End********/
/******Sustainability Starts******/
/* Banner Section */
.sustainability_section .banner-section {
    position: relative;
    width: 100%;
    height: 30vh;
    min-height: 150px;
    background-image: url('../images/Sustainabilitybanner.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sustainability_section .banner-content {
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.45);
    padding: 10px 30px;
    border-radius: 10px;
}

.sustainability_section .banner-content h2 {
    font-size: 32px;
    font-weight: 600;
}

.sustainability_section .sustain-banner {
    background: #f5fff6;
    padding: 40px 0;
}

.sustainability_section .modal-header {
    background: linear-gradient(90deg, #00B2E1cc, #4B3EA7cc);
    color: white;
    border: none;
    padding: 10px 20px;
}

.sustainability_section .modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.sustainability_section .modal-card {
    background: linear-gradient(90deg, rgb(0, 178, 225), rgb(75, 62, 167));
    color: #e8f5e9;
}

/* Partnership Section */
.sustainability_section .partnership-section {
    position: relative;
    background: url('../images/Jointhemovement.png') center/cover no-repeat;
    color: white;
}

.sustainability_section .partnership-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.sustainability_section .partnership-section .container {
    position: relative;
    z-index: 2;
}

.sustainability_section .contact-card i {
    color: #720404;
}
/*****Sustainability End*******/
/********Design Studio Starts**********/
.Design_Studio_section .hero-section { 
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1512436991641-6745cdb1723f'); 
  background-size: cover; 
  background-position: center; 
  padding: 40px 0; 
  color: #fff; 
  text-align: center; 
  height: 40vh;
}
.Design_Studio_section .section-title { 
  font-size: 32px; 
  font-weight: 700; 
  margin-bottom: 15px; 
}
.Design_Studio_section .line { 
  width: 60px; 
  height: 4px; 
  /* background: #f4b400;  */
  background: linear-gradient(90deg, #33C9EE, #6A5CC3);
  margin: 10px auto 20px; 
  border-radius: 3px; 
}
.Design_Studio_section .icon-box { 
  background: #fff; 
  padding: 30px; 
  border-radius: 10px; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); 
  height: 100%; 
}
.Design_Studio_section .process-step { 
  border-left: 4px solid #6A5CC3; 
  padding-left: 20px; 
}
.Design_Studio_section .gallery img { 
  width: 100%; 
  border-radius: 10px; 
  object-fit: cover; 
  height: 230px; 
}
.Design_Studio_section .cta-section { 
  /* background:#1a1a1a;  */
  padding:60px; 
  color:#000; 
  text-align:center; 
  overflow: auto;
  display: block;
  height: auto;
}
.Design_Studio_section .cta-section a { 
  margin: 10px; 
  /* border: 1px solid #000; */
  color: #fff;
  background: linear-gradient(90deg, #33C9EE, #6A5CC3);;
}
.Design_Studio_section .hero-section a:hover { 
  color: #fff; 
  text-decoration: none; 
  background: linear-gradient(90deg, #6A5CC3, #33C9EE);
  border: 1px solid #6A5CC3;
}
/**********Design Studio End************/
.terms_conditions_section p 
{
  padding-left: 20px;
}
 .terms_conditions_section ul
{
  padding-left: 40px;
}

/*******Contact Section Page*********/
.contact_section .contact-wrapper {
  max-width: 1100px;
  margin: auto;
}

.contact_section .contact-card {
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.contact_section .gradient-text {
  font-weight: 700;
  font-size: 32px;
  background: linear-gradient(90deg, #00B2E1, #4B3EA7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact_section .form-control:focus {
  border-color: #4B3EA7;
  box-shadow: 0 0 0 0.2rem rgba(75, 62, 167, 0.25);
}

.contact_section .btn-custom {
  background: linear-gradient(90deg, #00B2E1, #4B3EA7);
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s;
}

.contact_section .btn-custom:hover {
  opacity: 0.9;
  color: #fff;
}

/* RIGHT SIDE CARDS */
.contact_section .info-card {
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: 0.3s;
}

.contact_section .info-card:hover {
  transform: translateY(-4px);
}

.contact_section .info-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: auto;
  background: linear-gradient(90deg, #00B2E1, #4B3EA7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  margin-bottom: 15px;
}
.contact_section .map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/********Contact Section End***********/

/*******Media Query Starts Here*******/
/* ===== Responsive ===== */
@media (max-width: 991px) {
  .main-header .navbar-collapse {
    background: #fff;
    /* padding: 1rem; */
    border-radius: 10px;
    position: absolute;
    width: 100%;
    top: 100%;
    /* z-index: 9; */
    box-shadow: 0px 0px 8px #d1d1d1;
  }
  .main-header .nav-link {
    padding: 10px 1rem;
    margin: 0.6rem 0;
    color: #000 !important;
  }
  .main-header .nav-link.active,
  .main-header .nav-link:hover {
    background: #0062ff !important;
    text-decoration: none;
  }
}
@media (max-width: 768px) {
  .hero-section .carousel-item {
    height: 60vh;
  }
  .hero-section .carousel-caption {
    padding: 15px 20px;
    bottom: 10%;
  }
  .hero-section .carousel-caption h5 {
    font-size: 1.2rem;
  }
  .hero-section .carousel-caption p {
    font-size: 0.9rem;
  }
  .Uniform_Categories .card img {
    height: 180px;
  }
}
@media(max-width: 600px) {
  .contact_section .map-container {
      height: 300px;
  }
}
/*******Media Query End Here*******/
