/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Pastel Color Scheme */
:root {
    --primary-color: #a8d8ea;
    --secondary-color: #f7d794;
    --accent-color: #f8b500;
    --light-blue: #e8f4f8;
    --light-pink: #fce4ec;
    --light-green: #e8f5e8;
    --light-purple: #f3e5f5;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 215, 148, 0.1) 100%);
    backdrop-filter: blur(15px);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(168, 216, 234, 0.2);
    overflow: visible;
}

.navbar {
    padding: 1.2rem 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 3rem;
    width: 100%;
    min-height: 50px;
    position: relative;
    z-index: 1000;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    justify-self: start;
    overflow: visible;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.02);
    text-decoration: none;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.logo-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.logo-text {
    display: flex;
    align-items: center;
    overflow: visible;
    padding: 0.1rem 0;
}

.logo-text h2 {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    padding: 0.2rem 0;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--text-dark), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    min-width: 0;
    margin: 0;
    padding: 0;
    height: auto;
    overflow: visible;
}

.nav-item {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0.8rem;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link.active {
    color: var(--accent-color);
}

.nav-link.active::after {
    width: 80%;
}

.nav-item:last-child {
    margin-left: 0.5rem;
}

.nav-book {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffb347, #ff6a00);
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    font-size: 0.92rem;
    line-height: 1;
    vertical-align: middle;
}

.nav-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 106, 0, 0.4);
    color: var(--white);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 10001;
    padding: 0.5rem;
    background: transparent;
    border: none;
    position: relative;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Hero Carousel */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(168, 216, 234, 0.2) 0%, rgba(247, 215, 148, 0.2) 100%);
    z-index: 2;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    justify-items: start;
    position: relative;
    z-index: 5;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    -webkit-text-stroke: 1px #001f54;
    text-stroke: 1px #001f54;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-color);
}

.hero-description {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 600;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 18px;
    display: inline-block;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #e6a300;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(248, 181, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-info {
    display: flex;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.9);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.info-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px var(--shadow);
    overflow: hidden;
}

.image-placeholder i {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* About Section */
.about {
    padding: 70px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.about-visual {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 0 8px rgba(255, 255, 255, 0.8), 0 0 0 10px rgba(168, 216, 234, 0.3);
    background: linear-gradient(135deg, rgba(168, 216, 234, 0.1), rgba(248, 215, 148, 0.1));
    transition: all 0.3s ease;
    margin: 0 auto;
}

.about-visual:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 0 0 8px rgba(255, 255, 255, 0.9), 0 0 0 10px rgba(168, 216, 234, 0.4);
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    transition: transform 0.4s ease;
}

.about-visual:hover img {
    transform: scale(1.05);
}

.about-visual i {
    font-size: 3rem;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.qualifications {
    margin-top: 2rem;
}

.qualifications h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.qualifications ul {
    list-style: none;
}

.qualifications li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.qualifications i {
    color: var(--accent-color);
    width: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-blue);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item-wide {
    grid-column: span 2;
    padding: 2.5rem 2rem;
}

.stat-item-wide h3 {
    font-size: 2.8rem;
}

.stat-item-wide p {
    font-size: 1.05rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 70px 0;
    background: var(--light-green);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 216, 234, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(168, 216, 234, 0.25), rgba(248, 215, 148, 0.25));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card.active {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.25);
    border-color: rgba(168, 216, 234, 0.6);
    z-index: 10;
}

.service-card.active::after {
    opacity: 1;
}

.service-card.active .service-content {
    backdrop-filter: blur(6px);
}

/* Services Toggle */
.service-card-hidden {
    display: none;
}

.service-card-hidden.show {
    display: flex;
    animation: fadeInUp 0.5s ease-out;
}

.services-toggle {
    text-align: center;
    margin-top: 3rem;
}

.services-toggle .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.services-toggle .btn.expanded .toggle-icon {
    transform: rotate(180deg);
}

.service-image {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.45) 100%);
    opacity: 0.55;
    transition: opacity 0.3s ease;
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-content h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-content p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.service-content ul {
    list-style: none;
    margin-top: auto;
}

.service-content li {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.service-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card:hover .service-image::after {
    opacity: 0.7;
}

/* Gallery Section */
.gallery {
    padding: 70px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    height: 320px;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.3s ease, object-position 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    object-position: center 30%;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Education Section */
.education {
    padding: 70px 0;
    background: var(--light-blue);
}

.education-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 3rem;
    padding: 0.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.7), inset 0 -2px 12px rgba(168, 216, 234, 0.35);
    overflow-x: auto;
}

.education-tabs::-webkit-scrollbar {
    display: none;
}

.education-tabs {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.education-tab {
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.education-tab:hover {
    transform: translateY(-3px);
    border-color: rgba(248, 181, 0, 0.45);
}

.education-tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 12px 28px rgba(248, 181, 0, 0.35);
}

.education-panels {
    position: relative;
}

.education-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.8rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
    border: 3px solid rgba(248, 181, 0, 0.45);
    position: relative;
    overflow: hidden;
    display: none;
    animation: fadeInUp 0.5s ease forwards;
}

.education-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(168, 216, 234, 0.12), rgba(248, 215, 148, 0.25));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.education-card:hover::before {
    opacity: 1;
}

.education-panel.active {
    display: block;
}

.education-card h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    position: relative;
}

.education-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    position: relative;
}

.education-subsection {
    margin-top: 2rem;
}

.education-subsection h4 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.education-subsection h5 {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin: 1.2rem 0 0.6rem;
}

.education-list {
    list-style: none;
    padding-left: 1.2rem;
    margin-bottom: 1.2rem;
}

.education-list li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.education-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
    line-height: 1;
}

