:root {
    --primary-blue: #007bff; 
    --dark-blue: #003366;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --bg-light: #f9f9f9;
    --body-font: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3, .logo {
    font-weight: 700;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-dark);
}

.navbar {
    position: fixed;
    top: 15px; 
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-height: 80px;
    max-width: 1200px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    height: 50px; 
    width: auto;
    display: block;
    object-fit: contain;
    border-radius: 5px;
    border: 2px solid #003366;
}


.call-btn {
    background: var(--dark-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.call-btn:hover {
    background: var(--primary-blue);
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
    url('hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 120px;
}

.hero-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
    padding: 20px;
}

.carousel {
    width: 100%;
    margin-bottom: 30px;
}


.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

.cta-primary {
    padding: 15px 30px;
    background: var(--dark-blue);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
    margin-bottom: 10px;
}

.cta-primary:hover {
    background: var(--primary-blue);
}

.cta-secondary {
    padding: 15px 30px;
    background: var(--dark-blue);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
    margin-bottom: 10px;
}

.cta-secondary:hover {
    background: var(--primary-blue);
}

.hero-p {
    margin-bottom: 15px;
}

.location {
    margin-top: 15px;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.services-h {
    margin-bottom: 40px;
    font-size: 1.8rem;
    color: var(--dark-blue);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

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

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-blue);
}

/* Footer */
.main-footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 50px 20px 20px;
}

.footer-h{
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

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

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 100%;
    visibility: hidden;
    transition: 0.3s;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* Pulse Animation */
@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
    animation: whatsapp-pulse 2s infinite;
}


/* About Us Section */
.about-section {
    padding: 100px 20px;
    background: var(--white);
    display: flex;
    justify-content: center;
}

.about-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--dark-blue);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    max-width: 650px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
    border-color: var(--primary-blue);
    
}

.stat-item:hover {
    transform: scale(1.03);
    border-color: var(--primary-blue);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* Mobile */
@media (max-width: 968px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        flex: 1;
        min-width: 150px;
    }
}

/* Gallery */
.carousel {
    margin: 40px auto;
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
}

.group {
    display: flex;
    width: max-content;
    gap: 20px;
    padding: 20px 0;
    animation: scroll 30s linear infinite;
}
.group:hover {
    animation-play-state: paused;

}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); } 
}

.card {
    width: 250px;
    height: 180px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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