/* Basic Reset */
* { margin:0; padding:0; box-sizing:border-box; }

.site-header {
    background: #0E0E0E;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    font-family: 'Orbitron', sans-serif;
}

.header-container {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
justify-content: space-between;
}

.logo img {
    height: 70px;
}

/* NAV MENU */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav ul li a {
    text-decoration: none;
    font-size: 17px;
    color: #faf6f6;
    font-weight: 600;
    transition: .2s;
}


.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: #06e49c;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display:none;
    position:absolute;
    background:#fff;
    padding:10px 0;
    box-shadow:0 5px 20px rgba(0,0,0,.2);
    top:28px;
    left:0;
}

.dropdown:hover .dropdown-menu {
    display:block;
}

.dropdown-menu li {
    padding:8px 20px;
}

.dropdown-menu li a {
    color:#000;
}

/* PHONE */
.header-phone {
    font-size:17px;
    color:#f9f7f7;
    font-weight:600;
}

/* BURGER */
.burger {
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* MOBILE MENU */
.mobile-menu {
    display:none;
    background:#111;
    color:#fff;
    padding:20px;
}

.mobile-menu ul {
    list-style:none;
}

.mobile-menu ul li {
    padding:12px 0;
}

.mobile-menu ul li a {
    color:#fff;
    text-decoration:none;
}

/* RESPONSIVE */
@media(max-width:900px){
    .main-nav { display:none; }
    .burger { display:block; }
    .header-phone { display:none; }
}
/* FOOTER */
.site-footer {
    background: #222;
    padding: 60px 0;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 15px;
}

.footer-col h3 {
    font-size: 22px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-desc {
    line-height: 1.6;
    color: #ccc;
    margin-top: 10px;
    max-width: 280px;
}

/* Links */
.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.footer-links li a,
.footer-contact li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #06e49c;
}

.footer-links i,
.footer-contact i {
    margin-right: 10px;
    color: #06e49c;
}

/* Responsive */
@media(max-width: 900px){
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 600px){
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links li,
    .footer-contact li {
        justify-content: center;
    }
}
/* Hide dropdown by default */
.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    padding: 20px;
    top: 100%;
    left: 0;
    width: 700px; /* like your screenshot */
    box-shadow: 0 4px 25px rgba(0,0,0,0.15);
    z-index: 999;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Remove list style spacing */
.dropdown-menu li {
    list-style: none;
    margin-bottom: 10px;
}

.dropdown-menu li a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 18px;
}
/* HERO SECTION */
.hero-banner {
    height: 90vh;
    width: 100%;
    background: url('img/bg-image.svg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 120px; /* adjust as needed */
}

/* Dark overlay */
.hero-banner::before {
    content: "";
    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;
    color: #fff;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 62px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
}

.hero-content h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #d8d8d8;
}

/* Green line */
.line {
    width: 120px;
    height: 5px;
    background: #00e58f;
    border-radius: 3px;
    margin: 20px 0 35px 0;
}

/* CTA BUTTON */
.hero-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #00e58f;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: #00c578;
}
/* Section container */
.welcome-section {
    width: 100%;
    max-width: 1400px;
    margin: 80px auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding: 0 40px;
}

/* Left images */
.welcome-left {
    width: 45%;
    position: relative;
}

.welcome-main-img {
    width: 100%;
    border-radius: 4px;
}

