html {
    overflow-x: clip;
    max-width: 100%;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: var(--light-bg);
    color: var(--text);
    overflow-x: clip;
    max-width: 100%;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0D7784;
    --primary-rgb: 13, 119, 132;
    --secondary: #0B1523;
    --secondary-rgb: 11, 21, 35;
    --accent: #EDC84E;
    --accent-rgb: 237, 200, 78;
    --background: #FFFFFF;
    --text: #050708;
    --text-light: #3A3D3F;
    --light-bg: #F7F9F9;
    --border: #E1E5E6;
}

/* ============================ TYPOGRAPHY SYSTEM ============================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

/* All body text, navigation, buttons, labels, forms, and UI use Quicksand */
p, a, span, li, label, input, textarea, button, select, option, td, th, div, small, strong, em {
    font-family: 'Quicksand', sans-serif;
}

/* header */

.header-container {
    /* background: #ffffff; */
    /* border-radius: 16px;
    padding: 16px 29px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
    /* margin: 0px 13px 0px 13px; */
}

/* Logo */
.logo img {
    height: 64px;
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 50px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-menu a {
    position: relative;
}

/* .nav-menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
} */

.nav-menu a:hover::after {
    width: 60%;
}

/* CTA Button */
.btn_primary {
    background: var(--primary);
    color: #ffffff;
    padding: 13px 34px;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid var(--primary);
    border-radius: 50px;
    text-decoration: none !important;
    transition: background 0.3s ease;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
    transition: all 0.3s ease;
}

.btn_primary:hover {
    background: var(--accent);
    color: var(--secondary);
    transition: all 0.3s ease;
    border: 1px solid var(--accent);
    /* box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.25); */
}

.btn_primary_outline {
    background: #F7F9F9;
    color: var(--text);
    padding: 13px 34px;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    text-decoration: none !important;
    transition: background 0.3s ease;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
    transition: all 0.3s ease;
    border: 1px solid var(--accent);
}

.btn_primary_outline:hover {
    background: var(--accent);
    color: var(--secondary);
    transition: all 0.3s ease;
    border: 1px solid var(--accent);
    /* box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.25); */
}

.btn_secondary {
    background: var(--accent);
    color: var(--text);
    padding: 13px 34px;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid var(--accent);
    border-radius: 50px;
    text-decoration: none !important;
    transition: background 0.3s ease;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
    transition: all 0.3s ease;
}

.btn_secondary:hover {
    background: var(--primary);
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid var(--primary);
    /* box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.25); */
}


/* ==============================toggle button============================ */

/* ==============================toggle button============================ */
.contact-info-mobile {
    display: none;
}

.contact-info-mobile a {
    text-decoration: none !important;
}

/* Toggle Button */
.nav-toggle {
    display: none;
    /* hidden by default */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    /* Stay above the menu drawer */
    transition: all 0.3s ease;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* Animate to X */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: #ffffff;
    /* Contrast on dark drawer background */
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: #ffffff;
}

.nav-menu a.active::after {
    width: 60%;
}

.nav-menu a.active {
    color: var(--primary);
    font-weight: 600;
}



/* hero */

.hero {
    /* Compensation for fixed header */
    background: url(../images/banner-pattern.avif), url(../images/arrow.png);
    background-repeat: no-repeat;
    background-size: cover, 700px;
    background-position: center , bottom 130px right 200px;
    height: 95vh;
}

.hero-container {
    /* background-position: right center;
    background-size: contain; */
    background-size: cover;
    border-radius: 17px;
    
}

.hero-content {
    /* background: url(../images/hero-banner1.png); */
    background-repeat: no-repeat;
    background-size: cover;
    height: 95vh;
    color: var(--text);
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    border-radius: 30px;
    /* height: 115%; */
    /* margin: 0px 0px 0px 0px; */
    /* padding-top:200px; */
}

.hero-content h1 {
    /* font-weight: 600; */
    margin-bottom: 20px;
    font-size: 60px;
    line-height: 1.3;

}

.hero-content p {
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 34px;
}



.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    justify-content: center;
}


