/* =========================
   THEME VARIABLES
========================= */
:root {
    --primary-blue: #0d3b66;
    --dark-blue: #06283d;
    --primary-green: #198754;
    --accent-gold: #f4b400;
    --light-bg: #f5f7fa;
}

/* =========================
   GLOBAL STYLES
========================= */
body {
    font-family: 'Segoe UI', sans-serif;
}

h1, h2, h3, h4, h5 {
    color: var(--primary-blue);
    font-weight: 700;
}

/* Hero override */
.hero h1,
.hero p {
    color: white;
}

/* Light background override */
.bg-light {
    background-color: var(--light-bg) !important;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    background-color: white !important;
}

.navbar .nav-link {
    color: var(--primary-blue) !important;
    font-weight: 500;
}

.navbar .nav-link:hover {
    color: var(--primary-green) !important;
}

/* =========================
   HERO SECTION
========================= */

.hero {
    background: linear-gradient(rgba(13,59,102,0.75), rgba(6,40,61,0.75)),
                url('images/logo4.jpeg') center/cover no-repeat;
    height: 90vh;
}
/* .hero {
    background: url('images/residential.jpg') center/cover no-repeat;
    height: 90vh;
} */

/* =========================
   BUTTONS
========================= */
.btn-success {
    background-color: var(--primary-green);
    border: none;
}

.btn-warning {
    background: linear-gradient(45deg, var(--primary-green), var(--accent-gold));
    border: none;
    color: white;
}

.btn-warning:hover,
.btn-success:hover {
    opacity: 0.9;
}

/* =========================
   SERVICES
========================= */
.service-img {
    height: 250px;
    object-fit: cover;
}

/* =========================
   PROCESS SECTION
========================= */
/*.process-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    font-size: 26px;
    color: var(--primary-blue);
    animation: moveArrow 1.2s infinite alternate ease-in-out;
}

.arrow i {
    text-shadow: 0 0 8px rgba(13, 59, 102, 0.4);
}

@keyframes moveArrow {
    from { transform: translateX(0px); }
    to { transform: translateX(6px); }
}

*/
/* =========================
   PROCESS SECTION PREMIUM
========================= */

/* =========================
   PROCESS SECTION - MODERN CLEAN
========================= */

.process-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.process-item {
    text-align: center;
    min-width: 170px;
    transition: transform 0.3s ease;
}

.process-item:hover {
    transform: translateY(-5px);
}

.process-circle {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.process-item p {
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
}

.arrow {
    font-size: 28px;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    animation: moveArrow 1.2s infinite alternate ease-in-out;
}

@keyframes moveArrow {
    from { transform: translateX(0px); }
    to { transform: translateX(8px); }
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .process-wrapper {
        flex-direction: column;
    }

    .arrow {
        display: none;
    }
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
}

.contact-section h2 {
    color: white;
}

/* =========================
   FOOTER
========================= */
footer {
    background-color: var(--primary-blue);
}

/* =========================
   BRAND LOGOS
========================= */
/* BRAND LOGOS */


/* BRAND LOGOS */
.brand-logo {
    height: 150px;
    width: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.08);
}
/* =========================
   FLOATING WHATSAPP
========================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, var(--primary-green), var(--accent-gold));
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    z-index: 100;
}

.whatsapp-float:hover {
    opacity: 0.9;
}

/* Contact Section Text White */
.contact-section h1,
.contact-section h2,
.contact-section h3,
.contact-section h4,
.contact-section h5,
.contact-section p {
    color: white !important;
}

section h2 { margin-bottom: 18px; }
.row.mt-4 { margin-top: 10px !important; }
section { padding: 50px 0; }

section h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: var(--primary-green);
    display: block;
    margin: 10px auto 0;
}

/* Premium Materials Images */
.material-img {
    width: 100%;
    height: 220px;        /* same height for all */
    object-fit: cover;    /* crops nicely without distortion */
    border-radius: 10px;
}


/* Navbar Logo */
.navbar-logo {
    height: 45px;   /* adjust size if needed */
    width: auto;
}


