.welcome-small-img {
    width: 55%;
    position: absolute;
    left: -40px;
    bottom: -80px;
    border-radius: 4px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

/* Right content */
.welcome-right {
    width: 55%;
}

.welcome-subtitle {
    color: #00e58f;
    font-size: 22px;
    font-weight: 600;
}

.welcome-title {
    font-size: 42px;
    line-height: 1.2;
    margin: 10px 0 20px;
    font-family: 'Orbitron', sans-serif;
}

.welcome-text {
    font-size: 17px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Checklists */
.welcome-lists {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
    margin-top: 20px;
}

.welcome-list {
    list-style: none;
    padding: 0;
}

.welcome-list li {
    margin-bottom: 12px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.welcome-list i {
    color: #00e58f;
    font-size: 20px;
}
/* Entire Section */
/* SECTION */
.precision-section {
    display: flex;
    justify-content: space-between;
    padding: 100px 80px;
    background: #000;
    color: #fff;
    align-items: flex-start;
}

/* LEFT SIDE */
.precision-left {
    width: 32%;
}

.precision-title-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.precision-line {
    width: 6px;
    height: 165px;
    background: #00e5d4;
    margin-right: 15px;
}

.precision-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    line-height: 1.15;
    margin: 0;
    text-transform: uppercase;
}

.precision-text {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #d8d8d8;
}

.precision-btn {
    background: #00f0b5;
    color: #000;
    padding: 14px 32px;
    font-size: 20px;
    border-radius: 50px;
    display: inline-block;
    text-decoration: none;
}

/* RIGHT SIDE */
.precision-right {
    width: 60%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.precision-card {
    background: #2e2e2e;
    padding: 35px;
    border-radius: 8px;
}

.precision-icon {
    font-size: 55px;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 20px;
}

.precision-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 27px;
    margin-bottom: 15px;
    line-height: 1.25;
}

.precision-card p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
}
.precision-section {
    display: flex;
    justify-content: space-between;
    align-items: center;   /* THIS centers vertically */
    padding: 100px 80px;
    background: #000;
    color: #fff;
    gap: 60px;
}

.faq-section {
    width: 100%;
    background: #d9d9d9;
    padding: 60px 80px;
}

.faq-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.faq-line {
    width: 10px;
    height: 60px;
    background: #00e3c3; 
}

.faq-title h3 {
    font-size: 46px;
    margin: 0;
    font-family: 'Orbitron', sans-serif;
}

.faq-heading {
    font-size: 40px;
    margin-top: 20px;
    margin-bottom: 40px;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 40px;
}

.faq-item {
    width: 100%;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    border: none;
    background: #00e3c3;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-align: left;
    border-radius: 4px;
}

.faq-answer {
    display: none;
    padding: 15px 20px;
    background: #c5f8f2;
    border-left: 5px solid #00e3c3;
    margin-top: 5px;
}

.faq-answer p {
    margin: 0;
    font-size: 18px;
}
/* HERO SECTION */
.about-hero {
    width: 100%;
    height: 70vh;
    background: url("img/about-bg.jpg") no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 70px;
}

/* DARK OVERLAY */
.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.78);
    backdrop-filter: blur(2px);
}

/* TEXT CONTAINER */
.about-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    animation: fadeIn 1s ease-out;
}

/* MAIN HEADING */
.about-hero-content h1 {
    font-size: 75px;
    font-weight: 800;
    margin: 0 0 20px 0;
    font-family: 'Orbitron', sans-serif; /* Similar to your font */
    white-space: nowrap;
}

/* BREADCRUMB */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb a {
    color: #fff;
    font-size: 26px;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
}

.breadcrumb span {
    color: #00e7d6;
    font-size: 28px;
}

.breadcrumb p {
    color: #00e7d6;
    font-size: 28px;
    margin: 0;
    font-family: 'Orbitron', sans-serif;
}

/* ANIMATION */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.who-we-are {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 70px 60px;
}

.who-left, .who-right {
    flex: 1;
}

/* LEFT SIDE */
.section-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: #00e7d6;
    margin-bottom: 10px;
    border-left: 6px solid #00e7d6;
    padding-left: 15px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
}

.who-left p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

/* RIGHT SIDE IMAGES */
.who-right {
    position: relative;
}

.top-img img,
.bottom-img img {
    width: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.top-img {
    margin-bottom: 20px;
}

/* EXPERIENCE BOX */
.experience-box {
    position: absolute;
    bottom: -40px;
    left: 20px;
    background: #00ffcf;
    padding: 30px 50px;
    border-radius: 30px;
    text-align: center;
}

.experience-box h1 {
    font-size: 60px;
    margin: 0;
    font-weight: 900;
}

.experience-box p {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .who-we-are {
        flex-direction: column;
    }
}
/* SECTION WRAPPER */
.values-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 80px 70px;
    background: #000;
    color: #fff;
    gap: 60px;
}

/* LEFT SIDE */
.values-left {
    width: 50%;
}

.values-subtitle {
    font-size: 38px;
    color: #00F5E1;
    font-weight: 700;
    margin-bottom: 15px;
}

.values-title {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.values-text {
    font-size: 22px;
    line-height: 1.55;
    max-width: 90%;
}

/* RIGHT SIDE */
.values-right {
    width: 50%;
    display: flex;
    gap: 25px;
}

.value-box {
    background: #2e2e2e;
    padding: 40px 30px;
    border-radius: 10px;
    width: 50%;
    text-align: center;
}

.value-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.value-box p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* AQUA UNDERLINE */
.underline {
    width: 50%;
    height: 12px;
    background: #00F5E1;
    margin: 0 auto;
    border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .values-section {
        flex-direction: column;
    }
    .values-left, .values-right {
        width: 100%;
    }
    .values-right {
        flex-direction: column;
    }
    .value-box {
        width: 100%;
    }
}
/* Background Banner */
.contact-banner {
    position: relative;
    width: 100%;
    padding: 50px 20px;
    text-align: center;
    background-image: url('your-background.jpg');  /* Replace with your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark Overlay */
.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 20, 35, 0.7); /* dark blue tint */
    backdrop-filter: brightness(0.6);
    z-index: 1;
}

