* {
    --text-dark: #27316f;
    --text-light: #eeeeee;
    --primary: #75c4c0;
    --secondary: #ffc800;
    --tertiary: #75c4c0;
    --quaternary: #27316f;
    --shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    --green: #34a31d;
    --white: #ffffff;
    --grey: #c1c1c1;
    --gradient: linear-gradient(to right, var(--primary), var(--secondary));
}

.btn-primary{
    background-color: var(--primary) !important;
    color: var(--text-dark) !important;
}

.btn-primary:hover{
    background-color: var(--secondary) !important;
    color: var(--text-dark) !important;
}

.color-green{
    color: var(--green);
    margin-left: 10px;
    margin-right: 20px;
}

a {
    text-decoration: none;
}

ul,
li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.margin-left-2 {
    margin-left: 2px;
}

.margin-auto {
    margin: auto;
}

.color-white {
    color: var(--white);
}

/* Header Section  */
.desktop-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    box-shadow: 0 2px 5px var(--shadow);
    width: 98%;
    margin: auto;
}

.desktop-menu img {
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.logo a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: left;
    margin-left: 20px;
}

.logo-header {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.logo-subtext {
    font-size: 0.8rem;
}

nav {
    display: flex;
    gap: 20px;
}

nav li {
    display: grid;
    width: 120px;
    height: 70px;
    place-items: center;
    cursor: pointer;
}

nav li a {
    color: var(--text-dark);
}

.sub-menu li a {
    color: var(--text-dark);
}

nav li:hover > .sub-menu {
    display: flex;
}

.sub-menu li:hover > ul {
    display: flex;
}

.sub-menu {
    position: absolute;
    top: 90px;
    box-shadow: 0 2px 5px var(--shadow);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    justify-content: center;
}

.sub-menu li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 40px;
    cursor: pointer;
    background-color: var(--secondary);
}

.sub-menu li ul li {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 40px;
    cursor: pointer;
    background-color: var(--secondary);
    left: 181px;
    top: 41px;
}

.sub-menu {
    display: none;
}

.sub-menu li ul {
    display: none;
}

.active {
    color: var(--primary) !important;
    /* border-bottom:  1px solid var(--secondary); */
}

.btn-button {
    background: var(--gradient);
    color: var(--white);
    padding: 10px 40px;
    border-radius: 20px;
    text-decoration: none;
    box-shadow: var(--shadow);
}

.btn-button:hover {
    border: 1px solid var(--quaternary);
    color: var(--text-dark);
}

/* Header Section Ends Here */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: var(--white);
    width: 90%;
    margin: auto;
    overflow: hidden;
}

.top-honeycomb {
    margin-left: -200px;
    margin-top: -400px;
}



.hero h1 {
    background: var(--gradient); /* Apply the gradient as a background */
    -webkit-background-clip: text; /* Use the background to clip the text */
    -webkit-text-fill-color: transparent; /* Make the text itself transparent to show the gradient */
    font-size: 4rem;
    font-weight: 600;
}

.hero p {
    font-size: 1.2rem;
    margin: 20px 0;
}

.btn {
    background-color: var(--secondary);
    color: var(--text-dark);
    padding: 15px 50px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px !important;
}

.btn:hover {
    background-color: var(--quaternary);
    color: var(--text-light);
}

.hero .hero-text .top-honeycomb {
    height: 100%;
    border-radius: 10px;
    align-content: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    border-radius: 10px;
    padding: auto;
    align-content: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
}

.social-icons {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-top: 20px;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.social-icon {
    width: 30px;
    height: 30px;
    /* border: 1px solid var(--text-dark); */
    font-size: 20px;
}

.social-icon a {
    text-decoration: none;
    color: var(--text-dark);
}

.social-icon a:hover {
    color: var(--secondary);
}

.social-icon a img {
    width: 20px;
    height: 20px;
    color: var(--text-dark);
}

.st0 {
    fill: var(--text-dark);
}

.st0:hover {
    fill: var(--secondary);
}


/* Hero Section Ends Here */

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ABout Section start Here */

.about-section {
    display: flex;
    background-color: var(--primary);
}
.about-image {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.about-image img {
    width: 100%;
    object-fit: initial;
}

.about-us-header {
    display: flex;
    justify-content: start;
    align-self: start;
    padding-top: 3rem;
    padding-left: 3rem;
    flex-direction: column;
}
.about-us-header h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
}

.about-us-text {
    padding-left: 3rem;
    padding-top: 2rem;
    font-size: 1.2rem;
}

.about-us-text p {
    width: 80%;
}

.about-us-text a {
    margin-top: 2rem;
}

.underline-about {
    padding: 0 10px;
    border-bottom: 5px solid #ffc800;
    width: 93px;
}
/* ABout Section Ends Here */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* Why Us starts here */
.why-us-section {
    padding-top: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 5rem;
}

.underline-why-us {
    padding: 0 10px;
    border-bottom: 5px solid #ffc800;
    width: 93px;
    margin: auto;
}

.why-us-text {
    width: 80%;
    margin: auto;
    padding-top: 2rem;
}

.why-us-box {
    margin: 3%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: var(--white);
    padding: 15px;
    border: 2px solid var(--primary);
    -moz-transition: transform 0.25s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    -webkit-transition: transform 0.25s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transition: transform 0.25s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    -moz-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation-fill-mode: none;
    animation-fill-mode: none;
}

.why-us-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
}

