:root {

    --primary: #173b70;
    --primary-dark: #071a31;
    --accent: #f58220;
    --accent-light: #ff9b4a;
    --dark: #101d2e;
    --text: #69788b;
    --light: #f5f8fc;
    --border: #e3e9f0;
    --white: #ffffff;
    --success: #25d366;
    --kic-blue: #071a31;
    --kic-border: #e5eaf0;
    --kic-blue-light: #123d68;
    --kic-orange: #f58220;
    --kic-text: #24364c;
    --kic-muted: #758396;
    --kic-light: #f7f9fb;
    --kic-white: #ffffff;

}
   

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family: "Inter", sans-serif;

    color: var(--text);

    overflow-x: hidden;

}


a {

    text-decoration: none;

}


img {

    max-width: 100%;

}



/*Home Page CSS*/


.section-padding {
    padding: 100px 0;
}

.min-vh-75 {
    min-height: 75vh;
}



/*Start Slider*/

/* =========================================================
   HERO CAROUSEL
========================================================= */

.hero-section {
    position: relative;
    min-height: 420px;
    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #081b35 0%,
            #102f59 55%,
            #173f72 100%
        );
        
        background: linear-gradient(90deg, rgba(5, 20, 28, .92), rgba(5, 35, 45, .75), rgba(0, 120, 145, .45)), 
        url(https://khushiindustrialcontrols.com/public/assets/img/all-images/bg/hero-bg1.webp) center / cover no-repeat;    
        
}


/* Carousel itself */

#heroCarousel {
    position: relative;
    width: 100%;
}


/* Each slide */

#heroCarousel .carousel-item {
    min-height: 420px;
    position: relative;
    overflow: hidden;
}


/* Container */

#heroCarousel .carousel-item > .container {
    min-height: 420px;
    z-index: 5;
}


/* Overlay */

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(5, 20, 40, 0.30),
            rgba(5, 20, 40, 0.05)
        );
}


/* Decorative circles */

.hero-section::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background:
        rgba(245, 130, 32, 0.08);

    top: -200px;
    right: -150px;

    pointer-events: none;

    z-index: 1;
}


.hero-section::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    bottom: -220px;
    left: -100px;

    pointer-events: none;

    z-index: 1;
}


/* =========================================================
   HERO CONTENT
========================================================= */

#heroCarousel .row {
    position: relative;
    z-index: 5;
}


.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #ff9a43;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 20px;
}


.hero-section h1 {
    color: #ffffff;

    font-size:
        clamp(42px, 5vw, 68px);

    line-height: 1.08;

    font-weight: 800;

    margin-bottom: 25px;

    letter-spacing: -2px;
}


.hero-section h1 span {
    color: #f58220;
}


.hero-section p {
    max-width: 610px;

    color: #d2deed;

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 0;
}


/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 30px;
}


.hero-buttons .btn {
    padding: 14px 25px;

    font-weight: 700;
}


.hero-buttons .btn-outline-light {
    border-width: 2px;
}


.hero-buttons .btn-outline-light:hover {
    background: #ffffff;

    color: #173b70;

    border-color: #ffffff;
}


/* =========================================================
   HERO POINTS
========================================================= */

.hero-points {
    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 35px;
}


.hero-points div {
    color: #e1eaf5;

    font-size: 13px;

    font-weight: 500;
}


