.about-impact {
    background-color: #5C4033;
    padding: 70px 15px;
    color: #ffffff;
}

/* Header */
.about-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.about-header h1 {
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #FFFFFF;
}

.about-header p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
}

/* Stats Layout */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Card */
.impact-card {
    background-color: #ffffff;
    color: #5C4033;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
}

.impact-card h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #5C4033;
}

.impact-card span {
    font-size: 15px;
    font-weight: 500;
}

/* Tablet */
@media (max-width: 991px) {
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 575px) {
    .about-impact {
        padding: 50px 15px;
    }

    .about-header h2 {
        font-size: 26px;
    }

    .about-header p {
        font-size: 15px;
    }

    .impact-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .impact-card {
        text-align: left;
        padding: 22px 20px;
        position: relative;
    }

    /* Accent line for mobile */
    .impact-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 6px;
        height: 100%;
        background-color: #5C4033;
        border-radius: 16px 0 0 16px;
    }

    .impact-card h3 {
        font-size: 30px;
    }

    .impact-card span {
        font-size: 14px;
    }
}

/********** Template CSS **********/

:root {
    --primary: #5C4033;
    --secondary: #001064;
    --light: #F6F7F8;
    --dark: #010A35;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.whatsapp-btn {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 100px; /* above back-to-top */
  z-index: 99;
}

/* Mobile styling for WhatsApp button */


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.bg-brown {
    background-color: #8B4513 !important; /* dark brown */
}
/* Rotate the phone icon to look correct */
.bg-brown .fa-phone-alt {
    transform: rotate(90deg); /* rotate 90 degrees clockwise */
}



.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}
.btn.btn-primary {
    background: #8B4513 !important;
    border-color: #8B4513 !important;
}
.btn.btn-primary:hover {
    background: #5C3317 !important; /* slightly darker on hover */
    border-color: #5C3317 !important;
}

.btn.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #8B4513;

}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}





.contact-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.contact-link:hover h5,
.contact-link:hover h6 {
    color: var(--primary);
}


/*** Navbar ***/
.social-sm {
    width: 30px;
    height: 30px;
    font-size: 14px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
}

.social-sm i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
    color: #001064;
    
}

/* Facebook icon optical centering fix */
.social-sm .fa-facebook-f {
    margin-left: 1px;
}



/* NAV LINKS CONTAINER */
.navbar-nav.nav-pro {
    display: flex;
    align-items: center;
    gap: 24px;       /* links spacing */
    margin-left: auto;
    font-family: 'Poppins', sans-serif;
}

/* NAV LINKS */
.navbar-nav.nav-pro .nav-link {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    position: relative;
    padding: 8px 14px;
    text-decoration: none;
    transition: color 0.25s ease;
}

/* HOVER & ACTIVE COLOR */
.navbar-nav.nav-pro .nav-link:hover,
.navbar-nav.nav-pro .nav-link.active {
    color: #c48a6a;
}

/* SUBTLE SLIDE UNDERLINE */
.navbar-nav.nav-pro .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8B4513, #8B4513);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-nav.nav-pro .nav-link:hover::after,
.navbar-nav.nav-pro .nav-link.active::after {
    width: 60%; /* subtle underline slide */
}