/* OUTLINE hover → OUTLINE becomes FILLED */
.btn-outline:hover {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.35);
    transform: translateY(-3px) scale(1.02);
}

.deatail-btn {
    display: none;
}

/* ==================hero about==================== */
/* #hero-about {
    padding: 95px 0px;
} */

.about-box{
    padding: 60px 60px;
        background: radial-gradient(circle, rgba(17, 131, 140, 1) 0%, rgba(11, 21, 31, 1) 100%);
        border-radius: 30px;
}

.sub-title {
    background: #fff4d2;
    border: solid 1px #ffe591;
    padding: 7px 12px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
}

#hero-about .sec-header h2 {
    color: #fff;
}

#hero-about .description {
    color: #ffffff;
}

.sec-header h2 {
    margin-top: 20px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 20px;
}

.description {
    margin-bottom: 27px;
}

.more-btn {
    text-decoration: none;
    background: var(--primary);
    color: #fff;
    border-radius: 5px;
    padding: 10px 21px;
    width: fit-content;

    /* smooth animation */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.more-btn:hover {
    transform: translateY(-4px);
    /* 👆 upward motion */
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.25);
}

.about-img img {
    width: 100%;
}


.about-desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}


/* ===============================home service================================= */



#hero-services {
    padding: 80px 60px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

/* Decorative glow */
/* #hero-services::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(var(--primary-rgb), 0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(var(--accent-rgb), 0.05) 0%, transparent 40%);
    pointer-events: none;
} */

.hero-services-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.hero-services-head .sec-header h2 {
    color: var(--secondary);
    margin-bottom: 14px;
}

.hero-services-head .sec-header p {
    color: var(--text-light);
    font-size: 15.5px;
    margin: 0 auto;
}

.hero-services-head .sub-title {
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    border: 1px solid rgba(var(--primary-rgb), 0.15);
}

.hero-services-head .sub-title::before {
    background: var(--accent);
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* Service tile */
.service-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 14px;
    background: var(--background);
    border: 1px solid var(--background);
    border-radius: 18px;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(var(--secondary-rgb), 0.04);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}

.service-tile:hover {
    transform: translateY(-6px);
    background: var(--background);
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 20px 50px rgba(var(--secondary-rgb), 0.12);
}

/* Service image area */
.service-tile-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 6;
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background 0.4s ease, border-color 0.4s ease;
}

.service-tile:hover .service-tile-image {
    background: var(--background);
    border-color: rgba(var(--primary-rgb), 0.25);
}

.service-tile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-tile:hover .service-tile-image img {
    transform: scale(1.05);
}

/* Service body */
.service-tile-body {
    padding: 0 10px 14px 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-tile h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-tile:hover h3 {
    color: var(--primary);
}

.service-tile p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-light);
    margin: 0;
}

/* ==============================industries======================= */
#industries {
    padding: 80px 0;
    background: var(--background);
}

.industries-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
}

.industries-head .sec-header {
    margin-bottom: 0;
}

.industries-head .sec-header h2 {
    margin-bottom: 16px;
}

.indstry-desc {
    font-size: 16px;
    color: var(--text-light);
    margin: 0 auto;
    max-width: 620px;
}

/* Card grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.industry-card {
    position: relative;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}

/* Top accent bar that grows on hover */
/* .industry-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
} */

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(var(--secondary-rgb), 0.12);
    border-color: rgba(var(--primary-rgb), 0.25);
}

.industry-card:hover::before {
    transform: scaleX(1);
}

/* Icon */
.industry-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg,
        rgba(var(--primary-rgb), 0.10),
        rgba(var(--accent-rgb), 0.08));
    border: 1px solid rgba(var(--primary-rgb), 0.15);
    color: var(--primary);
    font-size: 26px;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
        background 0.45s ease,
        color 0.45s ease,
        box-shadow 0.45s ease;
}

