  /* Contact Grid Layout */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 40px;
        }

        @media (max-width: 900px) {
            .contact-grid { grid-template-columns: 1fr; }
            .hero-title { font-size: 2rem; }
        }

        /* Left Column: Info & Map */
        .contact-info-box {
            background: var(--light-bg);
            padding: 30px;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        
        .info-item { margin-bottom: 20px; display: flex; align-items: flex-start; }
        .info-item i { 
            font-size: 1.2rem; 
            color: var(--secondary-color); 
            margin-right: 15px; 
            margin-top: 5px; 
        }

        .map-container {
            width: 100%;
            height: 300px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .map-container iframe { width: 100%; height: 100%; border: 0; }

        /* Right Column: Form */
        .contact-form {
            background: #fff;
            padding: 0;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        @media (max-width: 600px) {
            .form-grid { grid-template-columns: 1fr; }
        }

        .form-group { margin-bottom: 15px; }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #555;
        }

        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-family: inherit;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(0, 78, 146, 0.1);
        }

        .full-width { grid-column: 1 / -1; }

        .btn-submit {
            background-color:#000;
            color: #fff;
            padding: 14px 30px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            transition: var(--transition);
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .btn-submit:hover { background-color: #003366; transform: translateY(-2px); }
        .btn-submit:disabled { background-color: #ccc; cursor: not-allowed; transform: none; }

        /* Notification Overlay */
        .notification-overlay {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0,0,0,0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            backdrop-filter: blur(4px);
        }

        .notification-overlay.show { opacity: 1; visibility: visible; }

        .notification-popup {
            background: #fff;
            padding: 40px;
            text-align: center;
            border-radius: 8px;
            width: 90%;
            max-width: 400px;
            transform: scale(0.8);
            transition: var(--transition);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .notification-overlay.show .notification-popup { transform: scale(1); }

        .notification-icon {
            width: 60px; height: 60px;
            background: #28a745;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            margin: 0 auto 20px;
        }

        .close-notification {
            margin-top: 20px;
            padding: 10px 25px;
            background: #eee;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
        }
        .close-notification:hover { background: #ddd; }

        /* Loading Spinner */
        .loading-spinner {
            display: none;
            width: 18px;
            height: 18px;
            border: 3px solid #ffffff;
            border-top: 3px solid transparent;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.gallery-section {
        max-width: 1200px;
        margin: 40px auto;
        padding: 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background-color: #fff;
    }

    .gallery-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .gallery-header h3 {
        font-size: 1.8rem;
        color: #2c3e50;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    /* Reference Image (The collage provided) */
    .gallery-reference-img {
        width: 100%;
        max-width: 800px;
        height: auto;
        margin: 0 auto 40px auto;
        display: block;
        border: 1px solid #ddd;
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    /* The Grid Layout for 8 Boxes */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* 4 Columns */
        gap: 20px;
    }

    .gallery-item {
        position: relative;
        background-color: #f8f9fa;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        border-color: #e67e22;
    }

    .gallery-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
        border-bottom: 3px solid #e67e22;
    }

    .gallery-caption {
        padding: 12px;
        text-align: center;
        font-size: 0.9rem;
        font-weight: 600;
        color: #333;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Responsive Layout */
    @media (max-width: 992px) {
        .gallery-grid {
            grid-template-columns: repeat(2, 1fr); /* 2 Columns for tablet */
        }
    }

    @media (max-width: 576px) {
        .gallery-grid {
            grid-template-columns: 1fr; /* 1 Column for mobile */
        }
    } /* --- CONTENT WRAPPER --- */
.defence-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: 'Arimo', sans-serif;
    box-sizing: border-box;
}

/* --- HERO TITLE --- */
.defence-title {
    text-align: center;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 400;
    color: #1d1e20;
    margin: 20px 0 24px;
    text-transform: uppercase;
    line-height: 1.2;
}

/* --- DESCRIPTION --- */
.defence-desc {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.defence-desc h4 {
    font-size: 18px;
    font-weight: 500;
    color: #1d1e20;
    margin-bottom: 12px;
}

.defence-desc p {
    color: #727586;
    font-size: 16px;
}

/* --- GALLERY GRID --- */
.defence-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.defence-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.defence-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.defence-img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f0f0f0;
}

.defence-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.defence-card:hover .defence-img-box img {
    transform: scale(1.05);
}

.defence-card-label {
    padding: 20px;
}

.defence-card-label h4 {
    font-size: 18px;
    font-weight: 400;
    color: #1d1e20;
    margin: 0;
    text-transform: uppercase;
}

/* --- NEWSLETTER --- */
.defence-subscribe {
    background-color: #fff;
    padding: 60px 0 80px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.defence-subscribe h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #1d1e20;
}

.defence-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.defence-input {
    flex: 1;
    padding: 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    min-width: 200px;
}

.defence-btn {
    padding: 16px 32px;
    background-color: #1d1e20;
    color: #ffd749;
    border: 2px solid #1d1e20;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.defence-btn:hover {
    background-color: #fff;
    color: #1d1e20;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .defence-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .defence-card-label h4 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .defence-gallery {
        grid-template-columns: 1fr;
    }
    .defence-btn {
        width: 100%;
    }
}  /* --- Grid Layout --- */
        .grid-section {
            padding: 60px 0;
            background-color: var(--bg-light);
        }

        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }

        .grid-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 40px 20px;
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .grid-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        }

        .valve-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
            text-transform: uppercase;
            width: 100%;
            text-align: center;
            border-bottom: 2px solid var(--bg-light);
            padding-bottom: 15px;
        }

        .valve-specs {
            width: 100%;
            text-align: center;
        }

        .spec-list {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
            line-height: 1.5;
        }

        .spec-list li {
            margin-bottom: 8px;
        }

        .spec-label {
            font-weight: 700;
            color: #666;
            margin-bottom: 4px;
            display: inline-block;
            min-width: 140px;
        }.galleryphoto {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 10 auto;
    }

    .product-card {
      background-color: #fff;
      border-radius: 10px;
      padding: 5px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      text-align: center; margin-top: 20px;
    }

    .product-card img {
      width: 100%;
      height: 200px;
      object-fit:contain;
      border-radius: 6px;
    }

    .product-name {
      font-size: 18px;
      font-weight: bold;
      margin-top: 15px;
      color: #333;
    }

    .product-desc {
      font-size: 14px;
      color: #555;
      margin-top: 8px;
    }
.text-center { text-align: center; }
.text-primary { color: var(--primary-color); }
.text-accent { color: var(--accent-color); }
/* --- Hero Section (Static Banner) --- */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('file:///C:/Users/Administrator/Desktop/Primeline%20Components/img/imgi_27_overview-image-1-1-g5mJA4EHyP1NHxTC.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    font-weight: 300;
}

/* --- About Section (Story) --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p { margin-bottom: 15px; color: var(--text-gray); }

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.make-in-india-badge {
    margin-top: 20px;
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
}

/* --- Chairman Section --- */
.chairman-section {
    background: var(--bg-light);
}

.chairman-card {
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.chairman-img img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    height: 400px;
}

.chairman-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.chairman-content h4 {
    color: var(--accent-color);
    margin-bottom: 25px;
    font-weight: 500;
}

blockquote {
    font-size: 1.1rem;
    font-style: italic;
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* --- Vision/Mission Section --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: #fff;
    padding: 40px 30px;
    border-top: 5px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* --- Quality Policy --- */
.quality-section {
    background: var(--bg-dark);
    color: #fff;
    text-align: center;
}

.quality-content {
    max-width: 900px;
    margin: 0 auto;
}

.cert-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.cert-badge {
    background: rgba(255,255,255,0.1);
    padding: 20px 40px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}

.cert-badge h3 {
    font-size: 2rem;
    color: var(--accent-color);
}/* --- CSS VARIABLES & RESET --- */
:root {
    --primary: #0f172a; /* Deep Navy */
    --secondary: #1e293b;
    --accent: #E11F26; /* Gold/Orange */
    --text-light: #f8fafc;
    --text-dark: #334155;
    --white: #ffffff;
--primary-color: #000;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --header-height: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--primary);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
    
    /* FIX: Prevents content from hiding behind the fixed header */
    padding-top: var(--header-height);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%); /* Center the underline */
    width: 60px;
    height: 4px;
    background: var(--accent);
}

/* --- HEADER --- */
header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: var(--header-height);
    background: #fff;
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 5%; border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}
header.scrolled { height: 70px; box-shadow: 0 4px 20px rgba(0,0,0,0.3); }

.logo { font-size: 1.2rem; font-weight: 700; color: var(--white); font-family: 'Oswald', sans-serif; text-transform: uppercase; }
.logo span { color: var(--accent); }

.nav-menu { display: flex; gap: 20px; align-items: center; }
.nav-link { font-weight: 600; font-size: 0.9rem; text-transform: uppercase; color: #000; }

/* --- DROPDOWN --- */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: 100%; left: 0;
    transform: translateY(20px);
    background: var(--white); min-width: 220px;
    border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    opacity: 0; visibility: hidden; padding: 10px 0;
    transition: var(--transition);
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(15px); }
.dropdown-item { display: block; padding: 10px 20px; color: var(--primary); font-weight: 500; font-size: 0.9rem; }
.dropdown-item:hover { background: #f1f5f9; color: var(--accent); padding-left: 25px; }

.cta-btn {
    background: #000; color: var(--white); padding: 10px 25px;
    border-radius: 2px; font-weight: 700; font-size: 0.9rem;
    border: 1px solid rgba(204, 195, 195, 0.32); cursor: pointer;
}
.cta-btn:hover { background: #1d1e20; border-color: #000; }

/* --- UNIQUE SLIDER --- */
.hero-section {
    position: relative;
    /* Adjust height calculation because body has padding-top now */
    height: calc(30vh - var(--header-height)); 
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}
.slide-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; visibility: hidden; transition: opacity 0.8s ease-in-out; z-index: 1; }
.slide-container.active { opacity: 1; visibility: visible; z-index: 2; }
.slide-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; transform: scale(1.1); transition: transform 6s ease-out; filter: brightness(0.4); }
.slide-1-bg { background-image: url('file:///C:/Users/Administrator/Desktop/Primeline%20Components/img/primeline-co-u6QQ0UylxHK67MpN.webp'); } 
.slide-2-bg { background-image: url('file:///C:/Users/Administrator/Desktop/Primeline%20Components/img/imgi_27_overview-image-1-1-g5mJA4EHyP1NHxTC.jpg'); }
.slide-container.active .slide-bg { transform: scale(1.0); }

/* FIX: Perfect Centering */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* This forces perfect center */
    z-index: 3;
    max-width: 1000px;
    padding: 0 20px;
    text-align: center;
    width: 100%;
}
.slide-title { font-size: 3.5rem; color: var(--white); line-height: 1.1; margin-bottom: 20px; transform: translateY(50px); opacity: 0; transition: all 0.8s ease-out 0.3s; text-shadow: 0 10px 30px rgba(0,0,0,0.5); text-align: center; }
.slide-desc { font-size: 1.1rem; color: #e2e8f0; margin-bottom: 30px; transform: translateY(30px); opacity: 0; transition: all 0.8s ease-out 0.5s; max-width: 800px; margin-left: auto; margin-right: auto; text-align: center; }
.slide-btn { display: inline-block; transform: translateY(20px); opacity: 0; transition: all 0.8s ease-out 0.7s; text-align: center; }
.slide-container.active .slide-title, .slide-container.active .slide-desc, .slide-container.active .slide-btn { transform: translateY(0); opacity: 1; }

.slider-controls { position: absolute; bottom: 40px; right: 5%; z-index: 10; display: flex; gap: 15px; }
.slider-btn-control { width: 50px; height: 50px; border: 1px solid rgba(255,255,255,0.3); background: rgba(0,0,0,0.2); color: white; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.slider-btn-control:hover { background: var(--accent); border-color: var(--accent); color: var(--primary); }

/* --- SECTIONS --- */
.section { padding: 100px 5%; position: relative; }
.bg-light { background: var(--white); color: var(--primary); }
.bg-dark { background: #101011; color: var(--text-light); }
.grid-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 50px; }
.card { background: rgba(255,255,255,0.05); padding: 40px; border: 1px solid rgba(255,255,255,0.1); transition: var(--transition); }
.bg-light .card { background: #f8fafc; border-color: #e2e8f0; }
.card:hover { transform: translateY(-10px); border-color: var(--accent); }
.card h3 { color: var(--accent); margin-bottom: 15px; }

/* --- REVEAL ANIMATION --- */
.reveal { opacity: 0; transform: translateY(50px); transition: all 1s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- MARQUEE --- */
.marquee-container { background: var(--accent); padding: 15px 0; overflow: hidden; white-space: nowrap; position: relative; transform: rotate(-2deg) scale(1.05); z-index: 5; }
.marquee-content { display: inline-block; animation: scrollText 25s linear infinite; }
.marquee-item { display: inline-block; font-size: 1.2rem; font-weight: 700; color: #fff; text-transform: uppercase; margin: 0 40px; font-family: 'Oswald', sans-serif; }
@keyframes scrollText { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- CORE VALUES --- */
.circular-chart-container { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 0; position: relative; }
.orbit-circle { width: 300px; height: 300px; border: 2px dashed rgba(245, 158, 11, 0.3); border-radius: 50%; position: relative; display: flex; align-items: center; justify-content: center; animation: spin 60s linear infinite; }
.core-center { width: 140px; height: 140px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--primary); font-weight: 700; font-family: 'Oswald', sans-serif; font-size: 1.2rem; box-shadow: 0 0 20px rgba(245, 158, 11, 0.5); z-index: 2; }
.orbit-item { position: absolute; width: 80px; height: 80px; background: var(--white); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 0.8rem; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.orbit-item:nth-child(1) { top: -40px; left: 50%; transform: translateX(-50%); }
.orbit-item:nth-child(2) { bottom: -40px; left: 50%; transform: translateX(-50%); }
.orbit-item:nth-child(3) { left: -40px; top: 50%; transform: translateY(-50%); }
.orbit-item:nth-child(4) { right: -40px; top: 50%; transform: translateY(-50%); }
@keyframes spin { 100% { transform: rotate(360deg); } }

/* --- MD MESSAGE --- */
.md-message { display: flex; align-items: center; gap: 50px; background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%); border-radius: 10px; overflow: hidden; margin-top: 50px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.md-image { flex: 0 0 300px; height: 400px; background: url('file:///C:/Users/Administrator/Desktop/Primeline%20Components/img/md.JPG') center/cover; position: relative; }
.md-image::after { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(45deg, rgba(245,158,11,0.2), transparent); }
.md-content { padding: 40px; flex: 1; }
.md-content h3 { color: var(--accent); font-size: 1.2rem; margin-bottom: 10px; }
.md-content h2 { font-size: 2.5rem; color: var(--white); }
.md-content blockquote { font-style: italic; font-size: 1.1rem; border-left: 4px solid var(--accent); padding-left: 20px; margin: 20px 0; color: #cbd5e1; }

/* --- FOOTER --- */
footer { background: #0b1120; padding: 60px 5% 30px 5%; border-top: 5px solid var(--accent); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-col h4 { color: var(--accent); margin-bottom: 20px; font-size: 1.1rem; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a:hover { color: var(--accent); padding-left: 5px; }
.newsletter-form input { width: 100%; padding: 12px; margin-bottom: 10px; border: 1px solid #333; background: #f1f1f1; color: #1d1e20; }
.newsletter-form button { width: 100%; padding: 12px; background: #1d1e20; color: #ffd749; border: 1px solid #1d1e20; font-weight: 700; cursor: pointer; transition: 0.2s; }
.newsletter-form button:hover { background: #1d1e20; color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; flex-wrap: wrap; gap: 20px; }
.copyright-text { color: #cfcdcd; font-size: 0.85rem; text-align: left; flex: 1; font-family: 'Montserrat', sans-serif; }
.footer-logos { display: flex; gap: 15px; align-items: center; justify-content: flex-end; }
.logo-placeholder { width: 50px; height: 30px;   color: #000; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 10px; }

/* --- TOP SCROLLER --- */
#topScroller { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--accent); color: var(--primary); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 999; }
#topScroller.show { opacity: 1; visibility: visible; }
#topScroller:hover { transform: translateY(-5px); }

/* --- USP SPECIFIC STYLES --- */
.usp-section { background-color: #f8fafc; padding-bottom: 80px; }
.usp-section .card { background: #ffffff; border: 1px solid #e2e8f0; padding: 40px 30px; border-radius: 8px; transition: all 0.3s ease; height: 100%; display: flex; flex-direction: column; align-items: flex-start; }
.usp-section .card:hover { transform: translateY(-10px); border-color: var(--accent); box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.icon-box { width: 60px; height: 60px; background: rgba(245, 158, 11, 0.1); color: var(--accent); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: all 0.3s ease; }
.usp-section .card:hover .icon-box { background: var(--accent); color: #fff; transform: scale(1.1); }
.usp-section h3 { font-size: 1.25rem; color: #0d3380; margin-bottom: 15px; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.5px; }
.usp-section p { font-size: 0.95rem; color: #475569; line-height: 1.6; font-weight: 400; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .nav-menu { display: none; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-logos { justify-content: center; width: 100%; }
    .md-message { flex-direction: column; }
    .md-image { width: 100%; height: 300px; }
    .orbit-circle { width: 250px; height: 250px; }
}