.hero-points i {
    color: #55d68b;

    margin-right: 5px;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image-wrapper {
    position: relative;

    padding: 35px;

    min-height: 560px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.hero-panel-image {
    width: 100%;

    max-width: 620px;

    height: 500px;

    object-fit: contain;

    position: relative;

    z-index: 3;

    filter:
        drop-shadow(
            0 30px 35px rgba(0, 0, 0, 0.35)
        );

    transition:
        transform .6s ease;
}


/* Slight zoom when slide becomes active */

.carousel-item.active .hero-panel-image {
    animation:
        heroImageZoom 5s ease-in-out forwards;
}


@keyframes heroImageZoom {

    from {
        transform: scale(.96);
    }

    to {
        transform: scale(1);
    }

}


/* =========================================================
   IMAGE GLOW
========================================================= */

.hero-image-glow {
    position: absolute;

    width: 430px;
    height: 430px;

    background:
        rgba(255, 255, 255, 0.07);

    border-radius: 50%;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    z-index: 1;
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.floating-card {
    position: absolute;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 10px;

    background: #ffffff;

    padding: 13px 18px;

    border-radius: 9px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.20);

    animation:
        floating 4s ease-in-out infinite;
}


.floating-card strong {
    display: block;

    color: #101b2d;

    font-size: 12px;
}


.floating-card small {
    display: block;

    color: #7b8795;

    font-size: 10px;
}


.floating-icon {
    width: 40px;
    height: 40px;

    background: #fff2e7;

    color: #f58220;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    font-size: 19px;
}


.floating-card-one {
    top: 80px;
    left: 0;
}


.floating-card-two {
    bottom: 80px;
    right: 0;

    animation-delay: 1s;
}


@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


/* =========================================================
   BOOTSTRAP FADE
========================================================= */

#heroCarousel .carousel-item {
    transition:
        opacity 1.2s ease-in-out !important;
}


/*
   Bootstrap's default transform is removed
   so this is a pure fade.
*/

#heroCarousel .carousel-item-next,
#heroCarousel .carousel-item-prev,
#heroCarousel .carousel-item.active,
#heroCarousel .active.carousel-item-start,
#heroCarousel .active.carousel-item-end {
    transform: none !important;
}


/* =========================================================
   SLIDER INDICATORS
========================================================= */

#heroCarousel .carousel-indicators {
    position: absolute;

    bottom: 25px;

    left: 50%;

    transform:
        translateX(-50%);

    margin: 0;

    z-index: 20;

    gap: 7px;
}


#heroCarousel .carousel-indicators button {
    width: 28px;
    height: 4px;

    border: 0;

    border-radius: 10px;

    margin: 0;

    opacity: .45;

    background: #ffffff;

    transition:
        width .35s ease,
        opacity .35s ease;
}


#heroCarousel .carousel-indicators button.active {
    width: 55px;

    opacity: 1;

    background: #f58220;
}


/* =========================================================
   PREVIOUS / NEXT
========================================================= */

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 55px;

    opacity: 1;

    z-index: 20;
}


.hero-control-icon {
    width: 45px;
    height: 45px;

    border-radius: 50%;

    border:
        1px solid rgba(255, 255, 255, .25);

    background:
        rgba(255, 255, 255, .08);

    backdrop-filter: blur(5px);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    font-size: 18px;

    transition: .3s ease;
}


#heroCarousel .carousel-control-prev:hover
.hero-control-icon,

#heroCarousel .carousel-control-next:hover
.hero-control-icon {
    background: #f58220;

    border-color: #f58220;

    transform: scale(1.08);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .hero-section {
        min-height: auto;
    }


    #heroCarousel .carousel-item {
        min-height: auto;
    }


    #heroCarousel .carousel-item > .container {
        min-height: auto;

        padding-top: 80px;
        padding-bottom: 80px;
    }


    .hero-image-wrapper {
        margin-top: 45px;

        min-height: 450px;
    }


    .hero-panel-image {
        height: 420px;
    }


    .floating-card-one {
        left: 15px;
    }


    .floating-card-two {
        right: 15px;
    }


    #heroCarousel .carousel-control-prev,
    #heroCarousel .carousel-control-next {
        width: 45px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    #heroCarousel .carousel-item > .container {
        padding-top: 65px;

        padding-bottom: 75px;
    }


    .hero-section h1 {
        font-size: 40px;

        letter-spacing: -1px;
    }


    .hero-section p {
        font-size: 14px;

        line-height: 1.7;
    }


    .hero-tag {
        font-size: 11px;

        letter-spacing: 1px;
    }


    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }


    .hero-buttons .btn {
        width: 100%;
    }


    .hero-points {
        flex-direction: column;

        gap: 10px;

        margin-top: 25px;
    }


    .hero-image-wrapper {
        min-height: 350px;

        margin-top: 20px;

        padding: 10px 20px 30px;
    }


    .hero-panel-image {
        height: 330px;

        max-width: 100%;
    }


    .hero-image-glow {
        width: 280px;

        height: 280px;
    }


    .floating-card {
        transform: scale(.80);
    }


    .floating-card-one {
        top: 25px;

        left: -15px;
    }


    .floating-card-two {
        bottom: 20px;

        right: -15px;
    }


    #heroCarousel .carousel-control-prev,
    #heroCarousel .carousel-control-next {
        display: none;
    }


    #heroCarousel .carousel-indicators {
        bottom: 20px;
    }


    #heroCarousel .carousel-indicators button {
        width: 18px;

        height: 3px;
    }


    #heroCarousel .carousel-indicators button.active {
        width: 38px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    #heroCarousel .carousel-item > .container {
        padding-top: 55px;

        padding-bottom: 65px;
    }


    .hero-section h1 {
        font-size: 34px;

        line-height: 1.12;
    }


    .hero-image-wrapper {
        min-height: 290px;
    }


    .hero-panel-image {
        height: 275px;
    }


    .floating-card {
        display: none;
    }


    .hero-points div {
        font-size: 12px;
    }

}