.industry-card:hover .industry-icon {
    transform: translateY(-4px) scale(1.08);
    background: linear-gradient(135deg, var(--primary), var(--primary));
    background: var(--accent);
    color: var(--text-light);
    box-shadow: 0 12px 24px rgba(var(--primary-rgb), 0.35);
    /* border-color: var(--primary); */
}

.industry-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.industry-card:hover h4 {
    color: var(--primary);
}

.industry-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}


/* ================================key products============================================ */
#key-prdcts {
    padding: 90px 0;
    background: radial-gradient(circle, rgba(17, 131, 140, 1) 0%, rgba(11, 21, 31, 1) 100%);
    color: var(--background);
}


#key-prdcts .sec-header {
    margin-bottom: 24px;
}

#key-prdcts .sec-header h2 {
    color: var(--background);
}

#key-prdcts .sec-header .sub-title {
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent);
    border-color: rgba(var(--accent-rgb), 0.25);
}

.servies_key_product {
    background: var(--background) !important;
}
.servies_key_product .sec-header h2 {
    color: var(--text-light) !important;
}

.products-split-wrap {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Product split row */
.product-split {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: radial-gradient(circle at 75% 50%, rgba(48, 48, 48, 0.9) 0%, rgba(255, 255, 255, 0.98) 70%);
    border-radius: 28px;
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.5s ease;
}

.product-split:hover {
    transform: translateY(-6px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20);
}

/* Image side — dissolves into content area */
.product-split-media {
    position: relative;
    height: 100%;
    min-height: 420px;
    order: 2;
}

.product-split-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 45%);
    mask-image: linear-gradient(to right, transparent 0%, black 45%);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-split:hover .product-split-media img {
    transform: scale(1.05);
}

/* Content side */
.product-split-content {
    position: relative;
    z-index: 3;
    padding: 55px 50px;
    order: 1;
}

.product-split-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text);
        background: #fff4d2;
    border: solid 1px #ffe591;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
    width: fit-content;
}

.product-split-content h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

/* .product-split:hover .product-split-content h3 {
    color: var(--accent);
} */

.product-split-content > p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
    font-weight: 500;
}

/* Highlights row */
.product-split-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.product-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 100px;
    padding: 16px 18px;
    background: #555;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.35s ease,
        border-color 0.35s ease;
}

/* .product-split:hover .product-highlight {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.18);
} */

.product-highlight i {
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 10px;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-split:hover .product-highlight i {
    transform: scale(1.15);
}

.product-highlight strong {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--background);
    margin-bottom: 2px;
    line-height: 1.2;
}

.product-highlight span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

/* Learn more link */
/* .product-split-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    transition: gap 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-split-link i {
    font-size: 13px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-split:hover .product-split-link {
    gap: 14px;
}

.product-split:hover .product-split-link i {
    transform: translateX(4px);
} */
/* ====================================why choose======================= */
#why-choose {
    padding: 80px 0;
    background: var(--light-bg);
}

.why-choose-wrap {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: start;
}

/* Left intro panel — sticky on desktop */
.why-intro {
    position: sticky;
    top: 120px;
    align-self: start;
}

.why-intro h2 {
    font-size: 30px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.why-intro-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 32px;
}

.why-stats {
    display: flex;
    gap: 28px;
    margin-bottom: 36px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    /* border-bottom: 1px solid var(--border); */
}

.why-stat {
    display: flex;
    flex-direction: column;
}

.why-stat-num {
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.why-stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 4px;
}

/* Right reasons list */
.why-reasons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-reason {
    display: flex;
    gap: 20px;
    padding: 24px 28px;
    background: var(--primary);
    background: linear-gradient(to right, rgba(var(--secondary-rgb), 0.95) 0%, rgba(var(--primary-rgb), 0.9) 100%);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease 0s;
}

/* Left accent bar that grows on hover */

