@import url('https://fonts.googleapis.com/css2?family=Cookie&family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');



.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

body{
  font-family: "Montserrat", sans-serif;	
}
/* === General Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:  "Montserrat", sans-serif;
}

/* === Top Bar === */
.top-bar {
  background-color: #104B89; 
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 40px;
  font-size: 14px;
}

.top-left span {
  margin-right: 20px;
  font-family: "Montserrat", sans-serif;	
}

.top-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-right span {
    font-family: "Montserrat", sans-serif;
} 

.top-right a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.top-right a:hover {
  color: #000; 
}

/* === Main Header === */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 15px 40px;
  border-bottom: 1px solid #ddd;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 80px;
  height: auto;
}

.brand-name {
  font-size: 20px;
  font-weight: 600;
  color: #104B89;
  letter-spacing: 1px;
}

/* === WordPress Dynamic Menu === */
.nav-menu .menu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu {
	width: 280px;
}
.nav-menu .menu li a {
  text-decoration: none;
  color: #4682B4 !important;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 17px;
  font-family: "Montserrat", sans-serif;
}

.nav-menu .menu li a:hover,
.nav-menu .menu li.current-menu-item a {
  color: #104B89 !important;
}

/* === Call Now Button === */
.call-now .phone-btn {
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  transition: background 0.3s;
  font-family: "Montserrat", sans-serif;
}

.call-now .phone-btn i {
  background: #4682B4;
  padding: 8px;
  border-radius: 4px;
  width: 20% !important;	
}

.call-now .phone-btn:hover {
  background: #4682B4;
}

/* === Responsive === */
@media(max-width: 900px){
  .main-header {
    flex-wrap: wrap;
  }
  .nav-menu .menu {
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
  }
}


/* Home Page Css */

/* Slider Section */
#acfHomeSlider {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
#acfHomeSlider .slider-img {
    object-fit: cover;
    width: 100%;
    height: 600px;
    display: block;
}
#acfHomeSlider .carousel-caption.flex-caption {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 60px 60px 0 60px;
    gap: 40px;
    text-align: left;
    box-sizing: border-box;
    z-index: 1; 
    pointer-events: none; 
}
.caption-left {
    flex: 1 1 50%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    pointer-events: auto; 
	padding-bottom: 85px;
}
.caption-left h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 44px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 35px;
    line-height: 1.1;
}
.caption-left p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 25px;
	line-height: 26px;
}
.book-appointment-btn {
    background-color: #104F95;
    border: 1px solid #104F95;
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 14px;
    transition: background-color .3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    pointer-events: auto; 
	width: 45%;
	margin-bottom: 20px;
}
.book-appointment-btn:hover {
	background-color: #fff;
	color: #104F95;
}
.book-appointment-btn::after {
    content: " →";
    margin-left: .35em;
    font-weight: 600;
    transition: transform .25s ease;
}
.book-appointment-btn:hover::after {
    transform: translateX(3px);
}
.caption-right {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100%;
    text-align: right;
    pointer-events: auto;
}
/* Define the keyframes for the slide-in animation */
@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Apply the animation to the image */
.caption-right img {
    /* Your existing styles for the image go here */
    max-height: 500px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 0;

    /* Animation properties */
    animation: slideInFromRight 1s ease-out forwards;
}

@media (max-width: 1200px) {
    #acfHomeSlider .carousel-caption.flex-caption {
        padding: 40px 30px 0 30px;
        gap: 24px;
    }
    .caption-left h5 {
        font-size: 36px;
    }
    .caption-right img {
        max-height: 400px;
    }
}
@media (max-width: 991px) {
    #acfHomeSlider .carousel-caption.flex-caption {
        flex-direction: column-reverse;
        text-align: center;
        align-items: center;
        justify-content: flex-end;
        padding: 30px 10px 0 10px;
        gap: 24px;
    }
    .caption-left,
    .caption-right {
        flex: 1 1 100%;
        max-width: 100%;
        text-align: center;
        align-items: center;
        justify-content: flex-end;
        height: auto;
    }
    .caption-right img {
        max-height: 300px;
    }
}
@media (max-width: 600px) {
    #acfHomeSlider .slider-img {
        height: 350px;
    }
    .caption-left h5 {
        font-size: 24px;
    }
    .book-appointment-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    .caption-right img {
        max-height: 150px;
    }
}
.carousel-control-next,
.carousel-control-prev {
    background: transparent !important;
    z-index: 2;
}
.caption-left img {
    width: 30%;
}
.caption-left img {
    margin-bottom: 25px;
}
#acfHomeSlider::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45); 
    z-index: 2;
    pointer-events: none;
}
#acfHomeSlider .carousel-caption,
#acfHomeSlider .carousel-caption.flex-caption {
    position: absolute;
    z-index: 2;
}

/* Service Section */

