/* ===== Oral Arabia sd- Main Stylesheet ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0a1a2a;
    --charcoal: #2a3a45;
    --orange: #ff6b35;
    --orange-dark: #e55a2b;
    --gold: #c4a77d;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --text-dark: #1e2b37;
    --text-light: #5a6b7a;
    --shadow: 0 15px 40px rgba(0,0,0,0.12);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* ===== Header Styles ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

.site-header.scrolled {
    background: var(--navy);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo img {
    height: 50px;
    width: auto;
    margin-right: 10px;
    transition: var(--transition);
}

.site-header.scrolled .logo img {
    height: 45px;
}

.logo span {
    color: var(--orange);
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange);
}

.mobile-toggle {
    display: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
}

/* ===== Hero Slider ===== */
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease, visibility 1.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slider-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,26,42,0.95) 0%, rgba(42,58,69,0.85) 100%);
}

.slider-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 20px;
    color: var(--white);
}

.hero-main-text {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
}

.hero-main-text span {
    color: var(--orange);
    display: block;
    font-size: 3rem;
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
}

.btn {
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,107,53,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
}

/* Hero Stats - Optional */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    opacity: 0;
    transform: translateY(30px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Animations */
@keyframes heroReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.active .hero-main-text {
    animation: heroReveal 1.4s 0.4s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.active .hero-subtitle {
    animation: fadeUp 1.2s 0.8s forwards;
}

.active .hero-buttons {
    animation: fadeUp 1.2s 1.1s forwards;
}

.active .hero-stats {
    animation: fadeUp 1.2s 1.4s forwards;
}

/* Slider Controls */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--orange);
    transform: scale(1.3);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
    pointer-events: none;
}

.arrow {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
    border: 1px solid rgba(255,255,255,0.2);
}

.arrow:hover {
    background: var(--orange);
    border-color: var(--orange);
}

/* ===== Container ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== Section Styles ===== */
.section {
    padding: 100px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--orange);
}

.section-description {
    max-width: 700px;
    margin: 20px auto 0;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ===== Stats Bar ===== */
.stats-bar {
    background: linear-gradient(135deg, var(--navy), var(--charcoal));
    padding: 40px 0;
    margin-top: -1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stats-bar .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--orange);
    display: block;
    margin-bottom: 5px;
}

.stats-bar .stat-label {
    color: var(--white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Certifications Showcase ===== */
.certifications-showcase {
    padding: 80px 0;
    background: var(--white);
}

.certificates-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.certificate-showcase-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    aspect-ratio: 3/4;
}

.certificate-showcase-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(255,107,53,0.2);
}

.certificate-image {
    width: 100%;
    height: 100%;
}

.certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.certificate-showcase-card:hover .certificate-image img {
    transform: scale(1.05);
}

.certificate-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10,26,42,0.95), transparent);
    padding: 30px 20px 20px;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.certificate-showcase-card:hover .certificate-overlay {
    transform: translateY(0);
}

.certificate-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--orange);
}

.certificate-overlay p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.cert-number {
    display: inline-block;
    background: rgba(255,107,53,0.2);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid var(--orange);
}

/* ===== VMV Section ===== */
.vmv-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg), var(--white));
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vmv-card {
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.vmv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.vmv-card.vision::before {
    background: var(--orange);
}
.vmv-card.mission::before {
    background: var(--navy);
}
.vmv-card.values::before {
    background: var(--gold);
}

.vmv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.vmv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
}

.vision .vmv-icon {
    color: var(--orange);
    background: rgba(255,107,53,0.1);
}
.mission .vmv-icon {
    color: var(--navy);
    background: rgba(10,26,42,0.1);
}
.values .vmv-icon {
    color: var(--gold);
    background: rgba(196,167,125,0.1);
}

.vmv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.vision h3 { color: var(--orange); }
.mission h3 { color: var(--navy); }
.values h3 { color: var(--gold); }

.vmv-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* ===== Safety Banner ===== */
.safety-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy), #1a2f3f);
    position: relative;
    overflow: hidden;
}

.safety-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="rgba(255,107,53,0.05)"><path d="M50 15 L85 35 L85 65 L50 85 L15 65 L15 35 Z"/></svg>');
    background-size: 100px 100px;
}

.safety-content {
    max-width: 700px;
    color: var(--white);
}