/* =========================================================
   End Slider
========================================================= */


/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
    background: #ffffff;
    padding: 25px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 5;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 13px;
}

.trust-item > i {
    color: var(--accent);
    font-size: 30px;
}

.trust-item strong,
.trust-item span {
    display: block;
}

.trust-item strong {
    color: var(--dark);
    font-size: 14px;
}

.trust-item span {
    font-size: 11px;
    color: #8792a1;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-subtitle {
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    color: var(--dark);
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 22px;
}

.section-title span {
    color: var(--primary);
}

.section-heading {
    max-width: 750px;
    margin: 0 auto;
}

.section-heading > p {
    line-height: 1.8;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background: #ffffff;
}

.about-image-box {
    position: relative;
    padding: 20px 30px 50px 0;
}

.about-main-image {
    background: #f1f4f8;
    border-radius: 15px;
    padding: 30px;
    overflow: hidden;
}

.about-main-image img {
    width: 100%;
    height: 470px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.experience-card {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--primary);
    color: #ffffff;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(15, 48, 88, 0.25);
}

.experience-number {
    color: var(--accent);
    font-size: 30px;
    font-weight: 800;
}

.experience-card strong,
.experience-card span {
    display: block;
}

.experience-card strong {
    font-size: 13px;
}

.experience-card span {
    color: #b8c8dc;
    font-size: 11px;
}

.section-text {
    line-height: 1.85;
    font-size: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 25px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #344257;
    font-weight: 600;
}

.about-feature i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf8f0;
    color: #21a35a;
}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {
    background: var(--light);
}

.product-card {
    height: 100%;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e7ebf0;
    transition: 0.35s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(22, 47, 80, 0.12);
}

.product-image {
    height: 260px;
    background: #f1f3f5;
    position: relative;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
}

.product-content {
    padding: 25px;
    position: relative;
}

.product-number {
    color: #dce1e8;
    font-size: 30px;
    font-weight: 800;
    position: absolute;
    right: 20px;
    top: 15px;
}

.product-content h3 {
    color: var(--dark);
    font-size: 20px;
    font-weight: 750;
    margin-bottom: 12px;
    padding-right: 30px;
}

.product-content p {
    font-size: 13px;
    line-height: 1.75;
    margin-bottom: 18px;
}

.product-content a {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}

.product-content a i {
    margin-left: 5px;
    transition: 0.3s ease;
}

.product-content a:hover {
    color: var(--accent);
}

.product-content a:hover i {
    margin-left: 10px;
}

.product-card-more {
    background:
        linear-gradient(
            145deg,
            #102d55,
            #173f72
        );
    border: 0;
    color: #ffffff;
}

.product-card-more .product-content h3 {
    color: #ffffff;
}

.product-card-more .product-content p {
    color: #c9d7e8;
}

.product-card-more .product-number {
    color: rgba(255, 255, 255, 0.1);
}

.product-card-more .product-content a {
    color: #ff9a43;
}

.product-more-icon {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.15);
}


/* =========================================================
   WHY US
========================================================= */

.why-section {
    background:
        linear-gradient(
            120deg,
            #091d37,
            #153e70
        );
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.07);
    right: -200px;
    top: -200px;
}

.why-section .container {
    position: relative;
    z-index: 2;
}

.why-section .section-title span {
    color: var(--accent);
}

.why-text {
    color: #c9d6e7;
    font-size: 14px;
    line-height: 1.8;
}