.section-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  padding: 60px 30px;
  max-width: 1400px;
	width: 100%;
  margin: 0 auto;
}
.left-content {
  flex: 2;
  min-width: 600px;
	   /* Animation properties */
    animation: fadeInFromLeft 1.2s ease-out forwards;
    opacity: 0; /* Initially hidden */
}
.section-title {
  margin-bottom: 45px;
}
.what-we-do-heading {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  min-width: 180px;
}
.heading-text {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #4682B4;
  margin-right: 8px;
  white-space: nowrap;
}
.heading-line {
  flex: 1;
  height: 4px;
  background: #4682B4;
  border-radius: 1px;
  min-width: 60px;
  max-width: 75px;
  display: inline-block;
}
.section-title h1
 {
    font-size: 32px;
    font-weight: bold;
    margin: 8px 0 0 0;
    line-height: 1.1;
    font-family: "Montserrat", sans-serif;
	color: #000;
}

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


.service-box {
  background: #fff;
  border: 1.5px solid #4682B4;
  border-radius: 16px;
  padding: 34px 16px 22px 16px;

  /* 🔑 Fixed height so boxes stay equal */
  height: 320px;
  box-sizing: border-box;

  box-shadow: 0 4px 8px 0 rgba(9,19,44,.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: background 0.23s, border-color 0.23s, color 0.23s;
}

.service-box .service-icon {
  margin-bottom: 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.23s;
}

.service-box .service-icon img {
  width: 75%;
  height: 110px;
  object-fit: contain;
  filter: none;
}

.service-title {
  font-size: 24px;
  font-weight: bold;
  color: #4682B4;
  margin-bottom: 16px;
  transition: color 0.23s;
  font-family: "Montserrat", sans-serif;
}

/* 🔑 Use opacity/visibility instead of display none */
.service-desc {
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 18px;
  margin-top: -5px;
  line-height: 1.38;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.service-btn {
  margin-top: auto;
  padding: 7px 28px 7px 18px;
  border: none;
  border-radius: 25px;
  background: #fff;
  color: #4682B4;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 1px 1px 0 rgba(34,64,141,.03);
  transition: background 0.23s, color 0.23s, border 0.23s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Montserrat", sans-serif;
  border-bottom: 2px solid #4682B4;
}

.service-btn span {
  font-size: 1.3em;
  margin-left: 2px;
  display: inline-block;
  transform: translateY(1px);
}

.service-box:hover {
  background: #4682B4;
  border-color: #4682B4;
}

.service-box:hover .service-title {
  color: #fff;
}

.service-box:hover .service-desc {
  opacity: 1;
  visibility: visible;
}

.service-box:hover .service-icon img {
  filter: invert(100%) brightness(200%) contrast(100%);
}

.service-box:hover .service-btn {
  background: #fff;
  color: #22408D;
  border-bottom: 2px solid #fff;
}

.service-box:hover .service-icon {
  display: none;
}

.service-box:hover .service-title {
  margin-top: 30px;
}

.right-content {
	display: none !important;
  flex: 2;
  min-width: 410px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
	 /* Animation properties */
    animation: fadeInFromRight 1.2s ease-out forwards;
    opacity: 0; /* Initially hidden */
}
@keyframes fadeInFromLeft {
    0% {
        transform: translateX(-50px); /* Start 50px to the left */
        opacity: 0;
    }
    100% {
        transform: translateX(0); /* End at original position */
        opacity: 1;
    }
}

@keyframes fadeInFromRight {
    0% {
        transform: translateX(50px); /* Start 50px to the right */
        opacity: 0;
    }
    100% {
        transform: translateX(0); /* End at original position */
        opacity: 1;
    }
}
.contact-card {
  background: #fff;
  border: 1px solid #4682B4;
  border-radius: 16px;
  padding: 34px 36px 32px 36px;
  box-sizing: border-box;
  box-shadow: 0 4px 8px 0 rgba(9, 19, 44, .03);
  width: 100%;
  min-height: 400px;
  margin-top: 24% ;
}

@media (max-width: 1100px) {
  .section-container {
    flex-direction: column;
    align-items: stretch;
    padding: 24px 0;
  }
  .left-content, .right-content {
    min-width: 0;
    width: 100%;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .section-container {
    flex-direction: column;
    gap: 20px;
    padding: 14px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .contact-card {
    padding: 20px 10px;
  }
}


/* Contact Form 7 Custom Styles */

.name-section {
    display: flex
;
    gap: 10px;
    justify-content: center;
}
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    border: 1px solid #104f9540;
    padding: 8px;
    border-radius: 5px;
	width: 95%;
}
select.wpcf7-form-control.wpcf7-select{
    border: 1px solid #104f9540;
    padding: 8px;
    border-radius: 5px;
	width: 95%;	
}
input.wpcf7-form-control.wpcf7-date.wpcf7-validates-as-required.wpcf7-validates-as-date{
    border: 1px solid #104f9540;
    padding: 8px;
    border-radius: 5px;
	width: 95%;		
}
textarea.wpcf7-form-control.wpcf7-textarea{
    border: 1px solid #104f9540;
    padding: 8px;
    border-radius: 5px;
	width: 95%;	
	height: 60px;
}
.file-upload {
    border: 1px solid #104f9540;
    padding: 8px;
    border-radius: 5px;
    width: 95%;
}
.file-upload p {
    margin-bottom: 0px;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    width: 30%;
    padding: 10px;
    margin-top: 10px;
    background: #104F95;
    border: 1px solid #fff;
    color: white;
    font-size: 13px;
    border-radius: 50px;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
	background: #fff;
	color: #104F95;
	transition: 0.3s ease-in-out;
}
.contact-card img.slider-icon {
    width: 45%;
    margin: 0 auto;
    display: flex
;
}
h5.cont-sect-heading {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin: 20px 0;
	font-family: "Montserrat", sans-serif;
}


/* About Section */

.about-us-section {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
/*   gap: 85px; */
  max-width: 100%;
  margin: 60px auto;
  background: #fff;
  border-radius: 16px;
}

.about-us-images {
  position: relative;
  width: 350px;
  height: 340px;
  min-width: 320px;
  flex-shrink: 0;
}

.about-img {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
}
.about-img.img1.ceo-img {
    width: 400px ;
    height: 400px ;
    top: -60px;
    left: 60px;
}
.img1 {
  top: 0;
  left: -50px;
  width: 370px ;
  height: 300px ;
  z-index: 2;
}

.img2{
	position: absolute !important;
    bottom: -15px !important;
    left: 100px !important;
    width: 355px !important;
    height: 195px !important;
    z-index: 3 !important;
}
.img3 {
    top: 40px !important;
    left: 220px !important;
    width: 200px;
    height: 200px;
    z-index: 2;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-us-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-us-title span {
  font-weight: 600;
  font-size: 14px;
  color: #4682B4;
  font-family: inherit;
  letter-spacing: 0;
}

.about-us-line {
  flex: 0.2 1 auto;
  height: 4px;
  background: #4682B4;
  border-radius: 2px;
  margin-left: 8px;
  min-width: 60px;
}
.about-us-content {
  flex: 1 1 0;
  max-width: 550px;	
}

.about-us-content h4 {
  font-size: 1rem;
  color: #0d2971;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  padding-left: 0;
  font-family: "Montserrat", sans-serif;		
}

.about-us-content h4::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #0d2971;
  margin-top: 7px;
}

.about-us-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 10px 0 18px 0;
  color: #222;
  font-family: "Montserrat", sans-serif;	
}

.about-us-content .blue {
  color: #104F95;
  font-family: "Montserrat", sans-serif;		
}

.about-us-content p {
  font-size: 14px;
  color: #444;
  margin-bottom: 14px;
  line-height: 1.7;
  font-family: "Montserrat", sans-serif;
}

.about-us-content a {
  color: #1850a7;
  text-decoration: underline;
}

.book-btn {
  display: inline-flex;
  align-items: center;
  background: #1850a7;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 24px;
  border: 1px solid #1850a7;
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.2s;
  gap: 10px;
  font-family: "Montserrat", sans-serif;	
}
/* Animation Keyframes */

@keyframes fadeInLeft {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInRight {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
.ceo-abt-section {
    animation: fadeInLeft 1.2s ease-out forwards;
    opacity: 0; 
}

.snd-sbt-sec {
    animation: fadeInRight 1.2s ease-out forwards;
    opacity: 0;
}


/* CTA Section */

.k-card {
    width: 85%;
    margin: 0 auto;
    border: 1px solid #4682B4;
    border-radius: 12px;
    padding: 30px;
    background-color: #fff;
}

.k-logo {
  max-width: 85px;
}

.k-text {
    font-size: 14px;
    color: #4682B4;
    line-height: 1.5;
    font-weight: 600;
    width: 80%;
    font-family: 'Montserrat';
}

.k-phone {
  font-weight: 700;
  color: #0d4a91;
  text-decoration: none;
}

.k-phone:hover {
  text-decoration: underline;
}

.k-btn {
    background-color: #1850a7;
    border: 1px solid #1850a7;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    color: white;
    font-family: 'Montserrat';
    font-size: 12px;
}

.k-btn:hover {
  background-color: #fff;
  border-color: #1850a7;
	color: #1850a7 !important;
}

/* Testimonials Section */

.reviews-section {
  background: linear-gradient(0deg, #104f95 25%, #4682B4 40%);
  padding: 60px 30px;
  font-family:  'Montserrat';
  color: #fff;
}

.reviews-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  margin-bottom: 40px;
}
.section-title .subtitle {
  display: block;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
}
.section-title h2 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 10px;
}

.reviews-wrapper {
  display: flex;
  gap: 30px;
}

.left-card,
.right-card {
  background: #fff;
  border-radius: 20px;
  color: #333;
}
.left-card{
  width: 23%;	
}
.left-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.right-card {
  padding: 30px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  width: 77%;
  background: transparent;
  border: 1px solid white;	
  justify-content: center;
  align-items: center;	
}

.client-photo img {
    width: 180px;
    height: 180px;
}

.client-text p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: white;
    font-family: 'Montserrat';
}

.client-name {
    text-transform: capitalize;
    font-weight: 700;
    color: white;
    font-size: 16px;
    font-family: 'Montserrat';
}

.client-stars {
  color: #f5a623;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .reviews-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .right-card {
    flex-direction: column;
    text-align: center;
  }
  .client-photo img {
    margin: 0 auto 20px;
  }
}
.what-we-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.what-we-title span {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  font-family: inherit;
  letter-spacing: 0;
}

.below-line {
  flex: 0.1 1 auto;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  margin-left: 8px;
  width: 20px;
}

/* Image Carousel */

.carousel-section {
  display: flex;
  align-items: center;
  justify-content: center;
/*   background: #0C0F5B; */
  padding: 20px 0;
  max-width: 1130px;
  margin: 0 auto;
  gap: 65px;
  margin-top: 50px;
}

.carousel-btn {
  background: #EFEFF7;
  border: none;
  border-radius: 6px;
  width: 35px !important;
  height: 30px !important;
  font-size: 18px;
  color: #0C0F5B;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-track-container {
    overflow: hidden;
    margin: 0 auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0 20px;
}

.carousel-slide {
  min-width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  box-sizing: border-box;
}

.carousel-slide img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}