.why-us-icon i {
    font-size: 40px;
    /* color: var(--secondary); */
}

.why-us-box p {
    margin: 0px;
    padding: 0;
    width: 70%;
}

.why-us-box:hover {
    -moz-transform: translate3d(0, -10px, 0);
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
    background-color: var(--secondary);
}

/* Why Us Ends here */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* Programs Section starts here */

.programs {
    background-color: var(--tertiary);
    padding: 20px;
    text-align: center;
}

.services-us-header h2 {
    font-size: 2.5rem;
    padding-bottom: 10px;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px 0;
    margin-top: 1rem;
    box-shadow: 0 5px 7px var(--shadow);
}

.service-card img {
    height: 150px;
}

.service-card h3 {
    color: var(--text-dark);
    margin: 20px 0;
    font-size: 1.5rem;
}

.service-card p {
    font-size: 1rem;
    padding: 0 20px;
    color: var(--text-dark);
}

.service-card .cta {
    background-color: var(--secondary);
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.see-more {
    margin-top: 20px;
}
.see-more-btn {
    color: #fff;
}

/* Programs Section ends here */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* Testimonial Section Starts Here */

.testimonials-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.slide-one-item {
    margin-top: 2rem;
}

.text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.text blockquote p {
    font-size: 1.2rem;
    text-align: left;
    width: 80%;
    margin: auto;
    color: var(--text-dark);
}

.testimonial-image img, .testimonial-image video {
    width: 500px;
    height: 500px;
}

.text blockquote .author {
    color: var(--text-dark);
}

.testimony-29101 .testimonial-image {
    width: 40%;
    background-size: cover;
    background-position: center center;
}
@media (max-width: 991.98px) {
    .testimony-29101 .testimonial-image {
        height: 500px;
    }
}

.testimony-29101 .text {
    width: 60%;
    padding: 7rem 4rem;
    background: #f8f9fa;
}
.testimony-29101 .text blockquote {
    position: relative;
    padding-bottom: 50px;
    font-size: 18px;
}
.testimony-29101 .text blockquote .author {
    font-size: 14px;
    position: absolute;
    left: 70%;
    bottom: 0;
}

@media (max-width: 991.98px) {
    .testimony-29101 .testimonial-image,
    .testimony-29101 .text {
        width: 100%;
        display: block !important;
    }
}

@media (max-width: 991.98px) {
    .slide-one-item .owl-nav {
        display: none;
    }
}

.slide-one-item .owl-nav .owl-prev,
.slide-one-item .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #000;
}
.slide-one-item .owl-nav .owl-prev span,
.slide-one-item .owl-nav .owl-next span {
    font-size: 30px;
}
.slide-one-item .owl-nav .owl-prev:hover,
.slide-one-item .owl-nav .owl-next:hover {
    color: #000;
}
.slide-one-item .owl-nav .owl-prev:active,
.slide-one-item .owl-nav .owl-prev:focus,
.slide-one-item .owl-nav .owl-next:active,
.slide-one-item .owl-nav .owl-next:focus {
    outline: none;
}

.slide-one-item .owl-nav .owl-prev {
    left: 20px;
}

.slide-one-item .owl-nav .owl-next {
    right: 20px;
}

.slide-one-item .owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 2;
}
.slide-one-item .owl-dots .owl-dot {
    display: inline-block;
}
.slide-one-item .owl-dots .owl-dot > span {
    -webkit-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
    -o-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
    transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
    display: inline-block;
    width: 15px;
    height: 3px;
    background: rgba(0, 123, 255, 0.4);
    margin: 3px;
}
.slide-one-item .owl-dots .owl-dot.active > span {
    width: 15px;
    background: var(--text-dark);
}

/* Testimonials Ends Here */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* Blogs Section Starts Here */

