/* ===============================
   Global Styles
================================ */
:root {
    --primary-color: #2e6d7d;
    --secondary-color: #2f50ab;
    --accent-color: #3a5e7f;
    --text-color: #333;
    --light-text: #ff0000;
    --light-bg: #f9f9f9;
    --white: #fff;
    --dark-bg: #222;
    --border-radius: 4px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: #f5f5f5;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-control {
    border-radius: 10px;
}

.small,
small {
    font-size: .8rem;
}

/* ===============================
   Section Header
================================ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.section-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ===============================
   Section Title
================================ */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* ===============================
   Buttons
================================ */

/* ===============================
   About Images
================================ */
.about-img {
    border-radius: 50% 0 50% 0 / 30% 70% 30% 70%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Fade-Up Animation */
.about-text,
.about-img {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===============================
   Scrap Ticker
================================ */
.scrap-ticker {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 0;
    overflow: hidden;
}

/* ===============================
   Scrolling Image Carousel
================================ */
.scroll-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.scroll-track {
    display: flex;
    width: max-content;
    animation: scroll-left 80s linear infinite;
}

.scroll-container:hover .scroll-track {
    animation-play-state: paused;
}

.scroll-item {
    flex: 0 0 auto;
    width: 180px;
    margin-right: 30px;
    text-align: center;
}

.scroll-item img {
    height: 200px;
    width: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.scroll-item div {
    margin-top: -36px;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    background: rgba(31, 28, 28, 0.6);
    padding: -20px 10px;
    border-radius: 150px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===============================
   About Section
================================ */
.about-section {
    padding: 80px 0;
    background: var(--light-bg);
    text-align: center;
}

.about-text,
.about-image {
    flex: 1 1 100%;
}

.about-text p {
    margin-bottom: 20px;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .about-text {
        flex: 1 1 50%;
        padding-right: 30px;
    }

    .about-image {
        flex: 1 1 50%;
        text-align: right;
    }
}

/* ===============================
   Services Section
================================ */
.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    min-height: 350px;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.service-list li i {
    width: 28px;
    height: 28px;
    margin-right: 10px;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.service-list li:nth-child(1) i {
    background: linear-gradient(135deg, #ff7d00, #ffbb33);
}

.service-list li:nth-child(2) i {
    background: linear-gradient(135deg, #007bff, #00c6ff);
}

.service-list li:nth-child(3) i {
    background: linear-gradient(135deg, #28a745, #85e085);
}

.service-list li:nth-child(4) i {
    background: linear-gradient(135deg, #6f42c1, #b085f5);
}

.service-list li:nth-child(5) i {
    background: linear-gradient(135deg, #dc3545, #ff6f91);
}

/* =======================
   Navbar
======================= */
.navbar {
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.navbar-nav .nav-link {
    font: 600 15px/1.5 'Montserrat', sans-serif;
    padding: 8px 15px;
    color: var(--dark-color);
}

.navbar-nav .nav-link:hover {
    color: blue;
}

.navbar-nav .dropdown-item {
    font-weight: 500;
    padding: 5px 10px;
}

.navbar-nav .dropdown-item:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* Shift only the logo image */
.navbar-brand img {
    position: relative;
    left: -50px;
    /* Moves image left without affecting text */
}

/* Adjust slightly for mobile so it stays balanced */
@media (max-width: 576px) {
    .navbar-brand img {
        left: -70px;
    }
}

/* Reduce navbar top & bottom spacing */
.navbar {
    padding-top: 8px !important;
    padding-bottom: 5px !important;
}

/* Also make the smaller version when scrolled match */

/* Hide all submenus by default */
 .submenu,
.nested-submenu {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding-left: 0;
    min-width: 180px;
    z-index: 1050;
} 

/* Position first submenu below Services */
.dropdown-custom>.submenu {
    position: absolute;
    top: 100%;
    left: 0;
} 

/* Position nested submenu to the right of parent */
 .submenu-parent>.nested-submenu {
    top: 0;
    left: 100%;
} 

/* Show submenu on hover */
/* .dropdown-custom:hover>.submenu,
.submenu-parent:hover>.nested-submenu {
    display: block;
} */

/* Style the links */
.dropdown-item {
    display: block;
    padding: 8px 20px;
    color: #212529;
    text-decoration: none;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}

/* 
Fix positioning in navbar
.nav-item.dropdown-custom {
    position: relative;
}

.nav-item .dropdown-custom .submenu-parent {
    position: relative;
}

/* On small screens, disable hover menus 
@media (max-width: 991px) {

    .submenu,
    .nested-submenu {
        position: static;
        box-shadow: none;
    }

    .dropdown-custom:hover>.submenu,
    .submenu-parent:hover>.nested-submenu {
        display: none;
    }
} */


/* For first-level submenu */
.navbar .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    /* Makes it drop below the parent */
    min-width: 200px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 1000;
}

/* Show submenu on hover */
/* .navbar .dropdown-custom:hover>.submenu {
    display: block;
} */

/* For nested submenu (opens to the left side) */
.navbar .nested-submenu {
    top: 0;
    left: -200px;
    /* Pushes it to the left */
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    display: none;
    position: absolute;
    min-width: 200px;
}

/* Show nested submenu on hover */
/* .navbar .submenu-parent:hover>.nested-submenu {
    display: block;
} */

/* For nested submenu (opens to the LEFT side) */
.navbar .nested-submenu {
    top: 0;
    right: 100%;   /* instead of left: 100% */
    left: auto;    /* reset left */
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    display: none;
    position: absolute;
    min-width: 200px;
}

/* Show nested submenu on hover */
.navbar .submenu-parent:hover>.nested-submenu {
    display: block;
}



/* =======================
   Circular Images & Tooltips
======================= */

/* =======================
   Icons (Benefits, Industries)
======================= */
.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform .3s ease, box-shadow .3s ease;
}

.icon-blue {
    background: #3498db;
}

.icon-green {
    background: #27ae60;
}

.icon-orange {
    background: #f39c12;
}

.icon-red {
    background: #e74c3c;
}

.icon-purple {
    background: #9b59b6;
}

.icon-pink {
    background: #e84393;
}

.benefit-card:hover .icon-circle {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* =======================
   Industries Section
======================= */
.industries-section .industry-circle {
    width: 110px;
    height: 110px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: #f1f1f1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid transparent;
    transition: transform .3s ease, border .3s ease;
}

.industries-section .industry-circle:hover {
    transform: scale(1.05);
    border-color: #007bff;
}

.industries-section .industry-circle img {
    width: 60%;
    transition: transform .3s ease;
}

.industries-section .industry-circle:hover img {
    transform: scale(1.1);
}

.industries-section .industry-label {
    font-weight: 500;
    margin-top: 5px;
    color: #333;
}

/* =======================
   Philosophy Section
======================= */
.philosophy-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    text-align: center;
}

/* =======================
   Contact CTA
======================= */
.contact-cta {
    padding: 80px 0;
    background: rgb(50, 44, 44);
    color: var(--white);
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* =======================
   Footer
======================= */
.footer a:not(:has(i)) {
    color: #ccc;
    position: relative;
    text-decoration: none;
    transition: color .3s ease;
}

.footer a:not(:has(i))::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #f4b400;
    transition: width .3s ease;
}

.footer a:not(:has(i)):hover {
    color: #f4b400;
}

.footer a:not(:has(i)):hover::after {
    width: 100%;
}

/* ================= FOOTER ================= */
.footer a:not(:has(i)) {
    color: #ccc;
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:not(:has(i))::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #f4b400;
    transition: width 0.3s ease;
}

.footer a:not(:has(i)):hover {
    color: #f4b400;
}

.footer a:not(:has(i)):hover::after {
    width: 100%;
}

/* Social Media Icons */

/* ================= HERO BANNER ================= */
.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center content horizontally */
    text-align: center;
    overflow: hidden;
}

.hero-slider,
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slider {
    z-index: 0;
}

.hero-slide {
    background: center/cover no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero-text-wrapper {
    max-width: 800px;
    padding: 20px 30px;
    border-radius: 0; /* optional */
    background: none; 
    backdrop-filter: none; 
}


/* Tablet */
@media (max-width: 992px) {
    .hero-text-wrapper h1 {
        font-size: 2.4rem;
        max-width: 700px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero-text-wrapper h1 {
        font-size: 1.8rem;
        line-height: 1.4;
        max-width: 95%;
        padding: 0 10px;
        /* Prevents text hitting edges */
    }
}

/* .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text-wrapper {
    max-width: 800px;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.3);
    
    border-radius: 8px;
    backdrop-filter: blur(2px);
  
}
/* * */
.hero-content h1,
.hero-content p {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

.hero-content h1 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 1.8rem;
}

.btn-group-custom {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-content .btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
}


/* ================= RESPONSIVE ================= */
/* @media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-text-wrapper {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-content .btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    } 
}*//* Common Hero Section */
.common-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  color: white;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center/cover;
  padding-top: 80px;
  text-align: center;
  z-index: 1;
}
.common-hero h1 { font-size: 3.5rem; font-weight:700; margin-bottom:1.5rem; text-shadow:2px 2px 4px rgba(0,0,0,.5);}
.common-hero .lead { font-size:1.5rem; margin-bottom:2.5rem; text-shadow:1px 1px 2px rgba(0,0,0,.5);}

@media (max-width:767px){ .common-hero{height:50vh;min-height:300px;} .common-hero h1{font-size:2rem;} .common-hero .lead{font-size:1.2rem;} }

/* Scrap Ticker */
.scrap-ticker{background:var(--secondary-color);color:var(--white);padding:15px 0;overflow:hidden;}
.scroll-track{display:flex;animation:scroll-left 80s linear infinite;}
.scroll-item{flex:0 0 auto;white-space:nowrap;}
.scroll-item{width:180px;margin-right:30px;text-align:center;}
.scroll-item img{height:200px;width:200px;object-fit:cover;border-radius:10px;}
.scroll-item div{margin-top:-36px;font-weight:700;font-size:16px;color:#000;background:rgba(255,255,255,0.6);padding:-20px 10px;text-align:center;border-radius:150px;text-shadow:1px 1px 3px rgba(0,0,0,.8);backdrop-filter:blur(0px);}
@keyframes scroll-left{0%{transform:translateX(0);}100%{transform:translateX(-50%);}}

/* Content Sections */
.content-section{padding:80px 0;scroll-margin-top:120px;display:none;}




/* Section Indicator */

/* Hover Effects */
.hover-shadow, .zoom-hover, .feature-hover, .cta-hover{transition:all 0.3s ease;}
.hover-shadow:hover{box-shadow:0 .75rem 1.5rem rgba(0,0,0,.15)!important;transform:translateY(-5px);}
.zoom-hover:hover{transform:scale(1.05) rotate(.5deg);box-shadow:0 1rem 2rem rgba(0,0,0,.25)!important;}

/* Feature Cards Hover */
.feature-hover:hover{transform:translateY(-15px);box-shadow:0 2rem 3rem rgba(0,0,0,.35);background:#fff8e1;}
.feature-hover:hover .feature-icon i{transform:rotate(15deg) scale(1.2);color:#ffb300;transition:0.4s;}

/* CTA Button Hover */
.cta-hover:hover{background:#fff;color:#0d1b2a;transform:scale(1.05);box-shadow:0 1rem 2rem rgba(0,0,0,.4);}

/* WhatsApp Float */
/* ===============================
   Global Styles
================================ */
:root {
    --primary-color: #2e6d7d;
    --secondary-color: #2f50ab;
    --accent-color: #3a5e7f;
    --text-color: #333;
    --light-text: #ff0000;
    --light-bg: #f9f9f9;
    --white: #fff;
    --dark-bg: #222;
    --border-radius: 4px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: #f5f5f5;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-control {
    border-radius: 10px;
}


/* ===============================
   Section Header
================================ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.section-header p {
    font-size: 1.1rem;
    
    max-width: 700px;
    margin: 0 auto;
}

/* ===============================
   Section Title
================================ */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* ===============================
   Buttons
================================ */

/* ===============================
   About Images
================================ */
.about-img {
    border-radius: 50% 0 50% 0 / 30% 70% 30% 70%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Fade-Up Animation */
.about-text,
.about-img {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===============================
   Scrap Ticker
================================ */
.scrap-ticker {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 0;
    overflow: hidden;
}

/* ===============================
   Scrolling Image Carousel
================================ */
.scroll-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.scroll-track {
    display: flex;
    width: max-content;
    animation: scroll-left 80s linear infinite;
}

.scroll-container:hover .scroll-track {
    animation-play-state: paused;
}

.scroll-item {
    flex: 0 0 auto;
    width: 180px;
    margin-right: 30px;
    text-align: center;
}

.scroll-item img {
    height: 200px;
    width: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.scroll-item div {
    margin-top: -36px;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    background: rgba(31, 28, 28, 0.6);
    padding: -20px 10px;
    border-radius: 150px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===============================
   About Section
================================ */
.about-section {
    padding: 80px 0;
    background: var(--light-bg);
    text-align: center;
}

.about-text,
.about-image {
    flex: 1 1 100%;
}

.about-text p {
    margin-bottom: 20px;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .about-text {
        flex: 1 1 50%;
        padding-right: 30px;
    }

    .about-image {
        flex: 1 1 50%;
        text-align: right;
    }
}

/* ===============================
   Services Section
================================ */
.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    min-height: 350px;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.service-list li i {
    width: 28px;
    height: 28px;
    margin-right: 10px;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.service-list li:nth-child(1) i {
    background: linear-gradient(135deg, #ff7d00, #ffbb33);
}

.service-list li:nth-child(2) i {
    background: linear-gradient(135deg, #007bff, #00c6ff);
}

.service-list li:nth-child(3) i {
    background: linear-gradient(135deg, #28a745, #85e085);
}

.service-list li:nth-child(4) i {
    background: linear-gradient(135deg, #6f42c1, #b085f5);
}

.service-list li:nth-child(5) i {
    background: linear-gradient(135deg, #dc3545, #ff6f91);
}

/* =======================
   Navbar
======================= */
.navbar {
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.navbar-nav .nav-link {
    font: 600 15px/1.5 'Montserrat', sans-serif;
    padding: 8px 15px;
    color: var(--dark-color);
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
}

.navbar-nav .dropdown-item {
    font-weight: 500;
    padding: 8px 20px;
}

.navbar-nav .dropdown-item:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* Shift only the logo image */
.navbar-brand img {
    position: relative;
    left: -70px;
    /* Moves image left without affecting text */
}

/* Adjust slightly for mobile so it stays balanced */
@media (max-width: 576px) {
    .navbar-brand img {
        left: -70px;
    }
}

/* Reduce navbar top & bottom spacing */
.navbar {
    padding-top: 8px !important;
    padding-bottom: 5px !important;
}

/* Also make the smaller version when scrolled match */

/* Hide all submenus by default */
/* For first-level submenu */
.navbar .submenu {
    position: absolute;
    top: 100%;
    left: 0; /* Makes it drop below the parent */
    min-width: 200px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    display: none;
    z-index: 1000;
}

/* Show submenu on hover */
.navbar .dropdown-custom:hover > .submenu {
    display: block;
}

/* For nested submenu (opens to the left side) */
.navbar .nested-submenu {
    top: 0;
    left: -200px; /* Pushes it to the left */
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    display: none;
    position: absolute;
    min-width: 200px;
}

/* Show nested submenu on hover */
.navbar .submenu-parent:hover > .nested-submenu {
    display: block;
}


/* Style the links */
.dropdown-item {
    display: block;
    padding: 8px 20px;
    color: #212529;
    text-decoration: none;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}

/* Fix positioning in navbar */
.nav-item.dropdown-custom {
    position: relative;
}

/* On small screens, disable hover menus */
@media (max-width: 991px) {

    .submenu,
    .nested-submenu {
        position: static;
        box-shadow: none;
    }

    .dropdown-custom:hover>.submenu,
    .submenu-parent:hover>.nested-submenu {
        display: none;
    }
}

/* =======================
   Circular Images & Tooltips
======================= */

/* =======================
   Icons (Benefits, Industries)
======================= */
.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform .3s ease, box-shadow .3s ease;
}

.icon-blue {
    background: #3498db;
}

.icon-green {
    background: #27ae60;
}

.icon-orange {
    background: #f39c12;
}

.icon-red {
    background: #e74c3c;
}

.icon-purple {
    background: #9b59b6;
}

.icon-pink {
    background: #e84393;
}

.benefit-card:hover .icon-circle {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* =======================
   Industries Section
======================= */
.industries-section .industry-circle {
    width: 110px;
    height: 110px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: #f1f1f1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid transparent;
    transition: transform .3s ease, border .3s ease;
}

.industries-section .industry-circle:hover {
    transform: scale(1.05);
    border-color: #007bff;
}

.industries-section .industry-circle img {
    width: 60%;
    transition: transform .3s ease;
}

.industries-section .industry-circle:hover img {
    transform: scale(1.1);
}

.industries-section .industry-label {
    font-weight: 500;
    margin-top: 5px;
    color: #333;
}

/* =======================
   Philosophy Section
======================= */
.philosophy-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    text-align: center;
}

/* =======================
   Contact CTA
======================= */
.contact-cta {
    padding: 80px 0;
    background: rgb(50, 44, 44);
    color: var(--white);
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* =======================
   Footer
======================= */
.footer a:not(:has(i)) {
    color: #ccc;
    position: relative;
    text-decoration: none;
    transition: color .3s ease;
}

.footer a:not(:has(i))::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #f4b400;
    transition: width .3s ease;
}

.footer a:not(:has(i)):hover {
    color: #f4b400;
}

.footer a:not(:has(i)):hover::after {
    width: 100%;
}

/* ================= FOOTER ================= */
.footer a:not(:has(i)) {
    color: #ccc;
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:not(:has(i))::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #f4b400;
    transition: width 0.3s ease;
}

.footer a:not(:has(i)):hover {
    color: #f4b400;
}

.footer a:not(:has(i)):hover::after {
    width: 100%;
}

/* Social Media Icons */

/* ================= HERO BANNER ================= */
.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center content horizontally */
    text-align: center;
    overflow: hidden;
}

.hero-slider,
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slider {
    z-index: 0;
}

.hero-slide {
    background: center/cover no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}



.hero-content h1,
.hero-content p {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

.hero-content h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 1.8rem;
}

.btn-group-custom {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-content .btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-text-wrapper {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-content .btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* block */

:root {
    --primary-color: #2e6d7d;
    --secondary-color: #2f50ab;
}

.metal-section {
    display: none;
    /* Hide all sections by default */
}

.metal-title {
    color: var(--secondary-color);
    position: relative;
}

.metal-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.cat-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
}

.icon-wrapper {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-wrapper:hover {
    transform: translateY(-12px) scale(1.15);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.5) !important;
}

.icon-wrapper svg {
    transition: transform 0.4s ease;
}

.icon-wrapper:hover svg {
    transform: scale(1.25);
}

/* Navbar dropdown styles for desktop */
@media (min-width: 992px) {
    .dropdown-custom {
        position: relative;
    }

    .dropdown-custom .submenu {
        display: none;
        position: absolute;
        left: 0;
        top: 100%;
        min-width: 220px;
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        padding: 10px 0;
        z-index: 1000;
    }

    .dropdown-custom:hover .submenu {
        display: block;
    }

    .submenu-parent .nested-submenu {
        display: none;
        position: absolute;
        left: 100%;
        top: 0;
        min-width: 220px;
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        padding: 10px 0;
    }

    .submenu-parent:hover .nested-submenu {
        display: block;
    }
}

.hero-banner {
    position: relative;
    height: 50vh;
    min-height: 350px;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
}

/* copper */
/* Catalogue Card Hover Effect */
.cat-box {
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.cat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
}

/* Circular Images & Hover */
.cat-img-wrapper {
    perspective: 1000px;
}

.cat-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    transition: transform 0.5s;
    object-fit: cover;
    transform-style: preserve-3d;
}

.cat-box:hover .cat-img {
    transform: rotateY(10deg) rotateX(5deg) scale(1.05);
}

/* Reduce horizontal space between columns */
.row.justify-content-center {
    --bs-gutter-x: 0.5rem;
    --bs-gutter-y: 1rem;
}

/* zinc */

/* Catalogue Card Hover Effect */
.cat-box {
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.cat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
}

/* Circular Images & Hover */
.cat-img-wrapper {
    perspective: 1000px;
}

.cat-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    transition: transform 0.5s;
    object-fit: cover;
    transform-style: preserve-3d;
}

.cat-box:hover .cat-img {
    transform: rotateY(10deg) rotateX(5deg) scale(1.05);
}

/* Reduce horizontal space between columns */
.row.justify-content-center {
    --bs-gutter-x: 0.5rem;
    --bs-gutter-y: 1rem;
}

/* industries we serve */

.industry-card {
    width: 140px;
    /* Fixed width */
    height: 140px;
    /* Fixed height */
    padding: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.industry-card:hover {
    transform: scale(1.1);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.2);
}

.bg-purple {
    background-color: #6f42c1 !important;
}

.bg-orange {
    background-color: #fd7e14 !important;
}

