* {
    box-sizing: border-box;
}

body {
    margin:0;
    font-family:'Poppins', sans-serif;
    background:#0b1c26;
    color:white;
}


/* HEADER */
/* HEADER FIX */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #000;
}

/* LEFT LOGO AREA */
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-area {
    background: rgba(255,255,255,0.05);
    padding: 6px 10px;
    border-radius: 8px;
}

.logo-area img {
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.3));
}

.logo-area img {
    width: 120px;   /* bigger */
    height: auto;
    object-fit: contain;
}

.logo-area img {
    padding: 4px;
    border-radius: 6px;
}
.company-text h2 {
    font-size: 20px;
    margin: 0;
}

.company-text p {
    font-size: 11px;
    margin: 0;
}




/* TEXT */
.logo-text h1,
.logo-text .site-title {
    font-size: 26px;
    margin: 0;
    color: white;
    font-weight: 700;
}

.logo-text span {
    color: #ff8c00;
}

.logo-text p {
    font-size: 11px;
    opacity: 0.6;
    margin: 0;
}

/* NAV CENTER */
.nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* NAV LINKS */
.nav a {
    position: relative;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 5px 0;
    transition: 0.3s;
}

/* HOVER COLOR */
.nav a:hover {
    color: #ff8c00;
}

.nav a.active {
    color: #ff8c00;
}

/* UNDERLINE EFFECT */
.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #ff8c00;
    transition: 0.3s;
}

/* ANIMATE LINE */
.nav a:hover::after {
    width: 100%;
}

.nav a.active::after {
    width: 100%;
}

.nav-item {
    position: relative;
}

.dropdown-toggle {
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 245px;
    max-width: calc(100vw - 40px);
    padding: 10px;
    background: #071a24;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    box-shadow: 0 18px 35px rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.25s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    color: #fff;
    white-space: nowrap;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(255,140,0,0.14);
    color: #ff8c00;
}

/* SOCIAL RIGHT */
.social {
    display: flex;
    gap: 10px;
}

.social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: white;
    font-size: 14px;
}

/* COLORS */
.social a:nth-child(1) { background: #E1306C; }
.social a:nth-child(2) { background: #1877F2; }
.social a:nth-child(3) { background: #0A66C2; }
.social a:nth-child(4) { background: #FF0000; }

/* HERO */

.hero {
    position: relative;
    height: 65vh;
    overflow: hidden;
}





.hero h1 {
    font-size:48px;
    line-height:1.2;
    
}

.hero h1 {
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hero span {
    color:#ff8c00;
}

.hero p {
    margin-top:10px;
    opacity:0.8;
}
.hero h1 {
    font-size: 52px;
    font-weight: bold;
    line-height: 1.2;
}

.hero span {
    color: #ff8c00;
}

.hero p {
    margin-top: 10px;
    font-size: 15px;
    opacity: 0.8;
}

/* BUTTON */
.btn {
    background: linear-gradient(45deg,#ff8c00,#ffaa33);
    color: black;
    font-weight: bold;
    padding: 14px 32px;
    border-radius: 6px;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,140,0,0.5);
}
/* SECTION */
.section {
    padding:90px 20px;
    text-align:center;
}

.section-dark {
    background:#081821;
}

/* GRID */
.grid {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
    gap:25px;
    margin-top:30px;
}

/* CARD PREMIUM */
.card {
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.055);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 28px;
    border-radius: 8px;
    text-align: left;
    transition: 0.3s ease;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,140,0,0.12), transparent);
    opacity: 0;
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,140,0,0.42);
    box-shadow: 0 18px 34px rgba(0,0,0,0.34);
}

.card:hover::before {
    opacity: 1;
}

.card h3,
.card p {
    position: relative;
}

.card h3 {
    margin: 0 0 10px;
}

.card p {
    margin: 0;
    line-height: 1.65;
    opacity: 0.78;
}

/* CONTACT LINKS */
.section a {
    color:#00c6ff;
    text-decoration:none;
}

/* FOOTER */
.footer {
    padding:30px;
    text-align:center;
    background:#071a26;
}

/* WHATSAPP */
/* MAIN BUTTON */
.whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;

    height: 60px;
    padding: 0 18px;
    background: #25D366;

    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
    z-index: 1000;

    box-shadow: 0 0 20px rgba(37,211,102,0.5);
    transition: 0.3s;

    animation: float 2s infinite ease-in-out;
}



@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
    100% { transform: translateY(0); }
}





/* FLOAT */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

/* TEXT (hidden initially) */
.wa-text {
    color: white;
    font-size: 14px;
    opacity: 0;
    width: 0;
    overflow: hidden;
    transition: 0.3s;
}

/* EXPAND ON HOVER */
.whatsapp:hover .wa-text {
    opacity: 1;
    width: auto;
}

/* BUTTON HOVER */
.whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(37,211,102,0.9);
}

/* RED NOTIFICATION DOT */
.wa-dot {
    position: absolute;
    top: 8px;
    right: 8px;

    width: 10px;
    height: 10px;
    background: red;
    border-radius: 50%;

    animation: pulse 1.5s infinite;
}

/* PULSE ANIMATION */
@keyframes pulse {
    0% { transform: scale(1); opacity:1; }
    50% { transform: scale(1.6); opacity:0.5; }
    100% { transform: scale(1); opacity:1; }
}



/* IMAGE GRID */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
    margin-top: 30px;
}

