
/* ============================= */
/* TOP BAR PREMIUM */
/* ============================= */

.top-bar {
    background: #2c9c7b;
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT SIDE */
.top-left {
    display: flex;
    gap: 25px;
    align-items: center;
}

/* SEPARATOR DOT */
.top-left span::after {
    content: "â€¢";
    margin-left: 15px;
    color: rgba(255,255,255,0.6);
}

.top-left span:last-child::after {
    display: none;
}

/* RIGHT SIDE */
.top-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ICON */
.top-right i {
    color: #ffffff; /* pink phone like screenshot */
}

/* TEXT */
.top-bar span {
    white-space: nowrap;
}
/* ============================= */
/* NAVBAR */
/* ============================= */
.navbar {
    background: #ffffff;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* CONTAINER WIDTH */
.navbar .container {
    max-width: 1200px;
}

/* LOGO */
.navbar-brand {
    font-size: 22px;
    font-weight: 700;
    color: #000;
}

.navbar-brand span {
    color: #2c9c7b;
}

/* NAV LINKS */
.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    margin: 0 14px;
    font-weight: 500;
    color: #333;
    position: relative;
    transition: 0.3s ease;
}

/* 🔥 HOVER EFFECT */
.navbar-nav .nav-link:hover {
    color: #2c9c7b;
}

/* 🔥 ACTIVE PAGE */
.navbar-nav .nav-link.active {
    color: #2c9c7b;
    font-weight: 600;
}

/* 🔥 UNDERLINE BASE */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #2c9c7b;
    bottom: -6px;
    left: 0;
    transition: width 0.3s ease;
}

/* 🔥 HOVER UNDERLINE */
.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* 🔥 ACTIVE UNDERLINE (PERMANENT) */
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* BUTTON */
.quote-btn {
    background: #2c9c7b;
    color: white;
    border-radius: 30px;
    padding: 10px 22px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.quote-btn:hover {
    background: #238a6b;
}

/* ============================= */
/* EXTRA POLISH */
/* ============================= */

/* slight gap after top bar */
/*.top-bar + .navbar {*/
/*    margin-top: 5px;*/
/*}*/





/* ============================= */
/* HERO SECTION */
/* ============================= */

.hero-section {
    padding: 40px 0;
}

/* MAIN CARD */
.hero-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DARK OVERLAY (IMPORTANT FOR TEXT VISIBILITY) */
.hero-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.1));
}

/* TEXT POSITION */
.hero-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    color: white;
    max-width: 80%;
}

/* BIG TEXT */
.hero-overlay h1 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
}

/* SMALL TEXT */
.hero-overlay p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
}

/* BUTTON */
.hero-btn {
    background: #2c9c7b;
    color: white;
    border-radius: 30px;
    padding: 10px 22px;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.hero-btn:hover {
    background: #238a6b;
}

/* RIGHT SIDE SMALL CARDS */
.small-card {
    height: 48%;
    margin-bottom: 15px;
}

.small-card .hero-overlay {
    bottom: 15px;
    left: 15px;
}

.hero-overlay h5 {
    font-size: 18px;
    font-weight: 600;
}

.hero-overlay h6 {
    font-size: 16px;
    font-weight: 600;
}

/* ============================= */
/* FEATURES STRIP */
/* ============================= */

.features-strip {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background: #fff;
}

/* EACH ITEM */
.feature-item {
    padding: 20px 10px;
    border-right: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* LAST BORDER REMOVE */
.feature-item:last-child {
    border-right: none;
}

/* ICON STYLE */
.feature-item i {
    font-size: 18px;
    color: #2c9c7b; /* EXACT GREEN */
}

/* TEXT */
.feature-item p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

/* HIGHLIGHT TEXT */
.feature-item span {
    color: #2c9c7b;
    font-weight: 600;
}






/* ============================= */
/* ABOUT SECTION */
/* ============================= */

.about-section {
    padding: 80px 0;
}

/* TAG */
.about-tag {
    color: #2c9c7b;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
}

/* HEADING */
.about-heading {
    font-size: 36px;
    font-weight: 700;
    margin: 10px 0 20px;
}

/* TEXT */
.about-text {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

/* POINTS */
.about-points {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: 14px;
    color: #333;
}

/* STATS BOX */
.about-stats {
    background: #eef5f3;
    padding: 40px;
    border-radius: 20px;
}

/* STAT ITEM */
.stat-item h3 {
    color: #2c9c7b;
    font-size: 28px;
    font-weight: 700;
}

.stat-item p {
    margin: 5px 0 20px;
    color: #555;
    font-size: 14px;
}




/* ============================= */
/* SERVICES SECTION */
/* ============================= */

.services-section {
    background: #eef5f3;
    padding: 80px 0;
}

/* TAG */
.service-tag {
    color: #2c9c7b;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* HEADING */
.service-heading {
    font-size: 34px;
    font-weight: 700;
}

/* CARD */
.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

/* ICON BOX */
.icon-box {
    width: 50px;
    height: 50px;
    background: #e4f1ed;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 15px;
}

.icon-box i {
    color: #2c9c7b;
    font-size: 18px;
}

/* TITLE */
.service-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* TEXT */
.service-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}
.service-card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}


/*===================================*/
/*BRAND SECTION*/
/*=====================================*/

.brands-section {
    position: relative;
    background: url('../images/tiger.jpg') center/cover no-repeat;
    padding: 80px 0;
}

/* ✅ FIXED OVERLAY */
.brands-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #2c9c7b;
    z-index: 0; /* ❗ NOT -1 */
}

/* ✅ CONTENT ABOVE OVERLAY */
.brands-section .container {
    position: relative;
    z-index: 2;
}

/* ✅ TEXT FIX */
.brands-heading {
    color: #fff;
}

/* ✅ GRID FIX */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    align-items: center;
}

