/**********CSS **********/
:root {
    --primary: #015FC9;
    --secondary: #0DD3F1;
    --light: #F6F7FC;
    --dark: #15233C;
    --bg-color: #ffffff;
    --text-color: #333333;
    --card-bg: #ffffff;
    --border-color: rgba(0, 0, 0, 0.125);
}

[data-theme="dark"] {
    --primary: #0DD3F1;
    --secondary: #015FC9;
    --light: #15233C;
    --dark: #F6F7FC;
    --bg-color: #1a1a1a;
    --text-color: #ffffff;
    --card-bg: #2d2d2d;
    --border-color: rgba(255, 255, 255, 0.125);
}

@media (max-width: 991.98px) {
    .navbar-brand {
      max-width: 70%; /* Prevent brand from taking too much space on mobile */
    }
    
    .navbar-toggler {
      padding: 4px 8px; /* Smaller padding for toggle button on mobile */
    }
  }
  
  /* Ensure minimum spacing between elements */
  .navbar .container-fluid {
    gap: 1rem;
  }



/* Dark Mode Styles */
.dark-mode {
    background-color: #1a1a1a !important;
}

/* Navbar styles */
.dark-mode .navbar {
    background-color: #2d2d2d !important;
}

.dark-mode .navbar-brand {
    color: #ffffff !important;
}

/* Explicitly keep teams section light */
.dark-mode .team-item {
    background-color: #ffffff !important;
}

.dark-mode .team-item h5,
.dark-mode .team-item p {
    color: #15233C !important;  /* Your original dark color */
}

.dark-mode .team-item .team-social a {
    color: #015FC9 !important;  /* Your primary color */
}

/* Make social icons visible by default */
.dark-mode .team-item .team-social {
    background: #015FC9!important;
    opacity: 1 !important;
    visibility: visible !important;
}

.dark-mode .team-item .team-social a {
    opacity: 1 !important;
    visibility: visible !important;
    color: #015FC9 !important;
}

/* Hover effect for social icons */
.dark-mode .team-item .team-social a:hover {
    color: #0DD3F1 !important;  /* Your secondary color for hover */
}

/* Nav links container */
.dark-mode .navbar-light .navbar-nav {
    background-color: #2d2d2d !important;
}

/* Nav links */
.dark-mode .navbar-light .navbar-nav .nav-link {
    color: #ffffff !important;
}

/* Hover and active states */
.dark-mode .navbar-light .navbar-nav .nav-link:hover,
.dark-mode .navbar-light .navbar-nav .nav-link.active {
    color: #015FC9 !important;
}

/* Form styles */
.dark-mode, select .form-control {
    background-color: #2d2d2d !important;
    border-color: #444 !important;
    color: #ffffff !important;
}

.dark-mode, select .form-control::placeholder {
    color: #cccccc !important;
    opacity: 1 !important;
}

/* Card and content styles */
.dark-mode .card {
    background-color: #2d2d2d !important;
    border-color: #444 !important;
}

.dark-mode .card-body {
    color: #ffffff !important;
}

/* Text colors */
.dark-mode h1,
.dark-mode h2,
.dark-mode h3,
.dark-mode h4,
.dark-mode a,
.dark-mode .h10,
.dark-mode blockquote,
.dark-mode h6,
.dark-mode ul,
.dark-mode p {
    color: #ffffff !important;
}

/* Dropdown styles */
.dark-mode .dropdown-menu {
    background-color: #2d2d2d !important;
    border-color: #444 !important;
}

.dark-mode .dropdown-item {
    color: #ffffff !important;
}

.dark-mode .dropdown-item:hover {
    background-color: #3d3d3d !important;
    color: #015FC9 !important;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: all 0.3s ease;
}


.card {
    background-color: var(--card-bg);
    border-color: var(--border-color);
}

.card-text {
    color: var(--text-color);
}

.navbar {
    background-color: var(--bg-color);
}