/* IMAGE BOX */
.img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;   /* 👈 CHANGE */
    background: #0b1c24;   /* 👈 FILL EMPTY SPACE */
    display: block;
    transition: 0.4s;
}

/* IMAGE STYLE */
.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: 0.4s;
}

/* HOVER EFFECT */
.img-box:hover img {
    transform: scale(1.1);
}





/*next edit with galary*/

.img-box {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.img-box a {
    display: block;
    position: relative;
}

/* OVERLAY */
.img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    opacity: 0;
    transition: 0.4s;
}

/* TEXT */
.img-overlay h3 {
    margin: 0;
    font-size: 16px;
}

/* HOVER EFFECT */
.img-box:hover .img-overlay {
    opacity: 1;
}




.img-box:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}


/*end galary edit*/


/*latest gallery*/


.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.product-card {
    background: #0b1c24;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
    display: block;
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    padding: 20px;
    background: #0b1c24;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* bottom info */
.product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 15px;
}

.product-info .arrow {
    font-size: 18px;
    opacity: 0.7;
}




















/* FORM */
/* FORM CONTAINER */
.contact-form {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);

    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* INPUT STYLE */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: white;
    font-size: 14px;
    outline: none;
}

/* PLACEHOLDER */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

/* FOCUS EFFECT */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00c6ff;
    box-shadow: 0 0 10px rgba(0,198,255,0.4);
}

/* BUTTON */
.contact-form button {
    padding: 14px;
    background: linear-gradient(45deg, #ff8c00, #ffaa33);
    color: black;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.contact-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255,140,0,0.5);
}

.contact-form {
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}


/* FOOTER MAIN */
.footer {
    background: linear-gradient(180deg, #071a26, #031018);
    padding: 50px 20px 20px;
    color: white;
}

/* CONTAINER */
.footer-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 30px;
}

/* BOX */
.footer-box h3,
.footer-box h4 {
    margin-bottom: 10px;
}

.footer-box p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 8px;
}

/* LINKS */
.footer-box a {
    color: #00c6ff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-box a:hover {
    color: #ff8c00;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    opacity: 0.6;
}

.footer-box h3 {
    color: #ff8c00;
}



/* SOCIAL ICONS */
/* SOCIAL CONTAINER */
.social {
    display: flex;
    gap: 12px;
}

/* ICON BASE */
.social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;
    color: white;
    font-size: 16px;
    text-decoration: none;

    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* INSTAGRAM */
.social a:nth-child(1) {
    background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af);
}

/* FACEBOOK */
.social a:nth-child(2) {
    background: #1877F2;
}

/* LINKEDIN */
.social a:nth-child(3) {
    background: #0A66C2;
}

/* YOUTUBE */
.social a:nth-child(4) {
    background: #FF0000;
}

/* HOVER EFFECT */
.social a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* GLOW ANIMATION */
.social a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    top: -100%;
    left: 0;
    transition: 0.4s;
}

/* LIGHT SWEEP */
.social a:hover::before {
    top: 100%;
}




/* STRIP */
.feature-strip {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: -40px;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

/* BOX */
.feature-box {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 14px;
    color: white;

    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

/* HOVER */
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}




/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

    /* HEADER */
    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .nav {
        flex-wrap: wrap;
        gap: 10px;
        align-items: flex-start;
        width: 100%;
    }

    .nav-item.dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        width: auto;
    }

    .dropdown-menu {
        display: none;
        position: static;
        width: 100%;
        min-width: 0;
        margin-top: 8px;
        padding: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        white-space: normal;
    }

    .social {
        align-self: flex-end;
    }

    /* HERO */
    .hero {
        text-align: center;
        padding: 40px 20px;
        height: auto;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    /* FEATURE STRIP */
    .feature-strip {
        flex-direction: column;
        margin-top: 20px;
    }

    .feature-box {
        width: 100%;
        text-align: center;
    }

    /* GRID (SERVICES & IMAGES) */
    .grid,
    .image-grid {
        grid-template-columns: 1fr;
    }

    /* FORM */
    .contact-form {
        padding: 20px;
    }

    /* FOOTER */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

}

@media(max-width:768px) {

.hero-content {
    left: 20px;
    right: 20px;
    max-width: 100%;
}

.hero-content h1 {
    font-size: 32px;
}

.hero-buttons {
    flex-direction: column;
}
}


/* HERO */
.hero {
    position: relative;
    height: 65vh;
    overflow: hidden;
}

/* SLIDER */
.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* EACH IMAGE */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* ACTIVE IMAGE */
.slide.active {
    opacity: 1;
    z-index: 1;
}


/* ZOOM EFFECT */
.slide {
    transform: scale(1);
}

.slide.active {
    opacity: 1;
    transform: scale(1.05);
    z-index: 1; 
}

/* DOTS */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.slider-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: white;
    margin: 5px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.5;
}

.slider-dots span.active {
    opacity: 1;
    background: #ff8c00;
}

/* ARROWS */
.slider-arrows span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: white;
    cursor: pointer;
    padding: 10px;
    z-index: 2;
}

.slider-arrows span:first-child {
    left: 20px;
}

.slider-arrows span:last-child {
    right: 20px;
}








/* ===== HERO LAYER FIX ===== */

.hero {
    position: relative;
}

/* SLIDER IMAGE */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transition: opacity 1s ease-in-out;

    z-index: 1; /* BACK */
}

