/* ===================================
   CSS Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-color: #4A90E2;
    --secondary-color: #1E3A5F;
    --accent-color: #25D366; /* WhatsApp Green */
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===================================
   Container & Layout
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* ===================================
   Typography
   =================================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--spacing-md);

    


}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: #357ABD;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.btn-primary-sidebar {
    background-color: var(--primary-color);
    color: var(--bg-white);
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background-color: var(--bg-light);
    border-color: var(--primary-color);
}

.btn-enquiry {
    background-color: var(--primary-color);
    color: var(--bg-white);
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    margin-top: var(--spacing-sm);
    font-weight: 600;
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, #E8F4F8 0%, #F5F9FC 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--spacing-md);
    align-items: start;
}


/* ===== HERO VIDEO FIX ===== */

/* Ensure hero section does NOT exceed visible area */
.hero-section {
    padding-top: 0;
    overflow: hidden;
}

/* Limit hero height to visible content (below navbar) */
.hero-content {
    display: flex;
    align-items: stretch;
    min-height: calc(100vh - 90px); /* adjust 90px if navbar height differs */
}

/* Make hero image/video stay within container width */
.hero-image.hero-video {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 90px);
    overflow: hidden;
    border-radius: 12px;
}

/* Proper video scaling */
.hero-image.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fix WhatsApp button position */
.hero-image .whatsapp-float {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 5;
}

/* Prevent hero from causing page scroll */
body {
    overflow-x: hidden;
}
/*

.hero-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
*/
.whatsapp-float {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: var(--bg-white);
    font-size: 2rem;
}

.hero-sidebar {
    background-color: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.services-quick h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.service-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background-color: var(--bg-light);
    border-radius: 8px;
}

.service-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-card p {
    font-size: 0.9rem;
    margin: 0;
}

.service-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    margin-top: 0%;
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.service-item {
    text-align: center;
    padding: var(--spacing-md);
    background-color: var(--bg-white);
    border-radius: 15px;
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-sm);
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-item h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* ===================================
   Gallery Section
   =================================== */
.gallery-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.gallery-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 250px;
    background-color: var(--bg-light);
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-card h3 {
    padding: var(--spacing-sm);
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.gallery-cta {

    text-align: center;
    
    margin-top: var(--spacing-lg);
}

.benefits-list{
    margin-top: 30%;
}

/* ===================================
   About Section
   =================================== */

   
.about-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.about-text h2 {
    color: var(--bg-white);
    text-align: left;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
}

.location-info {
    text-align: right;
    margin-right: 100px;
}


/* ===================================
   Contact Section
   =================================== */
.contact-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-item {
    text-align: center;
    padding: var(--spacing-md);
    background-color: var(--bg-white);
    border-radius: 15px;
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.contact-item a {
    color: var(--text-dark);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-dark);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.social-links a {
    width: 50px;
    height: 50px;
    background-color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-links i {
    font-size: 1.5rem;
}

.social-links a:nth-child(1) i {
    color: #E4405F; /* Instagram */
}

.social-links a:nth-child(2) i {
    color: #FF0000; /* YouTube */
}

.social-links a:nth-child(3) i {
    color: #1877F2; /* Facebook */
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-align: center;
    padding: var(--spacing-md) 0;
}

.footer p {
    font-size: 0.9rem;
}



/*whatsapp floating on desktop */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

/* Button style */
.whatsapp-float a {
    background: #25D366;
    color: #ffffff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
    .whatsapp-float {
        display: none;
    }
}

@media (min-width: 769px) {
    .whatsapp-mobile-float {
        display: none;
    }
}


/* ===================================
   WhatsApp Mobile Float Button
   =================================== */
.whatsapp-mobile-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-mobile-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-mobile-float i {
    color: var(--bg-white);
    font-size: 2rem;
}

/* ===================================
   Responsive Design - Tablet
   =================================== */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-sidebar {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-text h2 {
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto var(--spacing-lg);
    }
    
    .nav-menu {
        gap: var(--spacing-sm);
    }
    
    .nav-wrapper .btn-primary {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* ===================================
   Responsive Design - Mobile
   =================================== */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: var(--spacing-md);
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-wrapper .btn-primary {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-mobile-float {
        display: flex;
    }
    
    .hero-section {
        padding: var(--spacing-md) 0;
    }
    
    .services-section,
    .gallery-section,
    .about-section,
    .contact-section {
        padding: var(--spacing-md) 0;
    }
}

/* ===================================
   Accessibility
   =================================== */
/* Focus styles for keyboard navigation */
a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    z-index: 100;
}

.skip-to-main:focus {
    top: 0;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
