:root {
    --primary-color: #0d6efd;
    --primary-dark: #0a58ca;
    --secondary-color: #6c757d;
    --accent-color: #00d2ff;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --dark-text: #212529;
    --gradient-primary: linear-gradient(135deg, #0d6efd 0%, #00d2ff 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.navbar-address {
    font-size: 9px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-top: 2px;
}

@media (max-width: 991px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    .navbar-brand img {
        height: 35px;
    }
    .navbar-address {
        font-size: 8px;
    }
}

@media (max-width: 576px) {
    .navbar-address {
        font-size: 7.5px;
        letter-spacing: 0.2px;
    }
}

.navbar-brand img {
    transition: var(--transition);
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    color: var(--dark-text) !important;
    margin: 0 10px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

/* Hero Section */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Buttons */
.btn-gradient {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
    opacity: 0.9;
}

.btn-outline-custom {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Service Cards */
.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.category-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: var(--light-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: var(--primary-color);
    color: var(--white);
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Latest Updates Notice Board */
.notice-board {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.notice-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 15px 25px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notice-body {
    max-height: 400px;
    overflow-y: auto;
    padding: 10px;
}

.update-item {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

.update-item:hover {
    background: #f0f7ff;
}

.update-date {
    font-size: 0.8rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.update-title {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 5px;
    display: block;
    text-decoration: none;
}

/* Gallery Hover Effect */
.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    background: #f8f9fa;
}

.hover-zoom {
    transition: var(--transition);
    cursor: pointer;
    border: 3px solid transparent;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hover-zoom:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg) !important;
    border-color: var(--primary-color);
}


/* Features UI Section */
.feature-box {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #fff;
    transform: scale(1.1);
}

/* About Section Enhanced */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.experience-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 150px;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .experience-badge {
        bottom: 10px;
        right: 10px;
        min-width: 120px;
        padding: 15px;
    }
    .experience-badge .number {
        font-size: 1.8rem;
    }
    .experience-badge .text {
        font-size: 0.7rem;
    }
}
