:root {
    /* Brand Colors */
    --primary-color: #C24705;
    --secondary-color: #4A4A4A;

    /* Bg Blue colors  */
    /* --light-bg-color: #F4F6F8;  
    --section-light: #E9EEF2;   */

    /* --light-bg-color: #F3F5F7;  
    --section-light: #E6EBF0;  */

    /* --light-bg-color: #EEF2F5;  
    --section-light: #DCE3E9; */
    
    /* Bg orange colors  */

    /* --light-bg-color: #FEF8F5;
    --section-light: #FAF1EC; */

    --light-bg-color: #FCF4F0;
    --section-light: #F9ECE6;
    
    --white-color: #ffffff;
    --light-grey: #f8f9fa;
    --text-light: #ffffff;



    /* Button Colors */
    --hover-orange: #ff6b00;
    --hover-orange-dark: #e65c00;

    /* Shadow */
    --box-shadow-light: 0 10px 30px rgba(0, 0, 0, 0.05);
    --box-shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.08);
}


body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    background-color: var(--section-light);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Oswald', sans-serif;
}

.page-section {
    padding: 120px 0 80px;
}

.light-bg {
    background-color: var(--light-bg-color);
}

.title {
    padding-top: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.navbar {
    /* background-color: var(--light-bg-color); */
    background-color: var(--white-color);
}

.logo {
    width: 60px;
    height: 60px;
}

.navbar-nav {
    margin-left: auto;
}


.nav-link {
    font-size: large;
    position: relative;
    color: var(--primary-color);
    font-weight: bold;
    padding: 8px 0;
    margin: 0 12px;
    transition: 0.3s;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: 0.4s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.hero {
    color: var(--white-color);
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url("../images/banner.webp");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.contactBtn {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contactBtn:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.btn-outline-reddish {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-reddish:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.client-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
}

.client-track {
    display: flex;
    gap: 40px;
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.client-item {
    min-width: 150px;
    text-align: center;
}

.client-item img {
    width: 100%;
    transition: 0.3s;
}

.client-item img:hover {
    transform: scale(1.05);
}



/* Pause on hover */
.client-wrapper:hover .client-track {
    animation-play-state: paused;
}

/* Buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--hover-orange);
    border: none;
    color: var(--white-color);
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.scroll-btn:hover {
    background: var(--hover-orange-dark);
}

.left-btn {
    left: -20px;
}

.right-btn {
    right: -20px;
}


/* ================= FOOTER ================= */

.footer-section {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url("../images/img35.webp");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white-color);
}

.footer-title {
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    text-align: justify;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-light);
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.5);
}

.footer-email {
    color: var(--primary-color);
    font-size: 18px;
}

.inaivu {
    color: var(--primary-color);
    font-weight: bold;
}

/* ================= CONTACT ================= */



/* Section Titles */
.section-title {
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-family: 'Oswald', sans-serif;
    
}

/* Contact Info Box */
.contact-box {
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

.contact-box h5 {
    color: var(--primary-color);
    font-weight: bold;
}

/* Form Styling */
.contact-form {
    background: var(--white-color);
    box-shadow: var(--box-shadow-light);
    padding: 40px;
    border-radius: 10px;
}

.contact-form .form-control {
    border-radius: 8px;
    padding: 12px;
}

.contact-form button {
    background-color: #C24705;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    color: var(--white-color);
    font-weight: bold;
}

.contact-form button:hover {
    background-color: var(--secondary-color);
}

/* Map responsive */
.map-container iframe {
    width: 100%;
    height: 450px;
    border-radius: 10px;
}

/* ================= ABOUT ================= */


/* Spacing below fixed navbar */


/* Section Titles */
.section-title {
    font-weight: bold;
    margin-bottom: 20px;
}

/* Vision Mission Team Cards */
.info-card {

    padding: 30px;
    border-radius: 10px;
    height: 100%;
    transition: 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-medium);
}

.info-card h5 {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 15px;
}

/* Certificates */

.VAT-certifi,
.invest-certifi h3 {
    color: var(--primary-color);
}

.certificate-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow-medium);
    transition: 0.3s;
    height: 400px;

}

.certificate-img:hover {
    transform: scale(1.03);
}


/* ================= PROJECT ================= */

.project-img {
    width: 100%;
    height: 300px;
    /* Same height for all images */
    overflow: hidden;
    border-radius: 10px;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Prevent stretching */
    transition: 0.4s ease;
}

/* Optional Hover Effect */
.project-img img:hover {
    transform: scale(1.05);
}

/* ================= SERVICES PAGE ================= */

section {
    padding: 80px 0;
}

/* Service Headings */
section h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

/* Service Images */
.service-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.4s ease;
}

.service-img:hover {
    transform: scale(1.05);
}

/* List Styling */
section ul {
    list-style: none;
    padding-left: 0;
}

section ul li {
    padding: 8px 0;
    font-size: 17px;
    position: relative;
    padding-left: 25px;
}

/* Custom bullet */
section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 22px;
    line-height: 1;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .project-img {
        height: 220px;
    }

    .service-img {
        height: 220px;
        margin-top: 20px;
    }
}