.theme-toggle {
    background: none;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.theme-toggle i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.theme-toggle:hover i {
    transform: rotate(45deg);
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.button{
    margin-left: 500px !important;
    margin-top: 40px !important;
    background-color: #015FC9;
    color: white !important;
}

.book{
    background-color: white;

}

.tet{
    color: black !important;
    font-size: 19px !important;
}
.px{
    padding-left: 200px !important;
    /* width: 200px !important; */
}

@media (max-width: 768px){
    .px{
        display: none;
    }
}

.about-container {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-heading {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
  }
  
  .about-content {
    position: relative;
  }
  
  .image-wrapper {
    float: right;
    width: 40%;
    margin: 0 0 2rem 2rem;
    shape-outside: margin-box;
  }
  
  .about-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .text-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
  }
  
  .drop-cap {
    float: left;
    font-size: 3.5em;
    padding: 0.1em 0.1em 0 0;
    color: #015FC9;
    line-height: 0.8;
  }
  
  .testimonial-quote {
    margin: 2rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid #015FC9;
    border-radius: 0 8px 8px 0;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1rem;
  }
  
  .author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
  }
  
  .author-info {
    display: flex;
    flex-direction: column;
  }
  
  .author-name {
    font-weight: bold;
    margin: 0;
  }
  
  .testimonial-label {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
  }
  
  .social-links {
    margin-top: 2rem;
  }
  
  .follow-text {
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .social-buttons {
    display: flex;
    gap: 1rem;
  }
  
  .social-link {
    color: #015FC9;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .arrow {
    font-size: 1.2em;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .image-wrapper {
      float: none;
      width: 100%;
      margin: 0 0 2rem 0;
    }
    
    .about-heading {
      font-size: 2rem;
    }
    
    .testimonial-quote {
      padding: 1.5rem;
    }
  }

/* .text-content {
    flex: 1;
    padding-right: 20px;
}

.about-text{
    font-family: "Font Awesome 5 Free" ;
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 10px;
}

'Playfair Display', serif

.signature {
    font-family: 'Brush Script MT', cursive;
    font-size: 2rem;
    margin-top: 0;
}

.columns {
    display: flex;
    gap: 40px;
}

.left-column, .right-column {
    flex: 1;
}

.drop-cap {
    font-size: 3em;
    float: left;
    line-height: 0.8;
    margin-right: 5px;
}

.social {
    margin-top: 20px;
}

.social p {
    font-weight: bold;
    margin-bottom: 5px;
}

.social a {
    display: block;
    color: #333;
    text-decoration: none;
    margin-bottom: 5px;
}

.arrow {
    font-size: 0.8em;
    vertical-align: super;
}

blockquote {
    font-style: italic;
    margin: 0 0 20px 0;
    padding-left: 20px;
    border-left: 3px solid #015FC9;
}

.testimonial {
    font-size: 0.8em;
    font-weight: bold;
    margin-bottom: 5px;
}

.author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.image-content {
    flex: 1;
}

.image-content img {
    width: 100%;
    height: auto;
    display: block;
} */

/* @media (max-width: 768px) {

    .about-container {
        flex-direction: column; Stack all elements vertically
    }
    .container {
        flex-direction: column-reverse;
    }

    .image-content img {
        display: none;
    }


    .text-content {
        padding: 0;
    }

    .columns {
        flex-direction: column;
        gap: 20px;
    }

    h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
} */

/* CEO ABout */
.about-section {
    padding: 50px 0;
  }
  .about-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }
  .about-text-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 19px;
  }

  .about-content {
    font-size: 1.1rem;
    line-height: 1.8;
    /* color: #444; */
    /* line-height: 1.8; */
}

@media (max-width: 768px) {
    .about-content {
        padding: 20px !important;
        overflow-x: hidden;
    }
}

  .owner-info {
    margin-top: 15px;
  }
  .owner-name {
    font-size: 1.25rem;
    font-weight: bold;
  }
  .owner-position {
    font-size: 1rem;
    color: #6c757d;
  }

  /* WhatsApp Button Styles */
.whatsapp-button {
    position: fixed;
    bottom: 20px; /* Adjust distance from the bottom of the screen */
    left: 20px; /* Adjust distance from the left of the screen */
    background-color: #25D366; /* WhatsApp green color */
    border-radius: 50%; /* Make it circular */
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Add shadow for a floating effect */
    z-index: 1000; /* Ensure it stays on top */
    text-decoration: none; /* Remove underline */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px; /* Set fixed size */
    height: 60px; /* Set fixed size */
}