.why-reason:hover {
    transform: translateX(6px);
    background: var(--background);
    transition: all 0.3s ease 0s;
    box-shadow: 0 12px 30px rgba(var(--secondary-rgb), 0.10);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.why-reason:hover::before {
    transform: scaleY(1);
}

.why-reason-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
        background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.10), rgba(var(--accent-rgb), 0.08));
    /* border: 1px solid rgba(var(--primary-rgb), 0.12); */
    color: #fff;
    font-size: 20px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        background 0.4s ease,
        color 0.4s ease,
        box-shadow 0.4s ease;
}

.why-reason:hover .why-reason-icon {
    transform: scale(1.1);
    background: var(--accent);
    color: var(--text-light);
    box-shadow: 0 8px 18px rgba(var(--primary-rgb), 0.3);
    /* border-color: var(--primary); */
}

.why-reason-body h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.why-reason:hover .why-reason-body h4 {
    color: var(--primary);
}

.why-reason-body p {
    font-size: 14px;
    line-height: 1.75;
    color: #fff;
    margin: 0;
}
.why-reason:hover .why-reason-body p {
    color: var(--text-light);
}

/* =====================================================footer========================================== */
.site-footer {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: #ffffff;
    padding: 70px 0 0;
    /* border-radius: 28px; */
    /* margin: 0 20px 20px; */
    overflow: hidden;
    /* Fixes right-side overflow from background images */
    position: relative;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 50px;
    position: relative;
}

.footer-bg {
    position: absolute;
    width: 100%;
    bottom: -48%;
    right: -1%;
    pointer-events: none;

}

.footer-logo {
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14.5px;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 14px;
    font-size: 14.5px;
    opacity: 0.9;
}

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none !important;
    transition: opacity 0.3s ease;
}

.footer-col ul li a i {
    margin-right: 12px;
}

.footer-col ul li a:hover {
    opacity: 0.75;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons img {
    width: 16px;
}

.footer-col.contact ul li {
    display: flex;
    gap: 18px;
    align-items: baseline;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13.5px;
    opacity: 0.85;
}



.social-icons a:hover {
    color: var(--accent);
    /* optional hover color */
}

.social-icons a {
    cursor: pointer;
    /* 👈 THIS is the fix */
    text-decoration: none;
    color: #ffffff;
}

.dfine {
    text-decoration: none;
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
}

/* =========================================ABOUT PAGE============================================ */
.about-hero {
    background: linear-gradient(-45deg, var(--secondary), var(--secondary), var(--primary));
    background-size: 400% 400%;
    border-radius: 30px;
    padding: 164px 20px;
    overflow: hidden;
    animation: heroFadeIn 1.5s ease-out,
        gradientShift 15s ease infinite alternate;
    /* padding-top: 30px; */
    margin-top: 92px;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.about-hero-content {
    text-align: center;
    max-width: 700px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.inner-bg {
    position: absolute;
    left: 80%;
    top: -123%;
    z-index: 1;
}

.inner-bg img {
    opacity: 0.5;
    display: block;
}

@keyframes fullRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-hero h1 {
    font-size: 48px;
    color: var(--light-bg);
    margin-bottom: 18px;
    font-weight: 600;
}

.about-hero p {
    color: var(--light-bg);
    font-size: 16px;
    line-height: 1.7;
}



/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image img {
        margin: auto;
    }

    .about-hero h1 {
        font-size: 38px;
    }
}

/* ========================= Purpose / Mission & Vision (New UI) ========================= */

.mv-section{
    padding: 20px 0;
}
.purpose-wrap {
    padding: 90px 0 100px;
    background: radial-gradient(circle at 50% 0%, var(--primary) 0%, var(--secondary) 65%);
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.purpose-wrap::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(17, 131, 140, 0.28) 0%, transparent 70%);
    top: -220px;
    left: -160px;
    pointer-events: none;
}

.purpose-wrap::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.1) 0%, transparent 70%);
    bottom: -160px;
    right: -100px;
    pointer-events: none;
}

.purpose-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

/* Header */
.purpose-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 46px;
}

.purpose-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: var(--accent);
    background: rgba(var(--accent-rgb), 0.12);
    border: 1px solid rgba(var(--accent-rgb), 0.35);
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.purpose-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--background);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
}

