:root {
  --bg-primary-color: #27548A;
  --bg-secondary-color: #102047;
  --heading-color: #27548A;
  --text-color: #27548A;
}
.costom-bg{
  color: #0f2049;
}
body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
}



.bg-primary-custom {
  background-color: var(--bg-primary-color) !important;
}

.bg-secondary-custom {
  background-color: var(--bg-secondary-color) !important;
}

.text-primary-custom {
  color: var(--bg-primary-color) !important;
}

/* Top Bar */
.top-bar {
  background-color: var(--bg-secondary-color);
  font-size: 14px;
}

.top-bar .icon {
  color: var(--bg-primary-color);
  margin-right: 5px;
}

.top-bar div {
  color: var(--bg-primary-color);
}

/* Sticky Header */
.sticky-top {
  z-index: 1030;
}

/* Navbar */
.navbar {
  height: 85px;
}

.navbar-nav {
  gap: 20px;
}

.navbar-nav .nav-link {
  color: var(--text-color) !important;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 10px;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .dropdown-menu a:hover {
  background-color: var(--text-color);
  color: #fff !important;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.navbar-nav .nav-link.active {
    font-weight: 700;
    border: 2px solid #27548A;
}
.dropdown-menu {
  border: none;
  margin-top: 0;
}

.dropdown-item {
  color: var(--text-color);
}

.dropdown-item:hover {
  background-color: #fff;
  color: var(--bg-primary-color) !important;
}

.hover-dropdown:hover > .dropdown-menu {
  display: block;
  margin-top: 0;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0.1rem;
  display: none;
  position: absolute;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* Responsive Navbar Fix */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--bg-primary-color);
    padding: 15px;
  }

  .dropdown-submenu > .dropdown-menu {
    position: static;
    margin-left: 1rem;
    display: none !important;
  }

  .dropdown-submenu.show > .dropdown-menu {
    display: block !important;
  }

  .dropdown-menu {
    position: static;
  }
}

