:root {
    --primary-blue: #005ea3;
    --secondary-blue: #0a5ea7;
    --light-blue: #206caf;
    --accent-orange: #f47820;
    --light: #f9f9f9;
    --dark: #0b1c2b;
    --gray: #a0a0a0;
    --bg-color: #0b1c2b;
    --text-light: #ffffff;
    --text-muted: #d0dce5;
    --heading-color: #ffffff;
    --subtext-color: #c4c4c4;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    background-color:linear-gradient(to right, #005ea3, #f47820);
    color: var(--text-light);
    overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-orange);
    color: white;
    box-shadow: 0 10px 20px rgba(244, 120, 32, 0.3);
}

.btn-primary:hover {
    background: #e06a1c;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(244, 120, 32, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

/* ================== HEADER ================== */
/* ====== Main Header ====== */
.main-header {
    background-color: var(--dark) !important;  /* Always dark */
    border-bottom: 2px solid var(--accent-orange);
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
}

/* ====== Header Container ====== */
.header-container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ====== Logo ====== */
.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* ====== Menu Toggle (Mobile) ====== */
.menu-toggle {
    background: none;
    border: none;
    font-size: 28px;
    color: #fff;  /* Always white for contrast */
    display: none;
    cursor: pointer;
}

/* ====== Nav Menu (Desktop) ====== */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    font-size: 16px;
    color: #fff;  /* Always white */
    font-weight: 500;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
}

/* ====== Hover underline effect ====== */
.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-orange);
    transition: width 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a:focus {
    color: var(--accent-orange);
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* ====== Responsive (Mobile View) ====== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        right: 0;
        background-color: var(--dark) !important; /* Always dark */
        flex-direction: column;
        width: 250px;
        gap: 1rem;
        padding: 20px;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }
}

/* ================== DROPDOWN ================== */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    list-style: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown-content li a {
    display: block;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--dark);
    transition: all 0.3s ease;
}

.dropdown-content li a:hover {
    background: var(--light);
    color: var(--accent-orange);
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* ================== ACCESSIBILITY ================== */
a:focus,
button:focus {
    outline: 2px dashed var(--accent-orange);
    outline-offset: 4px;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: #1a1a1a;
        padding: 20px;
        display: none;
        border-top: 2px solid var(--accent-orange);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        width: 100%;
        display: block;
        padding: 12px 0;
        color: #fff;
    }

    .dropdown-content {
        position: relative;
        background: #2c2c2c;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        padding-left: 10px;
    }

    .dropdown-content li a {
        color: #ddd;
    }

    .dropdown-content li a:hover {
        background: transparent;
        color: var(--accent-orange);
    }
}

/* ===== HERO SLIDER SECTION ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Hero Slider Media Queries */
@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
    }
}

/* ====================== */
.stats-box-section {
    background: var(--light);
    padding: 60px 20px;
}

.stats-box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
}



.stats-box {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.stats-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    /* Adjust height based on your image */
    background: url('../images/bg/border/full-bottom.png') no-repeat center bottom;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

.stats-box img,
.stats-box h3,
.stats-box p {
    position: relative;
    z-index: 2;
}

.stats-box img {
    height: 45px;
    margin-bottom: 15px;
}

.stats-box h3 {
    font-size: 20px;
    margin: 0;
    font-weight: bold;
    color: #000;
}

.stats-box p {
    font-size: 14px;
    color: #333;
    margin-top: 5px;
}

/* Corner Ribbon Accent */
.stats-box::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 30px solid transparent;
    border-left: 30px solid;
    border-radius: 0 0 0 25px;
   
}

.stats-box.red::before {
    border-left-color: #f44336;
}

.stats-box.green::before {
    border-left-color: #4caf50;
}

.stats-box.yellow::before {
    border-left-color: #ffc107;
}

.stats-box.blue::before {
    border-left-color: #0d47a1;
}

.stats-box.orange::before {
    border-left-color: #ff9800;
}

