/*
Theme Name: Custom Theme
Theme URI: https://yourwebsite.com
Author: Your Name
Description: A custom WordPress theme with a left sidebar and content on the right.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-menu, sidebar, bootstrap, responsive
*/

/* Main CSS */

/* General Reset (Bootstrap already includes Normalize.css) */
html {
  scroll-behavior: smooth;
}
html, body {
/*   font-family: 'Poppins', sans-serif;  */
/* 	font-family: "Lora", serif; */
	font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #333;
  background-color: #151515;
  /* background: #9599a9; */
  height: 100%;
}

/* Links */
a {
  color: #007bff; /* Bootstrap primary color */
  text-decoration: none;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Buttons */
.btn {
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 15px;
/*   font-family: "Playfair Display", serif; */
	/* font-family: "Poppins", sans-serif; */
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h2 {
  font-size: 42px;
}

/* Containers */
.container {
  max-width: 1200px;
  margin: auto;
}

/* Navbar */
.navbar {
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  background: #343a40; /* Dark Bootstrap color */
  color: #ffffff;
  padding: 20px;
  text-align: center;
}

.bg-cover {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-white {
  background: white;
}

.bg-black {
  background: black;
  color: white;
}

.section {
  padding: 100px 0;
}

/* Forms */
input, textarea, select {
  border-radius: 4px;
}

input::placeholder {
  color: #fff !important; /* Optional: lighter placeholder */
}


input:focus,
input:focus-visible {
  border: 1px solid #555; /* Optional: slight border change on focus */
  outline: none; /* Removes default focus ring */
}

/* Custom Card Styling */
.card {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Grid (Custom Utility) */
@media (max-width: 768px) {
  .grid-2, .grid-3 {
      grid-template-columns: 1fr;
  }
}

.bg_blue {
  background: #3A489C;
}

.parallax {
  position: relative;
  /* background-attachment: fixed; */
  background-size: cover;
  background-position: center;
}










/* Header CSS */

.header {
  padding: 0 15px;
}

.header li a {
  color: #fff;
  text-decoration: none;
}

.main .menu_col_height {
  height: 75vh !important;
  position: fixed;
  top: 0;
  left: 0;
}

.current-menu-item a, .current-menu-parent a {
  background: #fff;
  color: #3a489c!important;
}

.header ul.sub-menu {
  padding-bottom: 20px;
}

.header ul.sub-menu li {
  list-style: none;
}

#menu-menu-1 > .menu-item > a {
  color: #FFF;
  /* border: 2px solid rgb(216, 2, 134); */
  border-radius: 5px;
  padding: 5px 10px;
  margin-bottom: 5px;
  display: inline-block;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.6s;  
  width: 100%;
}

#menu-menu-1 > .menu-item > a:hover {
  color: #3a489c!important;
  box-shadow: inset 400px 0 0 0 #fff;
}

.header .current-menu-parent .sub-menu li a {
  background: transparent;
  color: #fff;
  transition: 1s;
}

.header .current-menu-parent .sub-menu li a:hover {
  color: #3A489C;
}

.current-menu-parent.menu-item-has-children .current-menu-item a {
  color: #3A489C!important;
}
#menu-menu-1 .sub-menu li a{
  background:transparent;
}
#menu-menu-1 .sub-menu li a:hover{
  color:#3A489C;
}


.slicknav_menu {
  background: #333; /* Change to match your theme */
}

.slicknav_nav a {
  color: white !important;
}

.slicknav_nav a:hover {
  background: #444;
}











.logo_title {
  color: #fff;
  margin-bottom: 60px;
  font-style: italic;
  font-family: fantasy;
}

.button_social_group ul {
  padding: 0;
}

.button_social_group ul li {
  list-style: none;
  margin-top: 60px;
}

.button_social_group ul li a {
  margin-right: 15px;
}






.top_banner {
    padding: 10px;
    color: #3d4b99;
    background-color: #fff;
}