/* Carousel */

  .carousel-inner img {
  /* height: 80vh; */
  object-fit: cover;
  object-position: center;
}

  .carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
  }



  .carousel-caption h2,
  .carousel-caption p,
  .carousel-caption a {
    opacity: 0;
  }

  .animated {
    opacity: 1 !important;
  }

  @media (max-width: 767px) {
    .carousel-caption h2 {
      font-size: 1.75rem;
    }

    .carousel-caption p {
      font-size: 1rem;
    }

    .carousel-caption {
      padding: 0 15px;
    }
  }
  .custom-indicators {
  position: absolute;
  bottom: 60px; /* You can adjust vertically */
  left: 35%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.caption-title{
  font-weight: 800;
}

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

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

.btn-view {
    background: linear-gradient(135deg, #27548A, #27548A);
    color: #fff;
    border: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s 
ease-in-out;
    position: relative;
    overflow: hidden;
    height: 29px;
    border-radius: 10px;
}

.btn-view:hover {
    background: linear-gradient(135deg, #2e5e94, #538ac5);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Product Type Section */
.section-heading {
  position: relative;
  display: inline-block;
  font-size: 2.2rem;
  font-weight: bold;
  color: #0f2049;
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 10px;
}

.section-heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #0f2049;
  transform: translateX(-50%);
  border-radius: 10px;
}

.swiper {
  width: 100%;
  padding-bottom: 80px;
}

.swiper-slide {
  text-align: center;
}

.product-circle {
    width: 200px;
    height: 200px;
    border-radius: 8%;
    object-fit: cover;
    margin: 0 auto 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s 
ease;
}

.product-circle:hover {
  transform: scale(1.05);
}

.product-name {
  margin-top: 10px;
  font-weight: 700;
  color: var(--text-color);
}

.swiper-button-prev,
.swiper-button-next {
  color: #0F828C;
  bottom: 10px;
  top: auto;
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-50%);
  z-index: 10;
}

.swiper-button-prev {
  left: 48%;
  transform: translateX(-50%);
}

.swiper-button-next {
  right: 48%;
  transform: translateX(50%);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px !important;
}

@media (max-width: 576px) {
  .swiper-button-next,
  .swiper-button-prev {
    font-size: 14px;
    width: 30px;
    height: 30px;
  }
}

/* About Section */
.about-section {
  position: relative;
  padding: 70px 0px;
}

.about-section .content-column {
  margin-bottom: 40px;
}

.about-section .content-column .inner-column {
  padding-top: 50px;
  padding-right: 30px;
}

.about-section .content-column .text {
  color: #777777 !important;
  font-size: 20px;
  line-height: 1.5em;
  margin-bottom: 40px;
}

.about-section .content-column .email {
  color: #252525;
  font-weight: 700;
  margin-bottom: 50px;
}

.about-section .image-column {
  margin-bottom: 50px;
}

.about-section .image-column .inner-column {
  padding: 40px 40px 0px 0px;
  margin-left: 50px;
  position: relative;
}

.about-section .image-column .inner-column:after {
  content: '';
  position: absolute;
  right: 0px;
  top: 0px;
  left: 40px;
  bottom: 100px;
  z-index: -1;
  border: 2px solid #27548A;
}

.about-section .image-column .inner-column .image {
  position: relative;
}

.about-section .image-column .inner-column .image::before {
  content: '';
  position: absolute;
  left: -50px;
  bottom: -50px;
  width: 299px;
  height: 299px;
  background: url(img/pattern-2.png) no-repeat;
}

.about-section .image-column .inner-column .image img {
  width: 100%;
  height: Auto;
  object-fit: cover;
}

.about-section .image-column .inner-column .image .overlay-box {
  position: absolute;
  left: 40px;
  bottom: 48px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box {
  color: var(--text-color);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4em;
  padding-left: 125px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box .number {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 110px;
  height: 110px;
  color: #27548A;
  font-size: 68px;
  font-weight: 700;
  line-height: 105px;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid var(--text-color);
}

.about-section .btn-style-three {
  position: relative;
  line-height: 24px;
  color: var(--text-color);
  font-size: 15px;
  font-weight: 700;
  background-color: #ffffff;
  padding: 11px 40px;
  text-transform: capitalize;
  border: 2px solid #27548A;
  font-family: 'Arimo', sans-serif;
  display: inline-block;
}

.about-section .btn-style-three:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: -1;
  right: -10px;
  bottom: -10px;
  background: url(https://i.ibb.co/DKn55Qz/pattern-1.jpg) repeat;
}

.about-section .btn-style-three:hover {
  color: #ffffff;
  background: var(--bg-primary-color);
}

.sec-title {
  position: relative;
}

.sec-title .title {
  color: #27548A;
  font-size: 18px;
  font-weight: 700;
  padding-right: 50px;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: capitalize;
  position: relative;
}

.sec-title .title:before {
  content: '';
  position: absolute;
  right: 0px;
  bottom: 7px;
  width: 40px;
  height: 1px;
  background-color: #bbbbbb;
}

.sec-title2 {
  color: #fff;
}

.custom-padding {
  padding: 0px 0px 0px 50px;
}

/* Best-Selling */

.best-selling-section {
  background-color: #f9f9f9;
}

.section-heading {
    font-size: 32px;
    color: #27548A;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
}
/* Product Card Grid */
.front-product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  padding: 15px;
}
.front-product-card:hover {
  transform: translateY(-5px);
}
.front-product-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
.front-product-card h5 {
  font-size: 18px;
  margin: 15px 0;
}
.front-product-card .btn-enquiry {
  background: #42d2f6;
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}
.front-product-card .btn-enquiry:hover {
  background: #42d2f6;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.modal-content {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  position: relative;
  animation: fadeIn 0.4s ease;
}
.modal-content h3 {
  margin-bottom: 15px;
}
.modal-content input,
.modal-content textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}
.modal-content button {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background: #42d2f6;
  color: #fff;
  cursor: pointer;
}
.modal-content button:hover {
  background: #0056b3;
}
.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Testimonial */

        .test-section {
          background-size: cover;
          background-position: center;
          width: 100vw;
          height: 60vh;
          display: flex;
          flex-direction: row;
          justify-content: center;
          align-items: center;
          position: relative;
        }


        em {
            color: #27548A;
        }
       
        /* Controls */
        .carousel-control-next {
            margin: 0 3em;
        }

        i.fa-arrow-right,
       i.fa-arrow-left {
          background: none;
          border: 2px solid #2b5a90;
          color: #27548A;
          padding: 10px;
          border-radius: 100%;
          transition: background .6s ease;
        }

        i.fa-arrow-right:hover,
        i.fa-arrow-left:hover {
            background: #2b5a90;
            /* color: white; */
        }

        /* Indicators */
        .carousel-indicators {
            justify-content: flex-start;
           transform: translate(-40px, 50px);
        }

        .carousel-indicators [data-bs-target] {
            width: 10px;
            height: 10px;
            border-radius: 100%;
            border: 2px solid #27548A;
        }

        .carousel-indicators .active {
            opacity: 1;
            background-color:  #27548A;
        }

        /* Control buttons */
        .control-btn {
            position: absolute;
            top: 8px;
            right: 10em;
        }
        .testi-next, 
        .testi-prev {
            top: 1em;
            left: 3em;
        }

        .testimonial-text {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            column-gap: 20px; 
        }

        .wow {
            position: relative;
            grid-column: span 2;
        }

        .carousel-landmark {
            grid-column: span 3;
        }

        @media screen and (max-width: 576px) {
            .testimonial-text {
                margin-top: 50px;
            row-gap: 50px;
            
        }
            .wow {
            grid-column: span 5;
        }

        .carousel-landmark {  
            grid-column: span 5;
        }
        }
        .btn-custom {
          background: linear-gradient(135deg, #27548A, #27548A);
          color: #fff;
          border: none;
          font-weight: 600;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          transition: all 0.3s ease-in-out;
          position: relative;
          overflow: hidden;
          height: 37px;
          border-radius: 10px;
      }

      .btn-custom:hover {
        background: linear-gradient(135deg, #2e5e94, #538ac5);
        color: #fff;
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
      }
      .custom-border-start {
        border-left: 2px solid #27548A !important;
      }

      /* Blogs */

      .blog-card {
        background-color: #f9f9f9;
        border-radius: 16px;
        padding: 20px;
        text-align: left;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
        transition: 0.3s;
        height: 100%;
      }

.blog-card:hover {
  transform: translateY(-5px);
}
.card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease-in-out;
}

.blog-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.blog-title {
  font-size: 18px;
  font-weight: 600;
  color: #5489c5;
  margin-bottom: 15px;
  min-height: 60px;
}

.btn-explore {
  background-color: #00bfff;
  color: #fff;
  padding: 8px 20px;
  font-size: 14px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
  display: inline-block;
}

.btn-explore:hover {
  background-color: #008fcc;
  color: #fff;
}

.blogSwiper {
  padding-bottom: 40px;
}

.blogSwiper:hover .blog-nav {
  display: block !important;
}


.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 16px;
}

.blogSwiper {
  padding-bottom: 40px;
}

/* Our Clients */

@keyframes slide{
  from{
    transform:translateX(0) ;
    
  }
  to{
    transform:translateX(-100%) ;
  
  }
}
.logos{
  overflow:hidden;
  padding:60px 0 ;
  background:white;
  white-space:nowrap;
  position:relative;
}

.logos:before,
.logos:after{
  content:"";
  position:absolute;
  top:0;
  width:250px;
  height:100%;
  z-index:2;
}
.logos:before{
  left:0;
  background:linear-gradient(to left, rgba(255,255,255,0), white);
}
.logos:after{
  right:0;
  background:linear-gradient(to right, rgba(255,255,255,0), white);
}


.logos:hover .logos-slide{
  animation-play-state:paused;
  
  
}
.logos-slide{
  display:inline-block;
  animation: 35s slide infinite linear;
}
.logos-slide img{
  height:50px;
  margin: 0 40px;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Footer */

.footer-section {
  position: relative;
}

.footer-cta {
  border-bottom: 1px solid #373636;
}

.single-cta i {
  color: #ff5e14;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}

.cta-text {
  padding-left: 15px;
  display: inline-block;
}

.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}

.cta-text span {
  color: #757575;
  font-size: 15px;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-logo {
  margin-bottom: 15px;
}

.footer-logo img {
  max-width: 140px;
}

.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #fff;
  line-height: 28px;
}

.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}

.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}

.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}