.stats-box.darkblue::before {
    border-left-color: #1976d2;
}
/* ================ */
 /* About Section */
 .about-section {
     padding: 60px 20px;
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
     background: white;
     align-items: center;
     position: relative;
     overflow: hidden;
     background-image: url("./images/backpos.webp");
     background-repeat: no-repeat;
     background-size: 100% 100%;
     z-index: 2;
 }

 .about-text {
     flex: 1;
     max-width: 600px;
     padding-left: 90px;
 }

 .about-text h2 {
     font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary-blue);
     font-weight: 700;
 }

 .about-text p {
     margin-top: 20px;
     font-size: clamp(1rem, 2.5vw, 1.2rem);
    color:Black;
     line-height: 1.7;
 }

 .about-text button {
     margin-top: 30px;
     padding: 12px 28px;
     font-size: 1rem;
    background: var(--accent-orange);
     color: #fff;
     border: none;
     border-radius: 8px;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .about-text button:hover {
     background: #d9600a;
     transform: scale(1.05);
 }

 /* Circle Wrapper */
 .circle-wrapper {
     position: relative;
     width: 400px;
     height: 400px;
     margin: 40px auto;
 }

 .circle-carousel {
     position: absolute;
     width: 100%;
     height: 100%;
     border-radius: 50%;
     animation: spin 20s linear infinite;
     pointer-events: none;
 }

 .circle-carousel img {
     position: absolute;
     width: 100px;
     height: 100px;
     border-radius: 50%;
     object-fit: cover;
     border: 3px solid #fff;
     /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15); */
     transition: transform 0.4s ease, box-shadow 0.3s ease;
 }

 .circle-carousel img:hover {
     transform: scale(1.15);
     /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); */
 }

 /* Equal Distance Positioning */
 .circle-carousel img:nth-child(1) {
     top: 0%;
     left: 50%;
     transform: translate(-50%, -50%);
 }

 .circle-carousel img:nth-child(2) {
     top: 20%;
     left: 85%;
     transform: translate(-50%, -50%);
 }

 .circle-carousel img:nth-child(3) {
     top: 50%;
     left: 100%;
     transform: translate(-50%, -50%);
 }

 .circle-carousel img:nth-child(4) {
     top: 80%;
     left: 85%;
     transform: translate(-50%, -50%);
 }

 .circle-carousel img:nth-child(5) {
     top: 100%;
     left: 50%;
     transform: translate(-50%, -50%);
 }

 .circle-carousel img:nth-child(6) {
     top: 80%;
     left: 15%;
     transform: translate(-50%, -50%);
 }

 .circle-carousel img:nth-child(7) {
     top: 50%;
     left: 0%;
     transform: translate(-50%, -50%);
 }

 .circle-carousel img:nth-child(8) {
     top: 20%;
     left: 15%;
     transform: translate(-50%, -50%);
 }

 /* Center Circle */
 .center-circle {
     width: 170px;
     height: 170px;
     background-image: url("./images/color.webp");
     background-repeat: no-repeat;
     background-size: cover;
     border: 4px solid #fff;
     border-radius: 50%;
     position: absolute;
     top:49%;
     left: 49%;
     transform: translate(-50%, -50%);
     box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
     animation: pulse 2.8s ease-in-out infinite;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     font-size: 15px;
     font-weight: 700;
     color: #fff;
     text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
     padding: 10px;
 }
 @keyframes pulse {

     0%,
     100% {
         transform: translate(-50%, -50%) scale(1);
     }

     50% {
         transform: translate(-50%, -50%) scale(1.05);
     }
 }

 @keyframes spin {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 @keyframes pulse {

     0%,
     100% {
         transform: translate(-50%, -50%) scale(1);
     }

     50% {
         transform: translate(-50%, -50%) scale(1.05);
     }
 }

/* ==================================== */
.features-section {
    background: #005ea3;
    padding: 100px 20px 80px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    position: relative;
    color: #fff;
    overflow: hidden;
    margin-top: -156px;
    z-index: 1;
}

.features-section h1 {
    font-size: 3rem;
    margin-bottom: 60px;
    font-weight: 600;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, .3);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.feature-box {
    background: #fff;
    color: #005ea3;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 10px 25px #9a9a9aac;
    transition: all .3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
}

.feature-box img {
    width: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 5px #f47820);
}

.text .count {
    font-size: 2.2rem;
    font-weight: bold;
    color: #f47820;
    animation: pulse 2s infinite;
}

.text p {
    margin-top: 5px;
    font-size: 1rem;
    color: #333;
}

.wave-top,
.wave-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-top {
    top: 0;
    transform: rotate(180deg);
}

.wave-bottom {
    bottom: 0;
}

/* Features Section Media Queries */
@media (max-width: 768px) {
    .features-section {
        padding: 80px 20px 60px;
        margin-top: -80px;
    }

    .features-section h1 {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .features-container {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
}
/* ========================== */
/* Product Panel Section */
.product-panel-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    background-image: url("./images/probacks.webp");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    overflow: hidden;
}

.products-bg-text {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 8px;
}

.panel-title {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--accent-orange);
}

.product-panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    z-index: 2;
    position: relative;
}

