body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #0f2f33;
}
/* Global section container for alignment */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section spacing */
section {
    padding: 100px 0;
}

/* Section headings */
section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #0f3f42;
}

/* Paragraphs */
section p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

/* Cards grid (used in Who We Are & Services) */
.cards-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0f3f42;
}

.card p {
    font-size: 14px;
    color: #555;
}

/* Mobile */
@media (max-width: 768px) {
    .section-container {
        padding: 0 20px;
    }

    section {
        padding: 70px 0;
    }

    section h2 {
        font-size: 28px;
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;

    /* Nice bottom border */
    border-bottom: 3px solid #1f8a8f;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}


.navbar img {
    height: 50px;
}

.navbar a {
    position: relative;
    margin-left: 20px;
    text-decoration: none;
    color: #1f8a8f;
    font-weight: bold;
    padding-bottom: 4px;
    transition: color 0.2s ease;
}

/* Hover color */
.navbar a:hover {
    color: #0f2f33;
}

/* Animated underline */
.navbar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #1f8a8f;
    transition: width 0.25s ease;
}

/* Underline appears on hover */
.navbar a:hover::after {
    width: 100%;
}

/* Active navigation link */
.navbar a.active {
    color: #0f2f33;
}

/* Keep underline visible for active link */
.navbar a.active::after {
    width: 100%;
    background-color: #0f2f33;
}


.hero {
    height: 80vh;
    background: linear-gradient(to right, #1f8a8f, #2fb5b8);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
}

.section {
    padding: 60px 80px;
}

.section h2 {
    color: #1f8a8f;
}

.light {
    background: #f5fafa;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.card img {
    width: 100%;
    border-radius: 8px;
}

.leaders li {
    margin-bottom: 15px;
}

footer {
    background: #0f2f33;
    color: white;
    text-align: center;
    padding: 20px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
}

.contact-form textarea {
    min-height: 120px;
}

.contact-form button {
    background: #1f8a8f;
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.contact-form button:hover {
    background: #166c70;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
}

.contact-form textarea {
    min-height: 120px;
}

.contact-form button {
    background: #1f8a8f;
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.contact-form button:hover {
    background: #166c70;
}

/* Mobile fix */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}
/* HERO SLIDESHOW */
/* HERO SLIDESHOW ENHANCED */
.hero.slideshow {
    position: relative;
    height: 85vh;
    background-size: cover;
    background-position: center;
    animation: heroSlideshow 24s infinite;
}

/* Dark gradient overlay for readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 47, 51, 0.65),
        rgba(15, 47, 51, 0.55)
    );
}

/* Smooth fade + zoom */
/* HERO SLIDESHOW – GAPLESS VERSION */
.hero.slideshow {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background: #000; /* prevents white flash */
}

/* Background layer */
.hero.slideshow::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-image: url("images/slideshow/hero1.jpg");
    transform: scale(1);
    animation: heroFade 24s infinite;
    z-index: 0;
}

/* Smooth fade + zoom without gaps */
@keyframes heroFade {
    0% {
        background-image: url("images/slideshow/hero2.jpg");
        transform: scale(1);
        opacity: 1;
    }
    30% {
        transform: scale(1.05);
        opacity: 1;
    }
    33% {
        background-image: url("images/slideshow/hero3.jpg");
        transform: scale(1);
        opacity: 1;
    }
    63% {
        transform: scale(1.05);
        opacity: 1;
    }
    66% {
        background-image: url("images/slideshow/hero2.jpg");
        transform: scale(1);
        opacity: 1;
    }
    97% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* Overlay stays solid */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 47, 51, 0.65),
        rgba(15, 47, 51, 0.55)
    );
    z-index: 1;
}

/* Content always visible */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: heroTextFade 1.5s ease forwards;
}

@keyframes heroTextFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-dots {
    position: absolute;
    bottom: 30px;
    display: flex;
    gap: 8px;
}

.hero-dots span {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
}

/* Mobile fix */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 34px;
    }
}
.form-success {
    display: none;
    margin-top: 25px;
    padding: 18px;
    background: #e6f6f6;
    color: #0f2f33;
    border: 2px solid #1f8a8f;
    font-size: 17px;
    border-radius: 6px;
    font-weight: bold;
}
.map-container {
    margin-top: 40px;
    width: 100%;
    height: 380px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .map-container {
        height: 300px;
    }
}
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    font-size: 26px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    z-index: 999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    z-index: 999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.whatsapp-float svg {
    display: block;
}

/* Mobile spacing */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
}
/* WhatsApp tooltip */
.whatsapp-float::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    background: #0f2f33;
    color: #fff;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-float:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* Gentle pulse animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: whatsapp-pulse 3s infinite;
}

/* Disable pulse on hover (professional touch) */
.whatsapp-float:hover {
    animation: none;
}

/* Service card hover effect */
.card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

/* Lift card on hover */
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Image zoom on hover */
.card img {
    transition: transform 0.4s ease;
}

.card:hover img {
    transform: scale(1.05);
}