.facebook-bg {
  background: #3B5998;
}

.twitter-bg {
  background: #55ACEE;
}

.google-bg {
  background: #DD4B39;
}

.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #27548A;
}

.footer-widget ul li {
  /* width: 50%; */
  margin-bottom: 12px;
  list-style: none;
}

.footer-widget ul li a {
  color: #fff;
  text-transform: capitalize;
}

.footer-widget ul li a:hover {
  color: #27548A;
}

.footer-contact li {
  color: #fff;
  font-size: 15px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  color: #27548A;
  margin-right: 10px;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.copyright-area {
  background-color: var(--bg-secondary-color);
  padding: 25px 0;
}

.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #fff;
}

.copyright-text p a {
  color: #fff;
}
.copyright-text p a:hover {
  color: #578ec9;
}

.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}

.footer-menu li a {
  font-size: 14px;
  color: #fff;
}

.footer-menu li:hover a {
  color: #578ec9;
}

/* about-us */

.about-banner {
  /* background: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?fit=crop&w=1200&q=80') no-repeat center center;
  background-size: cover; */
  height: 300px;
  position: relative;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.about-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.about-banner .container {
  position: relative;
  z-index: 2;
}

.about-banner h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.breadcrumb {
  background: transparent;
}

.breadcrumb-item a {
  color: #27548A;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #ffffff;
}

/* Highlight recent post on hover */
.recent-posts a:hover {
  color: #0f828c;
  text-decoration: underline;
}

/* Optional: Add smooth hover scale to thumbnails */
.recent-posts img {
  transition: transform 0.3s ease;
}
.recent-posts img:hover {
  transform: scale(1.05);
}
.custom-text-color{
  color: #27548A;
}
.custom-text-color:hover{
  color: #27548A !important;
}

/* Contact Us */

.contact-us {
  padding: 60px 0;
  min-height: 100vh;
}
.contact-info {
  display: inline-block;
  width: 100%;
  text-align: center;
      margin-bottom: 10px;
}
.contact-info-icon {
margin-bottom: 15px;
}
.contact-info-item {
  background: #27548A;
  padding: 30px 0px;
}
.contact-page-sec .contact-page-form h2 {
  /* color: #071c34; */
  text-transform: capitalize;
  /* font-size: 22px; */
  font-weight: 700;
}
.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
  padding-left: 0;
}  
.contact-page-form.contact-form input {
  margin-bottom: 5px;
}  
.contact-page-form.contact-form textarea {
  height: 110px;
}
.contact-page-form.contact-form input[type="submit"] {
  background: #071c34;
  width: 150px;
  border-color: #071c34;
}
.contact-info-icon i {
  font-size: 48px;
  color: #fff;
}
.contact-info-text p{margin-bottom:0px;}
.contact-info-text h2 {
  color: #fff;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-info-text span {
  color: #27548A;
  font-size: 16px;
  display: inline-block;
  width: 100%;
}