.slide.active {
    opacity: 1;
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    top: 0;
    left: 0;

    z-index: 5; /* MIDDLE */
}

/* TEXT + BUTTON */
.hero-content {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    color: white;

    z-index: 10; /* FRONT */
}











/* HERO CONTENT POSITION */
.hero-content {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 500px;
}

/* HEADING */
.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content span {
    color: #ff8c00;
}

/* TEXT */
.hero-content p {
    margin: 20px 0;
    font-size: 16px;
    opacity: 0.9;
}

/* BUTTONS CONTAINER */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* PRIMARY BUTTON */
.btn-primary {
    background: #ff8c00;
    color: black;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #ffaa33;
}

/* SECONDARY BUTTON */
.btn-secondary {
    border: 1px solid white;
    color: white;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: black;
}







.hero-content {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}






section {
    padding: 90px 20px;
}
section:nth-child(even) {
    background: #111;
}
.service-box {
    transition: 0.3s;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}
.image-grid img {
    transition: 0.4s;
}

.image-grid img:hover {
    transform: scale(1.05);
}
.contact-form input,
.contact-form textarea {
    border: none;
    outline: none;
    padding: 12px;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 6px;
}

.contact-form button {
    background: #ff8c00;
    border: none;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

html {
    scroll-behavior: smooth;
}


#contact {
    scroll-margin-top: 100px;
}


/* FORM BOX */
.contact-form {
    max-width: 600px;
    margin: auto;
    padding: 40px;
    border-radius: 12px;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.1);

    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;

    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);

    background: rgba(255,255,255,0.03);
    color: white;

    transition: 0.3s;
}

/* FOCUS EFFECT on contact and mobiles */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff8c00;
    box-shadow: 0 0 10px rgba(255,140,0,0.5);
}
.contact-form button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;

    background: linear-gradient(45deg, #ff8c00, #ffaa33);
    color: black;
    font-weight: bold;

    cursor: pointer;
    transition: 0.3s;
}

/* HOVER */
.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255,140,0,0.4);
}
#contact {
    background: radial-gradient(circle at center, #0b2a33, #051820);
}
#contact h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

#contact p {
    opacity: 0.8;
}

/* FOOTER TEXT HOVER */
.footer p,
.footer a {
    transition: all 0.3s ease;
}

/* PHONE / EMAIL HOVER */
.footer a:hover {
    color: #ff8c00;
    transform: translateX(5px);
}

/* ADDRESS HOVER */
.footer p:hover {
    color: #00ffcc;
    transform: translateX(5px);
}

/* OPTIONAL: ADD GLOW EFFECT */
.footer a:hover,
.footer p:hover {
    text-shadow: 0 0 8px rgba(255,140,0,0.6);
}

.footer a {
    position: relative;
}

.footer a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #ff8c00;
    bottom: -3px;
    left: 0;
    transition: 0.3s;
}

.footer a:hover::after {
    width: 100%;
}






/* top bottom buttons */
.scroll-buttons {
    position: fixed;
    left: 20px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

/* BUTTON */
.scroll-buttons {
    position: fixed;
    left: 20px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;

    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

/* ACTIVE STATE */
.scroll-buttons.show {
    opacity: 1;
    pointer-events: auto;
}

.scroll-btn {
    min-width: 92px;
    min-height: 38px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #ff8c00;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0,0,0,0.32);
    transition: 0.3s;
}

/* HOVER */
.scroll-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(255,140,0,0.6);
}


/* ===== INDUSTRIES & FAQ ===== */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.industry-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.055);
    text-align: left;
    transition: 0.3s ease;
}

.industry-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,140,0,0.12), transparent);
    opacity: 0;
    transition: 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,140,0,0.42);
    box-shadow: 0 18px 34px rgba(0,0,0,0.34);
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-card i {
    position: relative;
    color: #ff8c00;
    font-size: 28px;
    margin-bottom: 18px;
}

.industry-card h3,
.industry-card p {
    position: relative;
}

.industry-card h3 {
    margin: 0 0 10px;
}

.industry-card p {
    margin: 0;
    line-height: 1.65;
    opacity: 0.78;
}

.faq-section {
    background: #0b1c24;
}

.faq-list {
    max-width: 950px;
    margin: 34px auto 0;
    display: grid;
    gap: 14px;
    text-align: left;
}

.faq-list details {
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.055);
    overflow: hidden;
}

.faq-list summary {
    position: relative;
    padding: 18px 54px 18px 20px;
    cursor: pointer;
    color: #fff;
    font-weight: 700;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #ff8c00;
    color: #000;
    font-weight: 700;
}

.faq-list details[open] summary::after {
    content: "-";
}

.faq-list p {
    margin: 0;
    padding: 0 20px 20px;
    line-height: 1.7;
    opacity: 0.78;
}


/* ===== PREMIUM HOME HERO ===== */
.hero {
    height: 76vh;
    min-height: 620px;
    isolation: isolate;
    background: #071a24;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3,12,18,0.92) 0%, rgba(3,12,18,0.74) 36%, rgba(3,12,18,0.38) 68%, rgba(3,12,18,0.72) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.44) 100%);
    z-index: 6;
    pointer-events: none;
}

.slide {
    filter: saturate(0.92) contrast(1.06);
}

.slide.active {
    transform: scale(1.035);
}

