/* ========================================
   Adverse Media - Professional Printing Services
   Custom CSS Stylesheet
   ======================================== */

/* CSS Variables */
:root {
    --primary-color: #d60000;
    --primary-dark: #b30000;
    --primary-light: #ff3333;
    --secondary-color: #1a1a1a;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --dark-text: #212529;
    --gray-text: #6c757d;
    --border-color: #dee2e6;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 40px rgba(214, 0, 0, 0.18);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-sm: 8px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

/* Section Padding */
.section-padding {
    padding: 100px 0;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 12px;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.section-description {
    font-size: 16px;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Primary Button */
.btn-primary {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--white);
    padding: 12px 32px;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Text Colors */
.text-primary {
    color: var(--primary-color) !important;
}

/* ========================================
   Navbar Styles
   ======================================== */
.navbar {
    padding: 15px 0;
    background: var(--white);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow);
}

.navbar-brand {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
}

.navbar-brand .brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 10px;
    margin-right: 10px;
    font-size: 22px;
}

.navbar-brand .brand-text span {
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary-color);
padding: 10px 18px;
}

.navbar-nav .nav-link::after {
    display: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-toggler {
    padding: 8px 12px;
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Mega Dropdown Menu */
.mega-dropdown {
    position: static;
}

.mega-dropdown .dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    content: "";
    border-top: 5px solid;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    font-size: 10px;
}

.mega-menu {
    width: 100%;
    max-width: 1000px;
    padding: 30px 0;
    margin-top: 0;
    border: none;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    animation: megaMenuFadeIn 0.3s ease;
}

/* Keep mega menu centered even when Bootstrap adds data-bs-popper on repeat clicks */
.mega-menu[data-bs-popper] {
    left: 50%;
    top: 100%;
    margin-top: 0;
    transform: translateX(-50%);
}

@keyframes megaMenuFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.mega-menu-section {
    padding: 0 20px;
    border-right: 1px solid var(--border-color);
}

.mega-menu-section:last-child {
    border-right: none;
}

.mega-menu-section h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mega-menu-section h5 i {
    color: var(--primary-color);
    font-size: 20px;
}

.mega-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-links li {
    margin-bottom: 12px;
}

.mega-menu-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--gray-text);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.mega-menu-links a i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
}

.mega-menu-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.mega-menu-links a:hover i {
    color: var(--white);
}

.mega-menu-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.mega-menu-footer p {
    font-size: 14px;
    color: var(--gray-text);
    margin: 0;
}

.mega-menu-footer i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c40000 50%, #ff3333 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

.hero-content {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-buttons {
    margin-bottom: 40px;
}

.hero-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    padding: 12px 32px;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.hero-buttons .btn-outline-light:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.stat-item .stat-label {
    font-size: 14px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    animation: float 6s ease-in-out infinite;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.min-vh-85 {
    min-height: 85vh;
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    background: var(--white);
}

.about-image img {
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.about-content {
    padding-left: 40px;
}

.about-content .section-subtitle {
    text-align: left;
}

.about-content .section-subtitle::after {
    left: 0;
    transform: none;
}

.about-text {
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: var(--dark-text);
}

.feature-list li i {
    color: var(--primary-color);
    font-size: 18px;
}

/* ========================================
   Services Section
   ======================================== */
.services-section {
    background: var(--light-bg);
}

.services-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.services-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 12px 20px 28px;
    align-items: stretch;
}

.services-slider::-webkit-scrollbar {
    display: none;
}

.service-card {
    flex: 0 0 clamp(280px, 32vw, 380px);
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    aspect-ratio: 3 / 4;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.25) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.14);
}

.service-card:hover::after {
    opacity: 1;
}

.service-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #f6f6f6;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.06);
}

.service-card__label {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 12px 14px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.service-card:hover .service-card__label {
    background: #ffffff;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

.services-page-grid .service-card {
    width: 100%;
}

.services-page-grid .service-card__label {
    left: 14px;
    right: 14px;
    bottom: 14px;
}

.service-card-link {
    color: inherit;
    text-decoration: none;
}

.service-card-link:hover {
    color: inherit;
}

/* Service Detail Template */
.service-page-banner {
    background: linear-gradient(135deg, #111111 0%, #2a2a2a 55%, #1a1a1a 100%);
    padding: 110px 0 70px;
}

.service-page-banner h1 {
    color: var(--white);
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 700;
}

.service-detail-section {
    padding-top: 70px;
    padding-bottom: 50px;
}

.service-main-image-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
}

.service-main-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content-card {
    padding: 8px 0;
}

.service-detail-title {
    font-size: clamp(26px, 3.5vw, 38px);
    margin-bottom: 14px;
    color: var(--secondary-color);
}

.service-detail-text {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.9;
    margin-bottom: 24px;
}

.service-why-title {
    font-size: 24px;
    margin-bottom: 16px;
}

.service-why-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--dark-text);
    font-size: 15px;
}