/* ✅ LOGO CARDS */
.brands-grid img {
    background: #fff;
    padding: 15px;
    border-radius: 10px;

    width: 100%;
    max-width: 120px;
    margin: auto;

    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.brands-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}
/*====================================*/


/* ============================= */
/* PRODUCTS SECTION */
/* ============================= */

.products-section {
    padding: 80px 0;
}

/* TAG */
.product-tag {
    color: #2c9c7b;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* HEADING */
.product-heading {
    font-size: 34px;
    font-weight: 700;
}

/* CARD */
.product-card {
    text-align: center;
}

/* IMAGE */
.product-card img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
}

/* TITLE */
.product-card h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

/* TEXT */
.product-card p {
    color: #666;
    font-size: 14px;
}

.product-card img:hover {
    transform: scale(1.05);
    transition: 0.3s;
}



/* IMAGE WRAPPER */
.product-img {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

/* IMAGE */
.product-img img {
    width: 100%;
    display: block;
    border-radius: 15px;
}

/* ARROW BUTTON */
.arrow-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #2c9c7b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
    text-decoration: none;
}

/* HOVER EFFECT */
.product-img:hover .arrow-btn {
    opacity: 1;
    transform: translateY(0);
}

/* ICON SIZE */
.arrow-btn i {
    font-size: 14px;
}

/* OPTIONAL IMAGE HOVER ZOOM */
.product-img:hover img {
    transform: scale(1.05);
    transition: 0.3s;
}



/* ============================= */
/* WHY SECTION */
/* ============================= */

.why-clean {
    background: #2c9c7b;
    padding: 90px 0;
    color: white;
}

/* heading */
.why-clean .why-tag {
    font-size: 13px;
    letter-spacing: 2px;
    opacity: 0.8;
}

.why-clean .why-heading {
    font-size: 40px;
    font-weight: 600;
    margin-top: 10px;
}

/* item */
.why-item {
    text-align: center;
    padding: 20px 10px;
}

/* ICON CIRCLE */
.why-clean .why-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 15px;
}

.why-clean .why-icon i {
    color: white;
    font-size: 20px;
}

/* TEXT */
.why-clean h6 {
    font-weight: 600;
    margin-bottom: 8px;
}

.why-clean p {
    font-size: 13px;
    opacity: 0.85;
    line-height: 1.5;
}

/* ============================= */
/* PORTFOLIO SECTION */
/* ============================= */

.portfolio-section {
    padding: 80px 0;
    background: #f9fbfa;
}

.section-subtitle {
    text-align: center;
    color: #2c9c7b;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-top: 10px;
}

/* CARD */

.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