.hero-overlay {
    background: radial-gradient(circle at 72% 46%, rgba(255,140,0,0.13), transparent 30%);
    z-index: 5;
}

.hero-content {
    left: 8%;
    max-width: 720px;
    z-index: 12;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding: 8px 12px;
    border: 1px solid rgba(255,140,0,0.38);
    border-radius: 6px;
    background: rgba(0,0,0,0.32);
    color: #ffb45a;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 690px;
    font-size: 58px;
    line-height: 1.08;
    margin: 0;
    text-shadow: 0 18px 35px rgba(0,0,0,0.55);
}

.hero-content p {
    max-width: 650px;
    font-size: 17px;
    line-height: 1.75;
    opacity: 0.9;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 620px;
    margin-top: 26px;
}

.hero-proof div {
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    background: rgba(7,26,36,0.62);
    backdrop-filter: blur(10px);
}

.hero-proof strong,
.hero-proof span {
    display: block;
}

.hero-proof strong {
    color: #ff8c00;
    font-size: 20px;
    line-height: 1.2;
}

.hero-proof span {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.35;
    opacity: 0.82;
}

.slider-dots {
    bottom: 28px;
}

.slider-dots span {
    width: 28px;
    height: 4px;
    border-radius: 999px;
}

.slider-arrows span {
    z-index: 13;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    background: rgba(0,0,0,0.28);
    backdrop-filter: blur(8px);
}


/* ===== FINAL MOBILE POLISH ===== */
@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    body {
        font-size: 14px;
    }

    .header {
        padding: 12px 16px;
        align-items: center;
        gap: 14px;
    }

    .logo-area {
        width: 100%;
        justify-content: center;
        gap: 8px;
        padding: 8px;
    }

    .logo-area img {
        width: 74px;
        padding: 2px;
    }

    .logo-text h1,
    .logo-text .site-title {
        font-size: 20px;
        line-height: 1.12;
    }

    .logo-text p {
        font-size: 9px;
        line-height: 1.35;
        opacity: 0.72;
    }

    .nav {
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: 8px 14px;
    }

    .nav a {
        font-size: 14px;
        padding: 8px 3px;
    }

    .nav-item.dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-toggle {
        display: inline-block;
    }

    .dropdown-menu {
        width: 100%;
        max-width: 100%;
        margin-top: 8px;
        border-radius: 8px;
        background: #071a24;
        box-shadow: none;
    }

    .dropdown-menu a {
        padding: 12px;
        text-align: left;
        white-space: normal;
    }

    .social {
        width: 100%;
        justify-content: center;
        align-self: center;
        gap: 10px;
    }

    .social a {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .hero {
        height: 620px;
        min-height: 620px;
        padding: 0;
        text-align: center;
    }

    .slide {
        object-position: center;
        filter: saturate(1.02) contrast(1.02) brightness(1.18);
    }

    .hero-overlay {
        background: radial-gradient(circle at 50% 42%, rgba(255,140,0,0.08), transparent 44%);
    }

    .hero::after {
        background:
            linear-gradient(180deg, rgba(3,12,18,0.18) 0%, rgba(3,12,18,0.46) 52%, rgba(3,12,18,0.74) 100%),
            linear-gradient(90deg, rgba(3,12,18,0.46) 0%, rgba(3,12,18,0.24) 50%, rgba(3,12,18,0.36) 100%);
    }

    .hero-content {
        left: 16px;
        right: 16px;
        max-width: none;
        text-align: center;
    }

    .hero-kicker {
        font-size: 11px;
        line-height: 1.4;
        padding: 7px 10px;
    }

    .hero-content h1,
    .hero h1 {
        font-size: 32px;
        line-height: 1.16;
        margin-bottom: 12px;
    }

    .hero-content p,
    .hero p {
        font-size: 14px;
        line-height: 1.55;
        margin: 14px 0;
    }

    .hero-buttons {
        width: 100%;
        max-width: 280px;
        margin: 20px auto 0;
        flex-direction: column;
        gap: 12px;
    }

    .hero-proof {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 22px auto 0;
        gap: 8px;
    }

    .hero-proof div {
        padding: 10px 12px;
    }

    .hero-proof strong {
        font-size: 16px;
    }

    .hero-proof span {
        font-size: 11px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 13px 18px;
        text-align: center;
    }

    .slider-arrows span {
        font-size: 22px;
        padding: 8px;
    }

    .slider-arrows span:first-child {
        left: 8px;
    }

    .slider-arrows span:last-child {
        right: 8px;
    }

    .feature-strip {
        margin-top: 0;
        padding: 22px 16px 0;
    }

    .feature-box {
        padding: 14px 16px;
    }

    .section,
    section {
        padding: 58px 16px;
    }

    .section h2 {
        font-size: 26px;
        line-height: 1.24;
    }

    .section p {
        line-height: 1.65;
    }

    .grid,
    .product-grid,
    .image-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .card {
        padding: 22px;
        border-radius: 8px;
    }

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

    .industry-card {
        padding: 22px;
        text-align: center;
    }

    .faq-list {
        gap: 12px;
    }

    .faq-list summary {
        padding: 16px 48px 16px 16px;
        line-height: 1.45;
    }

    .faq-list p {
        padding: 0 16px 18px;
    }

    .product-grid {
        margin-top: 28px;
    }

    .product-card {
        border-radius: 8px;
    }

    .product-card img {
        height: 190px;
        padding: 16px;
    }

    .product-info {
        padding: 14px 16px;
        gap: 12px;
        font-size: 14px;
    }

    .contact-form {
        width: 100%;
        max-width: 100%;
        padding: 22px 16px;
        border-radius: 8px;
    }

    .footer {
        padding: 38px 16px 18px;
    }

    .footer-container {
        gap: 24px;
    }

    .footer-box p {
        font-size: 13px;
        line-height: 1.55;
    }

    .whatsapp {
        right: 14px;
        bottom: 16px;
        height: 52px;
        padding: 0 14px;
    }

    .whatsapp .wa-text {
        display: none;
    }

    .scroll-buttons {
        left: 12px;
        bottom: 16px;
        gap: 8px;
    }

    .scroll-btn {
        min-width: 76px;
        min-height: 34px;
        padding: 8px 10px;
        font-size: 12px;
    }
}