.whatsapp-button:hover {
    background-color: #20b957; /* Darker shade for hover effect */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
    width: 100%; /* Icon takes up the full button */
    height: auto;
}

/* Team Section starts */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    width: 200px; 
    height: 100px;
    margin: 20px auto;
    border-radius: 100%; /* Makes the image circular */
    border: 5px solid #007bff; /* Blue outline */
    object-fit: cover; /* Ensures the image covers the circle */
}

.social-icons {
    margin-top: 10px;
}

.social-icon {
    margin: 0 5px;
    color: #333;
    text-decoration: none;
}

.social-icon:hover {
    color: #007bff;
}



/* course form */
.form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
}

.form-image {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column-reverse;
    }
}

/* Partnership form */
/* body {
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
} */
.card {
    border: 1px solid rgba(0, 0, 0, 0.125);
    transition: transform 0.3s ease-in-out;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card-title {
    color: #333;
}
.card-text {
    color: #666;
}

/* Counter Styles */
.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 150px;
    padding: 50px 20px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: #015FC9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.icon-circle img {
    width: 40px;
    height: 40px;
    /* filter: invert(1); */
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 70px;
    }
}

.card {
    height: 100%;
    border: none;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 250px;
}

.card:hover {
    transform: translateY(-5px);
}
.read-more {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    margin-top: auto;
    align-self: flex-start;
}
.read-more:hover {
    text-decoration: underline;
}
.card-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
}
.card-text {
    color: #666;
    margin-bottom: 1.5rem;
}

/* certificate section */
.certificate-item {
    cursor: pointer;
    transition: transform 0.3s ease;
    margin: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.certificate-item:hover {
    transform: scale(1.05);
}

.certificate-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.8;
}

.btn-close-white:hover {
    opacity: 1;
}

#certificateModal .modal-body {
    padding: 0;
    position: relative;
}

#certificateModal .modal-content {
    background-color: transparent;
    border: none;
}

#certificateModal img {
    width: 100%;
    height: auto;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    /* background-color: rgba(0,0,0,0.3); */
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    /* background-color: rgba(0,0,0,0.5); */
}


/* who are we */
.breadcrumb-item + .breadcrumb-item::before {
    content: "/"
}
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}
.who-text{
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.culture-heading {
    font-size: 2rem;
    font-weight: 600;
    margin: 3rem 0 1.5rem 0;
}



/* Events  */

.card-body {
    min-height: 250px; /* Adjust this value based on your content */
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}
.event-hero {
    max-height: 500px;
    overflow: hidden;
}

.event-hero img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.time {
    min-width: 100px;
    font-weight: 500;
}

.schedule-item:last-child {
    border-bottom: none !important;
}

/* Optional hover effect for cards */
.card {
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .event-hero {
        max-height: 300px;
    }

    .event-hero img {
        height: 300px;
    }
}



/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand img {
    max-height: 60px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 10px 0;
    color: #696E77;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        max-height: 45px;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 50px;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #696E77;
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: var(--primary);
}


/*** Facts ***/
@media (min-width: 992px) {
    .container.facts {
        max-width: 100% !important;
    }

    .container.facts .facts-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }

    .container.facts .facts-counter {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .container.facts .facts-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }

    .container.facts .facts-counter  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .container.facts .facts-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }

    .container.facts .facts-counter  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.container.facts .facts-text {
    background: linear-gradient(rgba(1, 95, 201, .9), rgba(1, 95, 201, .9)), url(../img/carousel-1.jpg) center right no-repeat;
    background-size: cover;
}

.container.facts .facts-counter {
    background: url(../img/partner.jpg) center right no-repeat;
    background-size:  cover;
}

.container.facts .facts-text .h-100,
.container.facts .facts-counter .h-100 {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}

.service-item a.btn {
    color: var(--primary);
}

.service-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(1, 95, 201, .9), rgba(1, 95, 201, .9)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    bottom: 0;
    opacity: 1;
}

.team-item a.btn {
    color: var(--primary);
}

.team-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Testimonial ***/
.animated.pulse {
    animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    padding: 5px;
    border: 1px dashed var(--primary);
    border-radius: 10px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 10px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}


/*** Footer ***/
.footer {
    color: #A7A8B4;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #A7A8B4;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #A7A8B4;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: #A7A8B4;
    border: 1px solid#A7A8B4;
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}