/* Content */
.contact-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: auto;
    color: #fff;
}

/* Aqua Top Text */
.contact-subtitle {
    font-size: 36px;
    color: #00ffd9;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Main Heading */
.contact-title {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* Paragraph */
.contact-text {
    font-size: 22px;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    color: #d8e4ea;
}

/* Contact Button */
.contact-btn {
    display: inline-block;
    padding: 18px 45px;
    font-size: 26px;
    font-weight: 600;
    color: #000;
    background: #00ffd9;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #00e5c4;
    transform: translateY(-3px);
}
.white-metal-section {
    padding: 80px 0;
}

.white-metal-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.white-metal-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 6px;
    object-fit: cover;
    display: block;
}

.white-metal-content {
    flex: 1;
}

.section-subtitle {
    font-size: 32px;
    color: #00F5D4;
    font-weight: 500;
    margin-bottom: 10px;
    border-left: 6px solid #00F5D4;
    padding-left: 12px;
}

.section-title {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 25px;
}

.white-metal-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
}
/* SECTION BACKGROUND */
.why-choose-us {
    position: relative;
    background: #6e6e6e; /* Use your image here */
    padding: 100px 0;
    color: #fff;
}

.why-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

/* MAIN WRAPPER CENTERED */
.why-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;      /* Vertically center both sides */
    gap: 50px;
}

/* LEFT CONTENT */
.why-left {
    flex: 1;
}

.why-subtitle {
    color: #00f7e6;
    font-size: 26px;
    margin-bottom: 15px;
}

.why-title {
    font-size: 55px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
}

.why-desc {
    font-size: 22px;
    line-height: 1.7;
    max-width: 600px;
}

/* RIGHT GRID */
.why-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    justify-items: center;
    align-items: center;
}

.why-card {
    background: rgba(0,0,0,0.55);
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    width: 100%;
}

.icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.why-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.why-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #dcdcdc;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .why-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .why-left {
        max-width: 90%;
    }

    .why-grid {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr; /* stack 1 column */
    }

    .why-title {
        font-size: 42px;
    }

    .why-desc {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .why-title {
        font-size: 32px;
    }

    .why-subtitle {
        font-size: 20px;
    }

    .icon {
        font-size: 38px;
    }
}
/* Section Wrapper */
.industry-banner {
    background: #000;                    /* solid black background */
    text-align: center;
    padding: 120px 20px;
    color: #fff;
    font-family: 'Orbitron', sans-serif; /* use same look as your screenshot */
}

/* Subtitle */
.industry-subtitle {
    color: #00f7e6;
    font-size: 28px;
    margin-bottom: 25px;
}

/* Main Title */
.industry-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 auto 25px;
    max-width: 1300px;
}

/* Description Text */
.industry-text {
    max-width: 1200px;
    margin: 0 auto 40px;
    font-size: 20px;
    line-height: 1.6;
    color: #d6d6d6;
}

/* Button */
.industry-btn {
    display: inline-block;
    background: #00f7e6;
    color: #000;
    padding: 14px 45px;
    border-radius: 40px;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.industry-btn:hover {
    background: #00e0cf;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 900px) {
    .industry-title {
        font-size: 36px;
    }
    .industry-text {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .industry-title {
        font-size: 30px;
    }
    .industry-subtitle {
        font-size: 22px;
    }
}
.blog-section {
    padding: 60px 5%;
}

.blog-heading {
    text-align: center;
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 18px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 22px rgba(0,0,0,0.18);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px 0;
    font-size: 14px;
    color: #777;
}

.blog-title {
    padding: 10px 20px 25px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #222;
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
.contact-box-section {
    background: #757575;
    padding: 80px 5%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 40px;
}

.contact-box {
    background: #0d0d0d;
    width: 480px;            /* EXACT size like screenshot */
    padding: 60px 40px;
    border-radius: 10px;
    text-align: center;
}

.icon i {
    font-size: 60px;
    color: #00f5c8;
    margin-bottom: 25px;
}

.contact-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 34px;
    margin-bottom: 8px;
    color: white;
}

.contact-box p {
    font-size: 20px;
    color: #e6e6e6;
}

@media (max-width: 1100px) {
    .contact-box-section {
        flex-direction: column;
    }
}
.contact-section {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 80px 6%;
    background: #1a1a1a;
    color: white;
    flex-wrap: wrap;
}

.contact-form-container,
.contact-details {
    flex: 1;
    min-width: 380px;
}

.contact-form-container h2,
.contact-details h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 38px;
    color: #00f5c8;
    margin-bottom: 25px;
}

.contact-form {
    background: #0d0d0d;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 255, 220, 0.1);
}

.input-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border-radius: 8px;
    border: 2px solid #222;
    outline: none;
    background: #151515;
    color: white;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00f5c8;
    box-shadow: 0 0 10px rgba(0, 245, 200, 0.4);
}

