:root {
    --brand-teal: #199db1;   
    --brand-navy: #0b1a30;   
    --brand-dark: #060e1a;   
    --text-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--brand-navy);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: rgba(11, 26, 48, 0.95);
    padding: 15px 0;
    border-bottom: 2px solid var(--brand-teal);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(5px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
    padding: 5px 0;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--brand-teal);
}

.contact-info .whatsapp-btn {
    background-color: #25D366;
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
}

.contact-info .whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.slider-section {
    position: relative;
    height: 600px; 
    overflow: hidden;
	border-bottom: 2px solid var(--brand-teal);
    background-color: var(--brand-dark);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0; 
    transition: opacity 0.8s ease-in-out; 
    z-index: 1;
}

.slide.active {
    opacity: 1; 
    z-index: 2;
}

.hero-text {
    padding: 60px 0;
    background-color: var(--brand-navy);
    text-align: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: var(--brand-teal);
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-white);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(25, 157, 177, 0.4);
    color: var(--text-white);
    border: 1px solid var(--brand-teal);
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--brand-teal);
    color: var(--brand-navy);
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.stats {
    background-color: var(--brand-teal);
    padding: 50px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-box h2 {
    font-size: 3rem;
    margin-bottom: 5px;
    font-weight: 800;
    letter-spacing: -1px;
}

.stat-box p {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.95;
}

.services {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: var(--brand-teal);
    font-weight: 700;
}

.services-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    background-color: #112642;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    border: 1px solid rgba(25, 157, 177, 0.15);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-teal);
    box-shadow: 0 10px 25px rgba(25, 157, 177, 0.15);
}

.service-card i {
    font-size: 3.5rem;
    color: var(--brand-teal);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
    font-weight: 600;
}

.service-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
}

.marquee-section {
    background-color: var(--brand-dark);
    padding: 35px 0;
    border-top: 1px solid rgba(25, 157, 177, 0.1);
    border-bottom: 1px solid rgba(25, 157, 177, 0.1);
}

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 18s linear infinite;
}

.marquee-content span {
    display: inline-block;
    padding: 0 50px;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.3s;
}

.marquee-content span:hover {
    color: var(--brand-teal);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.map-section iframe {
    display: block;
    width: 100%;
    border-top: 2px solid var(--brand-teal);
    filter: grayscale(15%) contrast(1.05);
}

.footer {
    background-color: var(--brand-dark);
    padding: 60px 0 0 0; 
    border-top: 2px solid var(--brand-teal);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer h3 {
    color: var(--brand-teal);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

.footer p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.footer p i {
    color: var(--brand-teal);
    margin-right: 8px;
    width: 20px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: var(--brand-teal);
    text-decoration: none;
    border: 1px solid var(--brand-teal);
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.map-link:hover {
    background-color: var(--brand-teal);
    color: var(--brand-dark);
}

.footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(25, 157, 177, 0.15);
    background-color: rgba(0, 0, 0, 0.15); 
    text-align: center;
}

.footer-bottom p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    white-space: nowrap; 
}

.footer-bottom a {
    color: var(--brand-teal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--text-white);
    text-shadow: 0 0 8px var(--brand-teal);
}

@media (max-width: 992px) {
    .slider-section { height: 450px; }
    .hero-text h1 { font-size: 2.8rem; }
    .hero-text p { font-size: 1.3rem; }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .logo {
        justify-content: center;
        margin-bottom: 10px;
    }
    .logo img {
        height: 60px;
    }
    .contact-info {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .contact-info .whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
    .slider-section { height: 400px; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero-text p { font-size: 1.1rem; }
    .hero-text { padding: 40px 0; }
    .slider-btn { width: 40px; height: 40px; font-size: 1.2rem; }
    
    .stats-container, .services-container, .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    .map-link {
        justify-content: center;
    }
    .footer-bottom p {
        white-space: normal; 
        line-height: 1.8;
    }
	
.brand-logo {
    width: 140px !important;  
    height: 70px !important;  
    object-fit: contain !important;
    margin: 0 35px;
    vertical-align: middle;
    filter: grayscale(100%) brightness(200%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    filter: grayscale(0%) brightness(100%);
    opacity: 1;
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .brand-logo {
        width: 100px !important;
        height: 50px !important;
        margin: 0 20px;
    }
}