.safety-tag {
    display: inline-block;
    background: var(--orange);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.safety-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.safety-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.safety-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.badge i {
    color: var(--orange);
    margin-right: 8px;
}

/* ===== About Section ===== */
.about-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-content-left h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin: 20px 0 30px;
    line-height: 1.3;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.capability-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.capability-tag {
    background: var(--light-bg);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy);
    border: 1px solid rgba(255,107,53,0.2);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.about-stat-card {
    background: linear-gradient(135deg, var(--light-bg), var(--white));
    padding: 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.about-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--orange);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,107,53,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--orange);
}

.stat-detail {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.facility-location {
    background: var(--navy);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.facility-location i {
    font-size: 2rem;
    color: var(--orange);
}

.facility-location h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.facility-location p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ===== Services Visual Grid ===== */
.services-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.services-category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.category-tab {
    padding: 10px 25px;
    border: none;
    background: var(--white);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-light);
}

.category-tab.active {
    background: var(--orange);
    color: var(--white);
}

.services-visual-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.service-visual-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--orange), transparent);
    transition: height 0.4s ease;
    opacity: 0.1;
}

.service-visual-card:hover::before {
    height: 100%;
}

.service-visual-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(255,107,53,0.15);
}

.service-visual-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,107,53,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--orange);
    transition: all 0.3s ease;
}

.service-visual-card:hover .service-visual-icon {
    background: var(--orange);
    color: var(--white);
}

.service-visual-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--navy);
}

.service-visual-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-hover-info {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.service-visual-card:hover .service-hover-info {
    opacity: 1;
    transform: translateY(0);
}

.spec {
    font-size: 0.7rem;
    background: var(--light-bg);
    padding: 3px 8px;
    border-radius: 12px;
    color: var(--navy);
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===== Resources Showcase ===== */
.resources-showcase {
    padding: 80px 0;
    background: var(--white);
}

.resources-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.resource-category {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
}

.resource-category h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.resource-category h3 i {
    color: var(--orange);
}

.equipment-items-grid,
.manpower-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.equipment-item,
.manpower-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    background: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.equipment-item:hover,
.manpower-item:hover {
    transform: translateX(5px);
    background: var(--orange);
    color: var(--white);
}

.equipment-item.highlight,
.manpower-item.highlight {
    border-left: 4px solid var(--orange);
}

.equipment-name,
.manpower-role {
    font-weight: 500;
}

.equipment-qty,
.manpower-qty {
    font-weight: 700;
    color: var(--orange);
}

.equipment-item:hover .equipment-qty,
.manpower-item:hover .manpower-qty {
    color: var(--white);
}

/* ===== Projects Gallery ===== */
.projects-gallery {
    padding: 80px 0;
    background: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10,26,42,0.95), transparent);
    padding: 30px 20px 20px;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== Chairman Message ===== */
.chairman-message-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white), var(--light-bg));
}

.chairman-showcase {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.chairman-image-frame {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.chairman-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.chairman-message-content {
    padding: 60px 60px 60px 0;
    position: relative;
}

.quote-mark {
    font-size: 8rem;
    color: var(--orange);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -30px;
}

.message {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--navy);
    margin-bottom: 30px;
    font-style: italic;
}

.chairman-info h3 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 5px;
}

.chairman-info .title {
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 20px;
}

.signature-line {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
}

/* ===== Enquiry Section ===== */
.enquiry-enhanced {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy), #0d1f30);
    position: relative;
    overflow: hidden;
}

.enquiry-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 70%);
}

.enquiry-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.enquiry-left {
    color: var(--white);
}

.enquiry-tag {
    display: inline-block;
    background: var(--orange);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.enquiry-left h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.enquiry-left > p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.benefits-list {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,107,53,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--orange);
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.benefit-item p {
    opacity: 0.8;
}

.emergency-contact {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.emergency-contact i {
    font-size: 1.5rem;
    color: var(--orange);
}

.emergency-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
}

.emergency-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.enquiry-right {
    position: relative;
}

.form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.form-card h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.form-card > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.enquiry-form-enhanced {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--light-bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
    background: var(--white);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    background: var(--orange);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,107,53,0.3);
}