/* DARK OVERLAY */

.portfolio-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    opacity: 0;
    transition: 0.3s;
}

/* TEXT */

.portfolio-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
}

/* HOVER EFFECT */

.portfolio-card:hover img {
    transform: scale(1.05);
}

.portfolio-card:hover::before {
    opacity: 1;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}


/* ============================= */
/* CONTACT SECTION */
/* ============================= */

.contact-section {
    padding: 80px 0;
    background: #f5faf8;
}

/* TEXT */

.contact-text {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* INFO */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    width: 45px;
    height: 45px;
    background: #e6f4ef;
    color: #2c9c7b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 18px;
}

.info-item h6 {
    margin: 0;
    font-weight: 600;
}

.info-item p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* FORM */

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    border: none;
    background: #f1f5f4;
    padding: 15px;
    border-radius: 12px;
    font-size: 14px;
    outline: none;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

/* BUTTON */

.contact-btn {
    background: #2c9c7b;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #238a6b;
}

/* ============================= */
/* FOOTER */
/* ============================= */

.footer-section {
    background: #1f2a35;
    color: #cfd8dc;
    padding: 70px 0 20px;
}

/* LOGO */

.footer-logo {
    font-weight: 700;
    color: white;
}

.footer-logo span {
    color: #2c9c7b;
}

/* TEXT */

.footer-text {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.6;
    color: #aab5bc;
}

/* TITLES */

.footer-title {
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

/* LINKS */

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aab5bc;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #2c9c7b;
    padding-left: 5px;
}

/* CONTACT */

.footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #2c9c7b;
}

/* BOTTOM */

.footer-bottom {
    border-top: 1px solid #2e3a46;
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #8fa3ad;
}





/*About page*/

.about-hero {
    padding: 90px 0;
    background: #f4f9f7;
}

.about-hero h1 {
    font-size: 36px;
    font-weight: 700;
}

.hero-text {
    max-width: 600px;
    margin: 15px auto;
    color: #666;
}

.section-subtitle {
    color: #2c9c7b;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}


.about-modern {
    padding: 100px 0;
}

.about-tag {
    color: #2c9c7b;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* TRUST */
.about-trust {
    display: flex;
    align-items: center;
    margin-top: 25px;
    gap: 15px;
}

.avatars span {
    width: 35px;
    height: 35px;
    background: #d9efe8;
    border-radius: 50%;
    display: inline-block;
    margin-left: -10px;
}

/* IMAGE */
.about-img-wrapper {
    position: relative;
}

.about-img-wrapper img {
    width: 100%;
    border-radius: 20px;
}

/* FLOATING BOX */
.experience-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.experience-box h3 {
    margin: 0;
    color: #2c9c7b;
    font-weight: 700;
}

.experience-box p {
    margin: 0;
    font-size: 14px;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatars span {
    width: 38px;
    height: 38px;
    background: #d9efe8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
    border: 2px solid #fff; /* overlap clean */
}

.avatars i {
    color: #2c9c7b;
    font-size: 14px;
}

.stats-section {
    padding: 80px 0;
    background: #f7faf9;
}

.stat-box {
    background: #fff;
    padding: 35px 20px;
    border-radius: 15px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.stat-box h2 {
    color: #2c9c7b;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-box p {
    color: #666;
    margin: 0;
}

/* HOVER EFFECT ðŸ”¥ */
.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}


.why-section {
    padding: 100px 0;
    background: #f7faf9;
}

.section-tag {
    color: #2c9c7b;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: bold;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin: 10px 0;
    color: black;
}

.section-subtitle {
    color: #666;
    max-width: 600px;
    margin: auto;
}

/* CARD */
.why-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    transition: 0.3s;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.why-card h5 {
    margin-top: 15px;
    font-weight: 600;
    color: black;
    text-align: start;
}

.why-card p {
    color: #666;
    text-align: start;
}

/* ICON */
.icon-box {
    width: 50px;
    height: 50px;
    background: #d9efe8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    color: #2c9c7b;
    font-size: 18px;
}

/* HOVER ðŸ”¥ */
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.mission-section {
    padding: 100px 0;
    background: #f9fbfa;
}

/* CARD */
.mission-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

/* subtle corner design (Lovable feel) */
.mission-card {
    position: relative;
    overflow: hidden; /* VERY IMPORTANT */
}

.mission-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;

    width: 140px;
    height: 140px;

    background: #e6f2ee;
    border-radius: 50%;

    transform: translate(40%, -40%); /* ðŸ‘ˆ perfect corner placement */
}
/* ICON */
.mission-card .icon-box {
    width: 55px;
    height: 55px;
    background: #d9efe8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.mission-card i {
    color: #2c9c7b;
    font-size: 20px;
}

/* TEXT */
.mission-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.mission-card p {
    color: #666;
    line-height: 1.7;
}

/* HOVER */
.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}


.values-section {
    padding: 80px 0;
    background: #f9fbfa;
}

/* Heading */
.section-subtitle {
    color: #2c9c7b;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 40px;
}

/* Cards */
.value-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    transition: 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);

    text-align: left; /* ðŸ‘ˆ THIS IS MAIN FIX */
}