textarea {
    height: 130px;
    resize: none;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 20px;
    font-family: 'Orbitron', sans-serif;
    border: none;
    border-radius: 50px;
    background: #00f5c8;
    color: #000;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 255, 220, 0.6);
}

/* CONTACT DETAILS RIGHT SIDE */

.contact-details {
    background: #0d0d0d;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 255, 220, 0.1);
    height: fit-content;
}

.contact-details p {
    font-size: 20px;
    margin: 18px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e6e6e6;
}

.contact-details i {
    color: #00f5c8;
    font-size: 22px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-section {
        flex-direction: column;
    }
}
/* ------------------------------------------
   GLOBAL MOBILE FIXES
------------------------------------------- */
@media (max-width: 1200px) {
    .header-container,
    .welcome-section,
    .precision-section,
    .why-wrapper,
    .white-metal-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* ------------------------------------------
   HEADER RESPONSIVE
------------------------------------------- */
@media (max-width: 900px) {
    .header-container {
        flex-wrap: wrap;
    }
    .logo img {
        height: 55px;
    }
}

/* ------------------------------------------
   HERO RESPONSIVE
------------------------------------------- */
@media (max-width: 900px) {
    .hero-banner {
        height: auto;
        padding: 80px 20px !important;
        text-align: center;
        justify-content: center;
    }
    .hero-content h1 {
        font-size: 38px !important;
    }
    .hero-content h3 {
        font-size: 20px !important;
    }
}

/* ------------------------------------------
   WELCOME SECTION
------------------------------------------- */
@media (max-width: 900px) {
    .welcome-section {
        flex-direction: column;
        padding: 40px 20px !important;
    }
    .welcome-left,
    .welcome-right {
        width: 100% !important;
    }
    .welcome-small-img {
        position: relative;
        left: 0;
        bottom: 0;
        width: 70%;
        margin: 20px auto 0;
        display: block;
    }
}

/* ------------------------------------------
   PRECISION SECTION
------------------------------------------- */
@media (max-width: 900px) {
    .precision-section {
        flex-direction: column !important;
        padding: 40px 20px !important;
        gap: 40px !important;
    }
    .precision-left,
    .precision-right {
        width: 100% !important;
    }
    .precision-right {
        grid-template-columns: 1fr !important;
    }
}

/* ------------------------------------------
   FAQ GRID
------------------------------------------- */
@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ------------------------------------------
   VALUES SECTION
------------------------------------------- */
@media (max-width: 900px) {
    .values-section {
        flex-direction: column !important;
        padding: 40px 20px !important;
    }
    .values-left,
    .values-right {
        width: 100% !important;
    }
    .values-right {
        flex-direction: column !important;
    }
}

/* ------------------------------------------
   WHY CHOOSE US
------------------------------------------- */
@media (max-width: 900px) {
    .why-wrapper {
        flex-direction: column !important;
        text-align: center;
        padding: 40px 20px !important;
    }
    .why-grid {
        grid-template-columns: 1fr !important;
        width: 100%;
    }
}

/* ------------------------------------------
   INDUSTRY BANNER
------------------------------------------- */
@media (max-width: 700px) {
    .industry-title {
        font-size: 32px !important;
    }
}

/* ------------------------------------------
   BLOG GRID
------------------------------------------- */
@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}
@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ------------------------------------------
   CONTACT BOX
------------------------------------------- */
@media (max-width: 900px) {
    .contact-box-section {
        flex-direction: column !important;
        padding: 40px 20px !important;
    }
    .contact-box {
        width: 100% !important;
        padding: 30px !important;
    }
}

/* ------------------------------------------
   CONTACT FORM
------------------------------------------- */
@media (max-width: 900px) {
    .contact-section {
        flex-direction: column !important;
        padding: 40px 20px !important;
    }
    .contact-form-container,
    .contact-details {
        width: 100% !important;
    }
}
/* Smooth dropdown animation */
.dropdown-menu {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
}

/* Desktop hover animation */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Mobile when active */
.dropdown-menu.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}