/* Title highlight on hover */
.card h3 {
    transition: color 0.25s ease;
}

.card:hover h3 {
    color: #1f8a8f;
}
/* Team grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Team card */
.team-card {
    background: #ffffff;
    border-radius: 12px;
    text-align: center;
    padding: 25px 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover effect */
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Team image */
.team-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* Team title */
.team-card h3 {
    margin-bottom: 10px;
    color: #1f8a8f;
}

/* Team text */
.team-card p {
    font-size: 15px;
    color: #333;
}
/* ===== MOBILE NAVIGATION ===== */

/* Hamburger icon */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: #1f8a8f;
    margin: 4px 0;
    transition: 0.3s;
}

/* Mobile styles */
@media (max-width: 768px) {

    .navbar {
        position: relative;
    }

    .menu-toggle {
        display: flex;
    }

    .navbar nav {
        position: absolute;
        top: 100%;
        right: 0;
        background: #ffffff;
        width: 220px;
        display: none;
        flex-direction: column;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        border-radius: 8px;
        padding: 10px 0;
        z-index: 1000;
    }

    .navbar nav a {
        padding: 12px 20px;
        margin: 0;
        border-bottom: 1px solid #eee;
    }

    .navbar nav a:last-child {
        border-bottom: none;
    }

    /* Show menu when active */
    .navbar nav.active {
        display: flex;
    }
}
/* Hero dots (manual controls) */
.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-dots button:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-dots button.active {
    background: #ffffff;
    transform: scale(1.2);
}
/* ================================
   FOOTER (FINAL CLEAN VERSION)
================================ */

/* Main footer */
.site-footer {
    background: #0f3f42; /* dark teal from logo */
    color: #d9eeee;
    padding-top: 60px;
    font-size: 14px;
}

/* Top footer layout */
.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 0 40px 50px;
}

/* Footer columns */
.footer-column h3,
.footer-column h4 {
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-column p,
.footer-column ul li {
    color: #d9eeee;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #d9eeee;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: #7fe3e7; /* light teal */
}

/* Get in touch column */
.footer-touch {
    max-width: 360px;
}

/* Footer email form */
.footer-form {
    display: flex;
    gap: 8px;
    margin: 15px 0 20px;
    width: 100%;
}

.footer-form input {
    flex: 1;
    padding: 10px 12px;
    border-radius: 6px;
    border: none;
    outline: none;
    font-size: 14px;
}

.footer-form button {
    padding: 10px 14px;
    border-radius: 6px;
    border: none;
    background: #1f8a8f;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s ease;
}

.footer-form button:hover {
    background: #166d71;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 15px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.footer-social a:hover {
    background: #1f8a8f;
}
.footer-social svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}

/* Small footer map */
.footer-map {
    margin-top: 15px;
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Bottom bar */
.footer-bottom {
    background: #0b2f32; /* darker teal */
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand img {
    width: 36px;
    height: auto;
}

.footer-copy {
    font-size: 13px;
    color: #bfe4e6;
}

/* Mobile footer */
@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-touch {
        margin: 0 auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.footer-success {
    display: none;
    margin-top: 10px;
    font-size: 13px;
    color: #7fe3e7;
}

.footer-error {
    display: none;
    margin-top: 10px;
    font-size: 13px;
    color: #ffb4b4;
}

/* Disabled button state */
.footer-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
/* ================================
   WHO WE ARE SECTION
================================ */

.who-we-are {
    padding: 100px 40px;
    background: #f6fbfb;
}

.who-container {
    max-width: 1200px;
    margin: 0 auto;
}

.who-intro {
    max-width: 700px;
    margin-bottom: 60px;
}

.who-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0f3f42;
}

.who-lead {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1f8a8f;
}

.who-intro p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
}

/* Cards layout */
.who-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

/* Individual card */
.who-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.who-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.who-icon {
    font-size: 28px;
    margin-bottom: 15px;
}

.who-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0f3f42;
}

.who-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Mobile */
@media (max-width: 768px) {
    .who-we-are {
        padding: 70px 20px;
    }

    .who-intro h2 {
        font-size: 28px;
    }
}
.who-intro {
    max-width: 100%;
}
/* ================================
   HERO SECTION FIX (TEXT VISIBILITY)
================================ */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Slideshow stays in background */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Dark overlay for readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

/* TEXT ON TOP */
.hero-text {
    position: relative;
    z-index: 3;               /* 🔥 KEY FIX */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
    color: #ffffff;
}

.hero-text h1 {
    font-size: 80px;          /* keep approved size */
    font-family: "Poppins", "Inter", "Segoe UI", Arial, sans-serif;
    font-weight: 600;         /* softer than 800 */
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-text p {
    font-size: 30px;          /* keep approved size */
    font-family: "Poppins", "Inter", "Segoe UI", Arial, sans-serif;
    font-weight: 400;
    max-width: 820px;
    line-height: 1.5;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 56px;
    }

    .hero-text p {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 42px;
    }

    .hero-text p {
        font-size: 18px;
    }
}