/* DROPDOWN MENU */
.dropdown-menu.dropdown-pro {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 10px 0;
    display: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

/* SHOW DROPDOWN ON HOVER */
.navbar-nav.nav-pro .dropdown:hover > .dropdown-menu {
    display: block;
}

/* DROPDOWN ITEMS */
.dropdown-pro .dropdown-item {
    font-size: 14px;
    color: #333;
    padding: 10px 22px;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.dropdown-pro .dropdown-item:hover {
    background: #f7f7f7;
    color: #8B4513;
}

/* MOBILE RESPONSIVE */
@media (max-width: 991px) {
    .navbar-nav.nav-pro {
        flex-direction: column;
        gap: 12px;
        margin-left: 0;
        padding: 14px 20px;
        background: #fff;
        border-radius: 8px;
    }

    .navbar-nav.nav-pro .nav-link {
        width: 100%;
        text-align: left;
    }

    .dropdown-pro {
        position: relative;
        top: 0;
        left: 0;
        min-width: 100%;
        box-shadow: none;
        border-radius: 0;
        border: none;
        display: block; /* mobile me always visible */
    }

    .dropdown-pro .dropdown-item {
        padding-left: 24px;
    }
}
@media (max-width: 991px) {

  /* Parent navbar flex, align items center */
  .navbar {
    display: flex !important;
    align-items: center;
    justify-content: flex-start; /* logo left */
  }

  /* Logo left, shrink na ho */
  .brand-wrap, .logo-container {
    display: flex !important;
    align-items: center;
    width: auto !important;
    flex-shrink: 0;
  }

  /* Toggler right */
  .navbar-toggler {
    margin-left: auto !important;
    order: 2; /* ensure logo left, toggler right */
  }

  /* Ensure collapse menu still works */
  .collapse.navbar-collapse {
    order: 3;
    width: 100%;
  }

  /* Existing dropdown/menu styling */
  .navbar-nav.nav-pro {
    flex-direction: column;
    gap: 12px;
    margin-left: 0;
    padding: 14px 20px;
    background: #fff;
    border-radius: 8px;
  }

  .navbar-nav.nav-pro .nav-link {
    width: 100%;
    text-align: left;
  }

  .dropdown-pro {
    position: relative;
    top: 0;
    left: 0;
    min-width: 100%;
    box-shadow: none;
    border-radius: 0;
    border: none;
    display: block; /* mobile me always visible */
  }

  .dropdown-pro .dropdown-item {
    padding-left: 24px;
  }
}


/* home roller section start */

/* Section */
.facts-section {
    background-color: #5C4033;
    padding: 80px 0;
}

/* Desktop layout */
.facts-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    text-align: center;
}

/* Fact Box */
.fact-box {
    flex: 1 1 22%;
    min-width: 220px;
    padding: 20px;
}

/* Icon */
.fact-icon {
    display: none;
}

/* Number */
.fact-box h1 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin: 10px 0;
}

/* Text */
.fact-box p {
    color: #ffffff;
    font-size: 16px;
    opacity: 0.9;
}

/* ---------- MOBILE MAGIC ---------- */
@media (max-width: 575px) {

    .facts-section {
        padding: 50px 15px;
    }

    .facts-row {
        gap: 20px;
    }

    .fact-box {
        flex: 1 1 100%;
        background-color: #ffffff;
        color: #5C4033;
        border-radius: 14px;
        padding: 25px 20px;
        text-align: left;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        position: relative;
    }

    /* Accent line */
    .fact-box::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 6px;
        height: 100%;
        background-color: #5C4033;
        border-radius: 14px 0 0 14px;
    }

    /* Icon */
    .fact-icon {
        display: inline-block;
        font-size: 28px;
        margin-bottom: 8px;
    }

    .fact-box h1 {
        color: #5C4033;
        font-size: 34px;
        margin: 5px 0;
    }

    .fact-box p {
        color: #5C4033;
        font-size: 15px;
        font-weight: 500;
    }
}



/* home roller section end */





.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand img {
    max-height: 60px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 10px 0;
    color: #696E77;
    font-weight: 400;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        max-height: 45px;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* background: rgba(97, 101, 121, 0.8); */
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}
.carousel-item {
    position: relative;
}

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55); /* DARK OVERLAY */
    z-index: 1;
}
.carousel-caption p {
    color: #ffffff !important;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--dark);
    border: 12px solid var(--dark);
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    
}

/* product detail start */


/* Banner */
.rt-hood-banner {
    width: 100%;
}

.rt-banner-img-wrap {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.rt-banner-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rt-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(92, 64, 51, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rt-banner-text {
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.rt-banner-text h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #fff;
}

.rt-banner-text p {
    font-size: 18px;
}

/* Content */
.rt-hood-content {
    padding: 80px 20px;
    background: #ffffff;
}

.rt-container {
    max-width: 1200px;
    margin: auto;
}

.rt-intro {
    text-align: center;
    margin-bottom: 60px;
}

.rt-intro h2 {
    font-size: 34px;
    color: #5C4033;
    margin-bottom: 15px;
}

.rt-intro p {
    max-width: 900px;
    margin: auto;
    line-height: 1.8;
}

/* Cards */
.rt-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.rt-card {
    padding: 35px;
    border-radius: 14px;
    border: 1px solid #eee;
    transition: 0.3s ease;
}

.rt-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.rt-card h3 {
    color: #5C4033;
    margin-bottom: 18px;
}

.rt-card ul {
    list-style: none;
    padding: 0;
}

.rt-card ul li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 10px;
}

.rt-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #5C4033;
}