.hover-line {
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
	    letter-spacing: 0.5px;
}

.hover-line::after {
  content: "";
  position: absolute;
  left: 100%; /* Start from the right */
  bottom: -4px; /* Adjust distance from text */
  width: 0;
  height: 2px;
  background-color: black;
  transition: width 0.4s ease-out, left 0.4s ease-out;
}

.hover-line:hover::after {
  width: 100%;
  left: 0; /* Move to the left */
}



.banner_section {
  height: 90vh;
}

/* .banner_section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background: linear-gradient(90deg, rgba(48, 71, 113, 0.6) 0%, rgba(51, 153, 153, 0.65) 100%);
  transition: 1s;
} */

.banner_row_content {
/*   height: 100%;
  width: 100%;
  padding: 80px 60px; */
	    width: 100%;
    /* background: rgba(0, 0, 0, 0.5);
    padding: 30px; */
    /* max-width: 70%; */
    position: relative;
    margin: 0 auto;
    top: 55%;
}
.banner_section .overlay{
/*   background: rgba(0, 0, 0, .7); */
	  background: none;
}
.banner_row_content h1 {
  font-size: 38px;
  line-height: 55px;
  font-weight: 400;
  color: #fff;
}
.grid-section{
  padding:80px 0;
  background-color: #fff;

}
.grid-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.grid-section p {
  font-size: 1rem;
  /* color: #444; */
  margin-bottom: 30px;
}
.grid-section .image-shadow-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.grid-section .image-shadow-wrapper img {
  display: block;
  width: 100%;
  height: 380px;
/* 	  height: 500px; */
  object-fit: cover;
  border-radius: 12px;
}

.grid-section .image-shadow-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgb(0 0 0), transparent);
  border-radius: 12px;
  pointer-events: none;
}

.btn-primary {
  background-color: #3A489C;
  border: none;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  border-radius: 5px;
  text-decoration: none;
}


.btn-primary:hover {
	background-color: #3A489C;
  text-decoration: none;
}
.banner_row_content .banner_col {
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Push content to bottom */
	position: relative;
}


.video_cta {
  margin: 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px; /* Adjust size */
  height: 80px; /* Adjust size */
  border-radius: 50%; /* Makes it circular */
  border: 3px solid white; /* Circle border */
  background: rgba(255, 255, 255, 0.1); /* Slight transparent background */
  text-align: center;
  position: relative;
  transition: all 0.3s ease-in-out;
	    position: absolute;
    right: 25%;
}

.video_cta::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 12px solid white; /* Triangle for play icon */
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  transform: translateX(2px); /* Adjust position */
}

.video_cta:hover {
  background: rgba(255, 255, 255, 0.2); /* Hover effect */
  transform: scale(1.1); /* Slight zoom on hover */
}








/* Quote Section */
.quote-text {
  font-size: 36px;
  font-weight: bold;
}

.author {
  background-color: #ffd700;
  display: inline-block;
  padding: 8px 15px;
  font-weight: bold;
  color: #000;
}

/* Card Section */
.card-box {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  cursor: pointer;
  transition: transform 0.3s ease-out;
}

.card-box img {
     width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
}

/* .card-box:hover {
  transform: scale(1.05);
} */

/* Hover Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background: rgb(0 0 0 / 50%);
  /* opacity: 0; */
  transition: 1s;
}

.white-overlay {
  background: rgba(255, 255, 255, 0.3); /* White */
}

.black-overlay {
  background: rgba(0, 0, 0, 0.5); /* Black */
}

.card-box:hover .overlay {
  /* background: rgba(0, 255, 0, 0.6); */
  background: linear-gradient(90deg, rgba(48, 71, 113, 0.6) 0%, rgba(51, 153, 153, 0.65) 100%);
}

/* Card Text */
.card-content {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 10px;
  z-index: 2;
}

.card-content p {
  font-size: 14px;
  font-style: italic;
  margin: 5px 0 0;
}




