@media (max-width: 420px) {
    .logo-area img {
        width: 64px;
    }

    .logo-text h1,
    .logo-text .site-title {
        font-size: 18px;
    }

    .logo-text p {
        font-size: 8px;
    }

    .nav {
        gap: 6px 11px;
    }

    .nav a {
        font-size: 13px;
    }

    .hero {
        height: 650px;
        min-height: 650px;
    }

    .hero-content h1,
    .hero h1 {
        font-size: 28px;
    }
}


/* ===== PREMIUM BELOW-HERO SECTIONS ===== */
body {
    background:
        radial-gradient(circle at 12% 18%, rgba(255,140,0,0.08), transparent 24%),
        radial-gradient(circle at 88% 45%, rgba(0,198,255,0.08), transparent 26%),
        linear-gradient(180deg, #071822 0%, #0b1c26 42%, #06141d 100%);
}

.section {
    position: relative;
    overflow: hidden;
    padding: 96px 20px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0)),
        #0b1c24;
}

.section-dark {
    background:
        radial-gradient(circle at 18% 8%, rgba(255,140,0,0.1), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(0,198,255,0.08), transparent 26%),
        linear-gradient(180deg, #071a24 0%, #081821 100%);
}

.section::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: min(1120px, calc(100% - 32px));
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(255,140,0,0.32), rgba(0,198,255,0.18), transparent);
}

.section h2 {
    position: relative;
    display: inline-block;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 34px;
    line-height: 1.18;
}

.section h2::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff8c00, rgba(0,198,255,0.85));
}

.section > p,
.section .product-section + p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.78);
}

.service-box {
    background: linear-gradient(180deg, #06141d, #081821);
}

.service-box:hover {
    transform: none;
    box-shadow: none;
}

.grid {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.card,
.industry-card,
.service-card,
.detail-card,
.faq-list details,
.product-card,
.feature-box {
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.07),
        0 18px 45px rgba(0,0,0,0.24);
}

.card,
.industry-card {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.072), rgba(255,255,255,0.035)),
        rgba(7,26,36,0.84);
}

.card:hover,
.industry-card:hover {
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.09),
        0 22px 50px rgba(0,0,0,0.36),
        0 0 0 1px rgba(255,140,0,0.22);
}

.feature-strip {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -6px;
}

.feature-box {
    min-width: 220px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035)),
        rgba(7,26,36,0.76);
    border-color: rgba(255,255,255,0.12);
}

.product-section {
    max-width: 1120px;
    margin: auto;
}

.product-grid {
    gap: 28px;
}

.product-card {
    border: 1px solid rgba(255,255,255,0.1);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)),
        #071a24;
}

.product-card img {
    background:
        radial-gradient(circle at center, rgba(255,140,0,0.08), transparent 42%),
        #071a24;
}

.product-info {
    background: rgba(0,0,0,0.16);
}

.industries-section {
    background:
        radial-gradient(circle at 18% 16%, rgba(255,140,0,0.12), transparent 28%),
        radial-gradient(circle at 82% 34%, rgba(0,198,255,0.08), transparent 24%),
        linear-gradient(180deg, #06141d 0%, #081821 100%);
}

.faq-section {
    background:
        radial-gradient(circle at 80% 14%, rgba(255,140,0,0.08), transparent 24%),
        linear-gradient(180deg, #0b1c24 0%, #071a24 100%);
}

.faq-list details {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.066), rgba(255,255,255,0.028)),
        rgba(7,26,36,0.82);
}

#contact {
    background:
        radial-gradient(circle at 50% 6%, rgba(255,140,0,0.12), transparent 24%),
        linear-gradient(180deg, #071a24 0%, #051820 100%);
}

#contact .contact-form {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035)),
        rgba(7,26,36,0.86);
    border-color: rgba(255,255,255,0.13);
}

@media (max-width: 768px) {
    .section {
        padding: 64px 16px;
    }

    .section h2 {
        font-size: 27px;
    }

    .feature-strip {
        margin-bottom: 0;
    }

    .feature-box {
        min-width: 0;
    }
}


