:root {
    --primary-color: #aa531f;
    --secondary-color: #162936;
    --third-color: #3b5265;
    --fourth-color: #051824;
    --jost: "Merriweather", serif;
    --kalam: "Merriweather", serif;
    --white: #fff;
    --black: #212121;
}

/* Override Bootstrap Primary Color */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-primary:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

/* Custom Styles */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    font-family: var(--jost);
    background-color: #fff;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    background: #128C7E;
    color: white;
}

/* Go to Top Button */
.totop {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.totop.show {
    display: flex;
}

.totop:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* Header Styles */
header {
    padding: 15px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

nav ul li a {
    color: var(--black);
    transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color) !important;
}

.btn {
    background: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
}

.btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.btn.alt {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn.alt:hover {
    background: var(--primary-color);
    color: white;
}

/* Home Section */
/*#home {*/
    /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
/*    background-size: cover;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    min-height: 130vh;*/
/*    display: flex;*/
/*    align-items: center;*/
/*}*/


/* Tablet */
/*@media (max-width: 992px) {*/
/*    #home {*/
/*        min-height: 90vh;*/
/*        padding: 50px 20px;*/
/*        background-position: center;*/
/*    }*/
/*}*/

/* Mobile */
/*@media (max-width: 768px) {*/
/*    #home {*/
        min-height: auto; /* important fix */
/*        padding: 80px 15px 60px;*/
/*        background-position: top;*/
/*    }*/
/*}*/

/* Small Mobile */
/*@media (max-width: 480px) {*/
/*    #home {*/
/*        padding: 70px 10px;*/
/*        background-size: cover;*/
/*    }*/
/*}*/

.kalam {
    font-family: var(--kalam);
}

.main_heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.main_heading:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

/* Service Boxes */
.service_box {
    background: white;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.service_box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service_box .imgBx {
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service_box .imgBx img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service_box:hover .imgBx img {
    transform: scale(1.1);
}

/* Mission Vision Boxes */
.mv_box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.mv_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Number Boxes */
.number_box {
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.number_box:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.05);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
}
.footer-link {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-link:hover {
    color: #aa531f;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    footer {
        text-align: center;
    }

    .footer-link {
        padding-left: 0;
    }
}

/* Odometer Styling */
.odometer {
    font-size: 48px;
    font-weight: 700;
}
/* Hero Section with Background Image */
.hero-section {
    /* background-image: url('../img/banner1.png'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 110vh;
    display: flex;
    align-items: center;
}

/* Overlay for better text readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Text color adjustment for better visibility */
.hero-section h1 {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section h3 {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-section .btn {
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-section .btn.alt {
    background: rgba(255,255,255,0.9);
    color: var(--primary-color);
    border: none;
}

.hero-section .btn.alt:hover {
    background: white;
    transform: translateY(-2px);
}
.mobile_menu li a {
    color: var(--black);
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    transition: 0.3s;
}
.mobile_menu li a:hover {
    background: var(--primary-color);
    color: #fff !important;
}
.mobile_menu li a:active {
    background: var(--primary-color);
    color: #fff !important;
}
.dropdown-menu .dropdown-item:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}
.offcanvas {
    background-color: #fff;
}

.offcanvas .mobile_menu li a {
    font-size: 18px;
    font-weight: 600;
}
@media (min-width: 992px) {
    .dropdown-menu {
        display: block;
        opacity: 0;
        transform: translateY(10px);
        visibility: hidden;
        transition: all 0.3s ease;
    }

    nav .dropdown:hover .dropdown-menu {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
}


.project-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.img-box {
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.5s;
}

.project-card:hover img {
    transform: scale(1.1);
}

.content {
    padding: 20px;
}

.content h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.content p {
    color: #555;
}

/* Contact Section */
.contact-section {
    background: #f5f5f5;
}

/* Left Image */
.contact-img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: url('../img/140001.png') no-repeat center;
    background-size: cover;
}

/* Form */
.contact-form {
    max-width: 500px;
    padding: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background: #000;
    color: #fff;
    padding: 12px;
    border: none;
    width: 100%;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form button:hover {
    background: #333;
}

/* Mobile */
@media (max-width: 768px) {

    .contact-img {
        display: none; /* hide image on mobile */
    }

    .contact-form {
        padding: 20px;
    }
}