.card_section {
  padding-top: 300px;
	    padding-bottom: 40;
	  background: #151515;
	text-align: center;
	color: #fff;
}

/* .blog_section {
  background: #eaeaea;
} */

.card_section h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.card_section p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.card_container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.card {
    background: #fff;
    padding: 20px 20px;
    border-radius: 10px;
    width: 280px;
    text-align: center;
    text-decoration: none;
    color: #000;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
	 text-decoration: none;
}

.card img {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 5px;

}

.card p {
    margin-top: 10px;
    font-size: 16px;
}

.cta_container {
    margin-top: 30px;
}

.cta_button {
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    background: #3A489C;
    padding: 10px 35px;
    border: 1px solid #3A489C;
    color: #fff;
    transition: 1s;
    text-decoration: none;
}

.cta_button:hover {
    background: #3A489C;
	color: #fff;
	transform:scale(1.05);
	text-decoration: none;
}









.insights_section {
    background-color: #f8f8f8;
    color: #222;
    text-align: center;
}

.insights_section h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.insights_section p {
    font-size: 18px;
    margin-bottom: 30px;
    /* max-width: 700px;
    margin: 15px auto; */
}

.insights_section .card_container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.card-c{
  background-color: #3A489C;
  border: 1px solid #3A489C;
}
.insights_section .card-in {
    background: #fff;
    padding: 0;
    border-radius: 0;
    width: 100%;
    text-align: center;
    text-decoration: none;
    color: #222;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.insights_section .card-in:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

.insights_section .card-in img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius:12px;
}

.insights_section .card-in p {
    font-size: 22px;
    font-weight: 600;
    text-align: left;
    padding-top: 10px;
}

.insights_section .cta_container {
    margin-top: 30px;
}

/* .insights_section .cta_button {
    background: #0073b1;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s ease-in-out;
}

.insights_section .cta_button:hover {
    background: #005a8e;
} */





.card-section-p{
  background-color: #eaeaea;
  text-align: center;
  padding:80px 0;
}
.card-section-p .consultation-card .cta_button{
  background-color: #3A489C;
  border-color:#3A489C;
}
/* .consultations_section {
    background-color: #f5f5edc7;
    text-align: center;
} */

.card-section-p h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
}

.card-section-p p {
    font-size: 18px;
}

/* .consultation_container {
    display: flex;
    justify-content: center;
    gap: 30px;
	color: #000;
    flex-wrap: wrap;
} */

.card-section-p .consultation-card{
    background: #f8f8f8;
    padding: 30px 50px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    height:350px;
	min-height: 350px;
}
.testimonial-card{
  background: #f8f8f8;
    padding: 30px 50px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    height:350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 350px;
}
.card-section-p .consultation-card ul {
    list-style: none;
    text-align: left;
    margin: 35px 0;
}

.card-section-p .consultation-card ul li {
    font-size: 16px;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.card-section-p .consultation-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #3A489C;
    font-weight: bold;
}

.card-section-p .testimonial_text {
    font-size: 16px;
    margin-bottom: 50px;
}

.card-section-p .testimonial_author {
    font-size: 25px;
    font-weight: bold;
    color: #3A489C;
}














.blog_section img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.blog_section.bg_grey{
  background-color: #eaeaea;
  padding:40px 0;
}
.blog_section{
  background-color: #fff;
  padding:40px 0;
}
.blog_section .card-body {
  padding: 20px;
	    min-height: 200px;
}
.blog_section .blog-head{
  background: #ffea00;
  text-transform: uppercase;
}
.blog_section .card-title{
  font-size:24px;
  margin: 20px 0px 15px 0;
}
.blog_section h2 {
    font-size: 28px;
}

.blog_section .card-body a {
	color: white;
}
.blog_section .tags a{
  font-size: 20px;
  color:#000;
  text-decoration: underline;
}