/* leadership section (about) */
 .leadership-showcase {
      padding: 2rem 0 5rem;
    }

    .leadership-header {
      max-width: 760px;
      margin: 0 auto 3rem;
      text-align: center;
    }

    .leadership-kicker {
      display: inline-block;
      margin-bottom: 0.85rem;
      padding: 0.45rem 0.95rem;
      border-radius: 999px;
      background: rgba(1, 95, 201, 0.1);
      color: #015FC9 !important;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .leadership-header h2 {
      color: #15233C !important;
      font-size: clamp(2rem, 3vw, 2.9rem);
      margin-bottom: 1rem;
    }

    .leadership-header p {
      color: #51617c !important;
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 0;
    }

    .leader-profile {
      height: 100%;
      display: flex;
      flex-direction: column;
      background: #ffffff !important;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 18px 45px rgba(21, 35, 60, 0.12);
      border: 1px solid rgba(1, 95, 201, 0.1);
    }

    .leader-profile-media {
      padding: 1.5rem;
      background: linear-gradient(180deg, rgba(1, 95, 201, 0.08), rgba(13, 211, 241, 0.18));
    }

    .leader-profile-media img {
      width: 100%;
      aspect-ratio: 4 / 4.6;
      object-fit: cover;
      border-radius: 22px;
      box-shadow: 0 18px 40px rgba(21, 35, 60, 0.16);
    }

    .leader-profile-body {
      padding: 2rem;
      display: flex;
      flex-direction: column;
      flex: 1;
      min-height: 300px;
    }

    .leader-role-badge {
      display: inline-flex;
      align-self: flex-start;
      margin-bottom: 1rem;
      padding: 0.45rem 0.9rem;
      border-radius: 999px;
      background: #15233C;
      color: #ffffff !important;
      font-size: 0.85rem;
      font-weight: 600;
    }

    .leader-profile h3 {
      color: #15233C !important;
      font-size: 1.7rem;
      margin-bottom: 0.9rem;
    }

    .leader-profile p {
      color: #435168 !important;
      font-size: 1rem;
      line-height: 1.75;
      margin-bottom: 1.5rem;
      flex: 1;
    }

    .leader-socials {
      margin-top: auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.85rem;
    }

    .leader-socials a {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      padding: 0.85rem 1.1rem;
      border-radius: 999px;
      background: #f6f9ff;
      border: 1px solid rgba(1, 95, 201, 0.14);
      color: #15233C !important;
      font-weight: 600;
      text-decoration: none;
      transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    }

    .leader-socials a i {
      color: #015FC9 !important;
      transition: color 0.2s ease;
    }

    .leader-socials a:hover {
      transform: translateY(-2px);
      background: #015FC9;
      color: #ffffff !important;
    }

    .leader-socials a:hover i {
      color: #ffffff !important;
    }

    
    .dark-mode .leader-profile h3,
    .dark-mode .leader-profile p,
    .dark-mode .leader-socials a {
      color: #15233C !important;
    }

    .dark-mode .leadership-header h2 ,
    .dark-mode .leadership-header p {
        color: #ffffff !important;
    }
    
        
    

    .dark-mode .leadership-kicker {
      color: #ffffff !important;
    }

    .dark-mode .leader-profile {
      background: #ffffff !important;
    }

    @media (max-width: 767.98px) {
      .leader-profile-body {
        padding: 1.5rem;
      }
    }


        /*** INTERNSHIP SECTION ***/
@media (min-width: 992px) {
    .container.intern {
        max-width: 100% !important;
    }

    .container.intern .intern-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }

    .container.intern .intern-counter {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .container.intern .intern-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }

    .container.intern .intern-counter  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .container.intern .intern-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }

    .container.intern .intern-counter  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.container.intern .intern-text {
    background: linear-gradient(rgba(1, 95, 201, .9), rgba(1, 95, 201, .9)), url(../img/carousel-1.jpg) center right no-repeat;
    background-size: cover;
}

.container.intern .intern-counter {
    background: url(../img/internship.jpg) center right no-repeat;
    background-size:  cover;
}

.container.intern .intern-text .h-100,
.container.intern .intern-counter .h-100 {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}