/* FAQ's Section */

.faq-section-container {
  display: flex;
  gap: 32px;
  padding: 60px 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  font-family: 'Inter', Arial, sans-serif;
}
.faq-left-content {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.faq-section-title {
  margin-bottom: 45px;
}
.faq-what-we-do-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.faq-heading-text {
  color: #4682B4;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  letter-spacing: -0.5px;
}
.faq-heading-line {
  display: inline-block;
  height: 2.5px;
  width: 52px;
  background: #4682B4;
  margin-left: 12px;
  margin-bottom: 2px;
}
.faq-section-title h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  color: #181818;
  line-height: 1.15;
  letter-spacing: -1px;
}
.faq-highlight {
  display: inline-block;
  font-size: 32px;
  font-weight: 800;
  margin: 6px 0 0 0;
  line-height: 1.08;
  font-family: "Montserrat", sans-serif;
  color: #181818;
}
.faq-image-card {
  position: relative;
  width: 450px;
  height: 400px;
  aspect-ratio: 1 / 1;
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 32px 0 rgba(30, 44, 70, 0.08);
  background: #fff;
}
.faq-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.faq-info-card {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: #101c55;
  border-radius: 8px;
  padding: 18px 28px 16px 20px;
  color: #fff;
  box-shadow: 0 2px 14px 0 rgba(16, 28, 85, 0.13);
  min-width: 185px;
  border: 2px solid #fff;
  z-index: 2;
}
.faq-info-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 0.2px;
}
.faq-info-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 6px;
}
.faq-star {
  color: #ffce31;
  font-size: 14px;
}
.faq-reviews {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}
.faq-info-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  color: #101c55;
  font-size: 13px;
  font-weight: 600;
  border-radius: 5px;
  padding: 6px 10px 6px 10px;
  margin-top: 2px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border: 2px solid #101c55;
}
.faq-info-btn:hover {
  background: #f2f6ff;
}
.faq-info-google {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}