/* Highlight */
.rt-highlight {
    background: #f7f4f2;
    padding: 45px;
    border-radius: 16px;
    text-align: center;
}

.rt-highlight h3 {
    color: #5C4033;
    font-size: 26px;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .rt-banner-img-wrap {
        height: 280px;
    }

    .rt-banner-text h1 {
        font-size: 28px;
    }

    .rt-intro h2 {
        font-size: 26px;
    }
}


/* table */
/* Responsive Wall Hood Specification Table */
.rt-specs {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}

.rt-specs td {
    border: 1px solid #ddd;
    padding: 10px 15px;
    text-align: left;
}

.rt-specs tr:nth-child(even) {
    background-color: #fff;
}

.rt-specs tr:nth-child(odd) {
    background-color: #f3f2f1;
}

.rt-specs tr td:first-child {
    font-weight: bold;
    color: #5C4033;
}

/* Responsive: Stack rows for small screens */
@media (max-width: 768px) {
    .rt-specs, 
    .rt-specs tbody, 
    .rt-specs tr, 
    .rt-specs td {
        display: block;
        width: 100%;
    }

    .rt-specs tr {
        margin-bottom: 15px;
        border-bottom: 2px solid #ddd;
    }

    .rt-specs td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    .rt-specs td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: calc(50% - 30px);
        font-weight: bold;
        color: #5C4033;
        text-align: left;
    }
}



/* product end start */
/*====================================
   HVAC PRODUCTS PAGE
   Colors: White & #5C4033
=====================================*/

/* product start */
/* Section */
.hvac-products {
    padding: 90px 0;
}

/* Card */
.hvac-product-card {
    background: #ffffff;
    border: 1px solid rgba(92, 64, 51, 0.2);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    transition: all 0.35s ease;
}

.hvac-product-card:hover {
    border-color: #5C4033;
    transform: translateY(-8px);
}

/* Image */
.hvac-product-img img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hvac-product-card:hover img {
    transform: scale(1.06);
}

/* Content */
.hvac-product-content {
    padding: 28px 26px 32px;
    text-align: center;
}

.hvac-product-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #5C4033;
    margin-bottom: 14px;
}

.hvac-product-content p {
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 26px;
}

/* Button */
.hvac-product-btn {
    display: inline-block;
    padding: 11px 30px;
    border: 1px solid #5C4033;
    color: #5C4033;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hvac-product-btn:hover {
    background: #5C4033;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
    .hvac-product-img img {
        height: 240px;
    }
}

@media (max-width: 767px) {
    .hvac-products {
        padding: 70px 0;
    }

    .hvac-product-content h3 {
        font-size: 20px;
    }

    .hvac-product-content p {
        font-size: 13.5px;
    }
}

/* hero section */
/* hero section */
.page-header {
    position: relative;
    overflow: hidden; /* prevents image overflow */
}

/* Background wrapper */
.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Image */
.page-header-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay */
.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 37, 37, 0.5); /* semi-transparent dark overlay */
}

/* Content above overlay */
.page-header .container {
    position: relative;
    z-index: 1; /* ensures text is above image and overlay */
}

/* Breadcrumb active text */
.breadcrumb-item.active.text-wheat {
    color: wheat;
}

/* hero section */

/* product end */
.page-header {
    background: url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
    
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: var(--primary);
}


/*** Facts ***/
.facts {
    background: rgba(1, 10, 53, .8);
}


/*** Quote ***/
/* ===============================
   QUOTE / FORM SECTION CSS
================================ */

.quote-pro {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);

    /* ===== BREADTH / WIDTH INCREASE ===== */
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* -------- LEFT SIDE -------- */
.quote-left {
    background: url("../img/carousel-1.jpg") center/cover no-repeat;
    min-height: 450px;
}

.quote-overlay {
    background: rgba(1, 10, 53, 0.85);
    height: 100%;
    padding: 70px 60px; /* increased padding for wide look */
    color: #ffffff;
}

.quote-overlay h1 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.quote-overlay p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.quote-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.quote-features li {
    font-size: 14px;
    margin-bottom: 10px;
}