.purpose-sub {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* Banner image */
.purpose-media {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.purpose-media img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.purpose-media:hover img{
    transition: transform 0.3s ease;
    transform: scale(1.1);
}

.purpose-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 21, 31, 0) 30%, rgba(11, 21, 31, 0.55) 100%);
    pointer-events: none;
}

/* Overlapping cards */
.purpose-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: -90px 40px 0;
    position: relative;
    z-index: 2;
}

.purpose-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: 30px 32px;
    backdrop-filter: blur(14px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.purpose-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(var(--accent-rgb), 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.purpose-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.purpose-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--accent-rgb), 0.15);
    border: 1px solid rgba(var(--accent-rgb), 0.35);
    color: var(--accent);
    font-size: 22px;
    transition: background 0.3s ease, color 0.3s ease;
}

.purpose-card:hover .purpose-icon {
    background: var(--accent);
    color: var(--secondary);
}

.purpose-num {
    font-family: 'DM Sans', sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.28);
}

.purpose-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--background);
    margin-bottom: 10px;
}

.purpose-card p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* =========================core values=============================== */
#core-value {
    padding: 86px 0px;
}

.value-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
}

.value-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-fit: cover;
    transition: transform 0.5s ease;
    /* smooth zoom */
}

.value-card:hover img {
    transform: scale(1.1);
    /* zoom level */
}

.value-content {
    padding: 20px;
}

.value-content h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary);
}

.value-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ==============================================SERVICE PAGE============================================ */
#services {
    padding: 80px 0;
    background: var(--light-bg);
}

#services .sec-header {
    margin-bottom: 44px;
}

.sec-header p {
    font-weight: 500;
}

/* Clean service rows — 1 card per row, image alternates left/right */
.svc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.svc-card {
    background: var(--background);
    border: 1px solid rgba(var(--secondary-rgb), 0.07);
    border-radius: 22px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    height: 430px;
    box-shadow: 0 4px 18px rgba(var(--secondary-rgb), 0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.svc-card:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 20px 50px rgba(var(--secondary-rgb), 0.12);
}

/* Alternate image side */
.svc-card:nth-child(even) .svc-card-media {
    order: 2;
}

.svc-card:nth-child(even) .svc-card-body {
    order: 1;
}

/* Keep anchor offset for section cards */
section.svc-card[id] {
    scroll-margin-top: 110px;
}

/* Media */
.svc-card-media {
    position: relative;
    overflow: hidden;
    min-height: 260px;
}

.svc-card-media img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-card:hover .svc-card-media img {
    transform: scale(1.06);
}

.svc-num {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    padding: 7px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(var(--secondary-rgb), 0.12);
    transition: background 0.3s ease, color 0.3s ease;
}

.svc-card:hover .svc-num {
    background: var(--primary);
    color: var(--background);
}

/* Body */
.svc-card-body {
    padding: 38px 44px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.svc-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.2;
    margin: 0 0 8px;
    transition: color 0.3s ease;
}

/* .svc-card:hover .svc-title {
    color: var(--primary);
} */

.svc-sub {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 14px;
}

.svc-desc {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--text-light);
    margin: 0 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.svc-list {
    list-style: none;
    margin: auto 0 0;
    padding: 18px 0 0;
    border-top: 1px solid rgba(var(--secondary-rgb), 0.07);
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 22px;
    row-gap: 10px;
}

.svc-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text);
}

.svc-list li i {
    color: var(--primary);
    font-size: 10px;
    margin-top: 5px;
    flex-shrink: 0;
}

#key-prdcts.prdcts-section {
    padding-top: 7px;
}


/* ===========================================contact page========================================== */
.contact-sec {
    padding: 90px 0 60px;
    background: var(--light-bg);
}

.contact-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 24px;
}

.contact-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.08);
    border: 1px solid rgba(var(--primary-rgb), 0.25);
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.contact-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 20px 0 14px;
}