/* ===== Clients Marquee ===== */
.clients-marquee {
    padding: 40px 0;
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.marquee-title {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 500;
}

.marquee-wrapper {
    overflow: hidden;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    font-size: 1.5rem;
    color: var(--navy);
    font-weight: 600;
}

.marquee-content span {
    color: var(--orange);
    margin: 0 20px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Contact Cards ===== */
.contact-cards {
    padding: 60px 0;
    background: var(--light-bg);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.contact-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--orange);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,107,53,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--orange);
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-card-icon {
    background: var(--orange);
    color: var(--white);
}

.contact-info-card h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ===== Vision 2030 Styles ===== */
.vision-badge-slider {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto 20px;
    border: 1px solid rgba(255,107,53,0.3);
}

.vision-2030-icon {
    height: 30px;
    width: auto;
}

.vision-badge-slider span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.vision-2030-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa, #e9ecef);
    border-bottom: 3px solid var(--orange);
}

.vision-banner-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.vision-logo-container {
    flex: 0 0 200px;
}

.vision-2030-large {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.vision-2030-large:hover {
    transform: scale(1.05);
}

.vision-text-container {
    flex: 1;
}

.vision-text-container h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.vision-highlight {
    color: var(--orange);
    position: relative;
    display: inline-block;
}

.vision-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255,107,53,0.2);
    z-index: -1;
}

.vision-text-container p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.vision-stats {
    display: flex;
    gap: 30px;
}

.vision-stat-item {
    text-align: center;
}

.vision-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1.2;
}

.vision-stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vision-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(255,107,53,0.2);
}

.vision-mini-icon {
    height: 25px;
    width: auto;
    filter: brightness(0) invert(1);
}

.vision-mini-badge span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-vision-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--navy), var(--charcoal));
    padding: 6px 15px;
    border-radius: 30px;
    width: fit-content;
    margin-bottom: 20px;
}

.vision-form-icon {
    height: 20px;
    width: auto;
    filter: brightness(0) invert(1);
}

.form-vision-badge span {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ===== Mega Dropdown Styles ===== */
.services-dropdown {
    position: static;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.dropdown-trigger i {
    font-size: 12px;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.services-dropdown:hover .dropdown-trigger i,
.services-dropdown:focus-within .dropdown-trigger i {
    transform: rotate(180deg);
}

.mega-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--white);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    border-top: 4px solid var(--orange);
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.services-dropdown:hover .mega-dropdown,
.services-dropdown:focus-within .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-dropdown-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 30px 35px;
    background: linear-gradient(135deg, var(--white) 0%, #f9fbfd 100%);
    position: relative;
    overflow: hidden;
}

.mega-dropdown-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,107,53,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.mega-dropdown-container::after {
    content: '15 SERVICES';
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255,107,53,0.03);
    pointer-events: none;
    z-index: 0;
    line-height: 1;
    letter-spacing: 5px;
}

.mega-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255,107,53,0.2);
    position: relative;
    z-index: 2;
}

.mega-dropdown-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0;
    position: relative;
    display: inline-block;
}

.mega-dropdown-header h3::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--orange);
    border-radius: 3px;
}

.service-count {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255,107,53,0.3);
    position: relative;
    overflow: hidden;
}

.service-count::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.mega-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 18px;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,107,53,0.05), rgba(255,107,53,0.02));
    transition: width 0.4s ease;
    z-index: -1;
}