.service-why-list li i {
    color: var(--primary-color);
    font-size: 17px;
    margin-top: 3px;
}

.service-whatsapp-btn {
    margin-top: 10px;
    border-radius: 999px;
    background: #25d366;
    border-color: #25d366;
    color: var(--white);
    font-weight: 600;
    padding: 12px 24px;
}

.service-whatsapp-btn:hover {
    background: #1ea952;
    border-color: #1ea952;
    color: var(--white);
}

.service-gallery-section {
    padding-bottom: 80px;
}

.service-gallery-header {
    margin-bottom: 26px;
}

.service-gallery-header .section-title {
    margin-bottom: 10px;
}

.service-gallery-header .section-description {
    max-width: 640px;
}

.service-gallery-carousel .carousel-inner {
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-gallery-carousel .carousel-item img {
    width: 100%;
    height: clamp(240px, 42vw, 500px);
    object-fit: cover;
}

.service-gallery-carousel .carousel-control-prev,
.service-gallery-carousel .carousel-control-next {
    width: 50px;
    opacity: 1;
}

.service-gallery-carousel .carousel-control-prev-icon,
.service-gallery-carousel .carousel-control-next-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background-color: rgba(214, 0, 0, 0.92);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    background-size: 18px 18px;
}

.service-gallery-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 14px;
    background: linear-gradient(180deg, rgba(248, 249, 250, 0.92), rgba(255, 255, 255, 1));
}

.service-gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.service-gallery-card img {
    display: block;
    width: 100%;
    height: 100%;
}

.service-gallery-carousel .carousel-control-prev {
    justify-content: flex-start;
    left: 12px;
}

.service-gallery-carousel .carousel-control-next {
    justify-content: flex-end;
    right: 12px;
}

/* ========================================
   Products Section
   ======================================== */
.products-section {
    background: var(--white);
}

.bulk-info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.bulk-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.bulk-text {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 24px;
}

.bulk-list {
    text-align: left;
}

.bulk-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--dark-text);
}

.bulk-list li i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Product Option Cards */
.product-option-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.product-option-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.option-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.option-icon i {
    font-size: 30px;
    color: var(--white);
}

.product-option-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
}

.bulk-cta {
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    color: var(--white);
}

.bulk-cta .cta-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.bulk-cta .btn-light {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 14px 40px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.bulk-cta .btn-light:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========================================
   Trusted Companies / Clients Section with Auto Scroll
   ======================================== */
.clients-section {
    background: var(--white);
}

.clients-scroll-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.clients-scroll-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scroll-left 30s linear infinite;
}

.clients-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-logo-item {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    height: 112px;
    min-width: 190px;
    flex-shrink: 0;
}

.client-logo-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.client-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: var(--transition);
}

.client-logo-item:hover .client-logo {
    transform: scale(1.03);
}

.clients-tagline {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    background: var(--light-bg);
}

.contact-info {
    padding: 40px;
    background: var(--white);
    border-radius: 16px;
    height: 100%;
    box-shadow: var(--shadow);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: var(--white);
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 14px;
    color: var(--gray-text);
    margin: 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.social-link {
    width: 46px;
    height: 46px;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-4px);
}

.contact-form-wrapper {
    padding: 40px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 1px solid var(--border-color);
    padding: 14px 16px;
    font-size: 14px;
    border-radius: 10px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(214, 0, 0, 0.1);
    outline: none;
}

/* ========================================
   Footer Section
   ======================================== */