/* -------- RIGHT SIDE BACKGROUND -------- */
.quote-right {
    position: relative;
    background: linear-gradient(
        135deg,
        #f6efe9 0%,
        #ede1d6 50%,
        #f9f4ef 100%
    );
}

/* subtle dot pattern */
.quote-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        rgba(139, 69, 19, 0.08) 1px,
        transparent 1px
    );
    background-size: 18px 18px;
    opacity: 0.6;
}

/* -------- FORM BOX -------- */
.quote-form-box {
    position: relative;
    background: #ffffff;
    margin: 30px; /* reduced margin for wide layout */
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.quote-form-box h3 {
    font-weight: 700;
    color: #010A35;
    text-align: center;
}

/* -------- INPUTS -------- */
.quote-form-box .form-control {
    border-radius: 10px;
    padding: 14px 15px;
    font-size: 14px;
    border: 1px solid #ddd;
    color: #222;
}

.quote-form-box .form-control::placeholder {
    color: #777;
}

.quote-form-box .form-control:focus {
    border-color: #8B4513;
    box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.2);
}

/* -------- SELECT SERVICE (DARK FIX) -------- */
.quote-form-box select.form-control {
    background-color: #ffffff;
    color: #222222;
    font-weight: 500;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='%23222222'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
}

/* placeholder option */
.quote-form-box select.form-control option:disabled {
    color: #666666;
}

/* dropdown options */
.quote-form-box select.form-control option {
    color: #222222;
}

/* -------- BUTTON -------- */
.quote-form-box .btn-primary {
    background: #8B4513;
    border-color: #8B4513;
    border-radius: 50px;
}

.quote-form-box .btn-primary:hover {
    background: #5C3317;
    border-color: #5C3317;
}

/* -------- RESPONSIVE -------- */
@media (max-width: 991px) {
    .quote-overlay {
        padding: 40px 30px;
    }

    .quote-form-box {
        margin: 20px;
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .quote-overlay h1 {
        font-size: 26px;
    }

    .quote-overlay {
        padding: 30px 20px;
    }
}

/* -------- VERY LARGE SCREENS -------- */
@media (min-width: 1400px) {
    .quote-pro {
        max-width: 1600px;
    }

    .quote-overlay {
        padding: 80px 70px;
    }
}






@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .container.quote .quote-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }

    .container.quote .quote-form {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .container.quote .quote-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }

    .container.quote .quote-form  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .container.quote .quote-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }

    .container.quote .quote-form  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.container.quote .quote-text {
    background: rgba(1, 10, 53, .8);
}

.container.quote .quote-form {
    background: rgba(255, 255, 255, .8);
}

.container.quote .quote-text .h-100,
.container.quote .quote-form .h-100 {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/*** Service ***/
.service-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* no border for normal state */
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); /* subtle normal shadow */
}

.service-item:hover {
    transform: translateY(-10px); /* lift card */
    box-shadow: 0 15px 35px rgba(0,0,0,0.2); /* bigger shadow on hover */
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #5C4033; /* dark brown icon background */
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-item h4 {
    margin-top: 15px;
    font-weight: 600;
    color: #222;
}

.service-item p {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .service-item {
        padding: 25px 15px;
    }
    .service-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 576px) {
    .service-item {
        padding: 20px 10px;
    }
    .service-icon {
        width: 60px;
        height: 60px;
    }
}



.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}

/* LOGO START */
 .brand-wrap {
  display: inline-block;
  text-decoration: none;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0;             
}

.brand-logo {
  width: 270px;
  height: 100px;
  /* border-radius: 50%;  */
  display: block;
}


.brand-info {
  display: flex;
  flex-direction: column;
  justify-content: center; 
  line-height: 1;
  margin-left: -42px;       
  margin-right: 50px;
  transform: translateY(22px);
}
/*

.brand-name {
  font-size: 18px;
  font-weight: 700;
  margin-top: 15px;
  color: #000; 
}

.brand-name span {
  color: #000;
  font-weight: 800;
}


.brand-tagline {
  font-size: 11px;
  letter-spacing: 2px;
  color: #7a7a7a;
  text-transform: uppercase;
  margin-top: 2px;
}

.highlighted-text {
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px; 
}

.highlight-word {
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 12px;
  color: #000; 
}
@media (max-width: 576px) {
  .logo-container {
    flex-direction: column;
    align-items: center;
  }

  .brand-info {
    margin-left: 0;
    transform: translateY(0);
    text-align: center;
  }

  .highlighted-text {
    justify-content: center;
  }
} */