/* RIGHT SIDE (Accordion) */
.faq-right-content {
  flex: 1 1 52%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
div#customAccordion {
    padding: 20px;
}
.custom-accordion-container {
  margin-top: 25%;
  width: 100%;
  max-width: 600px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(10, 40, 110, 0.09);
  padding: 16px 0 18px 0;
}

.accordion-item {
  border: none;
  background: transparent;
}

.accordion-button {
  background: transparent;
  color: #16244c;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 8px !important;
  box-shadow: none;
  padding: 18px 32px 18px 22px;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  outline: none !important;
}

.accordion-button:not(.collapsed) {
  font-family: "Montserrat", sans-serif;
  background: #4682B4;
  color: #fff;
  border-radius: 8px !important;
}
.accordion-button:not(.collapsed) .plus-minus-icon {
  color: #fff;
}
.accordion-button.collapsed .plus-minus-icon {
  color: #4682B4;
}
.accordion-body {
  font-family: "Montserrat", sans-serif;
  margin-top: 14px;
  background: transparent;
  color: #1d2538;
  font-size: 15px;
  margin-left: 24px;
  padding: 0 32px 16px 0;
}
.plus-minus-icon {
  font-size: 20px;
  font-weight: 600;
  margin-left: auto;
  transition: color 0.2s;
}
.accordion-item:not(:last-child) {
  border-bottom: 1px solid #f1f2f6;
}
.accordion-button::after {
  display: none;
}
/* Animation Keyframes */

