/* Base styles and reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: rgb(255, 255, 255);
    color: #333;
    line-height: 1.6;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.reg-symbol {
  font-size: 0.5em; /* Makes it smaller */
  vertical-align: super;
}

/* Utility Classes */
.gradient-text {
    background: linear-gradient(135deg, #004aad, #00c8ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #004aad, #00c8ff);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

p.coaching-text {
  font-family: sans-serif;
  /* font-weight: bold; */
  /* white-space: nowrap;  */
  overflow: hidden;
  font-size: 0.9rem !important;
  text-overflow: ellipsis;
  margin-bottom: 2px !important;
  margin-top: 2px !important;
}

.coach {
    margin-bottom: 25px;
}
 
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hidden {
    display: none;
}

.placeholder-text {
    text-align: center;
    padding: 30px 15px;
    background-color: rgba(0, 123, 255, 0.05);
    border-radius: 8px;
    font-style: italic;
    color: #777;
}

/* Header styles */
header {
    background: linear-gradient(135deg, #001f54, #0077b6);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo {
    height: 50px;
    /* width: auto; */
    margin-left: 0;
}

/* Main navigation items - hidden on mobile */
.main-nav {
    display: none;
}

/* Dropdown Navigation for mobile */
.dropdown {
    position: relative;
    display: inline-block;
    margin-right: 0;
}

.dropdown-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-icon {
    display: inline-block;
    position: relative;
    width: 24px;
    height: 18px;
}

.bar {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 3px;
    opacity: 1;
    transition: 0.3s;
}

.bar:nth-child(1) {
    top: 0;
}

.bar:nth-child(2) {
    top: 7px;
}

.bar:nth-child(3) {
    top: 14px;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 40px;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background 0.3s;
    border-bottom: 1px solid #f1f1f1;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}


/* Main Content Sections */
main {
    padding-top: 60px;
}

section {
    padding: 20px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    font-size: 1.8rem;
    font-weight: bold;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #0077b6, #90e0ef);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.1), rgba(144, 224, 239, 0.1));
    text-align: center;
}

.hero h2 {
    font-size: 2rem;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    max-width: 600px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
}


/* Banner Image */
.banner-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.banner-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.banner-text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
}

.banner-quote-box {
  position: relative;
  width: 100%;
  height: 130px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-left: 3px solid #0077b6;
}

.banner-text {
  font-size: 1.2rem;
  color: white;
  padding: 15px;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease-in-out;
  font-style: italic;
  text-align: center;
}

/* Mentors Section */
.mentors {
    background: linear-gradient(135deg, #31b7ff37 0%, #ffffff 100%);
    padding: 20px 0;
}

.mentors-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mentor-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.mentor-header {
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
}

.mentor-tribute {
    font-style: italic;
    color: #0077b6;
    font-weight: 500;
    margin-bottom: 10px;
}

/* New layout: profile and basic info side by side */
.mentor-basic-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.mentor-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex-shrink: 0; /* Prevent image from shrinking */
}

.mentor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.mentor-name-title {
    flex: 1;
    text-align: left;
}

.mentor-name-title h3 {
    margin-bottom: 5px;
    font-size: 1rem;
    margin-top: 0;
}

.mentor-name-title p {
    font-size: 0.7rem;
}

.mentor-title {
    color: #0077b6;
    font-weight: bold;
    margin-bottom: 0;
}

/* Content below remains the same */
.mentor-content {
    text-align: center;
}

.mentor-content p {
    margin-bottom: 15px;
    font-size: 0.7rem;
    font-weight: bold;
}

.mentor-details {
    margin-top: 15px;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    text-align: left;
}

.mentor-expanded .mentor-details {
    max-height: 350px; /* Adjusted for consistent spacing */
    opacity: 1;
}

.mentor-expand {
    display: inline-block;
    color: white;
    background: linear-gradient(135deg, #90e0ef, #0077b6);
    font-weight: bold;
    text-decoration: none;
    /* margin-top: 10px; */
    padding: 8px 15px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mentor-expand:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mentor-details h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #0077b6;
}

.mentor-details ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.mentor-details ul li {
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
    margin-bottom: 5px;
}

.mentor-details ul li:before {
    content: "🔹";
    position: absolute;
    left: 0;
    top: 4px;
}

/* New Resume Button Styles */
.mentor-buttons {
    text-align: center;
    margin: 15px 0;
}

.resume-btn {
    display: inline-block;
    color: white;
    background: linear-gradient(135deg, #28a745, #20c997);
    font-weight: bold;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 25px;
    margin-bottom: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.resume-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
    /* mentor */
    .mentors-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .mentor-name-title h3 {
        font-size: 1.1rem;
    }

    .mentor-expand {
        margin-top: 10px;
    }

    .mentor-name-title p {
        font-size: 1.1rem;
    }

    .mentor-card {
        flex: 1;
        min-width: 300px;
        max-width: 45%;
    }

    .mentor-content p {
        margin-bottom: 15px;
        font-size: 1rem;
        font-weight: bold;
    }

    .mentor-image {
        width: 100px;
        height: 100px;
    }
}

/* mentor ends */

/* About & Why Section */
.about-why {
    background: linear-gradient(135deg, #eff9ff 0%, #ffffff 100%);
    padding: 30px 0;
}

.about-why-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-section, .why-section {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.about-section:hover, .why-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.content-expandable {
    position: relative;
}

.content-expandable p, .content-expandable ul {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

.content-expandable ul {
    margin-left: 5px;
    list-style-type: none;
}

.content-expandable ul li {
    padding: 6px 0;
    position: relative;
    padding-left: 25px;
    margin-bottom: 5px;
}

.content-expandable ul li:before {
    content: "•";
    position: absolute;
    left: 5px;
    top: 6px;
    color: #0077b6;
    font-size: 18px;
}

.why-list {
    margin-left: 5px;
    list-style-type: none;
    margin-bottom: 15px;
}

.why-list li {
    padding: 6px 0;
    position: relative;
    padding-left: 25px;
    margin-bottom: 5px;
}

.why-list li:before {
    content: "•";
    position: absolute;
    left: 5px;
    top: 6px;
    color: #0077b6;
    font-size: 18px;
}

.highlight-list li {
    padding: 7px 0 !important;
    margin-bottom: 5px;
}

.content-hidden {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, opacity 0.6s ease;
    opacity: 0;
}

.content-expanded .content-hidden {
    max-height: 1000px;
    opacity: 1;
}

.btn-expand {
    background: linear-gradient(135deg, #90e0ef, #0077b6);
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    margin-top: 10px;
}

.btn-expand:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.quote-container {
    position: relative;
    margin-bottom: 25px;
    padding: 20px 25px;
    background-color: rgba(144, 224, 239, 0.1);
    border-left: 4px solid #0077b6;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
}

.quote-symbol {
    font-size: 45px;
    color: #0077b6;
    position: absolute;
    top: -15px;
    left: 10px;
    opacity: 0.6;
}

.quote-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.5;
    padding-left: 10px;
    margin: 0;
    font-weight: bold;
}

/* Media Queries for About & Why sections */
@media (min-width: 768px) {

    p.coaching-text {
    font-size: 70%;
    }

    .about-why-container {
        flex-direction: row;
    }
    
    .about-section {
        flex: 3;
        margin-right: 15px;
    }
    
    .why-section {
        flex: 2;
        margin-left: 15px;
    }
    
    .quote-symbol {
        font-size: 50px;
    }
    
    .quote-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .about-section, .why-section {
        padding: 20px;
    }
    
    .quote-container {
        padding: 15px 20px;
    }
    
    .quote-text {
        font-size: 1rem;
    }
}

/* Updated Services Carousel Styles */
.services {
    background: linear-gradient(135deg, rgba(0, 50, 200, 0.05), rgba(0, 130, 255, 0.05));
    padding: 20px 0;
}

.services-content {
    position: relative;
    margin-top: 40px;
}

.services-carousel {
    position: relative;
    padding: 5px 0 40px;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    /* Added left padding to support centering */
    padding-left: calc(50% - 140px);
}

.service-card {
    min-width: 280px;
    width: 280px;
    aspect-ratio: 1/1;
    padding: 15px;
    /* margin: 0 15px; */
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 100, 255, 0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.7;
    transform: scale(0.9);
}

/* Active card styling */
.service-card.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 12px 25px rgba(0, 100, 255, 0.2);
}

.service-card:hover {
    transform: translateY(-10px) scale(1);
    box-shadow: 0 12px 25px rgba(0, 100, 255, 0.15);
    opacity: 1;
}

.service-image {
    flex: 0 0 55%;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 10px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0052cc;
    margin-bottom: 5px;
    line-height: 1.2;
}

.service-caption {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-style: italic;
}

.service-buttons {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-know-more {
    background: linear-gradient(135deg, #0052cc, #00a0ff);
    flex: 1;
    font-size: 0.85rem;
    padding: 8px 15px;
}

.btn-register {
    background: linear-gradient(135deg, #003399, #0075e6);
    flex: 1;
    font-size: 0.85rem;
    padding: 8px 15px;
}

/* Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #0052cc;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 5;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.prev-arrow {
    left: 10px;
}

.next-arrow {
    right: 10px;
}

/* Pagination Dots */
.carousel-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #0052cc;
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .service-card {
        min-width: 300px;
        width: 300px;
    }
    
    .carousel-track {
        padding-left: calc(50% - 150px);
    }
}

@media (min-width: 992px) {
    .service-card {
        min-width: 320px;
        width: 320px;
    }
    
    .carousel-track {
        padding-left: calc(50% - 160px);
    }

    .about-why {
        background: linear-gradient(135deg, #def4ff 0%, #ffffff 100%);
    }
}

@media (max-width: 767px) {
    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .service-card {
        min-width: 250px;
        width: 250px;
    }
    
    .carousel-track {
        padding-left: calc(50% - 125px);
    }
    
    .service-title {
        font-size: 1.2rem;
    }
}
/* service ends */

/* Events Section */
.events_section {
    background: linear-gradient(135deg, rgba(0, 150, 50, 0.05), rgba(0, 200, 100, 0.05));
    padding: 20px 0 0;
    /* margin-bottom: 40px; */
}

.events_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.events_section_title {
    color: #008a2e;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.events_carousel {
    position: relative;
    padding: 10px 0 30px;
}

.events_carousel_container {
    width: 100%;
    overflow: hidden; 
    position: relative;
}

.events_carousel_track {
    display: flex;
    transition: transform 0.5s ease;
    padding-left: calc(50% - 140px);
}

.events_card {
    min-width: 280px;
    width: 280px;
    /* height: 360px;  */
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 150, 50, 0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.7;
    transform: scale(0.9);
    overflow: hidden;
}

.events_card.events_active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 12px 25px rgba(0, 150, 50, 0.2);
}

.events_card:hover {
    transform: translateY(-10px) scale(1);
    box-shadow: 0 12px 25px rgba(0, 150, 50, 0.15);
    opacity: 1;
}

.events_title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #008a2e;
    margin-bottom: 10px;
    line-height: 1.2;
    text-align: center;
}

.events_image_container {
    height: 180px; /* Reduced height from 200px */
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 10px;
}

.events_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.events_content {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between; /* Distributes space evenly */
}

.events_date {
    color: #666;
    font-size: 1rem;
    margin: 5px 0; /* Reduced margin */
    font-weight: bold;
    text-align: center;
}

.events_buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px; /* Reduced margin from auto */
}

.events_view_button {
    flex: 1;
    background: linear-gradient(135deg, #005bb0, #0080ff);
    color: white;
    border: none;
    padding: 10px 5px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0.9rem;
}

.events_details_button {
    flex: 1;
    background: linear-gradient(135deg, #25d366, #128C7E);
    color: white;
    border: none;
    padding: 10px 5px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0.9rem;
}

.events_view_button:hover {
    background: linear-gradient(135deg, #004999, #0066cc);
    transform: translateY(-2px);
}

.events_details_button:hover {
    background: linear-gradient(135deg, #1fae57, #0e7264);
    transform: translateY(-2px);
}

.events_carousel_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #008a2e;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 5;
    transition: all 0.3s ease;
}

.events_carousel_arrow:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.events_prev_arrow {
    left: 10px;
}

.events_next_arrow {
    right: 10px;
}

.events_no_events {
    text-align: center;
    padding: 50px;
    color: #666;
    padding-left: 23%;
    font-size: 1.2rem;
    font-weight: bolder;
}

/* Modal for poster view */
.events_modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.events_modal_content {
    position: relative;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-width: 95%;
}

.events_modal_image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.events_modal_close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 60px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .events_card {
        min-width: 300px;
        width: 300px;
        /* height: 380px;  */
    }
    
    .events_carousel_track {
        padding-left: calc(50% - 150px);
    }
    
    .events_image_container {
        height: 200px; /* Reduced from 220px */
    }

    .events_no_events {
        text-align: center;
        padding: 50px;
        color: #666;
        padding-left: 15%;
        font-size: 1.2rem;
        font-weight: bolder;
    }

}

@media (min-width: 992px) {
    .events_card {
        min-width: 320px;
        width: 320px;
        /* height: 400px;  */
    }
    
    .events_carousel_track {
        padding-left: calc(50% - 160px);
    }
    
    .events_image_container {
        height: 220px; /* Reduced from 240px */
    }
}

@media (max-width: 767px) {
    .events_carousel_arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .events_card {
        min-width: 250px;
        width: 250px;
        height: 300px; /* Reduced from 380px */
    }
    
    .events_carousel_track {
        padding-left: calc(50% - 125px);
    }
    
    .events_title {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .events_image_container {
        height: 160px; /* Reduced from 180px */
    }
    
    .events_buttons {
        gap: 5px;
    }
    
    .events_view_button, .events_details_button {
        font-size: 0.8rem;
        padding: 8px 5px;
    }
}

/* event ends */

/* Testimonials Section */
.testimonials {
    background-color: white;
    padding: 40px 0;
}

/* Blog Section */
.blog {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.05), rgba(144, 224, 239, 0.05));
    padding: 10px 0;
}

/* Appointment Section */
.appointment {
    background-color: white;
    padding: 40px 0;
}

.form-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.form-container iframe {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .form-container iframe {
        width: 100%;
        max-width: 350px;
        height: 500px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .form-container iframe {
        width: 350px;
        height: 500px;
    }
}

/* Desktop */
@media (min-width: 769px) {
    .form-container iframe {
        width: 100%;
        height: 600px;
        max-width: 800px;
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, #001f54, #0077b6);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #caf0f8;
    font-size: 1.3rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-link i {
    width: 20px;
}

.social-link:hover {
    color: #caf0f8;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* Animation Classes */
.slide-in, .slide-in-left, .slide-in-right {
    opacity: 0;
    transition: opacity 0.8s, transform 0.8s;
}

.slide-in-left {
    transform: translateX(-30px);
}

.slide-in-right {
    transform: translateX(30px);
}

.slide-in.appear {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-left.appear {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right.appear {
    opacity: 1;
    transform: translateX(0);
}

/* Media Queries for tablet and desktop */
@media (min-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 2.4rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    

    .about-why-container {
        flex-direction: row;
    }
    
    .about-section, .why-section {
        /* flex: 1; */
        padding: 25px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-links {
        flex-direction: row;
        gap: 15px;
    }
}

@media (min-width: 992px) {
    /* Show main nav but keep the dropdown on desktop */
    .main-nav {
        display: flex;
    }
    
    .main-nav a {
        color: white;
        text-decoration: none;
        margin: 0 15px;
        font-weight: 500;
    }

    /* banner */
    .banner-text-container {
      width: 40%;
      right: auto;
      top: 30%;
      left: 50%;
      text-align: left;
    }
    
    /* Keep dropdown button visible on desktop */
    .dropdown-btn {
        display: block;
        background: white;
        color: #333;
        padding: 8px 16px;
        border: none;
        border-radius: 20px;
        cursor: pointer;
        font-weight: bold;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    /* Hide hamburger bars on desktop */
    .menu-icon {
        display: none;
    }
    
    /* Add "More ▼" text for desktop */
    .dropdown-btn:after {
        content: 'More \25BE';
    }
    
    .dropdown-content {
        top: 45px;
        min-width: 180px;
        right: 0;
    }
    
    .dropdown:hover .dropdown-content {
        display: block;
    }
    
    .hero {
        padding: 30px 0 30px;
    }
    
    .hero h2 {
        font-size: 2.8rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .mentors-grid {
        gap: 30px;
    }
    
    .mentor-card {
        max-width: 45%;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }

    p.coaching-text {
        font-size: 1.1rem !important;
    }

}


/* Map Section Styles */
.map-section {
    position: relative;
    width: 100%;
    padding: 3rem 0;
    background-image: url('photos/mapBg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Map Button Styles */
.map-button {
    position: relative;
    width: 280px; /* Smaller for mobile view */
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
}
/* Button container with 16:9 aspect ratio */
.button-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}
/* Map image styles */
.map-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Text overlay */
.map-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}
/* Hover effect */
.map-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
/* Float animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}
/* Media query for larger screens */
@media (min-width: 768px) {
    .map-button {
        width: 320px;
    }
    .map-text {
        font-size: 18px;
    }
}
/* map section ends */

/* Testimonials Section Styles */
.testimonials {
    background: linear-gradient(135deg, rgba(0, 50, 200, 0.03), rgba(0, 130, 255, 0.03));
    padding: 15px 0;
    position: relative;
    overflow: hidden;
}

/* Testimonial Points */
.testimonial-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.point-container {
    display: flex;
    justify-content: center;
}

.testimonial-point {
    background: white;
    border-radius: 10px;
    padding: 15px 25px;
    box-shadow: 0 5px 15px rgba(0, 100, 255, 0.1);
    text-align: center;
    width: 85%;
    max-width: 450px;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.5s ease;
}

.testimonial-point p {
    margin: 0;
    font-size: 1.1rem;
    color: #0052cc;
    font-weight: 500;
}

.testimonial-point.slide-in-left {
    transform: translateX(-100px);
}

.testimonial-point.slide-in-right {
    transform: translateX(100px);
}

.testimonial-point.slide-in-left.appear,
.testimonial-point.slide-in-right.appear {
    opacity: 1;
    transform: translateX(0);
}

/* Button Container */
.testimonial-button-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

#viewTestimonialsBtn {
    background: linear-gradient(135deg, #0052cc, #00a0ff);
    padding: 10px 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#viewTestimonialsBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 100, 255, 0.2);
}

/* Extended Testimonials View */
.testimonials-extended {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
    opacity: 0;
    padding: 0;
}

.testimonials-extended.active {
    max-height: 600px;
    opacity: 1;
    padding: 30px 0;
}

.testimonials-extended h3 {
    text-align: center;
    color: #0052cc;
    margin-bottom: 25px;
}

/* Testimonial Carousel */
.testimonial-carousel {
    position: relative;
    padding: 10px 0 10px;
}

.testimonial-track-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    /* Updated to match service carousel padding */
    padding-left: calc(50% - 140px);
}

/* Updated testimonial item dimensions to match service cards */
.testimonial-item {
    min-width: 280px;
    width: 280px;
    padding: 0 15px;
    transition: all 0.3s ease;
    opacity: 0.7;
    transform: scale(0.9);
}

.testimonial-item.active {
    opacity: 1;
    transform: scale(1);
}

/* Updated button styling */
.testimonial-button {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;  /* Square aspect ratio like service cards */
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 100, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;  /* Added background to match service cards */
}

.testimonial-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 100, 255, 0.2);
}

/* Updated image styling to fill the entire button */
.testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Changed back to cover to fill the entire button */
    object-position: center;
    display: block;
}

.testimonial-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 82, 204, 0.8);
    color: white;
    padding: 8px 0;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.testimonial-button:hover .testimonial-overlay {
    background: rgba(0, 82, 204, 0.95);
}

/* Carousel Navigation */
.testimonial-prev,
.testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;  /* Increased size to match service carousel */
    height: 40px;  /* Increased size to match service carousel */
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;  /* Increased size to match service carousel */
    color: #0052cc;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 5;
    transition: all 0.3s ease;
}

.testimonial-prev {
    left: 10px;
}

.testimonial-next {
    right: 10px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Testimonial Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 12px;  /* Updated to match service carousel dots */
    height: 12px;  /* Updated to match service carousel dots */
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: #0052cc;
    transform: scale(1.2);
}

/* Close Button */
.close-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#closeTestimonialsBtn {
    background: linear-gradient(135deg, #444, #666);
    padding: 8px 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

#closeTestimonialsBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* Photo Modal Styles */
.photo-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.photo-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.photo-close:hover {
    color: #ccc;
}

#modalImage {
    margin: auto;
    display: block;
    max-width: 95%;
    max-height: 90%;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

/* Loader animation for image loading */
@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .testimonial-points {
        margin: 50px 0;
    }
    
    /* Updated to match service carousel responsive sizes */
    .testimonial-item {
        min-width: 300px;
        width: 300px;
    }
    
    .testimonial-track {
        padding-left: calc(50% - 150px);
    }
    
    .testimonial-overlay {
        font-size: 0.9rem;
    }
}

@media (min-width: 992px) {
    /* Updated to match service carousel responsive sizes */
    .testimonial-item {
        min-width: 320px;
        width: 320px;
    }
    
    .testimonial-track {
        padding-left: calc(50% - 160px);
    }
}

@media (max-width: 767px) {
    .testimonial-prev,
    .testimonial-next {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Updated to match service carousel responsive sizes */
    .testimonial-item {
        min-width: 250px;
        width: 250px;
    }
    
    .testimonial-track {
        padding-left: calc(50% - 125px);
    }
}

@media (max-width: 576px) {
    /* Additional smaller screen responsiveness */
    .testimonial-overlay {
        padding: 5px 0;
    }
}

/* WhatsApp Floating Button Styles */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #1da851;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.whatsapp-button i {
    font-size: 24px;
    margin-right: 8px;
}

.whatsapp-text {
    font-weight: bold;
    font-size: 14px;
}

/* Pulse animation for the WhatsApp button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.pulse-effect {
    animation: pulse 1s ease-out;
}

/* For mobile devices */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        padding: 10px 15px;
    }
    
    .whatsapp-text {
        display: none; /* Hide text on mobile for a more compact button */
    }
    
    .whatsapp-button i {
        margin-right: 0;
        font-size: 28px;
    }
}
/* whatsapp ends */

/* Call Floating Button Styles */
.call-float {
    position: fixed;
    bottom: 90px; /* Positioned above the WhatsApp button */
    right: 30px;
    z-index: 1000;
}

.call-button {
    display: flex;
    align-items: center;
    background-color: #4CAF50; /* Green color for call button */
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.call-button:hover {
    background-color: #388E3C; /* Darker green on hover */
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.call-button i {
    font-size: 24px;
    margin-right: 8px;
}

.call-text {
    font-weight: bold;
    font-size: 14px;
}

/* Popup Styles */
.call-popup {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.call-popup-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 25px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    text-align: center;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #888;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.close-popup:hover {
    color: #333;
}

.phone-number {
    font-size: 20px;
    font-weight: bold;
    color: #4CAF50;
    margin: 20px 0;
}

.call-now-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.call-now-btn:hover {
    background-color: #388E3C;
    transform: translateY(-2px);
}

/* Pulse animation for the Call button */
@keyframes call-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

.call-pulse-effect {
    animation: call-pulse 1s ease-out;
}

/* For mobile devices */
@media screen and (max-width: 768px) {
    .call-float {
        bottom: 80px;
        right: 20px;
    }
    
    .call-button {
        padding: 10px 13px;
    }
    
    .call-text {
        display: none; /* Hide text on mobile for a more compact button */
    }
    
    .call-button i {
        margin-right: 0;
        font-size: 28px;
    }
}
/* call button ends */


/* blog section */
.blog_nav_buttons {
    display: flex;
    gap: 15px;
}
.blog_date {
    color: #777;
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 15px;
    display: block;
}

.blog_button {
    background: linear-gradient(135deg, #0052cc, #00a0ff);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.blog_button:hover {
    background: linear-gradient(135deg, #003399, #0075e6);
    transform: translateY(-2px);
}
/* Blog Slideshow Section */
.blog_section {
    background: linear-gradient(135deg, rgba(0, 50, 200, 0.05), rgba(0, 130, 255, 0.05));
    padding: 60px 0;
    margin-bottom: 40px;
}

.blog_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog_section_title {
    color: #0052cc;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.blog_carousel {
    position: relative;
    padding: 10px 0 20px;
}

.blog_carousel_container {
    width: 100%;
    overflow: hidden; 
    position: relative;
}

.blog_carousel_track {
    display: flex;
    transition: transform 0.5s ease;
    padding-left: calc(50% - 140px);
}

.blog_card {
    min-width: 280px;
    width: 280px;
    height: 360px; 
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 100, 255, 0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.7;
    transform: scale(0.9);
    overflow: hidden; /* Prevent content from overflowing */
}

.blog_card.blog_active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 12px 25px rgba(0, 100, 255, 0.2);
}

.blog_card:hover {
    transform: translateY(-10px) scale(1);
    box-shadow: 0 12px 25px rgba(0, 100, 255, 0.15);
    opacity: 1;
}

.blog_title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0052cc;
    margin-bottom: 10px;
    line-height: 1.2;
    text-align: center;
}

.blog_image_container {
    height: calc((250px - 30px) * 3/4); /* 4:3 ratio based on card width minus padding */
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 10px;
}

.blog_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.blog_content {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative; /* For positioning the button */
}

.blog_caption {
    color: #666;
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: bold;
    /* Limit to 2 lines with ellipsis */
    display: -webkit-box;
    /* -webkit-line-clamp: 2; */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.blog_view_more {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0;
    margin-top: auto; /* Push to bottom */
}

.blog_view_more i {
    font-size: 40px;
    margin: 20px 0;
    color: #0052cc;
}

.blog_view_more p {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0052cc;
    margin: 0 0 15px 0;
}

.blog_carousel_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #0052cc;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 5;
    transition: all 0.3s ease;
}

.blog_carousel_arrow:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.blog_prev_arrow {
    left: 10px;
}

.blog_next_arrow {
    right: 10px;
}

.blog_no_blogs {
    text-align: center;
    padding: 50px;
    color: #666;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .blog_card {
        min-width: 300px;
        width: 300px;
        height: 380px; /* Increased card height */
    }
    
    .blog_carousel_track {
        padding-left: calc(50% - 150px);
    }
    
    .blog_image_container {
        height: calc((300px - 30px) * 3/4); /* 4:3 ratio */
    }
}

@media (min-width: 992px) {
    .blog_card {
        min-width: 320px;
        width: 320px;
        /* height: 400px; */
    }
    
    .blog_carousel_track {
        padding-left: calc(50% - 160px);
    }
    
    .blog_image_container {
        height: calc((320px - 30px) * 3/4); /* 4:3 ratio */
    }
}

@media (max-width: 767px) {
    .blog_carousel_arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .blog_card {
        min-width: 250px;
        width: 250px;
        height: 330px; /* Increased card height */
    }
    
    .blog_carousel_track {
        padding-left: calc(50% - 125px);
    }
    
    .blog_title {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .blog_image_container {
        height: calc((250px - 30px) * 3/4); /* 4:3 ratio */
    }
    
    .blog_caption {
        margin-bottom: 8px;
        font-size: 0.9rem;
    }
}
/* blog ends */

/* Special styling for the admin login button in dropdown */
    .dropdown-content .admin-login-btn {
        display: block;
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        border-radius: 0;
        overflow: hidden;
    }
    .dropdown-content .admin-login-btn:hover {
        background-color: #f1f1f1;
        opacity: 1;
    }
    .dropdown-content .admin-login-btn img {
        width: 100%;
        height: 60px;
        /* object-fit: cover; */
        padding: 0;
        margin: 0;
        display: block;
    }

.form {
    justify-content: center;
    align-items: center;
}

.one {
    font-weight: bold;
}