/* Remove center alignment */
.icon-box {
    width: 55px;
    height: 55px;
    background: #e6f2ee;
    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px; /* ðŸ‘ˆ instead of auto center */
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


/* Icon Box */
/*.icon-box {*/
/*    width: 60px;*/
/*    height: 60px;*/
/*    background: #e6f2ee;*/
/*    border-radius: 16px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    margin: 0 auto 20px;*/
/*}*/

.icon-box i {
    font-size: 22px;
    color: #2c9c7b;
}

/* Text */
.value-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    color: #666;
}




.cta-section {
    padding: 100px 0;
    background: #2c9c7b;
}

.cta-box {
    max-width: 700px;
    margin: auto;
    color: white;
}

.cta-box h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-box p {
    opacity: 0.9;
    margin-bottom: 30px;
}

/* BUTTONS */
.cta-buttons a {
    margin: 5px;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
}

/* PRIMARY */
.btn-primary {
    background: white;
    color: #2c9c7b;
}

/* OUTLINE */
.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: #2c9c7b;
}






/* ===================================== */
/* 🔥 RESPONSIVE ADD-ON (FINAL) */
/* ===================================== */

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .top-bar .container {
        display: flex;
        flex-direction: row; /* ❗ column hatao */
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        text-align: left;
    }

    /* LEFT TEXT */
    .top-left {
        display: flex;
        flex-direction: column;
        gap: 2px;
        font-size: 11px;
        line-height: 1.3;
    }

    /* REMOVE DOTS */
    .top-left span::after {
        display: none;
    }

    /* RIGHT PHONE */
    .top-right {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 12px;
        white-space: nowrap; /* ❗ break nahi hoga */
    }

    .top-right i {
        font-size: 13px;
    }

    /* NAVBAR */
    .navbar {
        padding: 12px 0;
    }

    .navbar-nav {
        margin-top: 10px;
        text-align: center;
    }

    .navbar-nav .nav-link {
        margin: 8px 0;
    }

    .quote-btn {
        margin-top: 10px;
    }

    /* HERO */
    .hero-section {
        padding: 20px 0;
    }

    .hero-overlay {
        bottom: 15px;
        left: 15px;
        max-width: 90%;
    }

    .hero-overlay h1 {
        font-size: 22px;
    }

    .hero-overlay p {
        font-size: 12px;
    }

    .small-card {
        height: auto;
    }

  

    /* ABOUT */
    .about-section {
        padding: 50px 0;
    }

    .about-heading {
        font-size: 24px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .about-stats {
        padding: 20px;
    }

    /* SERVICES */
    .services-section {
        padding: 50px 0;
    }

    .service-heading {
        font-size: 24px;
        text-align: center;
    }

    .service-card {
        padding: 20px;
    }

    /* PRODUCTS */
    .products-section {
        padding: 50px 0;
    }

    .product-heading {
        font-size: 24px;
    }

    /* WHY */
    .why-clean {
        padding: 60px 0;
    }

    .why-clean .why-heading {
        font-size: 26px;
    }

    /* PORTFOLIO */
    .portfolio-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 24px;
    }

    /* FOOTER */
    .footer-section {
        text-align: center;
    }
}