.contact-sub {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

/* Split panel card */
.contact-panel {
    display: grid;
    grid-template-columns: 400px 1fr;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(var(--secondary-rgb), 0.12);
    background: var(--background);
}

/* Dark info side */
.contact-info {
    background: radial-gradient(circle at 30% 15%, var(--primary) 0%, var(--secondary) 80%);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.12) 0%, transparent 70%);
    bottom: -140px;
    right: -100px;
    pointer-events: none;
}

.contact-info h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: var(--background);
    margin: 0 0 10px;
    position: relative;
}

.contact-info-lead {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 36px;
    position: relative;
    font-weight: 500;
}

.contact-info-list {
    position: relative;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--accent-rgb), 0.14);
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    color: var(--accent);
    font-size: 17px;
    transition: background 0.3s ease, color 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    background: var(--accent);
    color: var(--secondary);
}

.contact-info-item strong {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--background);
    margin-bottom: 5px;
}

.contact-info-item a,
.contact-info-item span {
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--accent);
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
}

.contact-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.contact-social a:hover {
    background: var(--accent);
    color: var(--secondary);
    transform: translateY(-3px);
}

/* Form side */
.contact-form-side {
    background: var(--background);
    padding: 48px 46px;
    display: inherit;
    align-items: center;
}

.contact-form-side h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: var(--secondary);
    margin: 0 0 8px;
}

.contact-form-lead {
    font-size: 16px;
    color: var(--text-light);
    margin: 0 0 28px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    font-family: inherit;
    color: var(--text);
    background: var(--light-bg);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--background);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.12);
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}


/* Map */
.contact-map {
    padding: 0 0 80px;
    background: var(--light-bg);
}

.contact-map-box {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(var(--secondary-rgb), 0.1);
}

.contact-map-box iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
}


/* ========================header scroll fix============== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    background: transparent;
    transition: all 0.4s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    padding: 10px 0;
}

/* Animation Keyframes */
@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Base class for all animated text */
.animate-text {
    opacity: 0;
    /* start hidden */
    animation: fadeSlideUp 1s forwards;
}

/* Delay helpers */
.animate-text.delay-1 {
    animation-delay: 0.5s;
    /* paragraph appears after heading */
}

.animate-text.delay-2 {
    animation-delay: 1s;
    /* buttons appear last */
}

.hero-content h1 span:nth-child(1) {
    animation-delay: 0s;
}

.hero-content h1 span:nth-child(2) {
    animation-delay: 0.3s;
}

.hero-content h1 span:nth-child(3) {
    animation-delay: 0.6s;
}

