
body {
    margin: 0;
    padding: 0;
}

.hero-section {
    width: 100%;
    margin: 0;
    padding: 60px 20px;
    background: #0033cc;
    box-sizing: border-box;
}
.container-fluid {
    padding-left: 0;
    padding-right: 0;
}
/* Header */
header {
    background: #1f1f1f;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 12px;
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    color: white;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
}
/* Navigation */
nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

    nav a,
    .dropbtn {
        color: #f8f4e9;
        text-decoration: none;
        font-size: 17px;
        padding: 10px;
        background: none;
        border: none;
        cursor: pointer;
    }

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 320px;
    background: #fffaf0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    z-index: 9999;
}

    .dropdown-content a {
        display: block;
        padding: 12px 18px;
        color: #333;
        white-space: normal;
        line-height: 1.5;
    }

        .dropdown-content a:hover {
            background: #f5e6c8;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

/* Main Content */
.container {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav {
        justify-content: center;
        gap: 10px;
    }

    .dropdown-content {
        width: 280px;
    }
}

/* =========================
   INTRO SECTION
========================= */
.intro-section {
    position: relative;
    background: linear-gradient(135deg, #5B21B6, #2563EB);
    padding: 80px 20px;
    overflow: hidden;
}

.intro-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
}

.intro-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: auto;
    text-align: center;
}

    /* Heading */
    .intro-content h1 {
        font-size: 55px;
        color: #ffffff;
        margin-bottom: 20px;
        font-weight: 700;
    }

/* Subtitle */
.intro-subtitle {
    font-size: 22px;
    color: #f3f4f6;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.8;
}
/* =========================
   SOCIAL ICONS
========================= */

.social-icons {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

    .social-icons a {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        font-size: 26px;
        text-decoration: none;
        transition: .3s;
        box-shadow: 0 10px 20px rgba(0,0,0,.15);
    }

        .social-icons a:hover {
            transform: scale(1.12);
        }

/* WhatsApp */

.whatsapp {
    background: #25D366;
}

/* Instagram */

.instagram {
    background: linear-gradient( 135deg, #F58529, #DD2A7B, #8134AF, #515BD4 );
}
.youtube {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #ff0000, #ff4d4d);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
}

    .youtube:hover {
        transform: translateY(-4px) scale(1.1);
        background: linear-gradient(135deg, #cc0000, #ff0000);
        box-shadow: 0 8px 20px rgba(255, 0, 0, 0.6);
        color: white;
    }

    .youtube i {
        line-height: 1;
    }
.facebook {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #1877F2, #4267B2);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.5);
    transition: all 0.3s ease;
}

    .facebook:hover {
        transform: translateY(-4px) scale(1.1);
        background: linear-gradient(135deg, #4267B2, #1877F2);
        box-shadow: 0 8px 20px rgba(24, 119, 242, 0.7);
        color: white;
    }

    .facebook i {
        line-height: 1;
    }

/* =========================
   SERVICES GRID
========================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-box {
    background: rgba(255,255,255,0.95);
    padding: 30px;
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

    .service-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 35px rgba(0,0,0,0.2);
    }

    .service-box span {
        display: inline-block;
        width: 60px;
        height: 60px;
        line-height: 60px;
        border-radius: 50%;
        background: linear-gradient(135deg,#10B981,#2563EB);
        color: white;
        font-size: 22px;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .service-box h3 {
        color: #1e293b;
        margin-bottom: 15px;
        font-size: 24px;
    }

    .service-box p {
        color: #64748b;
        line-height: 1.8;
    }

/* =========================
   APPOINTMENT BOX
========================= */
.appointment-box {
    margin-top: 70px;
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

    .appointment-box h2 {
        color: #2563EB;
        margin-bottom: 20px;
        font-size: 36px;
    }

    .appointment-box p {
        color: #555;
        line-height: 1.9;
        font-size: 18px;
    }

.signature {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 2px solid #E5E7EB;
}

    .signature h3 {
        color: #10B981;
        margin-bottom: 10px;
    }

    .signature h4 {
        color: #5B21B6;
        margin-bottom: 10px;
    }

    .signature p {
        margin: 5px 0;
    }

/* =========================
   FOOTER
========================= */
.footer-section {
    background: #111827;
    color: white;
    padding: 40px 20px;
}

.footer-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-left {
    flex: 1;
}

    .footer-left h2 {
        color: #10B981;
        margin-bottom: 15px;
    }

    .footer-left p {
        color: #d1d5db;
        line-height: 1.8;
    }

.footer-right {
    text-align: right;
}

    .footer-right p {
        color: #d1d5db;
        margin: 8px 0;
    }


/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .intro-content h1 {
        font-size: 36px;
    }

    .intro-subtitle {
        font-size: 18px;
    }

    .appointment-box {
        padding: 30px;
    }

    }


.card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
    background: #fff;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

/* Gallery Grid */
.gallery-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    padding: 20px;
}

/* Card */
.gallery-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
    transition: .3s;
}
.gallery-title {
    color: #6D28D9 !important;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.gallery-category {
    color: #6D28D9 !important;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    border-radius: 8px;
    background: #F3E8FF;
}

/* Location */
.gallery-location {
    color: #10B981 !important;
    font-size: 15px;
    font-weight: 600;
    margin-top: 8px;
}
    .gallery-card:hover {
        transform: translateY(-5px);
    }

    /* Image */
    .gallery-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
    }

/* Content */
.gallery-content {
    padding: 15px;
}

    .gallery-content h4 {
        color: #7C3AED;
        margin-bottom: 10px;
    }

    /* .gallery-content p {
        color: #666;
        margin-bottom: 10px;
    } */

    .gallery-content span {
        background: #10B981;
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 13px;
    }
/* Row */
.row {
    display: flex;
    flex-wrap: wrap;
    gap:20px;
}


/* Image */
.card-img-top {
    width: 100%;
    height: 250px !important;
    object-fit: cover;
    transition: .4s;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* Content */
.card-body {
    padding: 20px;
    text-align: center;
}

    .card-body h5 {
        color: #7C3AED;
        font-size: 22px;
        margin-bottom: 10px;
    }

    /* .card-body p {
        color: #7C3AED;
        font-weight: 600;
        margin: 0;
    } */