/* FAQ Section */
.faq {
    padding: 70px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(168, 216, 234, 0.25);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.faq-question {
    width: 100%;
    background: linear-gradient(135deg, rgba(168, 216, 234, 0.25), rgba(248, 215, 148, 0.25));
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(168, 216, 234, 0.35), rgba(248, 215, 148, 0.35));
}

.faq-answer {
    padding: 1.8rem 2rem 2.2rem;
    background: var(--white);
    color: var(--text-light);
    line-height: 1.8;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer h4,
.faq-answer h5 {
    color: var(--text-dark);
    margin: 1.2rem 0 0.6rem;
    font-size: 1.15rem;
}

.faq-answer ol {
    padding-left: 1.4rem;
    margin-bottom: 1.2rem;
}

.faq-answer ol li {
    margin-bottom: 0.6rem;
}

.faq-answer ul {
    list-style: none;
    padding-left: 1.2rem;
}

.faq-answer li {
    position: relative;
    margin-bottom: 0.8rem;
    padding-left: 1rem;
}

.faq-answer li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
    line-height: 1;
}

.faq-cta {
    background: rgba(168, 216, 234, 0.25);
    border-left: 4px solid var(--accent-color);
    padding: 1rem 1.2rem;
    border-radius: 12px;
    color: var(--text-dark);
    font-weight: 500;
    margin-top: 1.4rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Testimonials Section */
.testimonials {
    padding: 70px 0;
    background: var(--light-blue);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 0.2rem;
}

.rating i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Ratings Section */
.ratings {
    padding: 70px 0;
    background: var(--white);
}

.ratings-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.overall-rating {
    text-align: center;
}

.rating-circle {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 20px 40px var(--shadow);
}

.rating-circle h2 {
    font-size: 3rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.rating-circle .stars {
    margin-bottom: 0.5rem;
}

.rating-circle .stars i {
    color: var(--white);
    font-size: 1.2rem;
    margin: 0 0.1rem;
}

.rating-circle p {
    color: var(--white);
    font-size: 0.9rem;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-item span:first-child {
    min-width: 150px;
    color: var(--text-dark);
    font-weight: 500;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: var(--light-blue);
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 4px;
    transition: width 0.3s ease;
}

.rating-item span:last-child {
    min-width: 60px;
    text-align: right;
    color: var(--text-light);
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 70px 0;
    background: var(--light-pink);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.map-container {
    margin-top: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--white);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-details h3 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-details a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
}

.contact-form h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-blue);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--white);
    color: var(--accent-color);
    transform: translateY(-3px);
}

.contact-info-footer p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.contact-info-footer i {
    color: var(--accent-color);
    width: 20px;
}

.contact-link,
.contact-info-footer a {
    color: #f8d276;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover,
.contact-info-footer a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #bdc3c7;
}

/* Medium Screen Responsiveness */
@media (max-width: 1100px) and (min-width: 769px) {
    .nav-container {
        column-gap: 2rem;
        padding: 0 15px;
    }

    .nav-menu {
        gap: 0.8rem;
        justify-content: flex-end;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.6rem;
    }

    .logo-text h2 {
        font-size: 1.2rem;
        line-height: 1.3;
        padding: 0.2rem 0;
    }

    .nav-book {
        font-size: 0.85rem;
        padding: 0.5rem 0.9rem;
    }

    .nav-item:last-child {
        margin-left: 0.3rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-container {
        grid-template-columns: auto 1fr auto;
        column-gap: 1rem;
        padding: 0 15px;
    }

    .hamburger {
        display: flex;
        justify-self: end;
    }

    .nav-container {
        overflow: visible;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 215, 148, 0.95) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 100px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 10000;
        overflow-y: auto;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
        margin: 0;
        list-style: none;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    /* Backdrop overlay when menu is open - using body pseudo-element */
    body.menu-open::before {
        content: '';
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        animation: fadeIn 0.3s ease;
        pointer-events: all;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
    }

    .nav-link,
    .nav-book {
        display: block;
        width: 100%;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        text-align: center;
        border-radius: 0;
        border-bottom: 1px solid rgba(168, 216, 234, 0.2);
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-book:hover {
        background: rgba(168, 216, 234, 0.1);
        transform: none;
        color: var(--accent-color);
    }

    .nav-link::after {
        display: none;
    }

    .nav-item:last-child {
        margin-left: 0;
        border-bottom: none;
    }

    .nav-book {
        margin-top: 1rem;
        border-radius: 50px;
        width: auto;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }

    .logo-text h2 {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .map-container iframe {
        height: 320px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 20px 15px;
        justify-items: center;
    }
    
    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-info {
        flex-direction: column;
        gap: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-image {
        height: 180px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .gallery-item {
        height: 240px;
    }

    .education-tabs {
        justify-content: flex-start;
        padding: 0.5rem 0;
        gap: 0.6rem;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .education-tab {
        flex: 0 0 auto;
    }

    .education-card {
        padding: 2.2rem;
    }

    .faq-question {
        font-size: 1.1rem;
        padding: 1.3rem 1.6rem;
    }

    .faq-answer {
        padding: 1.6rem 1.6rem 1.9rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .ratings-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .contact-info-footer p {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
    
    .carousel-indicators {
        bottom: 20px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .gallery-item {
        height: 240px;
    }

    .contact-form {
        padding: 2rem;
    }

    .social-links {
        justify-content: center;
    }

    .rating-circle {
        width: 150px;
        height: 150px;
    }

    .rating-circle h2 {
        font-size: 2.5rem;
    }

    .education-card {
        padding: 1.8rem;
    }

    .education-tabs {
        gap: 0.5rem;
        flex-wrap: nowrap;
    }

    .education-tab {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
        flex: 0 0 auto;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.1rem 1.4rem;
    }

    .faq-answer {
        padding: 1.4rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Button Hover Effects */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}