/* ===== LIGHTER PREMIUM HOME POLISH ===== */
body {
    background:
        radial-gradient(circle at 14% 20%, rgba(255,180,90,0.16), transparent 28%),
        radial-gradient(circle at 84% 34%, rgba(64,190,255,0.16), transparent 30%),
        linear-gradient(180deg, #0c2430 0%, #102d39 34%, #0a1b25 100%);
}

.section {
    background:
        radial-gradient(circle at 16% 8%, rgba(255,180,90,0.12), transparent 26%),
        radial-gradient(circle at 86% 18%, rgba(79,200,255,0.12), transparent 28%),
        linear-gradient(180deg, #102b38 0%, #0b202c 100%);
}

.section-dark {
    background:
        radial-gradient(circle at 18% 8%, rgba(255,170,80,0.14), transparent 30%),
        radial-gradient(circle at 82% 24%, rgba(64,190,255,0.12), transparent 26%),
        linear-gradient(180deg, #0d2835 0%, #0a1d28 100%);
}

.section h2 {
    color: #f7fbff;
    text-shadow: 0 10px 28px rgba(0,0,0,0.22);
}

.section > p {
    color: rgba(235,247,255,0.82);
}

.card,
.industry-card,
.faq-list details,
.product-card,
.feature-box {
    border-color: rgba(255,255,255,0.16);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.055)),
        rgba(13,46,60,0.86);
}

.card:hover,
.industry-card:hover,
.product-card:hover,
.feature-box:hover {
    border-color: rgba(255,170,80,0.5);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.12),
        0 24px 55px rgba(0,0,0,0.34),
        0 0 0 1px rgba(255,170,80,0.18);
}

.feature-strip {
    margin-top: -34px;
}

.feature-box {
    color: #f7fbff;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0.07)),
        rgba(14,50,64,0.88);
}

.product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.product-card {
    border-radius: 10px;
}

.product-card img {
    height: 205px;
    background:
        radial-gradient(circle at center, rgba(255,170,80,0.14), transparent 46%),
        linear-gradient(180deg, #123240, #0c2430);
}

.product-info {
    background: rgba(255,255,255,0.045);
}

.industries-section {
    background:
        radial-gradient(circle at 18% 16%, rgba(255,170,80,0.16), transparent 30%),
        radial-gradient(circle at 82% 34%, rgba(64,190,255,0.14), transparent 28%),
        linear-gradient(180deg, #0e2a36 0%, #0b202c 100%);
}

.faq-section {
    background:
        radial-gradient(circle at 80% 14%, rgba(255,170,80,0.12), transparent 26%),
        radial-gradient(circle at 10% 88%, rgba(64,190,255,0.1), transparent 28%),
        linear-gradient(180deg, #112e3b 0%, #0a1d28 100%);
}

#contact {
    background:
        radial-gradient(circle at 50% 6%, rgba(255,170,80,0.16), transparent 28%),
        radial-gradient(circle at 8% 90%, rgba(64,190,255,0.1), transparent 24%),
        linear-gradient(180deg, #0d2835 0%, #071b25 100%);
}

@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .feature-strip {
        margin-top: 0;
    }

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

    .product-card img {
        height: 190px;
    }
}


/* ===== LIGHT COLORFUL HOME SECTIONS ===== */
body.home-page {
    background:
        linear-gradient(180deg, #0b2330 0%, #0b2330 34vh, #eef7fb 34vh, #f7fbfd 100%);
}

.home-page .service-box {
    background: linear-gradient(180deg, #eaf7fb 0%, #f8fbfd 100%);
}

.home-page .section,
.home-page .section-dark,
.home-page .industries-section,
.home-page .faq-section,
.home-page #contact {
    color: #173243;
    border-top: 1px solid rgba(24, 92, 120, 0.1);
    background:
        linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(237,248,252,0.98) 50%, rgba(255,247,232,0.96) 100%);
}

.home-page .section:nth-of-type(even),
.home-page .section-dark {
    background:
        linear-gradient(135deg, #f7fbfd 0%, #edf8fc 46%, #fff4df 100%);
}

.home-page .section h2 {
    color: #123348;
    text-shadow: none;
}

.home-page .section h2::after {
    background: linear-gradient(90deg, #f4a62f, #25b8d7, #3478c9);
    box-shadow: 0 8px 18px rgba(37, 184, 215, 0.18);
}

.home-page .section > p,
.home-page .section > p[style],
.home-page #contact p {
    color: #617786 !important;
    opacity: 1 !important;
}

.home-page .grid {
    max-width: 1160px;
}

.home-page .card,
.home-page .industry-card,
.home-page .faq-list details,
.home-page .product-card,
.home-page .feature-box,
.home-page #contact .contact-form {
    color: #173243;
    border: 1px solid rgba(26, 122, 160, 0.16);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,252,254,0.96));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.9),
        0 18px 42px rgba(25, 74, 96, 0.13);
}

.home-page .card::before,
.home-page .industry-card::before {
    background: linear-gradient(120deg, transparent, rgba(244,166,47,0.18), rgba(37,184,215,0.14), transparent);
}

.home-page .card:hover,
.home-page .industry-card:hover,
.home-page .product-card:hover,
.home-page .feature-box:hover,
.home-page .faq-list details:hover {
    border-color: rgba(244, 166, 47, 0.55);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.95),
        0 24px 52px rgba(24, 86, 116, 0.18),
        0 0 0 1px rgba(37,184,215,0.12);
}

.home-page .card h3,
.home-page .industry-card h3,
.home-page .product-info span:first-child,
.home-page .faq-list summary {
    color: #123348;
}

.home-page .card p,
.home-page .industry-card p,
.home-page .faq-list p {
    color: #617786;
    opacity: 1;
}

.home-page .feature-strip {
    max-width: 1160px;
    gap: 16px;
    margin-top: -28px;
}