.footer-section {
    background: var(--secondary-color);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .navbar-brand {
    color: var(--white);
    margin-bottom: 20px;
    display: inline-flex;
}

.footer-brand .navbar-brand .brand-icon {
    background: var(--primary-color);
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 14px;
}

.contact-info-list li i {
    color: var(--primary-color);
    font-size: 16px;
}

.footer-bottom {
    padding: 24px 0;
}

.copyright,
.developer {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 100px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background: #1ea952;
    transform: translateY(-3px);
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .mega-menu {
        max-width: 900px;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-item h3 {
        font-size: 28px;
    }
    
    .mega-menu {
        max-width: 720px;
    }
    
    .mega-menu-section {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .mega-menu-section:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .hero-section {
        text-align: center;
    }

    .hero-image {
        margin-bottom: 30px;
    }

    .hero-image img {
        width: 100%;
        max-width: 400px;
        animation: none;
    }

    .hero-stats {
        justify-content: center;
    }
    
    .hero-section .row {
        flex-direction: column !important;
    }

    .hero-section .col-lg-5 {
        order: -1 !important;
    }

    .hero-section .col-lg-7 {
        order: 1 !important;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
        
    .service-card {
        padding: 30px 20px;
    }
    
    .bulk-info-card {
        padding: 30px 20px;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    /* Clients section mobile */
    .client-logo-item {
        padding: 18px;
        height: 98px;
        min-width: 170px;
    }
    
    .client-logo {
        max-height: 64px;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 26px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons .btn-lg {
        padding: 12px 24px;
        width: 100%;
    }
    
    .navbar-brand {
        font-size: 24px;
    }
    
    .navbar-brand .brand-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    
    /* Clients section small mobile */
    .client-logo-item {
        padding: 16px;
        height: 88px;
        min-width: 150px;
    }
    
    .client-logo {
        max-height: 58px;
    }

    .whatsapp-float {
        right: 20px;
        bottom: 88px;
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 22px;
    }

    .navbar-brand {
        font-size: 20px;
    }

    .brand-logo-img {
        height: 40px !important;
    }

    /* Clients section extra small */
    .clients-scroll-track {
        gap: 15px;
    }
    
    .client-logo-item {
        padding: 12px;
        height: 70px;
        min-width: 110px;
    }
    
    .client-logo {
        max-height: 40px;
    }

    .whatsapp-float {
        right: 18px;
        bottom: 84px;
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Hero Section Additional Styles */
.hero-section {
    padding-bottom: 120px;
    padding-top: 50px;
}

.hero-shape {
    bottom: -40px;
}

.hero-content {
    margin-bottom: 40px;
}

.hero-badge {
    background: #ffffff;
    color: #d60000;
    border-radius: 50px;
    padding: 10px 22px;
    font-weight: 600;
}

.hero-section .btn-primary {
    background-color: #ffffff;
    color: #d60000;
    border: 2px solid #ffffff;
}

.hero-section .btn-primary i {
    color: #d60000;
}

.hero-section .btn-primary:hover {
    background-color: #d60000;
    color: #ffffff;
    border-color: #d60000;
}

.hero-section .btn-primary:hover i {
    color: #ffffff;
}

.hero-section .hero-buttons .btn {
    padding: 14px 40px;
    font-size: 16px;
    min-width: 200px;
    text-align: center;
    border-radius: 8px;
}

#about {
    padding-top: 10px;
}

/* Why Choose Us list */
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 6px;
}

.why-item i {
    color: #d60000;
    font-size: 18px;
    margin-top: 4px;
}

.why-item span {
    line-height: 1.6;
}

.why-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}

@media (max-width: 768px) {
    .why-list {
        grid-template-columns: 1fr;
    }
}

/* Services Slider */
.services-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #d60000;
    color: #fff;
    border: none;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.left-arrow { left: 8px; }
.right-arrow { right: 8px; }

@media (max-width: 991px) {
    .services-slider-wrapper {
        padding: 0;
    }

    .service-card {
        flex: 0 0 calc(50% - 12px);
        aspect-ratio: 3 / 4;
    }

    .service-image {
        height: 100%;
    }
}

@media (max-width: 767px) {
    .services-slider-wrapper {
        padding: 0;
    }

    .service-card {
        flex: 0 0 100%;
        aspect-ratio: 4 / 5;
    }

    .service-title {
        font-size: 25px;
    }

    .service-image {
        height: 100%;
    }

    .services-arrow {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .service-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 991px) {
    .service-page-banner {
        padding: 90px 0 58px;
    }

    .service-detail-section {
        padding-top: 56px;
    }

    .service-content-card {
        margin-top: 4px;
    }
}

@media (max-width: 767px) {
    .service-gallery-section {
        padding-bottom: 64px;
    }

    .service-gallery-header {
        margin-bottom: 18px;
    }

    .service-gallery-carousel .carousel-inner {
        border-radius: 20px;
    }

    .service-gallery-carousel .carousel-item img {
        height: 180px;
    }

    .service-gallery-carousel .carousel-control-prev,
    .service-gallery-carousel .carousel-control-next {
        width: 42px;
    }

    .service-gallery-carousel .carousel-control-prev {
        justify-content: flex-start;
        left: 10px;
    }

    .service-gallery-carousel .carousel-control-next {
        justify-content: flex-end;
        right: 10px;
    }

    .service-gallery-carousel .carousel-control-prev-icon,
    .service-gallery-carousel .carousel-control-next-icon {
        width: 38px;
        height: 38px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    }

    .service-gallery-pair {
        gap: 10px;
        padding: 10px;
    }

    .service-gallery-card {
        border-radius: 12px;
    }

    .service-gallery-card img {
        height: 160px;
        object-fit: cover;
    }
}

/* ==============================
   MOBILE MEGA MENU FIX
============================== */

@media (max-width: 991px) {

    .mega-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        max-width: 100%;
        box-shadow: none;
        border-radius: 10px;
        padding: 15px;
        margin-top: 10px;
    }

    .mega-menu .container {
        padding: 0;
    }

    .mega-menu-section {
        border: none;
        padding: 10px 0;
    }

    .mega-menu-links a {
        padding: 10px;
        font-size: 14px;
    }

}