.why-card {
    height: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.09);
    padding: 25px;
    border-radius: 10px;
    transition: 0.3s ease;
}

.why-card:hover {
    background: rgba(255,255,255,0.11);
    transform: translateY(-5px);
}

.why-icon {
    width: 50px;
    height: 50px;
    background: rgba(245,130,32,0.15);
    color: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    margin-bottom: 18px;
}

.why-card h3 {
    color: #ffffff;
    font-size: 17px;
}

.why-card p {
    color: #aebed2;
    font-size: 12px;
    line-height: 1.75;
    margin-bottom: 0;
}


/* =========================================================
   LOCATIONS
========================================================= */

.applications-section {
    background: #ffffff;
}

.locations-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 45px;
}

.location-item {
    min-width: 160px;
    padding: 22px 30px;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--dark);
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s ease;
}

.location-item i {
    color: var(--accent);
}

.location-item:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,.07);
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding-bottom: 100px;
}

.cta-box {
    background:
        linear-gradient(
            120deg,
            #173e70,
            #0d294f
        );
    padding: 55px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.cta-box::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.08);
    right: -100px;
    top: -150px;
}

.cta-box > .row {
    position: relative;
    z-index: 2;
}

.cta-box span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.cta-box h2 {
    color: #ffffff;
    font-size: 34px;
    font-weight: 800;
    margin: 10px 0;
}

.cta-box p {
    color: #b9c9dc;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    background: var(--light);
}

.contact-info {
    margin-top: 35px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 8px;
    background: #fff0e5;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item strong {
    color: var(--dark);
    font-size: 14px;
}

.contact-item p {
    font-size: 13px;
    line-height: 1.7;
    margin: 4px 0 0;
}

.contact-item a {
    color: var(--primary);
    font-weight: 600;
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(20, 42, 70, 0.08);
}

.contact-form-wrapper h3 {
    color: var(--dark);
    font-size: 25px;
    font-weight: 750;
}

.contact-form-wrapper > p {
    font-size: 13px;
}

.form-control,
.form-select {
    border: 1px solid #dce2ea;
    min-height: 50px;
    border-radius: 5px;
    font-size: 13px;
}

textarea.form-control {
    min-height: 120px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(245,130,32,.1);
}

.contact-form-wrapper label {
    color: #27384d;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 7px;
}























/* =====================================================
   CONTACT HERO
===================================================== */

.contact-hero {

    position: relative;

    min-height: 620px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #06182c 0%,
            #0c2c50 60%,
            #123e68 100%
        );

}


.hero-grid {

    position: absolute;

    inset: 0;

    opacity: .08;

    background-image:

        linear-gradient(
            rgba(255,255,255,.25) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.25) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

}


.hero-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(5px);

    pointer-events: none;

}


.hero-glow-one {

    width: 450px;

    height: 450px;

    right: -180px;

    top: -170px;

    background:
        rgba(245,130,32,.12);

}


.hero-glow-two {

    width: 350px;

    height: 350px;

    left: -180px;

    bottom: -180px;

    background:
        rgba(23,59,112,.5);

}


.contact-hero .container {

    position: relative;

    z-index: 2;

}


.hero-kicker {

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--accent);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.8px;

    margin-bottom: 18px;

}


.contact-hero h1 {

    max-width: 750px;

    color: #fff;

    font-size:
        clamp(40px,5vw,65px);

    line-height: 1.06;

    letter-spacing: -2.5px;

    font-weight: 800;

}


.contact-hero h1 span {

    color: var(--accent);

    display: block;

}


.contact-hero p {

    max-width: 620px;

    color: #afc1d3;

    font-size: 13px;

    line-height: 1.9;

    margin-top: 22px;

}


.hero-buttons {

    display: flex;

    gap: 10px;

    margin-top: 28px;

}


.btn-orange {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    background: var(--accent);

    border: 2px solid var(--accent);

    color: #fff;

    padding: 12px 20px;

    border-radius: 5px;

    font-size: 10px;

    font-weight: 700;

    transition: .35s;

}


.btn-orange:hover {

    background: #fff;

    border-color: #fff;

    color: var(--primary);

    transform: translateY(-3px);

}


.btn-outline-white {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    color: #fff;

    border: 1px solid rgba(255,255,255,.3);

    padding: 12px 20px;

    border-radius: 5px;

    font-size: 10px;

    font-weight: 700;

    transition: .3s;

}