.footer{
  background-image: url(/wp-content/uploads/2025/03/Home_Newsletter_Background-2-scaled-1.jpg);
  background-position: left top;
  background-repeat: no-repeat;
  padding-top:100px;
}
.footer .footer-form-code .footer-form{
  display: inline-flex;
  align-items: baseline;
}
.footer .footer-form-code .footer-form .submit-cta {
    /* background: #06b602; */
    background: #3A489C;
    padding: 10px 35px;
    border: 1px solid #3A489C;
    /* border-radius: 30px; */
    color: #fff;
	    transition: 1s;
}
.footer-form p{
  margin: 0;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.submit-cta:hover {
	    transform: scale(1.03);
}

.footer .footer-form-code .footer-form .mail-t{
  text-align: left;
    text-transform: uppercase;
    margin: 0;
}
.footer .footer-form-code .footer-form .cta-p{
  margin: 0;
}
.footer .footer-form-code .footer-form .cta-p .submit-cta{
  background-color: #3A489C;
  border-color:#3A489C;
}
.footer .footer-form-code .footer-form .email-text{
  background: #555;
    border: 1px solid #555;
    padding: 10px 15px;
    margin: 10px 10px 0 0;
}
.newsletter p{
  font-size:30px;
  margin-bottom: 40px;
}
.footer .wpcf7-spinner{
  display: none;
}
.footer .footer-bottom{
  padding-top: 60px;
}
.footer .footer-bottom .social-icons a, .links a{
  color: #fff;
  text-decoration: none;
}
.footer .footer-bottom .social-icons{
  margin-bottom: 20px;
}
.footer .footer-bottom .copyright, .links{
  margin-bottom: 4px;
}

.footer .footer-bottom .social-icons a .fa{
  padding: 15px 18px;
  border-radius: 50%;
  margin-right: 10px;
}

.footer .footer-bottom .social-icons a .fa.fa-instagram {
  background: #0c8af0;
}

.footer .footer-bottom .social-icons a .fa.fa-youtube {
  background: #ff3636;
}

.footer .footer-bottom .social-icons a .fa.fa-linkedin {
  background: #f80600;
}
.wpcf7-not-valid-tip{
  text-align: left;
  padding-top: 10px;
}



/* Hamburger icon hidden by default, shown only on mobile */
.hamburger {
  display: none;
  font-size: 26px;
  position: absolute;
  right: 0;
  z-index: 2000;
  cursor: pointer;
  color: white;
  padding: 2px 20px 5px 2px;
  text-align: end;
  border-radius: 5px;
}

/* Default sidebar style (desktop) */
#sidebarMenu {
  position: relative;
  left: 0;
  transition: none;
}







/* About Page */


.journey-section {
  position: relative;
}

.journey-slider .slide {
  overflow: hidden;
  border-radius: 5px;
  margin: 0 15px;
}

.journey-slider .slide img {
  filter: brightness(1.3);
}

.journey-section .slide-caption {
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  z-index: 10;
}

/* Arrow Styling */
.journey-section .slick-prev, .journey-section .slick-next {
  z-index: 1;
  width: 40px;
  height: 40px;
  background: white;
  color: black;
  border-radius: 50%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
}

.journey-section .slick-prev {
  left: 20px;
}

.journey-section .slick-next {
  right: 20px;
}

.journey-section .slick-prev::before, .journey-section .slick-next::before {
  color: black;
  font-size: 40px;
  position: relative;
  top: 3px;
}


.slide.position-relative:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgb(0 0 0), transparent);
  border-radius: 12px;
  pointer-events: none;
}




/* Awards Page */


.about_intro {
  position: relative;
  width: 100%;
  height: 90vh;
/*   background: url('/wp-content/uploads/2025/04/image-9.png') no-repeat center center/cover; */
  /* display: flex; */
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.about_intro:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
/*   background: linear-gradient(to top, rgb(0 0 0 / 75%), transparent); */
	  background: none;
  /* border-radius: 12px; */
  pointer-events: none;
}