@keyframes fadeInLeft {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInRight {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Apply Animations to the FAQ sections */

.faq-left-content {
    animation: fadeInLeft 1.2s ease-out forwards;
    opacity: 0;
}

.faq-right-content {
    animation: fadeInRight 1.2s ease-out forwards;
    opacity: 0;
}



  .faq-left-content, .faq-right-content {
    width: 100%;
    max-width: none;
  }
  .faq-image-card {
    margin: 0 auto 24px auto;
  }
}

/* Blog Section */
.what-we-do-heading.middle-heading {
    margin: 0 auto !important;
    width: 300px !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
}
.blog-card-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
	justify-content: center;
}
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
  width: 260px;
  display: flex;
  flex-direction: column;
}
.card-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.card-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
  color: #222;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-avatar img {
  border-radius: 50%;
  width: 32px;
  height: 32px;
}
.author-name {
  font-size: 14px;
  font-weight: 500;
}
.read-time {
  font-size: 12px;
  color: #888;
}
.section-contain{
	 padding: 60px 30px;
}
.section-contain h1 {
    text-align: center;
}
.sidebar 
 {
    display: none;
}
div#respond {
    display: none;
}


/* Footer */

footer.kervinlaw-footer {
    background: #104B89;
    padding: 60px 30px 0;     
}
.footer-container {
    display: flex;
/*     gap: 40px; */
    flex-wrap: wrap;     
}

.footer-logo-section {
/*     background: #ffffff;
    padding: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center; */
    width: 30%;
}
.footer-logo-wrapper {
/*     height: 354px;
    max-width: 427px; */
    object-fit: cover;
    background: white;
    display: flex;
	padding: 70px;
;
    justify-content: center;
    align-items: center;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    flex: 1;
    width: 70%;
}

.footer-col {
    max-width: 200px;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
	margin-left: 20px;
	margin: 0 auto;
}

.footer-title {
    font-weight: bold;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    margin: 10px 0;
}

.footer-address {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
}

.footer-col a {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-col a:hover {
    color: #000;  
}

.footer-col ul,
.footer-col ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-social a {
    color: #ffffff;
    font-size: 20px;
    margin-right: 8px;
    display: inline-block;
    transition: color 0.3s ease;
}
.footer-social a:hover {
    color: #000;
}
.footer-newsletter {
    font-size: 13px;
    color: #ffffff;
}
.footer-newsletter a {
    color: #ffffff;
    text-decoration: underline;
}
.footer-bottom {
   text-align: left;
    color: white;
    border-top: 1px solid white;
    padding: 20px;
    width: 100%;
}

.footer-bottom a {
    color: #fff !important;
    text-decoration: underline;
    transition: color 0.3s ease;
}
.footer-bottom a:hover {
    color: #E7BC59;
}

@media (max-width: 992px) {
    .footer-logo-section {
        width: 100%;
    }
    .footer-content {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .footer-col {
        width: 100%;
    }
}
/* Newsletter one-line form */

/* Breadcrumb */
.breadcrumb {
    background: #104B89 !important;
    padding: 60px 30px !important;
    text-align: center !important;
}
a#currentpage {
    color: #4682B4;
}
h1.text-white.mb-0 {
    font-family: 'Montserrat';
}
p#currentpage {
    margin-top: 10px;
    color: white;
	font-family: 'Montserrat' !important;
}

/* About Us Page */

section#about {
    padding: 60px 30px;
}
.about-images {
  position: relative;
}
.about-images .main-img {
  width: 85%;
  border-radius: 20px;
}
.about-images .sub-img {
  width: 55%;
  bottom: -135px;
  right: 0;
  border: 4px solid var(--light);
}

.about strong{
  color: var(--primary);
}

.about ul li{
  display: flex;
  align-items: center;
  line-height: 30px;
}

.about ul li i{
  margin-right: 10px;
  color: var(--primary);
}

.about .about-button{
  background: #f97316;
  color: white;
  padding: 10px 15px;
  border-radius: 14px;
}
img.img-fluid.sub-img.rounded-4.shadow.position-absolute {
    border-radius: 10px;
}
.year {
    display: flex
;
    justify-content: left;
    gap: 40px;
}
p.btn-orange
 {
    background: #104B89;
    padding: 10px;
    border-radius: 10px;
    color: white !important;
    font-size: 14px;
    font-family: 'Montserrat';
}
/* Keyframes for fade & move up */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply scroll-timeline animation */
.scroll-animate {
  opacity: 0;
  animation: fadeSlideUp 1s ease-out forwards;
  animation-timeline: view();
  /* Play animation when top of element enters viewport to 30% of viewport */
  animation-range: entry 0% cover 30%;
}
section#about p {
    font-family: 'Montserrat';
    font-size: 14px;
    color: #333;
}

/* credentials Section  */
.Questions h2{
    font-size: 28px;
    font-weight: 700;
    margin-top: 10px;
	color: white;
}

.Questions h2 strong{
  color: #fff;
}