.btn-outline-white:hover {

    background: #fff;

    color: var(--primary);

}


.hero-trust {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 28px;

}


.hero-trust div {

    color: #9bb0c4;

    font-size: 9px;

}


.hero-trust i {

    color: #30b96a;

    margin-right: 5px;

}



/* =====================================================
   HERO CONTACT CARD
===================================================== */

.hero-contact-card {

    position: relative;

    padding: 35px;

    background:
        rgba(255,255,255,.07);

    border: 1px solid
        rgba(255,255,255,.13);

    border-radius: 12px;

    backdrop-filter: blur(12px);

    overflow: hidden;

}


.hero-contact-card::after {

    content: "";

    position: absolute;

    width: 190px;

    height: 190px;

    right: -80px;

    top: -90px;

    border: 1px solid
        rgba(245,130,32,.25);

    border-radius: 50%;

}


.card-top-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(245,130,32,.15);

    color: var(--accent);

    border-radius: 8px;

    font-size: 25px;

    margin-bottom: 24px;

}


.hero-contact-card > span {

    color: var(--accent);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.hero-contact-card h3 {

    color: #fff;

    font-size: 25px;

    line-height: 1.25;

    font-weight: 800;

    margin: 10px 0;

}


.hero-contact-card p {

    color: #9db2c6;

    font-size: 10px;

    line-height: 1.8;

    margin: 0 0 22px;

}


.direct-call {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px;

    background:
        rgba(0,0,0,.15);

    border: 1px solid
        rgba(255,255,255,.08);

    border-radius: 7px;

    color: #fff;

    transition: .3s;

}


.direct-call:hover {

    color: #fff;

    background:
        rgba(245,130,32,.12);

    transform: translateY(-3px);

}


.call-icon {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 5px;

    background: var(--accent);

}


.direct-call small,
.direct-call strong {

    display: block;

}


.direct-call small {

    color: #8399ae;

    font-size: 7px;

    letter-spacing: 1px;

}


.direct-call strong {

    font-size: 12px;

    margin-top: 3px;

}



/* =====================================================
   CONTACT CARDS
===================================================== */

.contact-cards-section {

    padding: 70px 0;

    background: #fff;

}


.contact-card {

    height: 100%;

    display: flex;

    gap: 18px;

    padding: 28px;

    border: 1px solid var(--border);

    border-radius: 9px;

    background: #fff;

    transition: .4s;

}


.contact-card:hover {

    transform: translateY(-8px);

    border-color:
        rgba(245,130,32,.4);

    box-shadow:
        0 20px 45px rgba(15,40,70,.08);

}


.contact-card-icon {

    flex-shrink: 0;

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 7px;

    background: #fff0e5;

    color: var(--accent);

    font-size: 22px;

    transition: .3s;

}


.contact-card:hover .contact-card-icon {

    background: var(--primary);

    color: #fff;

}


.card-label {

    color: var(--accent);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.3px;

}


.contact-card h3 {

    color: var(--dark);

    font-size: 16px;

    font-weight: 800;

    margin: 7px 0 10px;

}


.contact-card p {

    font-size: 9px;

    line-height: 1.8;

    margin-bottom: 12px;

}


.contact-card a {

    color: var(--primary);

    font-size: 9px;

    font-weight: 800;

}


.contact-card a:hover {

    color: var(--accent);

}



/* =====================================================
   ENQUIRY
===================================================== */

.enquiry-section {

    padding: 100px 0;

    background: var(--light);

}


.section-kicker {

    color: var(--accent);

    font-size: 10px;

    letter-spacing: 1.7px;

    font-weight: 800;

    margin-bottom: 13px;

}


.section-title {

    color: var(--dark);

    font-size:
        clamp(30px,4vw,45px);

    line-height: 1.12;

    letter-spacing: -1.5px;

    font-weight: 800;

}


.section-title span {

    color: var(--primary);

}


.section-description {

    max-width: 550px;

    font-size: 11px;

    line-height: 1.9;

    margin-top: 18px;

}


.enquiry-products {

    margin-top: 35px;

}


.enquiry-products h4 {

    color: var(--dark);

    font-size: 13px;

    font-weight: 800;

    margin-bottom: 15px;

}


.product-chip-list {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

}


.product-chip-list span {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 8px 10px;

    border-radius: 4px;

    background: #fff;

    border: 1px solid var(--border);

    color: #526276;

    font-size: 8px;

    font-weight: 600;

    transition: .3s;

}


.product-chip-list span:hover {

    border-color: var(--accent);

    color: var(--accent);

    transform: translateY(-2px);

}


.product-chip-list i {

    color: var(--accent);

}


.whatsapp-card {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 16px;

    margin-top: 30px;

    border-radius: 7px;

    background: #eafaf0;

    border: 1px solid #ccebd9;

}


.whatsapp-icon {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--success);

    color: #fff;

    font-size: 20px;

}


