* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Gideon Roman', serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #00CCCC 0%, #008888 100%);
    width: 100%;
    padding: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
}

.logo-tagline {
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin-left: auto;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: white;
    opacity: 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    opacity: 1;
}

.nav-btn {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    color: #00CCCC;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 0.85rem;
    white-space: nowrap;
    margin-left: 10px;
}

.nav-btn:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.booking-btn {
    background: linear-gradient(135deg, #00CCCC 0%, #008888 100%);
    color: white;
    border: 2px solid white;
}

.booking-btn:hover {
    background: linear-gradient(135deg, #008888 0%, #00CCCC 100%);
    color: white;
}

.appointment-btn {
    background: white;
    color: #00CCCC;
    border: 2px solid white;
}

.appointment-btn:hover {
    background: #f8f9fa;
    color: #008888;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #00CCCC 0%, #008888 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.1"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.5;
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 10;
    padding-top: 100px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero .tagline {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.95);
    font-weight: 600;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero .government-auth {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.95);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero .btn {
    animation: fadeInUp 0.8s ease-out 0.5s both;
    background: white;
    color: #00CCCC;
    font-weight: 700;
}

.hero .btn:hover {
    background: #f8f9fa;
    color: #008888;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

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

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #00CCCC, #008888);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 40px 30px;
    background: linear-gradient(135deg, #00CCCC 0%, #008888 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Content Section */
.content-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.content-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #00CCCC;
    font-weight: 700;
}

.content-section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.feature-card h3 {
    color: #00CCCC;
    margin-bottom: 15px;
    font-size: 1.6rem;
    font-weight: 700;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Reviews Section */
.reviews-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.reviews-section .section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #00CCCC;
    font-weight: 700;
}

.reviews-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #666;
}

.reviews-section .elfsight-app-b1749aba-e740-4451-a459-1a7267e9e3dc {
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #00CCCC 0%, #008888 100%);
    color: white;
    padding: 60px 0 40px;
    border-top: none;
}

.footer-info {
    text-align: center;
}

.footer-info h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
}

.footer-info p {
    margin: 12px 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-info a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: white;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px) scale(1.1);
}

/* Floating Buttons */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    right: 30px;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.location-btn {
    background: linear-gradient(135deg, #4285F4, #34A853);
    right: 30px;
    bottom: 140px;
}

.location-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(66, 133, 244, 0.5);
}

.call-btn {
    background: linear-gradient(135deg, #00CCCC, #008888);
    right: 100px;
}

.call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

.map-link {
    color: #00CCCC;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.map-link:hover {
    color: #008888;
    text-decoration: underline;
}

/* Services Banner */
.services-banner {
    padding: 40px 0;
    background: linear-gradient(135deg, #00CCCC15, #00888815);
}

.banner-content {
    width: 100%;
}

.banner-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Service Details */
.service-details {
    padding: 80px 0;
    background: #f9fafb;
}

/* Multiple Forms Styling */
.contact-form + .contact-form {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 2px solid #e0e0e0;
}

.detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.detail-content h2 {
    font-size: 2.5rem;
    color: #00CCCC;
    margin-bottom: 20px;
}

.detail-content h3 {
    font-size: 1.8rem;
    color: #333;
    margin: 40px 0 20px;
}

.detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.detail-content ul {
    list-style: none;
    margin: 20px 0;
}

.detail-content ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 1.1rem;
}

.detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00CCCC;
    font-weight: bold;
    font-size: 1.2rem;
}

.detail-image {
    margin: 40px 0;
    text-align: center;
}

.detail-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-section {
    background: linear-gradient(135deg, #00CCCC, #008888);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 60px;
    color: white;
}

.cta-section h3 {
    color: white;
    margin-top: 0;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.cta-section .btn {
    background: white;
    color: #00CCCC;
}

.cta-section .btn:hover {
    background: #f0f0f0;
}

/* Popup Styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.popup.show {
    display: flex;
}

.popup-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00CCCC, #008888);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: white;
    font-weight: bold;
}

.popup-content h3 {
    color: #00CCCC;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.popup-content p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1rem;
}

.popup-close {
    background: linear-gradient(135deg, #00CCCC, #008888);
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

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

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

/* Page Hero - Same theme as home hero */
.page-hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00CCCC 0%, #008888 100%);
    color: white;
    margin-top: 70px;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.1"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.5;
}

.page-hero h1 {
    font-size: 3.5rem;
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 10;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: white;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #00CCCC;
    font-weight: 700;
}

.about-content p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #555;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.value-card h3 {
    color: #00CCCC;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Founder Section */
.founder-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.9);
}

.founder-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.founder-image {
    flex: 0 0 300px;
}

.founder-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.founder-info {
    flex: 1;
}

.founder-info h3 {
    font-size: 2rem;
    color: #1976D2;
    margin-bottom: 10px;
}

.founder-info .title {
    font-size: 1.1rem;
    color: #42A5F5;
    margin-bottom: 20px;
    font-weight: 600;
}

.founder-info p {
    line-height: 1.8;
    color: #555;
    font-size: 1rem;
}

/* Doctors Section */
.doctors-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.doctors-section .section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #00CCCC;
    font-weight: 700;
}

.doctors-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #666;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.doctor-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    border-color: #00CCCC;
}

.doctor-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #00CCCC, #008888);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.doctor-icon {
    font-size: 60px;
    display: none;
    justify-content: center;
    align-items: center;
}

.doctor-card h3 {
    color: #00CCCC;
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.doctor-specialty {
    color: #008888;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.doctor-reg {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.services-section * {
    transition: none !important;
    animation: none !important;
}

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

.service-card {
    background: white;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.service-card h3 {
    color: #00CCCC;
    margin: 25px 25px 15px 25px;
    font-size: 1.6rem;
    font-weight: 700;
}

.service-card p {
    margin: 0 25px 25px 25px;
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

.service-card-link {
    text-decoration: none;
    display: block;
}

.service-card-link:hover {
    text-decoration: none;
}

/* Gallery Section */
.gallery-section {
    padding: 120px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #00CCCC;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #666;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

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

.contact-info h2,
.contact-form h2 {
    color: #00CCCC;
    margin-bottom: 25px;
    font-size: 2.5rem;
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.contact-item {
    margin-bottom: 35px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #00CCCC;
}

.contact-item h3 {
    color: #00CCCC;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 700;
}

.contact-item p {
    margin: 0;
    color: #555;
    font-size: 1rem;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00CCCC;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

.contact-form button {
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }
    
    .nav-btn {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
    
    .nav-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .page-hero {
        height: 40vh;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .navbar.floating {
        margin: 0;
        width: 100%;
    }
    
    .founder-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .founder-image {
        flex: 0 0 auto;
        max-width: 250px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .content-section h2,
    .about-content h2,
    .section-title {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
}