.blog-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.blog-section-header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-us-header-text {
    font-size: 2.5rem;
    padding-bottom: 10px;
    display: flex;
    padding-bottom: 10px;
    align-items: center;
    justify-content: center;
}

.services-us-header-underline {
    padding: 0 10px;
    border-bottom: 5px solid #ffc800;
    width: 93px;
    margin: auto;
}
.blog-entry {
    margin: 05px;
}

.blog-entry a img {
    width: 100%;
}

.blog-entry .text {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 20px;
    background-color: #f8f9fa;
    padding-left: 5%;
    padding-right: 5%;
}

.blog-entry .text .meta {
    color: var(--text-dark);
}

.blog-entry .text h3 a {
    color: var(--text-dark);
}

.blog-entry .text h3 a:hover {
    color: var(--primary);
}

.container-xl {
    padding-bottom: 5rem;
}

/* Blogs Section Ends Here */

.contact-us-section {
    padding: 80px 0;
    position: relative;
    width: 100%;
    background-color: var(--primary);
    background-image: url("/publicAssets/image/pattern_bg4.webp");
    /* background-position: center center; */
    background-size: contain;
    backdrop-filter: blur(100px);
}

.apply_form {
    padding: 20px;
    margin-bottom: -30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.form-control {
    height: 47px;
    padding: 10px 20px;
    color: #666666;
    box-shadow: none;
}

.padding_eight_all {
    padding: 8%;
}

.form-group {
    margin-bottom: 1rem;
}

.sub_heading {
    /* //all cahars to be upper case */
    text-transform: uppercase;
}

.text_default {
    color: var(--white);
}


.rakhi-image{
    width: 100%;
}

.rakhi-image img{
    width: 70%;
}

.countdown_time {
	display: inline-block;
	width: 100%;
}
.countdown_time .countdown_box {
	float: left;
	width: 25%;
	text-align: center;
	position: relative;
}
.countdown_time .cd_text {
	display: block;
	color: #333;
}
.countdown_box .countdown {
	color: #333;
	font-size: 40px;
	font-weight: bold;
}
.countdown_white .countdown_box .countdown, .countdown_white .countdown_box .cd_text {
    color: var(--text-dark);
}
.countdown_box::before {
    content: ":";
    font-size: 40px;
    font-weight: bold;
    color: #000;
    position: absolute;
    right: -6px;
}
.countdown_white .countdown_box::before {
	color: #fff;
}
.countdown_box:last-child:before,
.countdown_style1 .countdown_box::before {
	content: normal;
}
.countdown_style1 .countdown_box {
    border-right: 1px solid #fff;
}
.countdown_style1 .countdown_box:last-child {
    border-right: 0;
}

.small_divider {
    height: 30px;
}

/* Footer section start here */

.footer-48201 {
    padding: 7rem 0;
    background-color: var(--white);
    color: var(--text-dark);
}
.footer-48201 .footer-site-logo {
    font-size: 1.5rem;
    color: var(--text-dark);
}
.footer-48201 .nav-links li {
    margin-bottom: 10px;
}
.footer-48201 .nav-links li a {
    color: var(--text-dark);
}
.footer-48201 .nav-links li a:hover {
    color: var(--secondary);
}
.footer-48201 .btn.btn-tertiary {
    background-color: var(--secondary);
    color: var(--text-dark);
    border-radius: 30px;
    border: none;
    padding: 10px 20px;
}
.footer-48201 .social li {
    display: inline-block;
}
.footer-48201 .social li a {
    color:var(--text-dark);
    padding: 7px;
}
.footer-48201 .social li a:hover {
    color: var(--secondary);
}
.footer-48201 .copyright {
    border-top: 1px solid var(--text-dark);
}


/* Blog detail page starts here */

/* Main blog details section */
.blog-details {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    padding: 80px;
}

.blog-details-header h2 {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-details-meta {
    color: #888;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 20px;
}

.blog-details-content p {
    line-height: 1.8;
    color: #333;
    font-size: 1.1em;
}

/* Social share icons */
.social-share {
    margin-top: 20px;
}

.social-share ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.social-share ul li {
    display: inline-block;
    margin-right: 10px;
}

.social-share ul li a {
    color: #333;
    font-size: 1.2em;
    transition: color 0.3s;
}

.social-share ul li a:hover {
    color: #007bff;
}

/* Sidebar */
.blog-details-sidebar {
    margin-top: 20px;
}

.blog-details-sidebar-widget {
    margin-bottom: 30px;
}

.blog-details-sidebar-widget h4 {
    font-size: 1.3em;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.blog-details-sidebar-widget ul {
    list-style: none;
    padding: 0;
}

.blog-details-sidebar-widget ul li {
    margin-bottom: 10px;
}

.blog-details-sidebar-widget ul li a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-details-sidebar-widget ul li a:hover {
    color: var(--text-dark);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .col-md-8, .col-md-4 {
        flex: 100%;
        max-width: 100%;
    }

    .social-share ul li {
        display: block;
        margin: 5px 0;
    }
}


/* ABout us Page starts here */

.about-section-indetail{
    padding: 80px 0;
}

.about-section-indetail h2{
    font-size: 2.5rem;
    font-weight: 700;
}

.about-section-indetail p{
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.about-section-indetail img{
    width: 100%;
}

.about-section-indetail quote{
    padding: 20px;
    border-radius: 10px;
    font-size: 30px;
    font-style: italic;
    margin-bottom: 3rem;
    color: var(--primary);
}

.icon{
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    border: 1ps solid var(--primary);

}

.icon i {
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--primary);
    font-size: 70px;
    text-align: center;
    line-height: 50px;
    transition: all 0.3s;
}
.commitment-card{
    padding: 20px;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.commitment-card p {
    text-align: center;
}
.section-title{
    margin-top:1rem;
    text-align: center;
}

.comitment-header, .about-us-page-header{
   margin-bottom: 2rem;
}

.about-the-founder{
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-the-founder-header{
    margin-top: 2rem;
    margin-bottom: 2rem;
    justify-content: left;
    align-items: left;
    display: flex;
    flex-direction: column;
}

.founder-image{
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.founder-image img{
    border-radius: 5px;
    margin-bottom: 20px;
    width: 100%;
}

.founder-details{
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.quote{
    font-size: 2rem;
    color: var(--primary);
    text-align: center;
    font-style: italic;
}

.one-to-one-coaching-banner{
    background-image: url("/publicAssets/image/one-to-one-coaching-banner-blur.jpg");
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.contents-for-one-to-one-coaching{
    width: 80%;
    margin: auto;
    background-color: #201f1f52;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;

}

.what-we-do-content{
    margin-top: 2rem;
    padding: 2rem;
}

.what-we-do-content li {
    padding-left: 20px;
}

.what-we-do-content li i{
    margin-right: 10px;
}

.one-to-one-image img{
    width: 100%;
    height: auto;
}

.all-programes-cards{
    width: 90%;
    margin: auto;
}

.page-description{
    margin-bottom: 5rem;
}

.featured-image{
    display: flex;
    justify-content: center;
    align-items: center;
}


.featured-image img{
    width: 100%;
}

.dynamic-page-header{
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.mobile-menu {
    display: none; /* Hidden by default for desktops */
    flex-direction: column;
    align-items: center;
    padding: 10px;
    background-color: #fff;
  }
  
  .mobile-menu .logo {
    display: flex;
    align-items: center;
  }
  
  .mobile-menu .logo img {
    width: 40px;
    height: auto;
    margin-right: 10px;
  }
  
  .mobile-menu .menu-toggle {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .mobile-menu nav.menu-items {
    width: 100%;
    /* border: 1px solid #ddd; */

  }

  .highlight{
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }


  .menu-items ul, .menu-items li {
    width: 100%;
    text-align: left;
  }

  .menu-items ul li {
    border-bottom: 1px solid #ddd;
  }
  
  .mobile-menu nav.menu-items.hidden {
    display: none;
  }
  
  .mobile-menu nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mobile-menu nav ul li {
    position: relative;
  }
  
  .mobile-menu nav ul li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
  }
  
  .mobile-menu nav ul li ul.sub-menu {
    display: none;
    padding-left: 15px;
  }
  
  .mobile-menu nav ul li a i {
    margin-left: 10px;
  }
  
  .mobile-menu nav ul li:hover > ul.sub-menu {
    display: block;
  }
  
  .actual-menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .order-one {
    order: 1;
  }

  
  .order-two {
    order: 2;
  }


@media (max-width: 768px) {
    .desktop-menu{
        display: none;
    }
    .mobile-menu{
        display: block;
    }

    .hero-image {
        display: none;
    }

    .testimony-29101 .text {
        padding: 10px;
    }

    .testimony-29101 .text blockquote{
        margin-top: 0px;
    }

    .testimony-29101 .text blockquote .author{
        margin-top: 30px;
        margin-left: 0px;
        word-wrap: normal;
        left: 60%;  
    }

    .order-one {
        order: 2;
      }
    
    
    .order-two {
    order: 1;
    }

    .rakhi-image img{
        width: 100%;
    }
    .testimony-29101{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .testimony-29101 img, .testimony-29101 video{
        width: 100%;
    }
    
    
}

@media (min-width: 768px) {
    .mobile-menu{
        display: none;
    }
}