.qus-box{
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  margin-bottom: 1rem;
}

section.Questions {
    background: #4682B4;
    padding: 60px 30px;
}
.cred-contnr {
    background: white !important;
    padding: 20px !important;
    border-radius: 10px !important;
}

/* Logo Carousel Section */

.client {
    padding: 60px 30px;
	background: #fff;
}
 
.client-logo {
    border-radius: 8px;
    padding: 15px;
}
.client-logo img {
    width: 210px !important;
	height: 30vh !important;
}
.slick-dots .slick-active button {
    background: #1C3754 !important;
}
.slick-dots li button
{
    background: #1c375461 !important ;
}
.slick-track {
    gap: 10px !important;
    display: flex !important;
}
.slick-dots{
	text-align: center !important;
}
.clientsldr .client-logo img {
    width: 140px !important;
    max-height: 100px;
    margin: 0 auto;
}
.slick-prev:before,
.slick-next:before {
    color: #333; /* arrow color */
}
button.slick-prev.slick-arrow {
    left: -1%;
}

/* Book ection */
section.book-section {
    padding: 60px 30px;
    background: #104B89;
	border-bottom: 1px solid white;
}
.white {
    color: white !important;
}
h1.white {
    margin-bottom: 30px;
	line-height: 40px;
}


/* Contact Page */

.right_conatct_social_icon{
     background: linear-gradient(to top right, #4682b445 -5%, #104B89 100%);
}
.contact_us{
    background-color: #f1f1f1;
    padding: 60px 30px;
}
.form-group p {
    margin-bottom: 15px !important;
}
.contact_inner{
    background-color: #fff;
    position: relative;
    box-shadow: 20px 22px 44px #cccc;
    border-radius: 25px;
}
.contact_field{
    padding: 45px;
}
.right_conatct_social_icon{
    height: 100%;
}

.contact_field h3{
font-family: 'Montserrat';
    color: #104B89;
    font-size: 35px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact_field p{
    font-family: 'Montserrat';
    color: #000;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 35px;
}
.contact_field .form-control{
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid #ccc;
}
.contact_field .form-control:focus{
    box-shadow: none;
    outline: none;
    border-bottom: 2px solid #1325e8;
}
.contact_field .form-control::placeholder{
    font-size: 13px;
    letter-spacing: 1px;
}

.contact_info_sec {
    position: absolute;
    background-color: #104B89;
    right: 1px;
    top: 13%;
    height: 540px;
    width: 450px;
    padding: 40px;
    border-radius: 25px 0 0 25px;
    color: white;
    font-family: 'Montserrat';
}
.contact_info_sec h4{
    letter-spacing: 1px;
    padding-bottom: 15px;
}

.info_single{
    margin: 30px 0px;
}
.info_single i{
    margin-right: 15px;
}
.info_single span{
    font-size: 14px;
    letter-spacing: 1px;
}

button.contact_form_submit {
    background: linear-gradient(to top right, #1325e8 -5%, #8f10b7 100%);
    border: none;
    color: #fff;
    padding: 10px 15px;
    width: 100%;
    margin-top: 25px;
    border-radius: 35px;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 2px;
}
.socil_item_inner li{
    list-style: none;
}
.socil_item_inner li a{
    color: #fff;
    margin: 0px 15px;
    font-size: 14px;
}
.socil_item_inner{
    padding-bottom: 10px;
}

.map_sec{
    padding: 50px 0px;
}
.map_inner h4, .map_inner p{
    color: #fff;
    text-align: left;
    font-family: 'Montserrat';
    font-size: 16px;
}
.map_inner h4{
	margin-bottom: 10px;
}
.map_inner p{
    font-size: 13px;
	font-family: 'Montserrat';
}
.full-width{
	width: 100% !important;
	margin: 0 auto !important;
}
input#tel-436{
	width: 70%;
    padding: 12px 16px;
    border: 1px solid #e4e9f2;
    border-radius: 4px;
    background: #fff;
    font-size: 15px;
    margin-top: 4px;
    transition: border 0.2s;
}
.wpcf7-form input[type="text"], .wpcf7-form input[type="email"], .wpcf7-form input[type="date"], .wpcf7-form select, .wpcf7-form textarea{
		width: 70%;
}
.socil_item_inner i {
    font-size: 23px;
}

/* Testimonial Page */
.revws-section {
    padding: 60px 30px;
	text-align: center;
}
.faq-what-we-do-heading.aln-cntr {
    text-align: center !important;
    justify-content: center;
}
.rvws {
    margin: 60px;
}



#GoToTop {
    display: none;
    position: fixed;
    bottom: 45px;
    right: 25px;
    border-radius: 2px;
    z-index: 99999999;
    padding: 0;
    background: #4682B4;
    width: 50px;
    height: 50px;
    text-align: center;
    cursor: pointer;
    font-size: 17px;
    text-decoration: none;
    padding-top: 15px;
    color: white;
    border-radius: 50px;
    border: 2px solid white;
	
}
#GoToTop .fa {
	display: block;
	padding-bottom: 3px;
}
#GoToTop:hover {
	background: #000;
	color: var(--white);
}
#GoToTop.show {
	display:block
}


