@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap');


:root {
    --primary-color: #265f94;
    /* Dark Slate / Charcoal – for main text, links, hover */
    --secondary-color: #091723;
    /* Bold Orange – for accents, hover, highlights */
    --tertiary-color: #ffff;
}

/* =================================== */
/* Base font */
body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #222831;
    /* matches primary color for readability */
    scroll-behavior: smooth;
    /* smooth scrolling */
    -webkit-font-smoothing: antialiased;
    /* better text rendering for Chrome/Safari */
    -moz-osx-font-smoothing: grayscale;
    /* better text rendering for Firefox */
    margin: 0;
    padding: 0;
    background-color: #fff;
    /* optional, clean white background */
}

h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #111;
    /* Heading color */
    margin-bottom: 15px;
}

.hero {
    position: relative;
}

.carousel-item {
    position: relative;
}

.carousel-item img {
    height: 90vh;
    width: 100%;
    object-fit: cover;
}

/* Dark overlay on image */
.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* semi-transparent black */
    z-index: 1;
}

/* Caption centered */
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    /* above overlay */
    width: 900px;
    color: #fff;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 10px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* ========================================================== */
.head-title h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'montserrat', sans-serif;
}

@media (max-width: 768px) {
    .head-title h2 {
        font-size: 1.8rem;
    }
}

.head-title span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

/* ============================================================ */
.about-us img {
    border-radius: 10% 30% 10% 5%/30% 10% 5% 30%;
    height: 500px;
    object-fit: cover;
    width: 100%;
    transition: all 0.7s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 5px solid var(--tertiary-color);
}

.about-us img:hover {
    border-radius: 30% 10% 30% 10%/10% 30% 10% 10%;
    height: 500px;
    object-fit: cover;
    width: 100%;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.7s ease-in-out;
}

/* -=========================================================== */
.text-justify {
    text-align: justify;
}

.title {
    color: var(--primary-color);
    font-weight: 700;
}

/* =========================================================== */


.service-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    background: #fff;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* =========================================================== */
.services {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../images/background/1.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.services .card img {
    border-radius: 50%;
    height: 200px;
    object-fit: cover;
    width: 100%;
    transition: all 0.7s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.services .card:hover img {
    border-radius: 30% 10% 30% 10%/10% 30% 10% 10%;
    height: 200px;
    object-fit: cover;
    width: 100%;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.7s ease-in-out;
}

/* ================================================= */
.quote-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/background/1.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* ================================================= */
.process h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* ================================================= */
.process h2 {
    font-size: 35px;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* =================================================  */
.process .card {
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url(../images/background/1.jpg);
    background-size: cover;
    background-position: top;
    border-radius: 5px;
    border: none;
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.7s ease-in-out;
}

.process .card:hover {
    background-position: bottom;
    transition: all 0.7s ease-in-out;
}

/* ================================================== */


.counter {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/background/1.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}



.counter-box {
    background: #f9f9f9;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.counter .counter-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.counter p {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #555;
}

/* ==================================== */
.breadcrumb {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    margin-bottom: 0;
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.breadcrumb a {
    color: var(--tertiary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: var(--tertiary-color);
    padding: 0 6px;
}

.breadcrumb-item.active {
    color: #fff;
    font-weight: 500;
}

/* ===================================== */
.mission img {
    border-radius: 10% 30% 10% 5%/30% 10% 5% 30%;
    object-fit: cover;
    width: 100%;
    transition: all 0.7s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 5px solid var(--tertiary-color);
}

/* ====================================== */
.mission {
    background: #eeee;
}

/* ====================================== */
.list-group-item {
    background-color: var(--primary-color);
    color: var(--tertiary-color);
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

/* ====================================== */
.tensile-2 {
    background: #eee;
}

.tensile img {
    border-radius: 10% 30% 10% 5%/30% 10% 5% 30%;
    object-fit: cover;
    width: 100%;
    transition: all 0.7s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 5px solid var(--tertiary-color);
}

/* ========================================= */
.walkway-2 {
    background: #eee;
}

.walkway img {
    border-radius: 10% 30% 10% 5%/30% 10% 5% 30%;
    object-fit: cover;
    width: 100%;
    transition: all 0.7s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 5px solid var(--tertiary-color);
}

/* =========================================== */
.roof-2 {
    background: #eee;
}

.roof img {
    border-radius: 10% 30% 10% 5%/30% 10% 5% 30%;
    object-fit: cover;
    width: 100%;
    transition: all 0.7s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 5px solid var(--tertiary-color);
}

/* ============================================ */
.canopy-2 {
    background: #eee;
}

.canopy img {
    border-radius: 10% 30% 10% 5%/30% 10% 5% 30%;
    object-fit: cover;
    width: 100%;
    transition: all 0.7s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 5px solid var(--tertiary-color);
}

/* ============================================ */
.membrane-2 {
    background: #eee;
}

.membrane img {
    border-radius: 10% 30% 10% 5%/30% 10% 5% 30%;
    object-fit: cover;
    width: 100%;
    transition: all 0.7s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 5px solid var(--tertiary-color);
}

/* ================================================== */
.car-parking-2 {
    background: #eee;
}

.car-parking img {
    border-radius: 10% 30% 10% 5%/30% 10% 5% 30%;
    object-fit: cover;
    width: 100%;
    transition: all 0.7s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 5px solid var(--tertiary-color);
}

/* =================================================== */

.swimming-pool-2 {
    background: #eee;
}

.swimming-pool img {
    border-radius: 10% 30% 10% 5%/30% 10% 5% 30%;
    object-fit: cover;
    width: 100%;
    transition: all 0.7s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 5px solid var(--tertiary-color);
}

/* =================================================== */
.gazebo-2 {
    background: #eee;
}

.gazebo img {
    border-radius: 10% 30% 10% 5%/30% 10% 5% 30%;
    object-fit: cover;
    width: 100%;
    transition: all 0.7s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 5px solid var(--tertiary-color);
}

/* ================================================== */
.btn {
    border-radius: 20px 10px 20px 10px;
    color: var(--tertiary-color);
    background: var(--primary-color);
    transition: all 0.7s ease-in-out;
    padding: 10px 30px;
    border: 2px solid var(--tertiary-color);
    font-weight: 600;
}

.btn:hover {
    border-radius: 10px 20px 10px 20px;
    color: var(--primary-color);
    background: var(--tertiary-color);
    transition: all 0.7s ease-in-out;
}

/* ========================================== */

.custom-toggler {
    background: transparent;
    border: none;
    padding: 0;
    outline: none;
    cursor: pointer;
}

.hamburger {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hamburger svg {
    width: 100%;
    height: 100%;
}

.hamburger circle {
    fill: transparent;
}

.hamburger path {
    fill: none;
    stroke: #000;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    --length: 24;
    --offset: -38;
    stroke-dasharray: var(--length) var(--total-length);
    stroke-dashoffset: var(--offset);
    transition: all 0.8s cubic-bezier(.645, .045, .355, 1);
}

.hamburger .line--1,
.hamburger .line--3 {
    --total-length: 126.64183044433594;
}

.hamburger .line--2 {
    --total-length: 70;
}

/* Hover Animation */
.hamburger:hover .line--1,
.hamburger.animate .line--1,
.hamburger:hover .line--3,
.hamburger.animate .line--3 {
    --length: 22.627416998;
    --offset: -94.1149185097;
}

.hamburger:hover .line--2,
.hamburger.animate .line--2 {
    --length: 0;
    --offset: -50;
}