.service-item:hover {
    transform: translateY(-5px) translateX(5px);
    box-shadow: 0 20px 30px rgba(255,107,53,0.15);
    border-color: var(--orange);
    background: linear-gradient(135deg, var(--white), #fff5f0);
}

.service-item:hover::before {
    width: 100%;
}

.service-item i {
    font-size: 1.5rem;
    color: var(--orange);
    min-width: 40px;
    height: 40px;
    background: rgba(255,107,53,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-item:hover i {
    background: var(--orange);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.service-item span {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
    font-weight: 600;
    flex: 1;
    transition: color 0.3s ease;
}

.service-item:hover span {
    color: var(--navy);
}

.service-item em {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    font-style: normal;
    margin-top: 4px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.service-item:hover em {
    color: var(--orange);
}

.service-item.featured {
    background: linear-gradient(135deg, #fff8f5, var(--white));
    border-left: 3px solid var(--orange);
}

.service-item.featured i {
    background: var(--orange);
    color: var(--white);
}

.mega-dropdown-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

.view-all-services {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.view-all-services i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.view-all-services:hover {
    background: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,107,53,0.3);
}

.view-all-services:hover i {
    transform: translateX(5px);
}

.mega-dropdown-quicklinks {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    padding: 0 10px;
    position: relative;
    z-index: 2;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 10px;
    border-radius: 30px;
    background: rgba(255,255,255,0.5);
}

.quick-link i {
    color: var(--orange);
    font-size: 0.8rem;
}

.quick-link:hover {
    color: var(--orange);
    background: rgba(255,107,53,0.05);
}

/* ===== Footer Styles ===== */
.site-footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 80px 40px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-logo span {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 1px;
}

.footer-logo span span {
    color: var(--orange);
}

.footer-about p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--orange);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--orange);
    transform: translateX(5px);
}

.view-more {
    font-size: 0.85rem;
    color: var(--orange) !important;
    font-weight: 600;
    margin-top: 5px;
}

.view-more i {
    font-size: 0.8rem;
}

.vision-badge-small {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--orange);
    margin-top: 5px;
    background: rgba(255,107,53,0.1);
    padding: 3px 10px;
    border-radius: 20px;
}

.vision-badge-small i {
    margin-right: 5px;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-contact-info i {
    color: var(--orange);
    width: 20px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.safety-motto {
    color: var(--orange);
    font-weight: 600;
    letter-spacing: 1px;
}

.copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ===== Animations ===== */
@keyframes slideInFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-dropdown:hover .service-item {
    animation: slideInFade 0.4s ease forwards;
    opacity: 0;
}

.services-dropdown:hover .service-item:nth-child(1) { animation-delay: 0.05s; }
.services-dropdown:hover .service-item:nth-child(2) { animation-delay: 0.1s; }
.services-dropdown:hover .service-item:nth-child(3) { animation-delay: 0.15s; }
.services-dropdown:hover .service-item:nth-child(4) { animation-delay: 0.2s; }
.services-dropdown:hover .service-item:nth-child(5) { animation-delay: 0.25s; }
.services-dropdown:hover .service-item:nth-child(6) { animation-delay: 0.3s; }
.services-dropdown:hover .service-item:nth-child(7) { animation-delay: 0.35s; }
.services-dropdown:hover .service-item:nth-child(8) { animation-delay: 0.4s; }
.services-dropdown:hover .service-item:nth-child(9) { animation-delay: 0.45s; }
.services-dropdown:hover .service-item:nth-child(10) { animation-delay: 0.5s; }
.services-dropdown:hover .service-item:nth-child(11) { animation-delay: 0.55s; }
.services-dropdown:hover .service-item:nth-child(12) { animation-delay: 0.6s; }
.services-dropdown:hover .service-item:nth-child(13) { animation-delay: 0.65s; }
.services-dropdown:hover .service-item:nth-child(14) { animation-delay: 0.7s; }
.services-dropdown:hover .service-item:nth-child(15) { animation-delay: 0.75s; }

/* ===== Responsive Design ===== */
@media (max-width: 1400px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 1200px) {
    .hero-main-text {
        font-size: 3.5rem;
    }
    
    .hero-main-text span {
        font-size: 2.5rem;
    }
    
    .services-visual-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .mega-dropdown-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .hero-main-text {
        font-size: 3rem;
    }
    
    .hero-main-text span {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-grid,
    .chairman-showcase,
    .enquiry-wrapper,
    .resources-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .services-visual-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .certificates-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vmv-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vision-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .vision-logo-container {
        max-width: 150px;
    }
    
    .vision-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--navy);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        transition: 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 15px 0;
    }
    
    .hero-main-text {
        font-size: 2.5rem;
    }
    
    .hero-main-text span {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-visual-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certificates-showcase,
    .vmv-grid,
    .stats-grid,
    .about-stats-grid,
    .equipment-items-grid,
    .manpower-items-grid,
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .mega-dropdown {
        display: none;
    }
    
    .slider-arrows {
        display: none;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 576px) {
    .hero-main-text {
        font-size: 2rem;
    }
    
    .hero-main-text span {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        gap: 15px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .services-visual-grid {
        grid-template-columns: 1fr;
    }
    
    .service-visual-card {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .vision-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .safety-badges {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== Print Styles ===== */
@media print {
    .site-header,
    .hero-slider,
    .slider-arrows,
    .slider-dots,
    .btn,
    .enquiry-enhanced,
    .clients-marquee,
    .site-footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}