.whatsapp-card span,
.whatsapp-card strong {

    display: block;

}


.whatsapp-card span {

    color: #55916b;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1px;

}


.whatsapp-card strong {

    color: #194e2c;

    font-size: 10px;

    margin-top: 3px;

}


.whatsapp-card > a {

    margin-left: auto;

    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 5px;

    background: #fff;

    color: var(--success);

}



/* =====================================================
   FORM CARD
===================================================== */

.enquiry-form-card {

    background: #fff;

    padding: 38px;

    border-radius: 10px;

    border: 1px solid var(--border);

    box-shadow:
        0 20px 50px rgba(15,40,70,.06);

}


.form-heading {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 30px;

    padding-bottom: 20px;

    border-bottom:
        1px solid var(--border);

}


.form-heading span {

    color: var(--accent);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.3px;

}


.form-heading h3 {

    color: var(--dark);

    font-size: 23px;

    font-weight: 800;

    margin-top: 5px;

}


.form-number {

    color: #edf0f4;

    font-size: 48px;

    line-height: 1;

    font-weight: 900;

}


.enquiry-form-card label {

    display: block;

    color: var(--dark);

    font-size: 9px;

    font-weight: 700;

    margin-bottom: 7px;

}


.input-wrapper {

    position: relative;

}


.input-wrapper > i {

    position: absolute;

    left: 13px;

    top: 50%;

    transform: translateY(-50%);

    color: #a0acba;

    font-size: 13px;

    z-index: 2;

    pointer-events: none;

}


.input-wrapper .form-control,
.input-wrapper .form-select {

    min-height: 46px;

    padding-left: 39px;

    border: 1px solid var(--border);

    border-radius: 5px;

    color: var(--dark);

    font-size: 10px;

    box-shadow: none;

    transition: .3s;

}


.input-wrapper .form-control:focus,
.input-wrapper .form-select:focus {

    border-color: var(--accent);

    box-shadow:
        0 0 0 3px rgba(245,130,32,.08);

}


.textarea-wrapper > i {

    top: 18px;

    transform: none;

}


.textarea-wrapper textarea {

    resize: vertical;

    min-height: 125px !important;

    padding-top: 13px;

}


.form-control::placeholder {

    color: #aeb7c2;

    font-size: 9px;

}


.invalid-feedback {

    font-size: 8px;

}


.submit-btn {

    width: 100%;

    min-height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border: 0;

    border-radius: 5px;

    background: var(--accent);

    color: #fff;

    font-size: 10px;

    font-weight: 800;

    cursor: pointer;

    transition: .35s;

}


.submit-btn:hover {

    background: var(--primary);

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(23,59,112,.18);

}


.form-note {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 5px;

    color: #9aa6b4;

    font-size: 8px;

    margin-top: 13px;

}


.form-note i {

    color: #36ad6b;

}



/* =====================================================
   MAP
===================================================== */

.map-section {

    position: relative;

}


.map-wrapper {

    position: relative;

}


.map-wrapper iframe {

    display: block;

    filter:
        grayscale(.15)
        contrast(1.05);

}


.map-card {

    position: absolute;

    left: 7%;

    top: 50%;

    transform: translateY(-50%);

    width: 350px;

    padding: 30px;

    background: rgba(255,255,255,.97);

    border-radius: 9px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.15);

}


.map-card-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 6px;

    background: #fff0e5;

    color: var(--accent);

    font-size: 20px;

}


.map-card > span {

    display: block;

    color: var(--accent);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.4px;

    margin-top: 17px;

}