/* Practices Area Details Page Temp */

.list-styl-non li{
	list-style: none !important;
}
.sticky-col {
            position: sticky;
            top: 20px;
        }

        .service-bx {
            background-color: #2f5e8b;
            padding: 15px;
			border-radius: 8px;
        }

        .services-list a {
            background: #fff;
            padding: 10px;
            margin-bottom: 10px;
            border-radius: 5px;
            text-decoration: none;
            color: #000;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .services-list a:hover {
            background: #cde6ff;
            color: #1177e3;
        }

        .service-bx h3 {
            font-size: 20px;
            color: #fff;
        }

        .help-box {
            background: #104B89 !important;
            color: #fff;
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
            text-align: center;
        }

        .help-box h5 {
            margin-bottom: 10px;
			font-size: 18px;
        }

        .help-box .btn {
            background: #1850a7;
            border: none;
            font-weight: bold;
        }

        .section-title1 {
            font-size: 32px;
            font-weight: 700;
            margin: 0px 0 10px;
        }
		.section-sub-title1{
            font-size: 28px;
            font-weight: 600;
            margin: 0px 0 10px;
        }
        .content-box {
            background: #fff;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .content-box img {
            border-radius: 8px;
            margin-bottom: 15px;
            width: 100%;
            height: 450px;
            object-fit: cover;
            object-position: center;
        }
.content-box1{
	        background: #fff;
            border-radius: 8px;
            margin-bottom: 20px;
			position: relative;
	overflow: hidden;
}
 .content-box1 img {
            border-radius: 8px;
            margin-bottom: 0px;
            width: 100%;
            height: 230px;
            object-fit: cover;
            object-position: center;
        }
.img-over-p-abslut {
    position: absolute;
    top: 15%;
    left: 10%;
    color: #fff;
	 z-index: 2;
}
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1;
  }
        .pract-detl-main-sec {
            padding: 60px 60px;
        }

        .service-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }


        /* accordion */

.accordion-button1 {
    background: #c6e1fd;
    color: #2b1b14;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 20px;
    border: none;
    width: 100%;
    display: flex;
    box-shadow: none;
    justify-content: space-between;
    align-items: center;
}

        .accordion-button1:not(.collapsed) {
               background: #104b89;
    			color: #fff;
        }

        .accordion-body1 {
            background: #104b89;
            color: #fff;
            font-size: 15px;
            line-height: 1.6;
			padding: 12px;
        }
        .accordion-header {
            margin-bottom: 1px !important;
        }
        .accordion-item {
            border: none;
            margin-bottom: 10px;
        }

        .accordion-button1:focus {
            box-shadow: none;
        }

        /* Change plus/minus icons */
         .accordion-button1::after {
            content: '+';
            font-size: 22px;
            font-weight: bold;
            color: inherit;
            background-image: none !important;
            transform: none !important;
        }

         .accordion-button1:not(.collapsed)::after {
            content: '−' !important;
            font-size: 22px !important;
            font-weight: bold !important;
            color: #fff !important;
        }


/* appointment form */
.appointment-form {
    background-color: transparent;
    padding: 0px;
    color: white;
}
.form-body br{
	display: none;
}
.form-body p{
	margin: 0;
}
.appointment-form .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 10px;
}

.appointment-form input[type="text"],
.appointment-form input[type="email"],
.appointment-form input[type="tel"],
.appointment-form textarea {
  width: 100% !important;
  padding: 15px;
  border: none;
  border-radius: 5px;
  background-color: white; 
  color: #333; 
}

.appointment-form textarea {
  height: 100px; 
}

.appointment-form .send-btn {
  width: 100% !important;
  padding: 15px;
  background-color: #e60000;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 10px;
}

.service-two-prt{
        justify-content: center;
        align-items: center;
        display: flex;
}
button.book-btn a {
    color: white !important;
    text-decoration: none !important;
}

/* book section */

.book-section-modern {
    background: linear-gradient(0deg, #104f95 25%, #4682B4 40%);
    padding: 60px 30px;
    font-family: 'Montserrat';
    color: #fff;
}
.books-flex{
	display: flex
;
    flex-direction: row;
    align-items: center;
    padding: 40px;
    gap: 50px;
    justify-content: center;

}
p.book-answer-modern {
    color: white !important;
	    font-family: "Montserrat", sans-serif;
    margin-top: 14px;
}
p.book-description-modern{
    color: white !important;
	    font-family: "Montserrat", sans-serif;
    margin-top: 14px;	
}
p.book-cta-modern {
	    color: white !important;
	    font-family: "Montserrat", sans-serif;
    margin-top: 14px;
}
/* Book Image Container */
.book-image-container-modern {
    flex-shrink: 0; /* Prevents image from shrinking */
    width: 200px; /* Fixed width for the image container */
    height: 300px; /* Fixed height for consistency */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); /* Shadow for the book cover */
    border-radius: 8px; /* Slightly rounded corners for the book cover */
    overflow: hidden; /* Ensures image doesn't break rounded corners */
}