.contact-page-form input {
  background: #f9f9f9 none repeat scroll 0 0;
  border: 1px solid #f9f9f9;
  margin-bottom: 20px;
  padding: 12px 16px;
  width: 100%;
  border-radius: 25px;
}

.contact-page-form .message-input {
display: inline-block;
width: 100%;
padding-left: 0;
}
.single-input-field textarea {
  background: #f9f9f9 none repeat scroll 0 0;
  border: 1px solid #f9f9f9;
  width: 100%;
  height: 120px;
  padding: 12px 16px;
  border-radius: 4px;
}
.single-input-fieldsbtn input[type="submit"] {
  background: #27548A none repeat scroll 0 0;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 10px 0;
  text-transform: capitalize;
  width: 150px;
  margin-top: 20px;
  font-size: 16px;
}
.single-input-fieldsbtn input[type="submit"]:hover{background:#27548A;transition: all 0.4s ease-in-out 0s;border-color:#27548A}
.single-input-field  h4 {
  color: #464646;
  text-transform: capitalize;
  font-size: 14px;
}
.contact-page-form {
  display: inline-block;
  width: 100%;
  margin-top: 30px;
}

.contact-page-map {
  margin-top: 36px;
}
.contact-page-form form {
    padding: 20px 15px 0;
}

/* Products Signle Page */

   /* Product Page Layout */
.product-page {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 30px;
  margin-top: 40px;
}
.product-gallery {
  flex: 1 1 45%;
}
.product-details {
  flex: 1 1 45%;
}

/* Main Image */
.main-image {
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
}
.main-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Thumbnails */
.thumbnails {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.thumbnails img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.thumbnails img:hover,
.thumbnails img.active {
  border-color: #007bff;
}

/* Product Details */
.product-details h2 {
  font-size: 26px;
  margin-bottom: 15px;
}
.product-details p {
  color: #555;
  margin-bottom: 20px;
  font-size: 16px;
}

/* FAQ Content */

/* --- FAQ Section Styles --- */
.faq-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 15px;
  font-family: "Segoe UI", sans-serif;
}

.faq-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #2c3e50;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: #f7f9fc;
  border: none;
  outline: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #e6f0ff;
}

.faq-question .icon {
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease, color 0.3s ease;
  color: #3498db;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 25px;
  background: #ffffff;
}

.faq-answer p {
  padding: 15px 0;
  line-height: 1.6;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* enough to show content */
  padding: 15px 25px;
}

.faq-item.active .faq-question .icon {
  transform: none;
  color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-title {
    font-size: 2rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 1.8rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 12px 15px;
  }

  .faq-answer {
    padding: 0 15px;
  }

  .faq-item.active .faq-answer {
    padding: 12px 15px;
  }
}
.footer-blogs {
  display: flex;
  flex-direction: column;
}

.footer-blog-item {
  transition: transform 0.3s ease;
}

.footer-blog-item:hover {
  transform: translateX(5px);
}

.footer-blog-thumb {
  width: 60px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.footer-blog-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
}

.footer-blog-title:hover {
  color: #3498db;
}