.product-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    border-top: 5px solid var(--accent-orange);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.product-img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 4px solid var(--accent-orange);
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card h3 {
    font-size: 1.3rem;
    color: var(--light-blue);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.product-card p {
    font-size: 0.95rem;
    color: var(--light-blue);
    margin-bottom: 20px;
    text-align: center;
}

.read-more-btn {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.product-card:hover .read-more-btn {
    background-color: var(--accent-orange);
    transform: scale(1.05);
}
/* =================== */ 


.industries-section {
    background-color: var(--primary-blue);
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    color: white;
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: bold;
    text-transform: uppercase;
}

.industry-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.industry-card {
    width: 225px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.industry-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}


.industry-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.industry-card:hover img {
    transform: scale(1.1);
}

.industry-card p {
    margin: 0;
    padding: 12px;
    color: white;
    font-weight: 600;
}

.pink p {
    background-color: #e4007c;
}

.purple p {
    background-color: #7b2cbf;
}

.orange p {
    background-color: #f47920;
}

.yellow p {
    background-color: #f7b500;
}

.green p {
    background-color: #009245;
}

@media (max-width: 768px) {
    .industry-card {
        width: 45%;
    }
}

@media (max-width: 500px) {
    .industry-card {
        width: 100%;
    }
}
/* ================ */
.why-choose-us {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.9) contrast(1.5);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.3), rgba(10, 10, 10, 0.6)); */
    z-index: -1;
}

.why-content h2 {
    font-size: 36px;
    color: black;
    margin-bottom: 10px;
}

.why-content h2 span {
    color: #f47820;
}

.section-subtext {
    color:black;
    font-size: 18px;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 16px;
    transition: transform 0.4s ease, box-shadow 0.4s;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.feature-box::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
    animation: shine 6s linear infinite;
    z-index: 0;
}

@keyframes shine {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.feature-box:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.feature-box .icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #f47820;
}

.feature-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 15px;
    color:black;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .why-content h2 {
        font-size: 28px;
    }

    .section-subtext {
        font-size: 16px;
    }

    .feature-box {
        padding: 20px;
    }
}

/* ======================== */
.masterbatch-section {
    position: relative;
    padding: 60px 20px;
    /* color: #fff; */
    overflow: hidden;
    z-index: 1;
    font-family: 'Poppins', sans-serif;
    background-image: url("images/img.webp");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    /* background: linear-gradient(to right, #005ea3, #f47820); */
}

/* Gradient BG Animation */
.masterbatch-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    height: 200%;
    width: 200%;
    background: linear-gradient(120deg, #f47820, #005ea3, #9a9a9a);
    background-size: 300% 300%;
    animation: gradientMove 3s ease-in-out infinite;
    z-index: -1;
    opacity: 0.8;
    transform: rotate(-5deg);
    filter: blur(20px);
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.masterbatch-section {
    position: relative;
    padding: 80px 20px;
    color: #fff;
    overflow: hidden;
    background-color: #005ea3;
    /* background: linear-gradient(120deg, #0f0f0f, #1a1a1a); */
    z-index: 1;
    font-family: 'Poppins', sans-serif;
}

.masterbatch-bg-animation {
    position: absolute;
    top: -50%;
    left: -50%;
    height: 200%;
    width: 200%;
    /* background: linear-gradient(135deg, #f47820 0%, #005ea3 50%, #9a9a9a 100%); */
    animation: bgMove 15s linear infinite;
    opacity: 0.1;
    z-index: 0;
    transform: rotate(20deg);
}

@keyframes bgMove {
    0% {
        transform: translate(0, 0) rotate(20deg);
    }

    100% {
        transform: translate(50%, 50%) rotate(20deg);
    }
}

.masterbatch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    z-index: 2;
    position: relative;
    margin-bottom: 40px;
}

.masterbatch-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}

.masterbatch-header h2 span {
    color: #f47820;
}

.masterbatch-header p {
    margin-top: 10px;
    max-width: 600px;
    font-size: 16px;
    color: #ccc;
}

.masterbatch-header .view-all {
    background: #f47820;
    padding: 10px 20px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.masterbatch-header .view-all:hover {
    background: #005ea3;
}

.masterbatch-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    z-index: 2;
    position: relative;
}

.masterbatch-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    background: #1e1e1e;
}

.masterbatch-box:hover {
    transform: translateY(-10px);
}

.masterbatch-box img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    filter: brightness(0.9);
}

.masterbatch-box.large {
    grid-column: span 2;
}

.caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

