/* ===========================
   Global Styles & Variables
   =========================== */

:root {
    --primary-color: #0369a1;
    --primary-light: #0ea5e9;
    --secondary-color: #14b8a6;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    --light-color: #f0f9ff;
    --dark-color: #0f172a;
    --white-color: #ffffff;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --gradient-primary: linear-gradient(135deg, #0369a1 0%, #0ea5e9 100%);
    --gradient-secondary: linear-gradient(135deg, #14b8a6 0%, #10b981 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html {
       overflow-x: hidden;
}



body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth transitions for all interactive elements */
a, button, input, textarea, select {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

/* ===========================
   Navbar Styles
   =========================== */

.navbar {
    background: white !important;
    transition: all 0.3s ease;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.navbar-brand i {
    -webkit-text-fill-color: var(--primary-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin-left: 1.5rem;
    color: var(--text-dark) !important;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -8px;
    left: 0;
    background: var(--gradient-secondary);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* ===========================
   Hero Section
   =========================== */

/* ===========================
   Hero Section
   =========================== */

.hero-section {
    position: relative;
    padding: 120px 0;
    min-height: 800px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover !important;
    background-position: center !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(3, 105, 161, 0.80) 0%, rgba(14, 165, 233, 0.70) 50%, rgba(20, 184, 166, 0.80) 100%);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(20, 184, 166, 0.15) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.btn-hero {
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 10px 30px rgba(3, 105, 161, 0.3);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(3, 105, 161, 0.4);
}

.btn-hero-outline {
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid white;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.btn-hero-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-section h1 {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    line-height: 1.1;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
    animation: slideInDown 0.8s ease-out;
}

.hero-section h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.98;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: slideInUp 0.8s ease-out 0.1s both;
}

.hero-section p.lead {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.9;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    animation: slideInUp 0.8s ease-out 0.3s both;
}

.stat-item {
    transition: all 0.3s ease;
}

.stat-item h3 {
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    font-size: 2.8rem;
}

.stat-item p {
    font-size: 0.95rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.stat-item:hover h3 {
    font-size: 3.3rem;
    text-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    font-size: 3.3rem;
    text-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 150px;
    color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
}

.hero-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-stats {
    display: flex;
    gap: 4rem;
}

.stat-item h3 {
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.stat-item {
    transition: all 0.3s ease;
}

.stat-item:hover h3 {
    font-size: 3.2rem;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section h2 {
        font-size: 1.3rem;
    }

    .hero-image-placeholder {
        height: 300px;
        font-size: 100px;
    }

    .hero-stats {
        gap: 2rem;
    }
}

/* ===========================
   Section Titles
   =========================== */

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

/* ===========================
   About Section
   =========================== */

.about-section {
    background: white;
    color: var(--text-dark);
    padding: 100px 0;
    position: relative;
}

.about-section::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 480px;
    background: var(--gradient-primary);
    border-radius: 16px;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 50px rgba(3, 105, 161, 0.25);
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.about-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.about-image-placeholder:hover img {
    transform: scale(1.08);
}

.about-features {
    list-style: none;
}

.about-features li {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    color: var(--text-dark);
    transition: all 0.3s ease;
    padding: 0.75rem 0;
}

.about-features li:hover {
    padding-left: 0.5rem;
    color: var(--primary-color);
}

.about-features i {
    font-size: 1.5rem;
    color: var(--success-color);
    margin-right: 0.5rem;
}

.about-section p {
    color: var(--text-light);
    line-height: 1.8;
}

.about-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-section a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.about-section a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* ===========================
   Services Section
   =========================== */

.services-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: var(--text-dark);
    padding: 100px 0;
    position: relative;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(20,184,166,0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(3, 105, 161, 0.2);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 8px 20px rgba(3, 105, 161, 0.25);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotateY(10deg);
    box-shadow: 0 12px 30px rgba(3, 105, 161, 0.35);
}

.service-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    flex-grow: 1;
}

/* ===========================
   Why Choose Us Section
   =========================== */

.why-us-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    color: var(--text-dark);
    padding: 100px 0;
    position: relative;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.why-us-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 5px solid var(--secondary-color);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 100px;
    height: 100px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.why-us-card:hover {
    transform: translateX(10px) translateY(-8px);
    box-shadow: 0 18px 50px rgba(3, 105, 161, 0.2);
    border-left-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.why-us-card:hover::before {
    transform: translate(-20px, -20px) scale(1.2);
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.why-us-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.why-us-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===========================
   Testimonials Section
   =========================== */

.testimonials-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: var(--text-dark);
    padding: 100px 0;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    border-top: 4px solid var(--gradient-primary);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(3, 105, 161, 0.2);
    border-top-color: var(--secondary-color);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 10px;
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.1;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.stars {
    font-size: 1.2rem;
}

.stars i {
    color: #fbbf24;
    margin-right: 0.3rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: italic;
    font-weight: 500;
}

.testimonial-author {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.testimonial-author p {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

/* ===========================
   Gallery Section
   =========================== */

.gallery-section {
    background: var(--light-color);
    color: var(--text-dark);
    padding: 100px 0;
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(20,184,166,0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.gallery-card {
    text-align: center;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    background: white;
}


.gallery-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 320px;
    background: transparent;
    border-radius: 16px 16px 0 0;
    font-size: 80px;
    color: var(--primary-color);
    overflow: hidden;
    position: relative;
}

.gallery-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===========================
   FAQ Section
   =========================== */

.faq-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: var(--text-dark);
    padding: 100px 0;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(20,184,166,0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.accordion-item {
    background: white;
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.accordion-item:hover {
    box-shadow: 0 12px 25px rgba(3, 105, 161, 0.15);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.accordion-button {
    font-weight: 600;
    color: var(--text-dark);
    padding: 1.5rem;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
    background: white;
    color: var(--text-dark);
}

.accordion-body {
    color: var(--text-light);
    line-height: 1.8;
    padding: 1.5rem;
    background: white;
    font-size: 0.98rem;
}

/* ===========================
   Contact Section
   =========================== */

.contact-section {
    background: white;
    color: var(--text-dark);
    padding: 100px 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 1.8rem;
    color: white;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 14px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(3, 105, 161, 0.3);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotateY(15deg);
    box-shadow: 0 12px 30px rgba(3, 105, 161, 0.4);
}

.contact-item h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-form {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.form-control,
.form-select {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    background: white;
    font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.3rem rgba(3, 105, 161, 0.15);
    background: white;
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: var(--text-light);
}

.btn-submit {
    background: var(--gradient-primary);
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 10px 30px rgba(3, 105, 161, 0.3);
    width: 100%;
    color: white;
    font-size: 1rem;
    cursor: pointer;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(3, 105, 161, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* ===========================
   Map Section
   =========================== */

.map-section {
    width: 100%;
    min-height: 400px;
    background: var(--light-color);
}

/* ===========================
   Footer Section
   =========================== */

.footer-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0369a1 100%);
    color: white;
    padding: 80px 0 20px;
    margin-top: 80px;
}

.footer-section h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.15rem;
    letter-spacing: -0.5px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 0.5rem;
    font-weight: 600;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.9rem;
}

.footer-contact-list a {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.55;
    transition: color 0.3s ease;
}

.footer-contact-list i {
    width: 1.15rem;
    margin-top: 0.22rem;
    color: var(--primary-light);
    font-size: 1rem;
    flex: 0 0 auto;
    text-align: center;
}

.footer-contact-list a:hover {
    color: white;
}

.footer-section hr {
    margin: 2rem 0 !important;
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

/* ===========================
   Buttons
   =========================== */

.btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(3, 105, 161, 0.2);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, #003d82);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(3, 105, 161, 0.4);
    color: white;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

/* ===========================
   Scroll to Top Button
   =========================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    z-index: 999;
    box-shadow: 0 8px 25px rgba(3, 105, 161, 0.35);
    color: white;
    font-size: 1.3rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 15px 35px rgba(3, 105, 161, 0.5);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-muted {
    color: var(--text-light) !important;
}

.bg-light {
    background: var(--light-color) !important;
}

.bg-dark {
    background: var(--dark-color) !important;
}

.lead {
    font-size: 1.1rem;
    font-weight: 500;
}

/* ===========================
   Animations
   =========================== */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Hero Section Animations
   =========================== */

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    animation: slideInDown 0.8s ease-out;
}

.hero-title {
    animation: slideInDown 0.8s ease-out;
}

.hero-subtitle {
    animation: slideInUp 0.8s ease-out 0.1s both;
}

.hero-description {
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-animated-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: white;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.3);
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.2);
    top: 50%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(-40px) translateX(-10px);
    }
    75% {
        transform: translateY(-20px) translateX(15px);
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: slideInUp 0.8s ease-out 0.5s both;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 0 auto 10px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    width: 2px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 1px;
    animation: scroll-down 1.5s infinite;
}

@keyframes scroll-down {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(15px);
    }
}

.hero-scroll-indicator p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    letter-spacing: 1px;
}

/* ===========================
   About Section Images Grid
   =========================== */

.about-images-grid {
    position: relative;
    height: 500px;
}

.about-image-large {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(3, 105, 161, 0.25);
    z-index: 2;
}

.about-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.about-image-large:hover img {
    transform: scale(1.08) rotate(1deg);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 105, 161, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
}

.about-image-large:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    font-size: 3rem;
    color: white;
}

.about-image-small {
    position: absolute;
    width: 45%;
    height: 45%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(3, 105, 161, 0.2);
    border: 3px solid white;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.about-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.about-image-small:hover img {
    transform: scale(1.12);
}

.small-1 {
    bottom: 20px;
    left: 0;
}

.small-2 {
    bottom: 20px;
    right: 0;
}

.about-image-small:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(3, 105, 161, 0.3);
}

.about-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 100%);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-info-box {
    background: white !important;
    border: 2px solid var(--border-color) !important;
    border-left: 4px solid var(--primary-color) !important;
}

.about-info-box:hover {
    border-left-color: var(--secondary-color) !important;
    box-shadow: 0 8px 25px rgba(3, 105, 161, 0.15) !important;
    transform: translateX(4px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(3, 105, 161, 0.2);
}

.about-features li span {
    transition: all 0.3s ease;
}

.about-features li:hover span {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===========================
   Gallery Overlay & Lightbox
   =========================== */

.gallery-overlay {
    display: none;
}

.gallery-link {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.video-card .gallery-overlay {
    display: none;
}

.video-placeholder {
    position: relative;
}

.video-link i {
    font-size: 2.5rem;
}

/* ===========================
   Lightbox Customization
   =========================== */

.lb-outerContainer {
    background: rgba(0, 0, 0, 0.95) !important;
    border-radius: 12px !important;
}

.lb-container {
    border-radius: 12px !important;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
    background: var(--primary-color) !important;
}

.lb-close {
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

.lb-close:hover {
    background: var(--primary-color) !important;
}

/* ===========================
   Responsive Gallery
   =========================== */

@media (max-width: 992px) {
    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 0.5rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }

    .hero-section h1 {
        font-size: 2.8rem;
    }

    .hero-section h2 {
        font-size: 1.5rem;
    }

    .hero-section p.lead {
        font-size: 1.05rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-item h3 {
        font-size: 2.2rem;
    }

    .about-image-placeholder {
        height: 350px;
        margin-bottom: 2rem;
    }

    .about-images-grid {
        height: 400px;
    }

    .about-image-small {
        width: 40%;
        height: 40%;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar-brand {
        font-size: 1.3rem !important;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-section {
        padding: 40px 0;
        min-height: 600px;
        background-attachment: scroll !important;
    }

    .hero-section h1 {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }

    .hero-section h2 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .hero-section p.lead {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .d-flex {
        gap: 0.5rem !important;
    }

    .btn-lg {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.9rem !important;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .about-features li {
        font-size: 0.95rem;
    }

    .service-card,
    .why-us-card {
        padding: 1.5rem;
    }

    .contact-form,
    .contact-info {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-item {
        flex-direction: row;
        gap: 1rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    .about-image-placeholder {
        height: 300px;
        margin-bottom: 1.5rem;
    }

    .about-images-grid {
        height: 350px;
    }

    .about-image-small {
        width: 42%;
        height: 42%;
    }

    .gallery-image-placeholder {

    }

    .accordion-button {
        font-size: 0.95rem;
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-brand {
        font-size: 1.1rem !important;
    }

    .navbar-brand i {
        margin-right: 0.3rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-title::after {
        width: 50px;
        height: 3px;
    }

    .hero-section {
        padding: 30px 0;
        min-height: 500px;
        background-attachment: scroll !important;
    }

    .hero-section h1 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .hero-section h2 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .hero-section p.lead {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .btn-lg {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
        width: 100%;
    }

    .d-flex {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }

    .hero-stats {
        flex-direction: row;
        gap: 1rem;
        font-size: 0.85rem;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .stat-item p {
        font-size: 0.75rem;
    }

    .about-features {
        margin-top: 1.5rem;
    }

    .about-features li {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .about-features i {
        font-size: 1.2rem;
    }

    .service-card,
    .why-us-card,
    .contact-form,
    .contact-info {
        padding: 1rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .contact-item {
        flex-direction: column;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .about-image-placeholder {
        height: 250px;
    }

    .about-images-grid {
        height: 300px;
    }

    .about-image-small {
        width: 50%;
        height: 50%;
    }

    .gallery-image-placeholder {
     
        font-size: 60px;
    }

    .footer-section {
        padding: 2rem 0 1rem !important;
    }

    .footer-section h5 {
        font-size: 1rem;
        margin-bottom: 1rem !important;
    }

    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }

    .accordion-button {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .accordion-body {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* ===========================
   Modern Hero Section (NEW)
   =========================== */

.hero-section-new {
    position: relative;
    height: 100vh;
    min-height: 900px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.hero-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 105, 161, 0.85) 0%, rgba(14, 165, 233, 0.75) 50%, rgba(20, 184, 166, 0.80) 100%);
    backdrop-filter: blur(3px);
    z-index: 1;
}

.hero-section-new > .container-fluid {
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero-left-content {
    z-index: 2;
}

.hero-content-wrapper {
    padding: 60px 0;
}

.hero-label-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    animation: slideInLeft 0.8s ease-out;
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-main-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease-out 0.1s both;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin-bottom: 20px;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.90);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 30px;
    animation: slideInUp 0.8s ease-out 0.3s both;
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.btn-primary-new {
    padding: 16px 40px;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-primary-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.4);
    color: var(--secondary-color);
}

.btn-secondary-new {
    padding: 16px 40px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-secondary-new:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3);
}

.hero-stats-new {
    display: flex;
    gap: 40px;
    animation: slideInUp 0.8s ease-out 0.5s both;
}

.stat-box {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.hero-right-content {
    position: relative;
    z-index: 2;
}

.hero-visual-container {
    position: relative;
    height: 600px;
    perspective: 1000px;
}

.hero-card-main {
    position: absolute;
    width: 380px;
    height: 500px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px) rotateY(-10deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0);
    }
}

.hero-card-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-card-main:hover img {
    transform: scale(1.08);
}

.hero-card-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
    transition: all 0.4s ease;
}

.hero-card-main:hover .hero-card-badge {
    transform: translateY(-10px);
}

.hero-card-badge i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.badge-title {
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 2px 0;
    font-size: 0.95rem;
}

.badge-subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.hero-floating-card {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gradient-secondary));
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 15px 40px rgba(20, 184, 166, 0.3);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    cursor: pointer;
    animation: float 4s ease-in-out infinite;
}

.hero-floating-card i {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-floating-card:hover {
    transform: scale(1.1) translateY(-25px);
    box-shadow: 0 20px 60px rgba(20, 184, 166, 0.5);
}

.card-1 {
    top: 80px;
    right: 40px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 120px;
    right: 0px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 30px;
    right: 180px;
    animation-delay: 2s;
}

/* ===========================
   Modern About Section (NEW)
   =========================== */

.about-section-new {
    background: linear-gradient(135deg, #f8fbff 0%, #f0f9ff 50%, #e0f2fe 100%);
    padding: 100px 0;
    position: relative;
}

.about-section-new::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding: 10px 20px;
    background: rgba(3, 105, 161, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(3, 105, 161, 0.2);
}

.section-title-new {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    max-width: 600px;
    margin: 0 auto;
}

.about-images-modern {
    position: relative;
    height: 500px;
}

.about-img-primary {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(3, 105, 161, 0.2);
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.about-img-primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-primary:hover img {
    transform: scale(1.05);
}

.about-img-secondary {
    position: absolute;
    width: 50%;
    height: 45%;
    border-radius: 16px;
    overflow: hidden;
    bottom: 0;
    left: 0;
    box-shadow: 0 15px 40px rgba(3, 105, 161, 0.15);
    border: 4px solid white;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    transform: translateY(30px);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-secondary:hover {
    transform: translateY(0) scale(1.05);
    box-shadow: 0 20px 50px rgba(3, 105, 161, 0.25);
}

.about-img-accent {
    position: absolute;
    width: 45%;
    height: 50%;
    border-radius: 16px;
    overflow: hidden;
    bottom: 15px;
    right: 0;
    box-shadow: 0 15px 40px rgba(3, 105, 161, 0.15);
    border: 4px solid white;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    transform: translateY(40px);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-accent:hover {
    transform: translateY(0) scale(1.05);
    box-shadow: 0 20px 50px rgba(3, 105, 161, 0.25);
}

.about-intro-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 40px;
    font-weight: 500;
}

.about-features-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card-modern {
    background: white;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card-modern:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(3, 105, 161, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.feature-icon-new {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(3, 105, 161, 0.25);
}

.feature-card-modern:hover .feature-icon-new {
    transform: scale(1.1) rotate(5deg);
}

.feature-text h5 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-size: 1rem;
}

.feature-text p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.about-contact-bar {
    background: white;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    gap: 30px;
    border: 2px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
}

.contact-item-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 150px;
}

.contact-item-modern i {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gradient-primary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(3, 105, 161, 0.2);
}

.item-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.item-value {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item-modern:hover .item-value {
    color: var(--primary-color);
}

/* ===========================
   Responsive Modern Sections
   =========================== */

@media (max-width: 1024px) {
    .hero-main-title {
        font-size: 3.5rem;
    }

    .hero-visual-container {
        height: 400px;
    }

    .hero-card-main {
        width: 300px;
        height: 400px;
    }

    .hero-floating-card {
        width: 100px;
        height: 100px;
        font-size: 0.8rem;
    }

    .hero-floating-card i {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section-new {
        min-height: 600px;
        height: auto;
        padding: 60px 0;
    }

    .hero-main-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
    }

    .btn-primary-new,
    .btn-secondary-new {
        width: 100%;
        justify-content: center;
    }

    .hero-stats-new {
        gap: 20px;
    }

    .hero-visual-container {
        height: 300px;
        margin-top: 40px;
    }

    .hero-card-main {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .hero-floating-card {
        display: none;
    }

    .about-features-modern {
        grid-template-columns: 1fr;
    }

    .section-title-new {
        font-size: 2rem;
    }

    .about-contact-bar {
        flex-direction: column;
        gap: 20px;
    }

    .contact-item-modern {
        flex: none;
    }

    .about-images-modern {
        height: 350px;
        margin-bottom: 40px;
    }

    .about-img-secondary,
    .about-img-accent {
        width: 40%;
        height: 40%;
    }
}

@media (max-width: 576px) {
    .hero-section-new {
        min-height: 400px;
        padding: 40px 0;
    }

    .hero-main-title {
        font-size: 1.8rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .hero-stats-new {
        flex-wrap: wrap;
        gap: 15px;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .section-title-new {
        font-size: 1.5rem;
    }

    .about-images-modern {
        height: 250px;
    }

    .feature-card-modern {
        padding: 16px;
    }

    .feature-icon-new {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .about-contact-bar {
        padding: 20px;
    }
}

/* ===========================
   Scrollbar Styling
   =========================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* ===========================
   Print Styles
   =========================== */

@media print {
    .navbar,
    .footer-section {
        display: none;
    }

    body {
        background: white;
    }

    section {
        page-break-inside: avoid;
    }
}
:root {
  --ink: #152238;
  --blue: #0b68b7;
  --blue-dark: #084f8d;
  --teal: #1fa6a0;
  --red: #d9473f;
  --gold: #f3b347;
  --shadow: 0 22px 60px rgba(21, 34, 56, 0.16);
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 96vh;
  padding: 20px 0 70px;
  color: #fff;
  background:
    linear-gradient(
      105deg,
      rgba(11, 37, 70, 0.94) 0%,
      rgba(12, 64, 98, 0.86) 48%,
      rgba(31, 166, 160, 0.62) 100%
    ),
    url("../images/gallery2.jpeg") center 32% / cover;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-section h1 {
  margin: 0 0 10px;
  font-size: 50px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-section h2 {
  max-width: 820px;
  font-size: 25px;
  line-height: 1.18;
  font-weight: 800;
  margin-bottom: 0;
}

.hero-copy {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-actions .btn {
  border-radius: 8px;
  font-weight: 750;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
}

.hero-actions .btn-primary {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 14px 30px rgba(11, 104, 183, 0.25);
}

.hero-actions .btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.hero-actions .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.62);
  color: #fff;
}

.hero-actions .btn-outline-light:hover {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 740px;
  margin-top: 38px;
}

.trust-row div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.2;
}

.trust-row span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.hero-portrait {
  position: relative;
  width: min(430px, 100%);
  margin-left: auto;
}

.hero-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  border: 8px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.floating-badge {
  position: absolute;
  left: -28px;
  bottom: 26px;
  width: min(280px, 82%);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
  font-weight: 800;
}

.floating-badge i {
  color: var(--teal);
  font-size: 1.4rem;
}

.quick-contact {
  position: relative;
  z-index: 5;
  margin-top: -38px;
}

.contact-strip {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-strip div,
.contact-strip a {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  font-weight: 750;
}

.contact-strip a {
  color: var(--blue);
}

.contact-strip a:hover {
  color: var(--blue-dark);
}

.contact-strip i {
  color: var(--red);
  font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 118px 0 80px;
  }

  .hero-portrait {
    margin: 0;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .contact-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .hero-section {
    padding: 30px 0 72px;
  }

  .hero-section h1 {
    font-size: 3rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .floating-badge {
    left: 12px;
    bottom: 12px;
  }

  .contact-strip {
    padding: 22px;
  }
}

:root {
  --ink: #152238;
  --muted: #627084;
  --blue: #0b68b7;
  --blue-dark: #084f8d;
  --teal: #1fa6a0;
  --soft: #eef6f8;
  --line: rgba(21, 34, 56, 0.12);
  --shadow: 0 22px 60px rgba(21, 34, 56, 0.16);
}

/* Doctor Section */
.section-pad {
  padding: 92px 0;
}

.doctor-section {
  background: var(--soft);
  position: relative;
  overflow: hidden;
}

.doctor-section .eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.doctor-section .eyebrow.dark {
  color: var(--blue);
}

.doctor-section h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 40px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.doctor-section p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Image Stack */
.media-stack {
  position: relative;
  min-height: 560px;
}

.media-main,
.media-small {
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-main {
  width: 82%;
  height: 510px;
}

.media-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 270px;
  border: 8px solid #fff;
}

/* Feature List */
.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.feature-list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.55;
}

.feature-list i {
  margin-top: 5px;
  color: var(--teal);
  font-size: 1rem;
  flex: 0 0 auto;
}

/* Button */
.doctor-section .btn {
  border-radius: 8px;
  font-weight: 750;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding-inline: 24px;
}

.doctor-section .btn-primary {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 14px 30px rgba(11, 104, 183, 0.25);
}

.doctor-section .btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

/* Responsive */
@media (max-width: 991px) {
  .doctor-section {
    text-align: left;
  }

  .media-stack {
    max-width: 520px;
    min-height: 540px;
  }

  .media-main {
    height: 500px;
  }
}

@media (max-width: 575px) {
  .section-pad {
    padding: 68px 0;
  }

  .doctor-section h2 {
    font-size: 2rem;
  }

  .doctor-section p {
    font-size: 1rem;
  }

  .media-stack {
    min-height: 430px;
  }

  .media-main {
    width: 88%;
    height: 380px;
  }

  .media-small {
    width: 54%;
    height: 205px;
    border-width: 6px;
  }

  .doctor-section .btn {
    width: 100%;
  }
}