.about_overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  /* border-radius: 10px; */
  max-width: 95%;
  position: relative;
  top: 70%;
  text-align: center;
  margin: 0 auto;
  z-index: 10;
}

.about_overlay h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  /* position: relative;
  z-index: 10; */
}

.about_overlay p {
  font-size: 18px;
}








#thankyou {
  height: 65vh;
  background: url(/wp-content/uploads/2025/04/grey_bg.png) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}
#thankyou .page404_title {
  font-size: 160px;
  margin: 0;
  letter-spacing: 20px;
  color: #7f8acb;
  text-shadow: 10px -3px #3a499c;
}
#thankyou .title {
  font-size: 110px;
  margin-bottom: 20px;
  letter-spacing: 20px;
  color: #7f8acb;
  text-shadow: 8px 0px #3a499c;
}
#thankyou h2 {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  padding-bottom: 30px;
}

#loadMore{
  display: block;
  margin: 60px auto 0px auto;
  transition: all .4s ease-in-out;
  padding: 10px 30px;
}


.text-blog {
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}



@media (max-width: 1098px) {
  .hamburger {
    display: block;
    position: relative;
    background: #3A489C;
  }

  #sidebarMenu {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 75%;
    max-width: 300px;
    background-color: #3a489c;
    transition: left 0.3s ease-in-out;
    z-index: 1500;
  }

  #sidebarMenu.show {
    left: 0;
  }
  .main .menu_col_height{
    position: absolute;
  }
}
/* Only on mobile: override sidebar to be hidden initially */
@media (max-width: 768px) {


  .hover-line{
    font-size: 12px;
    /* padding-right: 35px; */
  }
  .footer .footer-form-code .footer-form .email-text{
    width:190px;
  }
  .banner_section {
    height: 45vh;
}
  h1{
    font-size: 18px!important;
    line-height: 35px!important;
  }

  h2{
    font-size: 22px!important;
    line-height: 35px!important;
  }
  .grid-section p, .grid-section h2{
    margin-bottom: 15px;
    font-size: 16px;
  }
  .grid-section .col-two{
    order:2;
  }
  .grid-section .col-one{
    order:1;
  }
  .grid-section, .card-section-p, .insights_section{
    padding: 40px 0;
  }
  .card-section-p .consultation-card{
    padding: 30px 0px;
    height:auto;
    margin-bottom: 20px;
  }
  .insights_section .insight-sp{
    padding-top: 0!important;
    margin-top: 0!important;
  }
  .grid-sp{
    margin-bottom: 20px!important;
  }
  .newsletter p {
    font-size: 17px;
    margin-bottom: 20px;
  }
  .footer{
    padding-top: 60px;
  }
  .about_overlay{
    top:50%;
  }

  .grid-section .image-shadow-wrapper img {
    height: auto;
  }

  .card-section-p p {
    font-size: 16px;
}


.testimonial-card {
  height: auto;
  min-height: auto;
}
.card-section-p .testimonial_text {
  margin-bottom: 20px;
}


.insights_section p {
  font-size: 16px;
}
.insights_section .card-in img {
  height: auto;
}
.cta_button {
  font-size: 16px;
  padding: 6px 25px;
}
.blog_section img {
  height: auto!important;
}

.text-blog {
  margin-bottom: 25px;
}

.blog_section .card-title {
  margin: 0px 0px 15px 0;
}

.about_intro {
  height: 45vh;
}
.about_overlay {
  padding: 10px;
  max-width: 80%;
}
.awards-grid-section img {
  margin-bottom: 20px!important;
}
.awards-grid-section h2 {
  margin-bottom: 25px!important;
}

.awards-grid-section .row {
  margin-bottom: 0!important;
}
.resource_intro .about_overlay {
  top: 30%;
}
.about_overlay p {
  font-size: 16px;
}
.slicker-instagram-placeholder {
  margin-bottom: 20px !important;
}
.about-dr-apoorva .content {
  padding-left: 0;
}

}


.blog_section p.card-text {
    color: #fff;
}
