/* Global Styles */
:root {
    --primary-color: #1abc9c;
    --secondary-color: #3498db;
    --light-bg: #f0f8ff;
    --white: #fff;
    --text-dark: #2c1810;
    --text-light: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    background: linear-gradient(90deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 8px 32px rgba(0, 160, 160, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 160, 160, 0.1);
    position: relative;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0.3;
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.8px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 0.5rem 1rem;
    border-radius: 0.8rem;
}

.navbar-brand:hover {
    transform: scale(1.1) translateY(-2px);
    filter: drop-shadow(0 8px 16px rgba(0, 160, 160, 0.2));
}

.navbar-brand i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

/* Hamburger Toggle Button */
.navbar-toggler {
    border: 2px solid var(--primary-color) !important;
    padding: 0.4rem 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 160, 160, 0.25) !important;
}

.navbar-toggler:hover {
    background: rgba(0, 160, 160, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300a0a0' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5rem;
    height: 1.5rem;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300a0a0' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M7 7l16 16M23 7L7 23'/%3e%3c/svg%3e");
}

.nav-link {
    color: #2c3e50 !important;
    font-weight: 700;
    margin: 0 0.3rem;
    padding: 0.8rem 1.2rem !important;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    font-size: 1rem;
    border-radius: 0.6rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.2rem;
    right: 1.2rem;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(0, 160, 160, 0.08);
    transform: translateY(-3px);
}

.nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(0, 160, 160, 0.15);
}

.nav-link.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border: 1px solid rgba(0, 160, 160, 0.15) !important;
    border-radius: 1.2rem !important;
    box-shadow: 0 16px 48px rgba(0, 160, 160, 0.15), 0 0 1px rgba(0, 0, 0, 0.05) !important;
    padding: 1rem 0 !important;
    animation: slideDownMenu 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-top: 0.5rem !important;
}

@keyframes slideDownMenu {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    color: #2c3e50 !important;
    font-weight: 700 !important;
    padding: 1.2rem 2rem !important;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    font-size: 1rem;
    position: relative;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transition: height 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 0 2px 2px 0;
}

.dropdown-item:hover,
.dropdown-item.active {
    background: rgba(0, 160, 160, 0.1) !important;
    color: var(--primary-color) !important;
    transform: translateX(8px) !important;
}

.dropdown-item:hover::before,
.dropdown-item.active::before {
    height: 100%;
}

.dropdown-divider {
    border-color: rgba(0, 160, 160, 0.15) !important;
    margin: 0.8rem 0 !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f8ff 100%);
    padding: 3rem 1.5rem;
    color: #2c3e50;
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 6rem 4rem;
        min-height: 85vh;
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 15% 20%, rgba(0, 160, 160, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(0, 119, 182, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(3.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #1abc9c 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    line-height: 1.3;
}

.hero-description {
    color: #666;
    line-height: 1.8;
}

/* Expertise Slider */
.expertise-slider {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.expertise-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
}

.expertise-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.4);
}

.expertise-item.active {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-color: white;
}

.expertise-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.expertise-item p {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.95;
}

/* Consultation Info */
.consultation-info {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    text-align: center;
    color: white;
}

.consultation-info p {
    margin: 0.5rem 0;
    font-weight: 500;
}

.action-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffeb3b;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Featured Image */
.featured-image {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* About Section */
.about-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 160, 160, 0.2), transparent);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #2c3e50;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1.5rem;
    letter-spacing: 0.3px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(0, 160, 160, 0.25);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 160, 160, 0.1) 0%, rgba(0, 160, 160, 0.05) 100%);
    border-radius: 0.8rem;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 160, 160, 0.15);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Experts Section */
.experts-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #f0f8ff 100%);
    position: relative;
}

.experts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 160, 160, 0.2), transparent);
}

.experts-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 119, 182, 0.15), transparent);
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.expert-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.8rem 2.2rem;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 160, 160, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.expert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expert-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 60px rgba(0, 160, 160, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 160, 160, 0.2);
}

.expert-card:hover::before {
    transform: scaleX(1);
}

.expert-icon {
    font-size: 4.2rem;
    margin-bottom: 1.8rem;
    display: block;
    transition: transform 0.4s ease;
}

.expert-card:hover .expert-icon {
    transform: scale(1.12);
}

