/* file: /assets/css/style.css */
:root {
    --navy-blue: #0A192F;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --light-gray: #F5F7FA;
    --dark-gray: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    background-color: var(--navy-blue);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    color: var(--gold) !important;
    font-weight: 700;
    font-size: 1.2rem;
}

.nav-link {
    color: var(--white) !important;
    margin: 0 0.5rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(10,25,47,0.8), rgba(10,25,47,0.8)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-content .btn {
    animation: fadeInUp 1s ease 0.4s both;
}

/* Page Hero */
.page-hero {
    height: 50vh;
    position: relative;
    background-size: cover;
    background-position: center;
    margin-top: 76px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10,25,47,0.9), rgba(10,25,47,0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

.section-title {
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    
}
 #why-choose-title{
    color: var(--gold);
 }
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--gold);
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Service Cards */
.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Value Cards */
.value-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: var(--light-gray);
    transition: all 0.3s ease;
}

.value-card:hover {
    background: var(--gold);
    color: var(--navy-blue);
}

.value-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.value-card:hover i {
    color: var(--navy-blue);
}

/* Why Choose List */
.why-choose-list {
    list-style: none;
    padding: 0;
}

.why-choose-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.why-choose-list i {
    margin-right: 1rem;
    color: var(--gold);
}

.text-gold {
    color: var(--gold) !important;
}

.bg-dark {
    background-color: var(--navy-blue) !important;
}

/* Gallery */
.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-img {
    transition: all 0.5s ease;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-preview {
    transition: all 0.3s ease;
}

.gallery-preview:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
}

/* Team Cards */
.team-card {
    text-align: center;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.2);
}

.team-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-card:hover img {
    transform: scale(1.1);
}

.team-card h4 {
    color: var(--navy-blue);
    margin-top: 1.5rem;
    font-weight: 600;
}

.team-card p {
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Stats Section */
.stats-section {
    background-color: var(--navy-blue);
    color: var(--white);
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin: 1rem 0;
}

.stat-item p {
    font-size: 1.1rem;
    margin: 0;
}

/* Service Features */
.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    margin-bottom: 0.8rem;
}

.service-features i {
    margin-right: 0.8rem;
}

.service-row {
    margin-bottom: 4rem;
}

.service-row:last-child {
    margin-bottom: 0;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-form .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 0.8rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212,175,55,0.25);
}

.contact-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.info-item {
    display: flex;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-right: 1.5rem;
}

.info-item h4 {
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-item p {
    margin: 0;
    color: var(--dark-gray);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Footer */
.footer {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer h5 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--gold);
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer hr {
    background-color: var(--gold);
    opacity: 0.2;
    margin: 2rem 0;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(gold);
    transform: translateY(-3px);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 2rem;
    line-height: 60px;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(37,211,102,0.3);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 5px 30px rgba(37,211,102,0.5);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: var(--navy-blue);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--gold);
    color: var(--navy-blue);
}

/* Buttons */
.btn-primary {
    background-color: var(--navy-blue);
    border-color: var(--navy-blue);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--navy-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212,175,55,0.3);
}

.btn-outline-primary {
    border-color: var(--navy-blue);
    color: var(--navy-blue);
}

.btn-outline-primary:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--navy-blue);
}

.btn-success {
    background-color: #25D366;
    border-color: #25D366;
}

.btn-success:hover {
    background-color: #128C7E;
    border-color: #128C7E;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 1s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-overlay h1 {
        font-size: 2.2rem;
    }
    
    .service-row {
        margin-bottom: 2rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-item i {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Lightbox Modal */
.modal-content.bg-transparent {
    background: transparent !important;
}

.modal-body {
    position: relative;
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
    z-index: 1060;
}

/* Hover Effects */
.hover-shadow {
    transition: box-shadow 0.3s ease;
}

.hover-shadow:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Mission/Vision Cards */
.mission-card,
.vision-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.15);
}

/* Value Detail Cards */
.value-detail {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.value-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.15);
}

.value-detail i {
    margin-bottom: 1rem;
}

.value-detail h4 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}