/* ================= TABLET ================= */
@media (max-width: 992px) {

    .hero-overlay h1 {
        font-size: 28px;
    }

    .about-heading {
        font-size: 28px;
    }

    .service-heading {
        font-size: 28px;
    }

    .product-heading {
        font-size: 28px;
    }

    .why-clean .why-heading {
        font-size: 30px;
    }
}

/* 🔥 FORCE MOBILE NAVBAR FIX */
@media (max-width: 768px) {

    .navbar-collapse {
        background: #fff;
        padding: 15px;
        border-radius: 10px;
        margin-top: 10px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

    .navbar-nav {
        width: 100%;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        display: block;
        padding: 10px;
        border-bottom: 1px solid #eee;
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    .quote-btn {
        display: block;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}



@media (max-width: 768px) {

    .features-strip .row {
        display: flex;
        flex-wrap: wrap;
    }

    /* 🔥 First 3 items */
    .features-strip .col {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }

    /* 🔥 Last 2 items */
    .features-strip .col:nth-child(4),
    .features-strip .col:nth-child(5) {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .feature-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 15px 8px;
    }

    .feature-item i {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .feature-item p {
        font-size: 12.5px;
        line-height: 1.4;
    }
    
    
    .about-stats {
    margin-top: 20px;
}
}



/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

    .brands-section {
        padding: 50px 0;
    }

    .brands-heading {
        font-size: 22px;
        margin-bottom: 25px;
    }

.brands-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 🔥 3 per row */
        gap: 15px;
        justify-items: center;
    }

    .brands-grid img {
        width: 100%;
        max-width: 80px; /* thoda chhota for 3 fit */
        padding: 10px;
        background: #fff;
        border-radius: 8px;
    }
    .brands-grid img:hover {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.05);
    }
    
    
    .brands-grid {
    max-width: 300px;
    margin: auto;
}
}




@media (max-width: 768px) {

    /* LEFT CONTACT INFO */
    .contact-info {
        margin-bottom: 20px;
    }

    .contact-info div {
        margin-bottom: 12px;
        gap: 10px;
    }

    /* ICON BOX */
    .contact-info i {
        font-size: 16px;
        padding: 10px;
        border-radius: 50%;
        background: #e8f5f0;
        color: #2c9c7b;
    }

    /* FORM */
    .contact-form {
        padding: 20px;
        border-radius: 15px;
    }

    /* INPUTS */
    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        border-radius: 10px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    /* BUTTON */
    .contact-form button {
        padding: 12px;
        border-radius: 30px;
        font-size: 15px;
        font-weight: 500;
    }
}





@media (max-width: 768px) {

    .about-hero {
        padding: 50px 15px;
    }

    /* 🔥 HEADING FIX */
    .about-hero h1 {
        font-size: 26px;   /* ❗ 36px is too big */
        line-height: 1.3;
        margin-bottom: 15px;
    }

    /* TEXT */
    .about-hero p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    /* BUTTON */
    .about-hero .btn,
    .about-hero a {
        padding: 10px 18px;
        font-size: 14px;
        border-radius: 25px;
    }
    
    
    
    .stat-box{
        margin-bottom: 20px;
    }
    
    .stat-box {
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}


.value-card {
    margin-bottom: 20px;
}

}






/* ================= CTA RESPONSIVE ================= */
@media (max-width: 768px) {

    .cta-section {
        padding: 60px 20px;
        text-align: center;
    }

    .cta-section h2 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .cta-section p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    /* 🔥 BUTTON STACK */
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .cta-buttons a {
        width: 100%;
        max-width: 220px;
        text-align: center;
    }
}



@media (max-width: 768px) {

    .footer-section {
        text-align: left; /* 👈 main fix */
        padding: 40px 20px;
    }

    .footer-section .col-md-3 {
        margin-bottom: 25px;
    }

    /* headings */
    .footer-section h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    /* links */
    .footer-section ul {
        padding-left: 0;
        list-style: none;
    }

    .footer-section ul li {
        margin-bottom: 6px;
    }

    /* contact */
    .footer-section p {
        font-size: 14px;
        margin-bottom: 6px;
    }

    /* icons + text alignment */
    .footer-section i {
        margin-right: 8px;
    }

    /* bottom copyright */
    .footer-bottom {
        text-align: left;
        font-size: 12px;
        margin-top: 20px;
        padding-top: 10px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

}