/* LOGO END */


/* FOOTER LOGO START */



/* FOOTER LOGO END */
.service-box {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
    padding-bottom: 25px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
    
}

.service-box img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.service-box h4{
    font-size: large;
}
.service-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-weight: 600;
    color: #333;font-family: Georgia, 'Times New Roman', Times, serif;
}

.service-title i {
    color: #915A4F;
    
    
}

.service-box p {
    font-size: 15px;
    color: #666;
    padding: 0 20px;
    line-height: 1.7;font-family: Georgia, 'Times New Roman', Times, serif;
}

/* Section Header */
.our-strengths-new {
    background-color: #fef7f2;
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-header-new .section-title-new {
    font-size: 2rem;
    font-weight: 700;
    color: #5C4033;
    margin-bottom: 15px;
}

.section-header-new .section-desc-new {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

/* Strength Cards */
.strengths-cards-new .card-new {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strengths-cards-new .card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.card-icon-new i {
    font-size: 3rem;
    color: #5C4033;
}

.card-title-new {
    font-size: 1.2rem;
    color: #5C4033;
    margin-bottom: 10px;
    font-weight: 600;
}

.card-desc-new {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .section-header-new .section-title-new {
        font-size: 1.8rem;
    }
    .card-icon-new i {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .section-header-new .section-title-new {
        font-size: 1.6rem;
    }
    .card-new {
        padding: 20px 15px;
    }
}

/* strengths start */


/* Section Header */
.our-strengths-new {
    background-color: #fef7f2;
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-header-new .section-title-new {
    font-size: 2rem;
    font-weight: 700;
    color: #5C4033;
    margin-bottom: 15px;
}

.section-header-new .section-desc-new {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

/* Strength Cards */
.strengths-cards-new .card-new {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strengths-cards-new .card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.card-icon-new i {
    font-size: 3rem;
    color: #5C4033;
}

.card-title-new {
    font-size: 1.2rem;
    color: #5C4033;
    margin-bottom: 10px;
    font-weight: 600;
}

.card-desc-new {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .section-header-new .section-title-new {
        font-size: 1.8rem;
    }
    .card-icon-new i {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .section-header-new .section-title-new {
        font-size: 1.6rem;
    }
    .card-new {
        padding: 20px 15px;
    }
}
/* strengths end */

/* client say start */
.testimonial-wrapper {
  background: #f9f9f9;
  padding: 50px 0;
  overflow: hidden;
  text-align: center;
}

.testimonial-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #5C4033;
}

.testimonial-slider {
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  margin: 0 15px;
  padding: 25px;
  flex: 0 0 320px;
  color: #000;
  transition: background 0.3s ease, color 0.3s ease;
  text-align: center;
}

.testimonial-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

/* Restaurant name - bold, darker */
.testimonial-card h4.client-name {
  font-size: 16px;
  font-weight: 700;
  color: #5C4033; /* Dark brown */
  margin-bottom: 5px;
}

/* Person name - smaller, lighter */
.testimonial-card h5 {
  font-size: 14px;
  font-weight: 500;
  color: #7D5A50; /* Lighter brown */
  margin-bottom: 8px;
}

/* Review text - paragraph style, black/light grey */
.testimonial-card p.client-review {
  font-size: 14px;
  font-weight: 400;
  color: #000; /* Black */
  line-height: 1.5;
  margin-bottom: 0;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-card { flex: 0 0 280px; }
}

@media (max-width: 576px) {
  .testimonial-card { flex: 0 0 85vw; margin: 0 10px; }
  .testimonial-title { font-size: 1.5rem; }
  .testimonial-card h4.client-name { font-size: 15px; }
  .testimonial-card h5 { font-size: 13px; }
  .testimonial-card p.client-review { font-size: 13px; }
}


/* client say end */

/* strength form start */

/* Quote Section Background */
.quote-section-new {
    
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Left Content */
.quote-info-new .quote-title-new {
    font-size: 2rem;
    color: #5C4033;
    font-weight: 700;
    margin-bottom: 20px;
}

.quote-info-new .quote-desc-new {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 25px;
}

.quote-features-new {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.quote-features-new li {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.quote-features-new li i {
    color: #5C4033;
    margin-right: 10px;
}

.btn-quote-new {
    background-color: #5C4033;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-quote-new:hover {
    background-color: #4a3226;
}

/* Right Form Card */
.form-card-new {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.form-title-new {
    font-size: 1.6rem;
    color: #5C4033;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.form-subtitle-new {
    font-size: 14px;
    color: #777;
    text-align: center;
    margin-bottom: 25px;
}

.form-control-new {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px 12px;
}

.form-control-new:focus {
    border-color: #5C4033;
    box-shadow: none;
}

.btn-quote-submit-new {
    background-color: #5C4033;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-quote-submit-new:hover {
    background-color: #4a3226;
}

/* Responsive */
@media (max-width: 992px) {
    .quote-section-new {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .quote-info-new .quote-title-new {
        font-size: 1.6rem;
    }
    .form-card-new {
        padding: 25px 20px;
    }
}


/* strength form end */

/*** contact start ***/
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #f6f2ef;
    font-family: Arial, Helvetica, sans-serif;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.contact-header {
    margin-bottom: 50px;
}

.contact-header h1 {
    font-size: 36px;
    color: #5C4033;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 16px;
    color: #777;
}

/* Body Layout */
.contact-body {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* Contact Form */
.contact-form {
    flex: 1;
    background: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    flex: 100%;
}

/* Inputs */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #5C4033;
    box-shadow: 0 0 0 2px rgba(92, 64, 51, 0.15);
}

.form-group textarea {
    resize: none;
}

/* Button */
.form-group button {
    background-color: #5C4033;
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 15px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group button:hover {
    background-color: #3e2a21;
    transform: translateY(-2px);
}

/* Map */
.contact-map {
  flex: 1;
  width: 100%;
  min-height: 420px;     /* desktop default */
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Map iframe */
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Tablets */
@media (max-width: 992px) {
  .contact-map {
    min-height: 360px;
  }
}

/* Mobiles */
@media (max-width: 576px) {
  .contact-map {
    min-height: 300px;   /* 🔥 THIS fixes chhota map */
  }

  .contact-body {
    flex-direction: column;
  }
}







/*** contact end ***/

/*** Team start ***/

.features-section {
  padding: 80px 0;
  background: transparent;
  font-family: 'Times New Roman';
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.feature-card:hover {
  border-bottom: 3px solid #5C4033; /* brown accent */
  box-shadow: 0 12px 25px rgba(92, 64, 51, 0.3);
  transform: translateY(-5px);
}

.icon-box {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: #f7f0eb; /* very light beige */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 6px rgba(92, 64, 51, 0.1);
}

.icon-box i {
  font-size: 28px;
  color: #5C4033; /* brown */
}

.feature-card h5 {
  color: #5C4033; /* black text */
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  position: relative;
}

.feature-card h5::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #5C4033;
  margin: 6px auto 0;
  border-radius: 2px;
}

.feature-card p {
  color: #333; /* dark grey text */
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */

@media (max-width: 992px) {
  .feature-card {
    padding: 25px 18px;
  }
  .icon-box {
    width: 50px;
    height: 50px;
  }
  .icon-box i {
    font-size: 24px;
  }
  .feature-card h5 {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .feature-card {
    padding: 20px 14px;
  }
  .icon-box {
    width: 45px;
    height: 45px;
  }
  .icon-box i {
    font-size: 20px;
  }
  .feature-card h5 {
    font-size: 14px;
  }
  .feature-card p {
    font-size: 13px;
  }
}


/*** Team end ***/

.features-section {
    background-color: #fff; /* clean white background */
    padding: 80px 0;
}

.feature-item {
    background-color: #fdfdfd;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    min-height: 280px; /* equal height for all cards */
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.feature-item i {
    margin-bottom: 15px;
}

.feature-item h5 {
    margin: 10px 0;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-item p {
    margin-bottom: 0;
    line-height: 1.6;
    color: #555;
    font-size: 14px;
}

@media (max-width: 768px) {
    .feature-item {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .feature-item h5 {
        font-size: 16px;
    }
    .feature-item p {
        font-size: 13px;
    }
}
/* choose us start */

/* Section */
.why-us-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

/* Container */
.why-us-container {
    max-width: 1200px;
    margin: auto;
}

/* Header */
.why-us-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.why-us-title {
    font-size: 36px;
    color: #5C4033;
    margin-bottom: 15px;
}

.why-us-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

/* Grid */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Card */
.why-us-card {
    background: #ffffff;
    border: 1px solid #f0e6e0;
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-us-card:hover {
    background-color: #5C4033;
    color: #ffffff;
    transform: translateY(-8px);
}

.why-us-card:hover h5,
.why-us-card:hover p {
    color: #ffffff;
}

/* Icon */
.why-us-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    background-color: #5C4033;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: background 0.3s;
}

.why-us-card:hover .why-us-icon {
    background-color: #ffffff;
    color: #5C4033;
}

/* Text */
.why-us-card h5 {
    font-size: 18px;
    color: #5C4033;
    margin-bottom: 10px;
}

.why-us-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-us-title {
        font-size: 28px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }
}


/* choose us end */








/*** Team ***/
.team-item .team-img::before,
.team-item .team-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(1, 10, 53, .8);
    transition: .5s;
}

.team-item .team-img::after {
    left: auto;
    right: 0;
}

.team-item:hover .team-img::before,
.team-item:hover .team-img::after {
    width: 50%;
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}


/*** Testimonial ***/













.animated.pulse {
    animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    border-radius: 70px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}


/*** Footer ***/
.footer {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #ccc;
}

.footer h3,
.footer h5 {
    color: #fff;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    color: #ff6600;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer .social-icon {
    display: inline-block;
    width: 35px;
    height: 35px;
    border: 1px solid #ccc;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin-right: 10px;
    color: #ccc;
    transition: 0.3s;
}

.footer .social-icon:hover {
    background-color: #ff6600;
    border-color: #ff6600;
    color: #fff;
}

.footer .border-top {
    border-color: #444 !important;
}





.logo-bg {
  /* background-color: #fff; */
  /* padding: 6px;           */
  border-radius: 30px;
  width: 100px;         
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;       /* Prevent shrinking */
}

.logo-img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  border-radius: 10px;
}

/* Footer links styling */
.btn-link {
  color: #ddd;
  text-decoration: none;
  font-weight: 500;
}

.btn-link:hover {
  color: #f39c12;
  text-decoration: underline;
}





/* Footer root container ka top padding aur margin kam karo */
.container-fluid.bg-dark.footer {
  margin-top: 1rem !important;   /* pehle 3rem tha, ab 1rem karo */
  padding-top: 1rem !important;  /* pehle 3rem tha, ab 1rem karo */
  padding-bottom: 2rem !important; /* footer ke neeche thoda space rahe */
}

/* Footer ke andar container ki vertical padding kam karo */
.container-fluid.bg-dark.footer .container.py-5 {
  padding-top: 1.5rem !important;  /* pehle 3rem tha, ab aadha karo */
  padding-bottom: 1.5rem !important;
}

/* Copyright section ke margin aur padding bhi thoda kam karo */
.container-fluid.copyright {
  margin-top: 1rem !important; /* pehle 1.5rem ya zyada tha */
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

/* Agar .mt-5 ya .pt-5 kisi jagah aur bhi hai to unko override karo sirf footer me */
.container-fluid.bg-dark.footer.mt-5 {
  margin-top: 1rem !important;
}

.container-fluid.bg-dark.footer.pt-5 {
  padding-top: 1rem !important;
}



.footer {
    color: #7F8499;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #7F8499;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #7F8499;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: #7F8499;
    border: 1px solid #7F8499;
}

.footer .btn.btn-square:hover {
    color: var(--light);
    border-color: var(--primary);
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--primary);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}

.footer-text,
.footer-text a {
    color: #7F8499;
    font-size: 15px;
    line-height: 1.8;
    text-decoration: none;
    transition: .3s;
}

.footer-text a:hover {
    color: var(--primary);
}

/* Mobile responsive */
@media (max-width: 767px) {
    .footer-text {
        text-align: center;
    }
}

.brand-logo {
    height: auto; /* adjust as needed */
    width: auto;  /* keep proportion */
}