.about-img {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.about-img img {
    width: 100%;
    transition: transform 0.5s ease;
}

.about-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background 0.4s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-img:hover::after {
    background: rgba(255, 255, 255, 0.15);
    /* subtle light overlay */
}


/* =========================================fixed buttons=============================== */
.sticky-contact-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.fixed-buttons {
    /* margin-bottom: 75px; */
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Common button style */
.sticky-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



/* WhatsApp button */
.whatsapp-btn {
        background: linear-gradient(45deg, #00d351, #00740f);
}

.whatsapp-btn:hover {
    box-shadow: 0 0 0 5px #00740f50;
}

.call-btn {
    background: linear-gradient(45deg, #027ff5, #0d4584);
}

.call-btn:hover {
    box-shadow: 0 0 0 5px #0d458450;
}

.sticky-btn i {
    transition: transform 0.3s ease;
}

.sticky-btn:hover i {
    transform: rotate(-8deg) scale(1.1);
}

/* .sticky-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
} */

.extra-mobile-content {
    display: none;
}

.extra-mobile-content-2 {
    display: none;
}

.grecaptcha-badge {
    position: fixed !important;
    z-index: 999999 !important;
    right: auto !important;
    left: -186px !important;
    bottom: 14px !important;
    top: auto !important;
    transition: left 0.3s ease !important;
}

.grecaptcha-badge:hover {
    left: 4px !important;
    right: auto !important;
}

/* Smooth scroll offset for anchor links on service page */
section[id] {
    scroll-margin-top: 100px;
}

/* ========================= Footer CTA / Contact Form ========================= */
.footer-cta {
    padding: 90px 0;
    background: url(../images/footer-cta-bg.png);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.footer-cta .container {
    position: relative;
    z-index: 1;
}

#error-message:empty {
    display: none;
}

.footer-contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
}

/* Left side — Write us */
.footer-form-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-right: 70px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-form-left h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--background);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
}

.footer-form-line {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.footer-contact-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-contact-form .form-field label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact-form .form-field input {
    width: 100%;
    border: none;
    background: transparent;
    color: var(--background);
    font-size: 16px;
    font-family: 'Quicksand', sans-serif;
    padding: 8px 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    outline: none;
    transition: border-color 0.3s ease;
}

.footer-contact-form .form-field input::placeholder {
    color: rgba(255, 255, 255, 0.90);
}

.footer-contact-form .form-field input:focus {
    border-bottom-color: var(--primary);
}

/* Custom checkbox — I am not a robot */
.form-check {
    position: relative;
    margin-top: 8px;
}

.form-check input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.not-robot-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.check-box {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.check-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.form-check input[type="checkbox"]:checked + .not-robot-label .check-box {
    background: var(--accent);
    border-color: var(--accent);
}

.form-check input[type="checkbox"]:checked + .not-robot-label .check-box::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 4px;
    height: 9px;
    border: solid var(--secondary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Right side — Message + Send */
.footer-form-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 70px;
    min-height: 100%;
}

.message-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.90);
    letter-spacing: 0.5px;
    margin: 0;
}

.footer-form-right textarea {
    flex: 1;
    min-height: 160px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--background);
    font-size: 15px;
    font-family: 'Quicksand', sans-serif;
    resize: none;
    outline: none;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.footer-form-right textarea::placeholder {
    color: rgba(255, 255, 255, 0.90);
}

.footer-form-right textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.06);
}


/* Error message style */
.danger {
    color: #ffcfcf;
    background: rgba(255, 82, 82, 0.12);
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 100, 100, 0.35);
}

/* ========================= About Intro (New Style) ========================= */
.about-intro {
padding: 80px 0;
}

.about-intro-panel {
    position: relative;
}



.about-intro-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Text side */
.about-intro-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.08);
    border: 1px solid rgba(var(--primary-rgb), 0.25);
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.about-intro-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.about-intro-desc {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(11, 21, 31, 0.65);
    margin: 0 0 30px;
    font-weight: 500;
}

.about-intro-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-intro-points li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(11, 21, 31, 0.78);
    background: rgba(var(--primary-rgb), 0.06);
    border: 1px solid rgba(var(--primary-rgb), 0.18);
    padding: 9px 16px;
    border-radius: 50px;
}

.about-intro-points li i {
    color: var(--primary);
    font-size: 11px;
}

/* Media side */
.about-intro-media {
    position: relative;
}

.about-intro-media::before {
    content: "";
    position: absolute;
    inset: 8px -8px auto auto;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 24px;
    transform: translate(14px, 14px);
    z-index: 0;
}

.about-intro-media img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(11, 21, 31, 0.18);
    transition: transform 0.5s ease;
}

.about-intro-media:hover img {
    transform: translateY(-6px);
}

.about-intro-badge {
    position: absolute;
    z-index: 2;
    bottom: 22px;
    left: -18px;
    background: #fff4d2;
    border: solid 1px #ffe591;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    padding: 12px 22px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(11, 21, 31, 0.12);
}

/* ======================== Service Slider Header Navigation ======================== */

.service-arrows {
    display: flex !important;
    justify-content: flex-end;
    gap: 16px;
    margin-bottom: 0px;
    margin-top: 26px;
}

/* Base Arrow Style */
.slide-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: var(--background);
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

/* Hover Effect — gold accent */
.slide-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Active State */
.slide-arrow:active {
    transform: translateY(0);
}

/* Ensure font awesome loads inside */
.slide-arrow i {
    pointer-events: none;
}