.map-card h3 {

    color: var(--dark);

    font-size: 17px;

    font-weight: 800;

    margin: 6px 0 10px;

}


.map-card p {

    font-size: 9px;

    line-height: 1.8;

}


.map-btn {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: var(--primary);

    font-size: 9px;

    font-weight: 800;

}


.map-btn:hover {

    color: var(--accent);

}



/* =====================================================
   SERVICE AREAS
===================================================== */

.service-area-section {

    padding: 100px 0;

}


.section-heading-center {

    text-align: center;

    max-width: 700px;

    margin:
        0 auto 50px;

}


.section-heading-center p {

    font-size: 11px;

    line-height: 1.8;

    margin-top: 15px;

}


.city-card {

    padding: 25px 15px;

    text-align: center;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 8px;

    transition: .35s;

}


.city-card:hover {

    border-color: var(--accent);

    transform: translateY(-7px);

    box-shadow:
        0 15px 35px rgba(15,40,70,.08);

}


.city-card i {

    display: block;

    color: var(--accent);

    font-size: 22px;

    margin-bottom: 10px;

}


.city-card strong,
.city-card span {

    display: block;

}


.city-card strong {

    color: var(--dark);

    font-size: 13px;

}


.city-card span {

    color: #9aa6b3;

    font-size: 8px;

    margin-top: 4px;

}



/* =====================================================
   FAQ
===================================================== */

.faq-section {

    padding: 100px 0;

    background: var(--light);

}


.faq-call {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--primary);

    margin-top: 25px;

    font-size: 10px;

    font-weight: 700;

}


.faq-call i {

    color: var(--accent);

    font-size: 17px;

}


.faq-call strong {

    color: var(--accent);

}


.custom-accordion {

    border-top:
        1px solid var(--border);

}


.custom-accordion .accordion-item {

    background: transparent;

    border: 0;

    border-bottom:
        1px solid var(--border);

}


.custom-accordion .accordion-button {

    padding: 20px 0;

    background: transparent;

    color: var(--dark);

    font-size: 11px;

    font-weight: 700;

    box-shadow: none;

}


.custom-accordion .accordion-button::after {

    background-size: 12px;

}


.custom-accordion .accordion-button:not(.collapsed) {

    color: var(--accent);

}


.custom-accordion .accordion-body {

    padding:
        0 35px 20px 0;

    color: #718095;

    font-size: 10px;

    line-height: 1.9;

}



/* =====================================================
   FINAL CTA
===================================================== */

.final-contact-cta {

    padding: 80px 0;

}


.final-cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 55px;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #071a31,
            #153e68
        );

    position: relative;

    overflow: hidden;

}


.final-cta-inner::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    right: -180px;

    top: -190px;

    border-radius: 50%;

    border:
        1px solid rgba(245,130,32,.25);

}


.final-cta-inner > div {

    position: relative;

    z-index: 2;

}


.final-cta-inner h2 {

    color: #fff;

    font-size:
        clamp(28px,4vw,43px);

    font-weight: 800;

}


.final-cta-inner h2 span {

    color: var(--accent);

}


.final-cta-inner p {

    max-width: 650px;

    color: #9fb3c7;

    font-size: 10px;

    line-height: 1.8;

    margin-top: 10px;

}


.final-cta-buttons {

    display: flex;

    gap: 8px;

    flex-shrink: 0;

}


.btn-whatsapp {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    padding: 12px 20px;

    background: var(--success);

    color: #fff;

    border-radius: 5px;

    font-size: 10px;

    font-weight: 700;

}


.btn-whatsapp:hover {

    color: #fff;

    background: #1fb85a;

    transform: translateY(-3px);

}



/* =====================================================
   FOOTER
===================================================== */

.footer {

    background: #071727;

    color: #91a5bb;

    padding-top: 70px;

}


.footer-logo {

    width: 145px;

    background: #fff;

    border-radius: 5px;

    padding: 5px;

    margin-bottom: 20px;

}


.footer p {

    font-size: 10px;

    line-height: 1.8;

}


.footer h4 {

    color: #fff;

    font-size: 13px;

    margin-bottom: 20px;

}


.footer ul {

    list-style: none;

    padding: 0;

}


.footer li {

    margin-bottom: 10px;

}