/* =============== */
/* ===== MAP SECTION ===== */
.map-section {
    background: linear-gradient(to right, #f47820 0%, #005ea3 100%);
    padding: 60px 20px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.map-section .section-title {
    text-align: left;
    margin-bottom: 30px;
    color: #fff;
}

.map-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #fff;
}

.map-section p {
    font-size: 16px;
    color: #fff;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 12px;
}

/* Map Section Media Queries */
@media (max-width: 768px) {
    .map-section h2 {
        font-size: 26px;
    }

    .map-container iframe {
        height: 300px;
    }
}
/* ================================== */
  /* Root Section */
    .contact-section {
        position: relative;
        padding: 100px 20px;
        background: linear-gradient(135deg, #e4f0ff, #ffffff);
        overflow: hidden;
        font-family: 'Poppins', sans-serif;
    }

    /* Bubbles Background */
    .animated-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        overflow: hidden;
    }

    .bubble {
        position: absolute;
        border-radius: 50%;
        opacity: 0.5;
        animation: floatUp 18s infinite ease-in;
    }

    .bubble.red {
        background: #f44336;
        width: 60px;
        height: 60px;
        left: 10%;
        animation-delay: 0s;
    }

    .bubble.blue {
        background: #2196f3;
        width: 80px;
        height: 80px;
        left: 25%;
        animation-delay: 3s;
    }

    .bubble.green {
        background: #4caf50;
        width: 100px;
        height: 100px;
        left: 40%;
        animation-delay: 6s;
    }

    .bubble.orange {
        background: #ff9800;
        width: 70px;
        height: 70px;
        left: 60%;
        animation-delay: 1s;
    }

    .bubble.purple {
        background: #9c27b0;
        width: 50px;
        height: 50px;
        left: 75%;
        animation-delay: 4s;
    }

    .bubble.yellow {
        background: #ffeb3b;
        width: 65px;
        height: 65px;
        left: 85%;
        animation-delay: 7s;
    }

    .bubble.cyan {
        background: #00bcd4;
        width: 90px;
        height: 90px;
        left: 50%;
        animation-delay: 9s;
    }

    .bubble.pink {
        background: #e91e63;
        width: 40px;
        height: 40px;
        left: 35%;
        animation-delay: 2s;
    }

    @keyframes floatUp {
        0% {
            bottom: -150px;
            opacity: 0.6;
            transform: scale(1);
        }

        50% {
            opacity: 1;
        }

        100% {
            bottom: 110%;
            opacity: 0;
            transform: scale(1.3);
        }
    }

    /* Container */
    .container {
        max-width: 1200px;
        margin: auto;
        position: relative;
        z-index: 2;
    }

    /* Wrapper Flex */
    .contact-wrapper {
        display: flex;
        gap: 40px;
        background: white;
        border-radius: 20px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        flex-wrap: wrap;
    }

    /* Left Side */
    .contact-info {
        flex: 1;
        background: #005ea3;
        color: white;
        padding: 50px;
        min-width: 300px;
    }

    .contact-info h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .contact-info p {
        margin-bottom: 30px;
        font-size: 1rem;
    }

    .contact-info h4 {
        margin: 15px 0 5px;
    }

    .contact-info a {
        color: #ffd700;
        text-decoration: underline;
    }

    /* Right Side */
    .contact-form {
        flex: 1;
        padding: 50px;
        background: #ffffff;
        min-width: 300px;
    }

    .contact-form h2 {
        margin-bottom: 25px;
        font-size: 1.8rem;
        color: #333;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 15px;
        margin-bottom: 20px;
        font-size: 1rem;
        border: 1px solid #ccc;
        border-radius: 10px;
    }

    .contact-form button {
        background: #f47820;
        color: white;
        font-size: 1rem;
        padding: 14px 30px;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .contact-form button:hover {
        background: #e06810;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .contact-wrapper {
            flex-direction: column;
        }

        .contact-info,
        .contact-form {
            padding: 30px 20px;
        }
    }
/* ================== FOOTER ================== */
.site-footer {
    background: var(--dark);
    color: #fff;
    padding: 60px 20px 30px;
    font-family: 'Poppins', sans-serif;
    background-image: url("./images/footer.webp"); /* Optional background image */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* Footer Grid Layout */
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Columns */
.footer-column {
    min-width: 220px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 15px;
}

.footer-subtitle {
    font-size: 18px;
    color: var(--accent-orange);
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 12px;
}

.footer-text a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-text a:hover {
    color: var(--accent-orange);
    text-decoration: underline;
}

/* Footer Links */
.footer-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-orange);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

/* Social Icons */
.footer-icons {
    margin-top: 15px;
}

.footer-icons a {
    color: var(--accent-orange);
    font-size: 18px;
    margin: 0 8px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-icons a:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #ccc;
}

.footer-bottom a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        width: 160px;
    }

    .footer-bottom {
        font-size: 12px;
    }
}