.expert-card h3 {
    font-size: 1.35rem;
    color: #2c3e50;
    font-weight: 800;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.expert-role {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.expert-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.expert-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 0.95rem 2rem;
    border-radius: 2.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: center;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 24px rgba(0, 160, 160, 0.15);
}

.expert-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 160, 160, 0.3);
}

.expert-button:active {
    transform: translateY(-2px);
}

/* Services Section */
.services-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 160, 160, 0.2), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.service-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 1.5rem;
    border-top: 4px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 160, 160, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 160, 160, 0.15), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.4rem;
    color: white;
    box-shadow: 0 12px 32px rgba(0, 160, 160, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotateY(-10deg);
    box-shadow: 0 16px 40px rgba(0, 160, 160, 0.35);
}

.service-card h4 {
    color: #2c3e50;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.4;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    flex-grow: 1;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Vision Section */
.vision-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 8rem 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.vision-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.vision-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.vision-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.vision-item {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: 1.2rem;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.vision-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vision-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.vision-item:hover::before {
    opacity: 1;
}

.vision-item i {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.vision-item:hover i {
    transform: scale(1.2) rotateZ(-10deg);
}

.vision-item span {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 160, 160, 0.2), transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.testimonial-card {
    background: white;
    padding: 2.8rem 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 12px 40px rgba(0, 160, 160, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border-top: 4px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 160, 160, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.2rem;
}

.testimonial-stars i {
    margin-right: 0.3rem;
    transition: transform 0.2s ease;
}

.testimonial-card:hover .testimonial-stars i {
    transform: scale(1.1);
}

.testimonial-text {
    color: #2c3e50;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

/* Modal Styles */
.modal-content {
    border-radius: 1.2rem;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 160, 160, 0.15);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 1.2rem 1.2rem 0 0;
    border: none;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 2rem;
}

.modal-body p {
    line-height: 1.8;
    color: var(--text-dark);
}

.modal-body strong {
    color: var(--primary-color);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: white;
    padding: 4rem 2rem 1.5rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 160, 160, 0.3), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3.5rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h4 {
    color: #1abc9c;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1abc9c, #3498db);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-section ul li a:hover {
    color: #1abc9c;
    transform: translateX(6px);
}

.footer-section ul li a:hover::before {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: rgba(0, 160, 160, 0.15);
    border: 2px solid rgba(0, 160, 160, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1abc9c;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
    position: relative;
}

.social-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1abc9c, #3498db);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-links a:hover {
    color: white;
    transform: translateY(-6px) scale(1.05);
    border-color: #1abc9c;
}

.social-links a:hover::before {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Responsive Design */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar-brand {
        font-size: 1.3rem;
        padding: 0.3rem 0.6rem;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.6rem 1rem !important;
        margin: 0.25rem 0;
    }

    .navbar-toggler {
        padding: 0.3rem 0.6rem;
        border: 1.5px solid var(--primary-color) !important;
    }

    .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 160, 160, 0.1);
    }

    .dropdown-menu {
        background: white !important;
        border: 1px solid rgba(0, 160, 160, 0.2) !important;
        border-radius: 0.8rem;
        padding: 0.8rem 0;
    }

    .dropdown-item {
        padding: 0.85rem 1.5rem !important;
        font-size: 0.9rem;
    }

    .dropdown-menu {
        min-width: 200px;
    }

    /* Hero Section */
    .hero-section {
        padding: 2.5rem 1rem;
        min-height: auto;
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    .stat-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.2rem !important;
    }

    .stat-card {
        padding: 1.2rem 1rem;
        font-size: 0.9rem;
    }

    .stat-card strong {
        font-size: 1.1rem;
    }

    .stat-card {
        padding: 1.2rem 1rem;
        font-size: 0.9rem;
    }

    .stat-card strong {
        font-size: 1.1rem;
    }

    /* About Section */
    .about-section {
        padding: 4rem 1.5rem;
    }

    /* Sınav Ailesi Modeli Resim */
    .sinavAilesiModeli {
        padding: 3rem 1.5rem;
    }

    .sinavAilesiModeli img {
        border-radius: 1rem;
        margin-bottom: 2rem;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.5rem;
        font-size: 0.9rem;
    }

    .feature-item i {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    /* Experts Section */
    .experts-section {
        padding: 4rem 1.5rem;
    }

    .experts-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .expert-card {
        padding: 2.2rem 1.5rem;
    }

    .expert-icon {
        font-size: 3.5rem;
    }

    .expert-card h3 {
        font-size: 1.15rem;
    }

    .expert-button {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Services Section */
    .services-section {
        padding: 4rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .service-card {
        padding: 2.2rem 1.8rem;
    }

    .service-icon {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }

    .service-card h4 {
        font-size: 1.1rem;
    }

    /* Vision Section */
    .vision-section {
        padding: 4rem 1.5rem;
    }

    .vision-items {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }

    .vision-item {
        padding: 1.8rem;
    }

    .vision-item i {
        font-size: 2rem;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 4rem 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .testimonial-card {
        padding: 2.2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    /* Footer */
    footer {
        padding: 3rem 1.5rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .social-links {
        justify-content: center;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    /* Navigation */
    .navbar {
        padding: 0.6rem 0;
    }

    .navbar-brand {
        font-size: 1.1rem;
        padding: 0.3rem 0.5rem;
        margin-right: 0.5rem;
    }

    .navbar-brand img {
        height: 35px;
        margin-right: 0.5rem;
    }

    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        border: 1.5px solid var(--primary-color) !important;
    }

    .navbar-toggler-icon {
        width: 1.3rem;
        height: 1.3rem;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem !important;
        margin: 0.2rem 0;
    }

    .dropdown-toggle::after {
        display: none;
    }

    .dropdown-menu {
        min-width: 160px;
        padding: 0.6rem 0;
    }

    .dropdown-item {
        padding: 0.8rem 1.2rem !important;
        font-size: 0.85rem;
    }

    .navbar-collapse {
        margin-top: 0.8rem;
        padding-top: 0.8rem;
    }

    /* Hero Section */
    .hero-section {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin-bottom: 1.2rem;
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
        letter-spacing: 0;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
        width: 100%;
        margin-bottom: 0.6rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.8rem;
    }

    .stat-cards {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
        margin-top: 1.5rem;
        width: 100%;
    }

    .stat-card {
        padding: 1rem 1rem;
        font-size: 0.85rem;
        background: linear-gradient(135deg, rgba(0, 160, 160, 0.05) 0%, rgba(0, 160, 160, 0.02) 100%);
        border-radius: 0.8rem;
    }

    .stat-card strong {
        font-size: 1rem;
    }

    .stat-card strong {
        font-size: 1.3rem;
    }

    /* About Section */
    .about-section {
        padding: 3rem 1rem;
    }

    /* Sınav Ailesi Modeli Resim - Mobile */
    section[style*="Sınav"] {
        padding: 2rem 1rem !important;
    }

    section[style*="Sınav"] img {
        border-radius: 1rem !important;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .section-title::after {
        width: 120px;
        height: 3px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .feature-item {
        padding: 1.2rem;
        font-size: 0.85rem;
    }

    .feature-item i {
        font-size: 1.5rem;
    }

    .feature-item strong {
        font-size: 0.95rem;
    }

    /* Experts Section */
    .experts-section {
        padding: 3rem 1rem;
    }

    .experts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .expert-card {
        padding: 2rem 1.2rem;
    }

    .expert-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .expert-card h3 {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }

    .expert-role {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .expert-description {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }

    .expert-button {
        padding: 0.75rem 1.2rem;
        font-size: 0.85rem;
    }

    /* Services Section */
    .services-section {
        padding: 3rem 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.2rem;
    }

    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }

    .service-card h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .service-card p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* Vision Section */
    .vision-section {
        padding: 3rem 1rem;
    }

    .vision-content h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .vision-content p {
        font-size: 0.9rem;
    }

    .vision-items {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-top: 2rem;
    }

    .vision-item {
        padding: 1.5rem;
    }

    .vision-item i {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .vision-item h4 {
        font-size: 0.95rem;
    }

    .vision-item p {
        font-size: 0.85rem;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 3rem 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem 1.2rem;
    }

    .testimonial-stars {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }

    .testimonial-author {
        font-size: 0.85rem;
    }

    /* Footer */
    footer {
        padding: 2.5rem 1rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .footer-section p {
        font-size: 0.85rem;
    }

    .footer-section ul li a {
        font-size: 0.85rem;
    }

    .social-links {
        gap: 0.8rem;
    }

    .social-links a {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
        padding-top: 1.5rem;
    }
}

/* Small Mobile (320px and below) */
@media (max-width: 320px) {
    .navbar-brand {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .btn-primary, .btn-secondary {
        font-size: 0.8rem;
        padding: 0.7rem 1.2rem;
    }

    .stat-cards {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
    }

    .stat-card {
        padding: 0.9rem;
        font-size: 0.8rem;
    }

    .stat-card div:first-child {
        font-size: 1.2rem !important;
    }

    .expert-card,
    .service-card,
    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    /* Experts Section - Tablet & Mobile Responsive */
    div[style*="display: flex; align-items: center; gap: 2rem; background: white; padding: 2.5rem"],
    div[style*="display: flex; align-items: center; gap: 2rem; background: rgba"] {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem !important;
        gap: 1.5rem !important;
    }

    div[style*="width: 120px; height: 120px; flex-shrink: 0; border-radius: 1rem"] {
        width: 100px !important;
        height: 100px !important;
        margin: 0 auto;
    }

    div[style*="flex: 1; min-width: 200px"] {
        min-width: 100% !important;
    }

    h3[style*="margin: 0 0 0.5rem 0; font-size: 1.3rem; font-weight: 800"] {
        font-size: 1.1rem !important;
    }

    p[style*="margin: 0 0 1rem 0; font-size: 1.05rem; font-weight: 700"] {
        font-size: 0.95rem !important;
    }

    p[style*="margin: 0 0 1.5rem 0; color: #555; line-height: 1.6; font-size: 0.95rem"] {
        font-size: 0.85rem !important;
    }

    /* Vision Section - Mobile */
    div[style*="display: grid; grid-template-columns: 1fr; gap: 2rem"] {
        gap: 1.5rem !important;
    }

    div[style*="display: flex; align-items: center; gap: 2rem; background: rgba(255, 255, 255, 0.08"]  {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem !important;
        gap: 1.5rem !important;
    }

    div[style*="width: 80px; height: 80px; flex-shrink: 0; display: flex"] {
        width: 70px !important;
        height: 70px !important;
        margin: 0 auto;
    }

    h3[style*="color: white; font-weight: 800; margin: 0 0 0.8rem 0; font-size: 1.4rem"] {
        font-size: 1.15rem !important;
    }

    p[style*="color: rgba(255, 255, 255, 0.85); margin: 0; font-size: 1rem; line-height: 1.6"] {
        font-size: 0.9rem !important;
    }
}

/* Tablet Portrait - 768px */
@media (max-width: 768px) {
    div[style*="display: flex; align-items: center; gap: 2rem; background: white; padding: 2.5rem"],
    div[style*="display: flex; align-items: center; gap: 2rem; background: rgba"] {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem !important;
        gap: 1.5rem !important;
    }

    div[style*="width: 120px; height: 120px; flex-shrink: 0; border-radius: 1rem"] {
        width: 100px !important;
        height: 100px !important;
        margin: 0 auto;
    }

    h3[style*="margin: 0 0 0.5rem 0; font-size: 1.3rem; font-weight: 800"] {
        font-size: 1.1rem !important;
    }

    p[style*="margin: 0 0 1rem 0; font-size: 1.05rem; font-weight: 700"] {
        font-size: 0.95rem !important;
    }

    /* Vision Mobile */
    div[style*="display: flex; align-items: center; gap: 2rem; background: rgba(255, 255, 255, 0.08"] {
        flex-direction: column;
        text-align: center;
        padding: 1.8rem 1.2rem !important;
        gap: 1.2rem !important;
    }

    div[style*="width: 80px; height: 80px; flex-shrink: 0; display: flex"] {
        width: 70px !important;
        height: 70px !important;
        margin: 0 auto;
    }

    h3[style*="color: white; font-weight: 800; margin: 0 0 0.8rem 0; font-size: 1.4rem"] {
        font-size: 1.1rem !important;
    }

    p[style*="color: rgba(255, 255, 255, 0.85); margin: 0; font-size: 1rem; line-height: 1.6"] {
        font-size: 0.85rem !important;
    }
}

/* Mobile Landscape - 576px */
@media (max-width: 576px) {
    /* Experts Cards - Full Mobile */
    div[style*="display: flex; align-items: center; gap: 2rem; background: white; padding: 2.5rem"],
    div[style*="display: flex; align-items: center; gap: 2rem; background: rgba"] {
        flex-direction: column;
        text-align: center;
        padding: 1.8rem 1rem !important;
        gap: 1.2rem !important;
        border-radius: 1.2rem !important;
    }

    div[style*="width: 120px; height: 120px; flex-shrink: 0; border-radius: 1rem"] {
        width: 90px !important;
        height: 90px !important;
        margin: 0 auto;
        border-radius: 0.8rem !important;
    }

    h3[style*="margin: 0 0 0.5rem 0; font-size: 1.3rem; font-weight: 800"] {
        font-size: 1rem !important;
    }

    p[style*="margin: 0 0 1rem 0; font-size: 1.05rem; font-weight: 700"] {
        font-size: 0.9rem !important;
    }

    p[style*="margin: 0 0 1.5rem 0; color: #555; line-height: 1.6; font-size: 0.95rem"] {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
    }

    .expert-button {
        padding: 0.5rem 1.2rem !important;
        font-size: 0.8rem !important;
    }

    /* Vision Cards - Full Mobile */
    div[style*="display: flex; align-items: center; gap: 2rem; background: rgba(255, 255, 255, 0.08"] {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem !important;
        gap: 1rem !important;
        border-radius: 1.2rem !important;
    }

    div[style*="width: 80px; height: 80px; flex-shrink: 0; display: flex"] {
        width: 65px !important;
        height: 65px !important;
        margin: 0 auto;
        border-radius: 0.8rem !important;
    }

    div[style*="width: 80px; height: 80px; flex-shrink: 0; display: flex"] i {
        font-size: 1.8rem !important;
    }

    h3[style*="color: white; font-weight: 800; margin: 0 0 0.8rem 0; font-size: 1.4rem"] {
        font-size: 1rem !important;
    }

    p[style*="color: rgba(255, 255, 255, 0.85); margin: 0; font-size: 1rem; line-height: 1.6"] {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
    }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
    div[style*="display: flex; align-items: center; gap: 2rem; background: white; padding: 2.5rem"],
    div[style*="display: flex; align-items: center; gap: 2rem; background: rgba"] {
        padding: 1.5rem 0.8rem !important;
        gap: 1rem !important;
        border-radius: 1rem !important;
        margin: 0 -0.5rem;
    }

    div[style*="width: 120px; height: 120px; flex-shrink: 0; border-radius: 1rem"] {
        width: 80px !important;
        height: 80px !important;
    }

    h3[style*="margin: 0 0 0.5rem 0; font-size: 1.3rem; font-weight: 800"] {
        font-size: 0.9rem !important;
    }

    p[style*="margin: 0 0 1rem 0; font-size: 1.05rem; font-weight: 700"] {
        font-size: 0.85rem !important;
    }

    p[style*="margin: 0 0 1.5rem 0; color: #555; line-height: 1.6; font-size: 0.95rem"] {
        font-size: 0.75rem !important;
    }

    /* Vision Small Mobile */
    div[style*="display: flex; align-items: center; gap: 2rem; background: rgba(255, 255, 255, 0.08"] {
        padding: 1.2rem 0.8rem !important;
        gap: 0.8rem !important;
    }

    div[style*="width: 80px; height: 80px; flex-shrink: 0; display: flex"] {
        width: 60px !important;
        height: 60px !important;
    }

    h3[style*="color: white; font-weight: 800; margin: 0 0 0.8rem 0; font-size: 1.4rem"] {
        font-size: 0.9rem !important;
    }

    p[style*="color: rgba(255, 255, 255, 0.85); margin: 0; font-size: 1rem; line-height: 1.6"] {
        font-size: 0.75rem !important;
    }
}
.carousel {
    position: relative;
    margin-top: 2rem;
}

.carousel-inner {
    border-radius: 1.2rem;
}

.carousel-item {
    padding: 2rem 0;
}

.carousel-control-prev,
.carousel-control-next {
    display: none;
}

.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
    font-size: 1.5rem;
    color: white;
}

.carousel-indicators {
    bottom: -50px !important;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--primary-color) !important;
    opacity: 0.5 !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

.carousel-indicators [data-bs-target].active {
    opacity: 1 !important;
    background-color: var(--secondary-color) !important;
    width: 32px !important;
    border-radius: 25px !important;
}