.footer li a {

    color: #91a5bb;

    font-size: 10px;

}


.footer li a:hover {

    color: var(--accent);

}


.footer p i {

    color: var(--accent);

    margin-right: 5px;

}


.footer p a {

    color: #91a5bb;

}


.footer-social {

    display: flex;

    gap: 7px;

}


.footer-social a {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 5px;

    background:
        rgba(255,255,255,.07);

    color: #fff;

}


.footer-social a:hover {

    background: var(--accent);

}


.footer-bottom {

    margin-top: 45px;

    padding: 20px 0;

    text-align: center;

    border-top:
        1px solid rgba(255,255,255,.08);

    font-size: 9px;

}



/* =====================================================
   FLOATING WHATSAPP
===================================================== */

.whatsapp-float {

    position: fixed;

    right: 22px;

    bottom: 22px;

    width: 54px;

    height: 54px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--success);

    color: #fff;

    font-size: 26px;

    z-index: 1000;

    box-shadow:
        0 8px 25px rgba(37,211,102,.35);

    transition: .3s;

}


.whatsapp-float:hover {

    color: #fff;

    transform: scale(1.1);

}



/* =====================================================
   BACK TOP
===================================================== */

.back-top {

    position: fixed;

    right: 22px;

    bottom: 88px;

    width: 42px;

    height: 42px;

    border: 0;

    border-radius: 5px;

    background: var(--primary);

    color: #fff;

    display: none;

    align-items: center;

    justify-content: center;

    z-index: 999;

}


.back-top.show {

    display: flex;

}



/* =====================================================
   MOBILE BAR
===================================================== */

.mobile-contact-bar {

    display: none;

}



/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {


    .topbar {

        display: none;

    }


    .contact-hero {

        min-height: auto;

        padding:
            80px 0;

    }


    .hero-contact-card {

        margin-top: 45px;

    }


    .map-card {

        left: 5%;

    }


    .final-cta-inner {

        flex-direction: column;

        align-items: flex-start;

    }

}


@media (max-width: 767px) {


    body {

        padding-bottom: 62px;

    }


    .navbar-brand img {

        width: 125px;

    }


    .contact-hero {

        padding:
            55px 0 65px;

    }


    .contact-hero h1 {

        font-size: 40px;

        letter-spacing: -1.5px;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .hero-buttons .btn {

        width: 100%;

    }


    .hero-trust {

        flex-direction: column;

        gap: 9px;

    }


    .hero-contact-card {

        padding: 25px;

    }


    .contact-cards-section,
    .enquiry-section,
    .service-area-section,
    .faq-section {

        padding: 75px 0;

    }


    .enquiry-form-card {

        padding: 25px 18px;

    }


    .form-number {

        font-size: 38px;

    }


    .map-wrapper iframe {

        height: 620px;

    }


    .map-card {

        left: 15px;

        right: 15px;

        width: auto;

        top: auto;

        bottom: 25px;

        transform: none;

        padding: 22px;

    }


    .final-contact-cta {

        padding: 65px 0;

    }


    .final-cta-inner {

        padding: 35px 23px;

    }


    .final-cta-buttons {

        width: 100%;

        flex-direction: column;

    }


    .final-cta-buttons .btn {

        width: 100%;

    }


    .mobile-contact-bar {

        position: fixed;

        display: grid;

        grid-template-columns:
            repeat(3,1fr);

        left: 0;

        bottom: 0;

        width: 100%;

        height: 62px;

        background: #fff;

        box-shadow:
            0 -5px 25px rgba(0,0,0,.12);

        z-index: 2000;

    }


    .mobile-contact-bar a {

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 3px;

        color: var(--primary);

        border-right:
            1px solid var(--border);

        font-size: 9px;

        font-weight: 700;

    }


    .mobile-contact-bar a:last-child {

        border: 0;

    }


    .mobile-contact-bar i {

        color: var(--accent);

        font-size: 18px;

    }


    .whatsapp-float {

        display: none;

    }

}


@media (max-width: 480px) {


    .contact-hero h1 {

        font-size: 34px;

    }


    .contact-card {

        padding: 22px;

    }


    .section-title {

        font-size: 31px;

    }


    .product-chip-list span {

        font-size: 7px;

    }


    .map-card h3 {

        font-size: 15px;

    }

} 