.book-cover-modern {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain; /* Ensures the whole image is visible */
    transition: transform 0.3s ease; /* Smooth hover effect */
}

.book-cover-modern:hover {
    transform: scale(1.03); /* Slight zoom on hover */
}

/* Book Content Container */
.book-content-container-modern {
    flex-grow: 1; /* Allows content to take up remaining space */
    text-align: left;
}

.book-question-modern {
    font-family: 'Montserrat', sans-serif; /* Example modern font */
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.book-answer-modern,
.book-description-modern,
.book-cta-modern {
    font-family: 'Open Sans', sans-serif; /* Example body font */
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.book-cta-modern {
    font-weight: 600;
    color: #007bff; /* Highlight CTA text */
}

/* Buttons Container */
.book-buttons-modern {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    gap: 15px; /* Space between buttons */
}

/* Individual Button Styles */

.btn-buy {
    background-color: #fff;
    color: #104B89;
    border-color: #104B89;
    padding: 7px;
    border-radius: 50px;
    width: 20%;
    text-align: center;
}

.btn-buy:hover {
    background-color: #104B89;
    border-color: #fff;
	color: #fff;
    transform: translateY(-2px); /* Slight lift effect */
}

.btn-preview {
    background-color: #6c757d; /* Muted grey */
    color: #fff;
    border-color: #6c757d;
	    padding: 7px;
    border-radius: 50px;
    width: 20%;
    text-align: center;
}

.btn-preview:hover {
    background-color: #fff;
    border-color: #6c757d;
    transform: translateY(-2px);
	color: #6c757d;
}

.btn-share {
    background-color: #104B89; 
    color: #fff;
    border-color: #104B89;
	    padding: 7px;
    border-radius: 50px;
    width: 20%;
    text-align: center;
}

.btn-share:hover {
    background-color: #fff;
    border-color: #104B89;
	color: #104B89;
    transform: translateY(-2px);
}
.card-title a {
    color: #4682B4;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .book-section-modern {
        flex-direction: column; /* Stack image and content vertically */
        padding: 30px;
        gap: 30px;
    }
.caption-left p {
    font-size: 12px;
	}
	    .caption-left h5 {
        font-size: 20px;
    }
	.call-now {
    display: none;
}
.books-flex {
	flex-direction: column;
	}
	.btn-buy {
		    width: 40%;
	}
	.btn-share {
			    width: 40%;	
	}
	.row.align-items-center.g-3 {
    flex-direction: column;
}
	.k-text {
		    width: 100%;
    margin: 0 auto;
	}
	.section-contain h1 {
    text-align: left;
}
	.card-title a {
    font-size: 12px;
}
	.author-name {
    font-size: 12px;
	}.footer-col {
		max-width: 100%;
	}
	.footer-logo-wrapper {
		padding: 40px;
	}
	    .book-appointment-btn {
        padding: 10px 10px;
        font-size: 10px;
    }
    .book-image-container-modern {
        width: 180px; /* Slightly smaller on mobile */
        height: 270px;
    }
	img.img-fluid.sub-img.rounded-4.shadow.position-absolute {
    display: none;
}
	section.Questions {
    padding: 60px 0px;
}
h1.white {
    font-size: 20px;
    line-height: 1.8;
}
	.pract-detl-main-sec {
    padding: 60px 20px;
}
	.contact_us {
    padding: 60px 0px;
}
	.contact_info_sec {
		display: none;
	}

    .book-question-modern {
        font-size: 24px;
        margin-top: 20px; /* Add some space above the question */
    }

    .book-answer-modern,
    .book-description-modern,
    .book-cta-modern {
        font-size: 16px;
    }

    .book-buttons-modern {
        align-items: stretch; /* Make buttons full width */
        gap: 10px;
    }

    .btn-modern {
        width: 100%; /* Full width buttons */
        padding: 12px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .book-section-modern {
        padding: 20px;
    }

    .book-image-container-modern {
        width: 150px;
        height: 225px;
    }

    .book-question-modern {
        font-size: 20px;
    }
}

.books-flex{
	animation: fadeInUp 1.2s ease-out forwards;
    opacity: 0;
}
.blog-card-list{
	animation: fadeInUp 1.2s ease-out forwards;
    opacity: 0;
}
a.btn-orange.text-decoration-none {
    background: #4682B4 !important;
    padding: 10px;
    border-radius: 8px;
    color: white;
    font-family: 'Montserrat';
    font-size: 13px;
}





/* Sticky header */
.sick-header {
  position: sticky;
  top: 0;                /* Sticks at top */
  background: #fff;
  z-index: 1000;         /* Stays above other content */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}