.home-page .feature-box {
    flex: 1 1 240px;
    min-width: 0;
    font-weight: 700;
    text-align: center;
    background:
        linear-gradient(135deg, #ffffff 0%, #effaff 55%, #fff6e7 100%);
}

.home-page .product-section {
    max-width: 1240px;
}

.home-page .product-card {
    border-radius: 10px;
    overflow: hidden;
}

.home-page .product-card img {
    background:
        linear-gradient(135deg, #ecf8fc 0%, #ffffff 52%, #fff2dc 100%);
}

.home-page .product-info {
    min-height: 58px;
    background: #ffffff;
    border-top-color: rgba(26, 122, 160, 0.13);
}

.home-page .industry-card i {
    color: #1678b8;
}

.home-page .faq-list summary::after {
    background: linear-gradient(135deg, #f4a62f, #ffd46a);
    color: #173243;
}

.home-page .contact-form input,
.home-page .contact-form textarea {
    color: #173243;
    background: #f7fbfd;
    border-color: rgba(26, 122, 160, 0.18);
}

.home-page .contact-form input::placeholder,
.home-page .contact-form textarea::placeholder {
    color: #8298a6;
}

.home-page .contact-form input:focus,
.home-page .contact-form textarea:focus {
    border-color: #25b8d7;
    box-shadow: 0 0 0 3px rgba(37, 184, 215, 0.16);
}

@media (min-width: 1024px) {
    .home-page .product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
    }

    .home-page .product-card img {
        height: 178px;
        padding: 15px;
    }

    .home-page .product-info {
        padding: 14px 15px;
        font-size: 14px;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .home-page .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .home-page .section,
    .home-page .section-dark,
    .home-page .industries-section,
    .home-page .faq-section,
    .home-page #contact {
        background:
            linear-gradient(180deg, #f7fbfd 0%, #eef8fc 52%, #fff7e9 100%);
    }

    .home-page .feature-strip {
        margin-top: 0;
        gap: 12px;
    }
}


/* ===== SITE-WIDE LIGHT PREMIUM THEME ===== */
body {
    background: #f5fafc;
    color: #173243;
}

.header {
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid rgba(24, 92, 120, 0.12);
    box-shadow: 0 12px 34px rgba(20, 67, 88, 0.1);
}

.logo-area {
    background: linear-gradient(135deg, #ffffff, #edf8fc);
    border: 1px solid rgba(24, 92, 120, 0.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.logo-area img,
.logo img {
    filter: drop-shadow(0 6px 12px rgba(20, 67, 88, 0.14));
}

.logo-text h1,
.logo-text .site-title,
.company-text h2 {
    color: #123348;
}

.logo-text p,
.company-text p {
    color: #617786;
    opacity: 1;
}

.logo-text span {
    color: #d88916;
}

.nav a {
    color: #173243;
}

.nav a:hover,
.nav a.active {
    color: #1678b8;
}

.nav a::after {
    background: linear-gradient(90deg, #f4a62f, #25b8d7);
}

.dropdown-menu {
    background: #ffffff;
    border-color: rgba(24, 92, 120, 0.14);
    box-shadow: 0 22px 44px rgba(20, 67, 88, 0.16);
}

.dropdown-menu a {
    color: #173243;
}

.dropdown-menu a:hover {
    background: #edf8fc;
    color: #1678b8;
}

.hero {
    background: #dff1f7;
}

.hero::after {
    background:
        linear-gradient(90deg, rgba(7,42,58,0.78) 0%, rgba(7,42,58,0.58) 38%, rgba(7,42,58,0.12) 70%, rgba(7,42,58,0.34) 100%),
        linear-gradient(180deg, rgba(255,255,255,0) 72%, rgba(245,250,252,0.9) 100%);
}

.slide {
    filter: saturate(1.05) contrast(1.02) brightness(1.07);
}

.hero-overlay {
    background:
        radial-gradient(circle at 72% 42%, rgba(255,202,104,0.22), transparent 34%),
        radial-gradient(circle at 22% 78%, rgba(37,184,215,0.14), transparent 34%);
}

.hero-content {
    color: #ffffff;
}

.hero-content h1,
.hero h1 {
    text-shadow: 0 16px 34px rgba(4, 24, 34, 0.42);
}

.hero-content span,
.hero span,
.hero-kicker {
    color: #ffd46a;
}

.hero-kicker {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.28);
}

.hero-content p,
.hero p {
    color: rgba(255,255,255,0.92);
}

.hero-proof div {
    color: #173243;
    background: rgba(255,255,255,0.82);
    border-color: rgba(255,255,255,0.72);
    box-shadow: 0 14px 34px rgba(5, 30, 42, 0.18);
}

.hero-proof strong {
    color: #1678b8;
}

.hero-proof span {
    color: #617786;
    opacity: 1;
}

.btn-primary,
.contact-form button {
    color: #173243;
    background: linear-gradient(135deg, #f4a62f, #ffd46a);
    box-shadow: 0 12px 26px rgba(216, 137, 22, 0.22);
}

.btn-primary:hover,
.contact-form button:hover {
    background: linear-gradient(135deg, #25b8d7, #76dff0);
    box-shadow: 0 14px 28px rgba(37, 184, 215, 0.24);
}

.btn-secondary {
    color: #ffffff;
    border-color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.08);
}

.btn-secondary:hover {
    color: #173243;
    background: #ffffff;
}

.slider-arrows span {
    color: #173243;
    background: rgba(255,255,255,0.82);
    box-shadow: 0 12px 26px rgba(20, 67, 88, 0.16);
}

.slider-dots span {
    background: rgba(255,255,255,0.72);
}

.slider-dots span.active {
    background: #25b8d7;
}

.section,
.section-dark,
.industries-section,
.faq-section,
#contact {
    color: #173243;
    background:
        linear-gradient(135deg, #ffffff 0%, #edf8fc 52%, #fff6e7 100%);
}

.section-dark,
.section:nth-of-type(even) {
    background:
        linear-gradient(135deg, #f7fbfd 0%, #edf8fc 48%, #fff2dc 100%);
}

.section h2 {
    color: #123348;
    text-shadow: none;
}

.section h2::after {
    background: linear-gradient(90deg, #f4a62f, #25b8d7, #3478c9);
}

.section > p,
.section p[style],
#contact p {
    color: #617786 !important;
    opacity: 1 !important;
}

.card,
.industry-card,
.faq-list details,
.product-card,
.feature-box,
.contact-form,
#contact .contact-form {
    color: #173243;
    border-color: rgba(26, 122, 160, 0.16);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,252,254,0.96));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.92),
        0 18px 42px rgba(25, 74, 96, 0.13);
}

.card h3,
.industry-card h3,
.product-info span:first-child,
.faq-list summary {
    color: #123348;
}

.card p,
.industry-card p,
.faq-list p {
    color: #617786;
    opacity: 1;
}

.card:hover,
.industry-card:hover,
.product-card:hover,
.feature-box:hover,
.faq-list details:hover {
    border-color: rgba(244, 166, 47, 0.55);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.95),
        0 24px 52px rgba(24, 86, 116, 0.18),
        0 0 0 1px rgba(37,184,215,0.12);
}

.product-card img {
    background:
        linear-gradient(135deg, #ecf8fc 0%, #ffffff 52%, #fff2dc 100%);
}

.product-info {
    background: #ffffff;
    border-top-color: rgba(26, 122, 160, 0.13);
}

.industry-card i {
    color: #1678b8;
}

.faq-list summary::after {
    color: #173243;
    background: linear-gradient(135deg, #f4a62f, #ffd46a);
}

.contact-form input,
.contact-form textarea {
    color: #173243;
    background: #f7fbfd;
    border: 1px solid rgba(26, 122, 160, 0.18);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #8298a6;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #25b8d7;
    box-shadow: 0 0 0 3px rgba(37, 184, 215, 0.16);
}

.footer {
    color: #173243;
    background:
        linear-gradient(135deg, #ffffff 0%, #edf8fc 54%, #fff2dc 100%);
    border-top: 1px solid rgba(24, 92, 120, 0.12);
}

.footer-box h3,
.footer-box h4 {
    color: #123348;
}

.footer-box p,
.footer-bottom {
    color: #617786;
    opacity: 1;
}

.footer-box a,
.footer a {
    color: #1678b8;
}

.footer-box a:hover,
.footer a:hover,
.footer p:hover {
    color: #d88916;
    text-shadow: none;
}

.footer-bottom {
    border-top-color: rgba(24, 92, 120, 0.12);
}

@media (max-width: 768px) {
    .hero::after {
        background:
            linear-gradient(180deg, rgba(7,42,58,0.52) 0%, rgba(7,42,58,0.42) 54%, rgba(245,250,252,0.62) 100%);
    }

    .hero-overlay {
        background:
            radial-gradient(circle at 50% 30%, rgba(255,212,106,0.18), transparent 42%);
    }

    .hero-proof div {
        background: rgba(255,255,255,0.88);
    }

    .dropdown-menu {
        background: #ffffff;
    }
}


/* ===== LIGHT PRODUCT IMAGE BACKDROPS ===== */
.product-card {
    position: relative;
    isolation: isolate;
    background:
        linear-gradient(180deg, #ffffff 0%, #f7fcfe 100%) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.95),
        0 18px 42px rgba(25, 74, 96, 0.16) !important;
}

.product-card img {
    background:
        radial-gradient(circle at 50% 62%, rgba(37,184,215,0.14), transparent 34%),
        radial-gradient(circle at 50% 92%, rgba(20,67,88,0.16), transparent 22%),
        linear-gradient(135deg, #eef9fc 0%, #ffffff 56%, #fff2dc 100%) !important;
    mix-blend-mode: normal;
    filter:
        brightness(1.08)
        contrast(1.14)
        saturate(0.88)
        drop-shadow(0 18px 18px rgba(20, 67, 88, 0.24));
}

.product-card:hover {
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.95),
        0 26px 56px rgba(24, 86, 116, 0.2),
        0 0 0 1px rgba(244,166,47,0.22) !important;
}

/* ===== GLOBAL LIGHT SCROLL BUTTONS ===== */
.scroll-btn,
body .scroll-buttons .scroll-btn {
    color: #173243 !important;
    background: linear-gradient(135deg, #ffffff, #edf8fc) !important;
    border: 1px solid rgba(26,122,160,0.18) !important;
    box-shadow: 0 12px 28px rgba(20,67,88,0.14) !important;
}

.scroll-btn:hover,
body .scroll-buttons .scroll-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 16px 32px rgba(24,86,116,0.18) !important;
}

.product-info {
    position: relative;
    z-index: 2;
}
