/* ==========================================================================
   R. OCEAN SHIPPING - MAIN STYLESHEET
   ========================================================================== */

/* 1. DESIGN TOKENS (Variables) */
:root {
    /* Premium Color Palette */
    --primary-color: #55a5d6;
    --primary-dark: #2e3192;
    --primary-light: #edf1f4;
    --secondary-color: #201c1d;
    --tertiary-color: #a21a1e;
    --accent-gold: #ffcc00;
    --accent-green: #2a9d8f;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --black: #1a1a1a;
    --gray-300: #e0e0e0;
    --gray-400: #ccc;
    --gray-500: #aaa;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #55a5d6 0%, #2e3192 100%);
    --gradient-gold: linear-gradient(135deg, #ffcc00 0%, #FDB931 100%);
    --gradient-secondary: linear-gradient(135deg, #085a8c 0%, #052d46 100%);
    --gradient-tertiary: linear-gradient(135deg, #0f84cd 0%, #a21a1e 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(11, 61, 102, 0.9) 0%, rgba(5, 44, 74, 0.8) 100%);
    --gradient-hero-overlay: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(0, 0, 0, 0.5) 100%);

    /* Semi-transparent Colors */
    --white-98: rgba(255, 255, 255, 0.98);
    --white-05: rgba(255, 255, 255, 0.05);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-15: rgba(255, 255, 255, 0.15);
    --white-25: rgba(255, 255, 255, 0.25);
    --white-30: rgba(255, 255, 255, 0.3);
    --black-05: rgba(0, 0, 0, 0.05);
    --black-08: rgba(0, 0, 0, 0.08);
    --black-12: rgba(0, 0, 0, 0.12);
    --black-15: rgba(0, 0, 0, 0.15);
    --primary-05: rgba(85, 165, 214, 0.05);
    --primary-10: rgba(85, 165, 214, 0.1);
    --tertiary-20: rgba(253, 209, 210, 0.2);
    --tertiary-80: rgba(240, 174, 175, 0.8);
    --primary-shadow: rgba(85, 165, 214, 0.3);
    --whatsapp-green: #25D366;
    --whatsapp-shadow: rgba(37, 211, 102, 0.7);

    /* Shadows */
    --shadow-sm: 0 2px 4px var(--black-08);
    --shadow-md: 0 4px 12px var(--black-10);
    --shadow-lg: 0 8px 24px var(--black-15);

    /* Typography */
    --font-primary: 'Manrope', sans-serif;
    --font-secondary: 'Cormorant Garamond', serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* 2. BASE RESET & GLOBAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
}

section[id] {
    scroll-margin-top: 100px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

/* 3. TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--medium-gray);
}

/* 4. LAYOUT COMPONENTS */
.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow-x: hidden;
}

.section-alt {
    background-color: var(--off-white);
    border-top: 1px solid var(--black-05);
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--off-white);
    border: 2px dashed var(--tertiary-color);
    border-radius: 50px;
}

.section-subtitle i,
.section-subtitle img {
    font-size: 1.2rem;
    height: 24px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.mb-2rem {
    margin-bottom: 2rem !important;
}

.text-center {
    text-align: center !important;
}

.section-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.6;
    max-width: 800px;
    margin-bottom: 2rem;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* 5. TOP BAR */
.top-bar {
    background: var(--tertiary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.top-bar a {
    color: var(--white);
    font-weight: 600;
}

.top-bar a:hover {
    color: var(--primary-color);
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.separator {
    color: var(--white-30);
}

/* 6. NAVBAR & NAVIGATION */
.navbar {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    background: var(--white-98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-normal);
    border-bottom: 1px solid var(--tertiary-80);
}

.navbar.scrolled {
    background: var(--white-98);
    box-shadow: 0 4px 30px var(--black-12);
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 1.2rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 60px;
    object-fit: contain;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-secondary);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.logo-tagline {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-mobile-contact {
    display: none;
}

.nav-link {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 0.75rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: width var(--transition-normal);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    background: var(--primary-light);
}

.nav-link:hover::before {
    width: 70%;
}

.nav-link.active {
    color: var(--white);
    background: var(--gradient-primary);
    box-shadow: 0 4px 12px var(--primary-shadow);
}

.nav-link.active::before {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    cursor: pointer;
    padding: 0.6rem;
    background: var(--primary-05);
    border-radius: var(--radius-md);
    border: 2px solid var(--primary-10);
    transition: var(--transition-normal);
}

.menu-toggle:hover {
    background: var(--primary-10);
    border-color: rgba(85, 165, 214, 0.2);
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

/* 7. HERO SLIDER */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 0s 1s;
    z-index: 1;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    pointer-events: auto;
    transition: opacity 1s ease-in-out;
}

.hero-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.hero-slide.active .hero-slide-image {
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 2rem;
}

.hero-slide-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    font-family: var(--font-secondary);
    opacity: 0;
    transform: translateY(30px);
}

.hero-slide.active .hero-slide-title {
    animation: slideInUp 0.8s ease-out forwards;
}

.hero-slide-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
}

.hero-slide.active .hero-slide-subtitle {
    animation: slideInUp 0.8s ease-out 0.2s forwards;
}

.hero-slide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 500;
    border-radius: 50px;
    border: 1px solid var(--white);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.hero-slide.active .hero-slide-btn {
    animation: slideInUp 0.8s ease-out 0.4s forwards;
}

.hero-slide-btn:hover {
    background: var(--white);
    color: var(--black);
}

.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.hero-slider-prev,
.hero-slider-next {
    width: 60px;
    height: 60px;
    background: var(--white-15);
    backdrop-filter: blur(10px);
    border: 2px solid var(--white-30);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.hero-slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-slider-dot.active {
    background: var(--white);
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: none;
}

.hero-slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

/* 8. ABOUT SECTION */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-icon-wrapper {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-wrapper i {
    color: var(--tertiary-color);
    font-size: 1.1rem;
}

.feature-content h4 {
    font-size: 1rem;
    color: var(--black);
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
    font-family: var(--font-primary);
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    margin-top: 1rem;
    background: transparent;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid var(--primary-color);
    transition: all 0.4s ease;
    align-self: flex-start;
}

.about-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(134, 79, 40, 0.2);
}

.about-btn:hover .arrow {
    transform: translateX(5px);
}

/* 8.1 FACILITIES SHOWCASE & MOVING TEXT (Same to same like Safari) */
.facilities-showcase {
    position: relative;
    padding: 0 0 150px 0;
    background: var(--white);
    overflow: hidden;
}

.moving-text-container {
    position: absolute;
    bottom: -65px;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.04;
    user-select: none;
}

.moving-text-track {
    display: flex;
    white-space: nowrap;
    animation: moveText 20s linear infinite;
}

.moving-text-track span {
    font-size: 8rem;
    font-family: var(--font-secondary);
    font-weight: 700;
    text-transform: uppercase;
    padding-right: 50px;
}

@keyframes moveText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 2;
}

.facility-card-new {
    padding: 2rem;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.facility-card-new:last-child {
    border-right: none;
}

.facility-icon-new {
    font-size: 2.5rem;
    color: var(--tertiary-color);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.facility-card-new h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.facility-card-new p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-main-image {
    width: 100%;
    object-fit: cover;
    min-height: 500px;
    transition: transform 0.6s ease;
    max-height: 650px;
}

.about-image-wrapper:hover .about-main-image {
    transform: scale(1.05);
}

/* 9. SERVICES SHOWCASE */
.services-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.showcase-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    text-decoration: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    z-index: 1;
}

.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.showcase-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    z-index: 1;
}

.showcase-card:hover .showcase-bg {
    transform: scale(1.08);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.showcase-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-content {
    transform: translateY(0);
}

.showcase-content h3 {
    font-size: 2.4rem;
    color: var(--white);
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    font-family: var(--font-secondary);
    letter-spacing: -0.5px;
}

.showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.6rem;
    background: transparent;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    border: 1px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.showcase-card:hover .showcase-btn {
    background: var(--white);
    color: var(--black);
    transform: translateX(5px);
}

/* 9. FOOTER */
.footer-new {
    background: var(--secondary-color);
    color: var(--white);
    padding: 50px 0 20px;
    border-top: 4px solid var(--tertiary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 2.5fr;
    gap: 4rem;
}

.footer-company p {
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

.footer-logo-img {
    height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: all var(--transition-normal);
}

.footer-logo-img:hover {
    transform: translateY(-5px);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.footer-logo-main {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.footer-logo-tagline {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
}


.footer-links-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr 1.4fr;
    gap: 2rem;
}

.footer-links-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-links-col ul li {
    margin-bottom: 0.5rem;
}

.footer-links-col ul li a {
    color: var(--gray-400);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    color: var(--gray-400);
}

.contact-icon-svg {
    color: var(--primary-color);
}

.footer-separator {
    height: 1px;
    background: var(--white-10);
    margin: 3rem 0 2rem;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--gray-500);
}

.footer-copyright p {
    font-size: 0.9rem;
}

.footer-copyright span {
    color: var(--primary-light);
    font-weight: 600;
}

.footer-credit a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
}

/* 10. FLOATING BUTTONS */
.scroll-top {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--primary-shadow);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulseWhatsApp 2s infinite;
    box-shadow: 0 0 0 0 var(--whatsapp-shadow);
}

.whatsapp-float:hover {
    transform: scale(1.05);
    animation: none;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
}

/* 11. ANIMATIONS */
@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 var(--whatsapp-shadow);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* 12. UTILITIES */
.bg-banner-1 {
    background-image: url('assets/banner/banner1.webp');
}

.bg-banner-2 {
    background-image: url('assets/banner/banner2.webp');
}

.bg-banner-3 {
    background-image: url('assets/banner/banner3.webp');
}

/* 13. FUNFACT SECTION */
.funfact-section {
    padding: 100px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.funfact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.funfact-content {
    color: var(--white);
}

.funfact-section .section-title-wrapper {
    margin-bottom: 1.5rem;
}

.funfact-section .section-title-wrapper .subtitle {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.funfact-section .section-title-wrapper .section-title-main {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

.funfact-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.funfact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.funfact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.funfact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.funfact-card:hover::before {
    transform: scaleX(1);
}

.funfact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 179, 0, 0.3);
    box-shadow: 0 20px 50px rgba(255, 179, 0, 0.15);
}

.funfact-icon {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.funfact-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(239, 127, 2, 0.3));
}

.funfact-card:hover .funfact-icon i {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(239, 127, 2, 0.6));
}

.funfact-counter {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin: 0 0 1rem 0;
    font-family: var(--font-primary);
}

.funfact-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
}



/* 13. INDUSTRIES SECTION */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.industry-card {
    background: var(--white);
    padding: 30px;
    border-radius: 30px;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.industry-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color-10);
}

.industry-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.industry-icon {
    width: 50px;
    height: 50px;
    background: var(--off-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.5s ease;
    position: relative;
}

.industry-icon i {
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.5s ease;
}

.industry-card:hover .industry-icon {
    background: var(--primary-color);
    transform: scale(1.1) rotate(10deg);
}

.industry-card:hover .industry-icon i {
    color: var(--white);
}

.industry-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--black);
    margin: 0;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.industry-card p {
    color: var(--medium-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    transition: color 0.3s ease;
}

.industry-card:hover h3 {
    color: var(--primary-color);
}

/* 14. TESTIMONIALS SECTION */
.testimonials-wrapper {
    position: relative;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-track {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 60px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.quote-icon {
    margin-bottom: 20px;
}

.quote-icon i {
    font-size: 60px;
    color: var(--black);
    opacity: 0.1;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
}

.star-rating i {
    font-size: 20px;
    color: var(--primary-color);
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 30px;
    font-style: italic;
    font-family: var(--font-primary);
}

.testimonial-author {
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 8px 0;
}

.author-position {
    font-size: 14px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-3px);
}

.slider-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--black);
    width: 16px;
    height: 16px;
}

.slider-dots .dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* 15. CTA SECTION */
.cta-wrapper {
    position: relative;
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    padding: 80px;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 127, 2, 0.15) 0%, rgba(239, 127, 2, 0) 70%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    text-align: left;
}

.cta-badge {
    display: inline-block;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.cta-title {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: var(--font-primary);
}

.cta-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.cta-action {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    border: 2px solid var(--primary-color);
}

.cta-btn:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.cta-btn span.arrow {
    font-size: 1.2rem;
    transition: transform 0.4s ease;
}

.cta-btn:hover span.arrow {
    transform: translateX(5px);
}

.cta-btn.cta-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.cta-btn-outline:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* Company Profile Section */
.profile-content-wrapper {
    width: 100%;
    position: relative;
    margin-top: 50px;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 5rem;
    align-items: start;
}

.profile-main-text {
    padding-right: 2rem;
}

.profile-sidebar {
    background: var(--off-white);
    padding: 3.5rem 3rem;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 120px;
}

.profile-services-list {
    margin: 2rem 0;
}

.services-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
    letter-spacing: -0.02em;
}

.services-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.services-list li {
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.services-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 1rem;
    padding: 0.65rem 0;
    text-decoration: none;
    width: 100%;
    transition: all 0.3s ease;
}

.services-list li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}


.services-list li:last-child {
    border-bottom: none;
}

.services-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}



/* Specialized Solutions Section */
.specialized-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.special-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 30px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.special-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.special-icon {
    width: 60px;
    height: 60px;
    background: var(--off-white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    border: 1px solid var(--primary-color);
}

.special-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.special-card:hover .special-icon {
    background: var(--primary-color);
}

.special-card:hover .special-icon i {
    color: var(--white);
}

.special-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}

.special-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.special-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.25rem 0;
    color: var(--medium-gray);
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.special-list li:last-child {
    border-bottom: none;
}

.special-list li i {
    font-size: 0.75rem;
    color: var(--primary-color);
}

.featured-card {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.featured-card h3,
.featured-card .special-desc {
    color: var(--white);
}

.featured-card .special-icon {
    background: rgba(255, 255, 255, 0.15);
}

.featured-card .special-icon i {
    color: var(--white);
}

.special-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.special-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--white);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    width: fit-content;
}





/* ==========================================================================
   ABOUT PAGE SECTIONS (Maruti-style)
   ========================================================================== */

.about-page-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    margin: 0 auto;
}

.about-page-wrapper .about-main-image {
    max-height: 500px;
}

.about-page-wrapper .section-header {
    margin-bottom: 0;
}

.about-page-wrapper .about-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
}

.about-page-wrapper .about-features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin: 1.5rem 0;
}

.about-page-wrapper .about-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.about-page-wrapper .about-feature-item:hover {
    transform: translateX(10px);
}

.about-page-wrapper .about-feature-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-page-wrapper .about-feature-item h4 {
    font-size: 1.1rem;
    color: var(--black);
    font-weight: 700;
    margin: 0;
    font-family: var(--font-primary);
}

.about-page-wrapper .about-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-page-wrapper .about-visual:hover .about-main-image {
    transform: scale(1.05);
}

/* Trust Points Strip */
.trust-strip-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: 100%;
    padding: 2rem 0;
    background: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 1.5rem;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.trust-item:last-child {
    border-right: none;
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--black);
    opacity: 0.8;
}

.trust-text h4 {
    font-size: 1.15rem;
    margin: 0 0 5px;
    font-family: var(--font-primary);
    color: var(--black);
    text-transform: capitalize;
    font-weight: 400;
}

.trust-text p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--medium-gray);
    font-family: var(--font-primary);
    line-height: 1;
}

/* Mission & Vision */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin: 0 auto;
}

.mv-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mv-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mv-icon {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
    line-height: 1;
}

.mv-title {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-primary);
    background: var(--gradient-tertiary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 1rem;
}

.mv-desc {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

/* Objectives & Values */
.objectives-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.objectives-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.objective-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.objective-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.objective-card-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.objective-card:hover .objective-card-icon {
    background: var(--primary-color);
    color: var(--white);
}

.objective-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    font-family: var(--font-primary);
}

.objective-card-desc {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

.objectives-content-block {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.objectives-block-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: var(--font-primary);
    background: var(--gradient-tertiary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.objectives-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.objectives-points-list li {
    position: relative;
    padding-left: 2rem;
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--dark-gray);
}

.objectives-points-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* How it Works Section (Dark) */
.section-dark {
    background-color: var(--black);
    color: var(--white);
}

.section-dark .section-title {
    color: var(--white);
}

.section-dark .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.process-item {
    position: relative;
    padding: 3rem 2rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s ease;
}

.process-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(15, 132, 205, 0.3);
}

.process-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.process-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--white) !important;
    font-family: var(--font-primary);
}

.process-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Philosophy */
.phi-wrapper-v3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.phi-content-v3 {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.phi-header-v3 {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.phi-title-v2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    background: var(--gradient-tertiary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-primary);
    font-weight: 800;
    line-height: 1.2;
}

.phi-text-wrap-v3 p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 1.25rem;
}

.phi-features-v3 {
    display: grid;
    grid-template-columns: 1fr;
}

.phi-f-card-v3 {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.5rem 0;
}

.phi-f-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.phi-f-card-v3 span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
}

.phi-visual-v3 {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 500px;
}

.phi-img-main-v3 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.phi-visual-v3:hover .phi-img-main-v3 {
    transform: scale(1.08);
}

/* --- SERVICES PAGE SECTIONS (Rightwood-style) --- */

.services-page-wrapper .section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    background: var(--gradient-tertiary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-secondary);
    font-weight: 800;
    line-height: 1.2;
    /* display: inline-block; */
    margin-bottom: 1.5rem;
}

.feature-list-ul {
    margin-top: 1rem;
    list-style: none;
    padding-left: 0;
}

.feature-list-icon {
    color: var(--tertiary-color);
    margin-right: 10px;
}

.product-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
    margin-bottom: 20px;
}

.product-chip {
    padding: 10px 18px;
    background-color: var(--tertiary-20);
    color: var(--dark-gray);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 14px;
}

/* PRODUCT SLIDER */
.product-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.product-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.product-slide {
    min-width: 100%;
    position: relative;
}

.product-slide img {
    width: 100%;
    height: 550px;
    display: block;
    object-fit: cover;
}

.product-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
    z-index: 10;
}

.product-slider-nav .prod-btn {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.product-slider-nav .prod-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.product-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.prod-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.prod-dot.active {
    background: var(--white);
    border-color: rgba(0, 0, 0, 0.1);
    transform: scale(1.2);
}

/* FEATURE STRIP (TRUST BAR) */
.feature-strip {
    background-color: #e5effc;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-strip-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

.feature-item-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0.5rem;
}

.feature-strip-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature-item-col:hover .feature-strip-icon {
    transform: translateY(-8px);
    color: var(--accent-gold);
}

.feature-strip-title {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--black);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-family: var(--font-primary);
}

.feature-strip-desc {
    font-size: 0.85rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
    max-width: 240px;
}

/* MOVING TEXT SECTION */
.moving-text-section {
    padding: 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.moving-text-wrapper {
    padding: 0;
    margin: 0;
}

.tm-marquee-parent {
    overflow: hidden;
    width: 100%;
    padding: 22px 0;
}

.tm-marquee-repeater {
    position: relative;
    --tm-marquee-animation-duration: 35s;
    --gap: 0px;
    display: flex;
    user-select: none;
    gap: var(--gap);
}

.tm-marquee-repeater .tm-marquee-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll var(--tm-marquee-animation-duration) linear infinite;
}

.tm-marquee-repeater .text {
    position: relative;
    color: var(--white);
    font-size: 22px;
    line-height: 1.3;
    padding: 0 40px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-weight: 700;
    font-family: var(--font-primary);
    gap: 15px;
}

.tm-marquee-repeater .text i {
    font-size: 18px;
    color: var(--accent-gold);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

/* UTILITY */
.mt-15 {
    margin-top: 15px !important;
}

.align-center {
    align-items: center;
}

.align-start {
    align-self: flex-start;
}



/* 16. RESPONSIVE MEDIA QUERIES (Desktop-First) */

/* 16. RESPONSIVE MEDIA QUERIES (Desktop-First) */





/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

/* 15. PAGE HERO (INNER PAGES) */
.page-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-image: url('assets/page-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 200px 0 120px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(17, 17, 17, 0.75) 50%, rgba(10, 10, 10, 0.85) 100%);
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    backdrop-filter: blur(15px);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(85, 165, 214, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.breadcrumb-nav:hover {
    background: rgba(85, 165, 214, 0.1);
    transform: translateY(-2px);
    border-color: rgba(85, 165, 214, 0.4);
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--primary-color);
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.breadcrumb-current {
    color: var(--primary-color);
    font-weight: 600;
}

/* 16. CONTACT SECTION */
.contact-page-section {
    padding: 100px 0;
}

.contact-wrapper {
    margin-top: 3rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

/* ── Unified Contact Board ───────────────────────────────────────────── */
.contact-board-unified {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
    margin-bottom: 4rem;
    border: 1px solid rgba(85, 165, 214, 0.4);
}

/* Left: Brand Visual Panel */
.contact-visual-panel {
    background: var(--gradient-primary);
    padding: 3.5rem 3rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.contact-visual-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.large-bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.07);
    line-height: 1;
    pointer-events: none;
}

.visual-content {
    position: relative;
    z-index: 1;
}

.visual-text h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.visual-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

/* Right: Info List Panel */
.contact-info-list-panel {
    background: var(--white);
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.info-row-modern {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-row-modern:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-row-modern:first-child {
    padding-top: 0;
}

.info-row-modern:hover {
    padding-left: 0.5rem;
}

.row-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(85, 165, 214, 0.25);
    transition: all 0.3s ease;
}

.info-row-modern:hover .row-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 24px rgba(85, 165, 214, 0.4);
}

.row-icon i {
    font-size: 1.1rem;
    color: var(--white);
}

.row-text {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    text-align: left;
}

.row-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.row-value {
    font-size: 1rem;
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    line-height: 1.5;
    transition: color 0.3s ease;
    display: block;
}

.row-value:hover {
    color: var(--tertiary-color);
}

.row-values-stack {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Social Section */
.contact-social-section {
    margin: 4rem 0;
}

.contact-social-wrapper {
    background: var(--off-white);
    padding: 4rem 2rem;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.contact-social-wrapper h3 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.contact-social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: var(--black);
    transition: all 0.3s ease;
    min-width: 100px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-social-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-social-icon span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--black);
    transition: all 0.3s ease;
}

.contact-social-icon:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(85, 165, 214, 0.15);
    background: var(--white);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.2);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-form-header h3 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.contact-form-header p {
    font-size: 1rem;
    color: var(--dark-gray);
    margin: 0;
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    position: relative;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--black);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    background: #fafafa;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(85, 165, 214, 0.1);
    background: var(--white);
}

.form-group.error .form-control {
    border-color: #e74c3c;
}

.error-message {
    display: none;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.form-group.error .error-message {
    display: block;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    margin-top: 1rem;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(85, 165, 214, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(85, 165, 214, 0.4);
    background: var(--black);
    color: var(--white);
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit .btn-loader {
    display: none;
}

.btn-submit.loading .btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.form-message {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    display: none;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.form-message.show {
    display: flex;
}

.form-message i {
    font-size: 2rem;
    flex-shrink: 0;
}

.success-message {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.2);
    color: #27ae60;
}

.error-message-box {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.2);
    color: #c0392b;
}

.form-message-content h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.form-message-content p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ===================================
   17. 404 ERROR PAGE STYLES
   =================================== */
.error-page-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 0 100px 0;
    text-align: center;
    background: var(--off-white);
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-icon {
    position: relative;
    font-size: 10rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    opacity: 0.15;
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-icon i {
    animation: float 4s ease-in-out infinite;
}

.error-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    font-weight: 800;
    color: var(--secondary-color);
    opacity: 1;
    font-family: var(--font-primary);
    letter-spacing: -5px;
}

.error-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: var(--gradient-tertiary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
}

.error-description {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(85, 165, 214, 0.3);
    justify-content: center;
}

.error-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(85, 165, 214, 0.4);
    background: var(--primary-dark);
}

.error-btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.error-btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(85, 165, 214, 0.2);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* ==========================================================================
   16. RESPONSIVE MEDIA QUERIES (Desktop-First)
   ========================================================================== */

/* 1200px Breakpoint */
@media (max-width: 1200px) {
    .objectives-wrapper {
        gap: 3rem;
    }
}

/* 1100px Breakpoint */
@media (max-width: 1100px) {
    .phi-wrapper-v3 {
        gap: 3rem;
    }
}

/* 1024px Breakpoint (Laptops/Large Tablets) */
@media (max-width: 1024px) {
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .profile-main-text {
        padding-right: 0;
    }

    .profile-sidebar {
        position: static;
        padding: 2.5rem 2rem;
    }

    .nav-container {
        padding: 1rem 20px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facility-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facility-card-new:nth-child(even) {
        border-right: none;
    }

    .facility-card-new {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .facility-card-new:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .moving-text-track span {
        font-size: 6rem;
    }

    .moving-text-container {
        bottom: -36px;
    }

    .funfact-wrapper {
        gap: 3rem;
    }

    /* About Section Responsive (Maruti-style) */
    .trust-strip-wrapper {
        flex-wrap: wrap;
        gap: 2rem;
        border: none;
        padding: 2rem 1rem;
    }

    .trust-item {
        border-right: none;
        min-width: 240px;
        justify-content: flex-start;
        padding-left: 10%;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.5rem 2.5rem;
    }

    .objectives-wrapper {
        grid-template-columns: 1fr;
    }

    .about-page-wrapper {
        gap: 1rem;
    }

    /* Services Page Responsive */
    .services-page-wrapper .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-page-wrapper .about-visual {
        order: -1;
    }
}

/* 991px Breakpoint (Landscape Tablets) */
@media (max-width: 991px) {
    .specialized-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mv-grid {
        gap: 2rem;
    }

    .mv-card {
        padding: 2rem;
    }

    .phi-wrapper-v3 {
        grid-template-columns: 1fr;
    }

    .phi-visual-v3 {
        min-height: 400px;
        order: -1;
    }

    .phi-content-v3 {
        text-align: left;
    }

    .phi-f-card-v3 {
        justify-content: flex-start;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-board-unified {
        grid-template-columns: 1fr;
    }

    .contact-visual-panel {
        padding: 3rem 2.5rem;
    }
}

/* 768px Breakpoint (Portrait Tablets) */
@media (max-width: 768px) {
    .specialized-grid {
        grid-template-columns: 1fr;
    }

    .hero-slider {
        height: 90vh;
        min-height: 500px;
    }

    .hero-slide-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }

    .hero-slide-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-bottom: 2rem;
    }

    .hero-slide-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .logo-img {
        height: 40px;
    }

    .logo-main {
        font-size: 2rem;
    }

    .logo-tagline {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .top-bar {
        display: none;
    }

    .navbar {
        top: 0;
    }

    .nav-menu {
        position: fixed;
        top: 81px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 81px);
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-shadow: 0 8px 30px var(--black-15);
        transition: var(--transition-normal);
        overflow-y: auto;
        gap: 0.5rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-mobile-contact {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--black-05);
    }

    .mobile-contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--dark-gray);
        font-size: 0.9rem;
    }

    .mobile-contact-item i {
        color: var(--tertiary-color);
        width: 20px;
        text-align: center;
    }

    /* Services Page 768px */
    .feature-strip-grid {
        flex-wrap: wrap;
        gap: 2.5rem 1rem;
    }

    .feature-item-col {
        flex: 1 1 40%;
    }

    .tm-marquee-parent {
        padding: 15px 0;
    }

    .tm-marquee-repeater .text {
        font-size: 18px;
        padding: 0 20px;
    }

    .product-slide img {
        height: 400px;
        min-height: 400px;
    }

    .mobile-contact-item a {
        color: inherit;
        font-weight: 500;
    }

    .nav-item {
        width: 100%;
        border-bottom: none;
    }

    .nav-link {
        width: 100%;
        padding: 0.75rem 1.25rem;
        justify-content: flex-start;
        border-radius: var(--radius-md);
    }

    .nav-link.active {
        color: var(--white);
        background: var(--gradient-primary);
        box-shadow: none;
    }

    .facility-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facility-card-new {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .facility-card-new:nth-child(even) {
        border-right: none;
    }

    .facility-card-new:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .moving-text-track span {
        font-size: 5rem;
    }

    .facilities-showcase {
        padding: 0 0 100px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }

    .menu-toggle.active span {
        background: var(--white);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-slider-nav {
        display: none;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-visual {
        order: -1;
    }

    .about-page-wrapper .about-visual {
        order: 0;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .funfact-section {
        padding: 60px 0;
    }

    .funfact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .funfact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 40px 20px;
        border-radius: 30px;
    }

    .cta-content {
        max-width: 100%;
        text-align: center;
    }

    .about-main-image {
        min-height: auto;
    }

    .showcase-content {
        transform: translateY(0);
    }

    .services-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-card {
        height: 360px;
        padding: 1.5rem;
        border-radius: 12px;
    }

    .showcase-content h3 {
        font-size: 1.8rem;
    }

    .showcase-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Contact Responsive */
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .contact-info-list-panel {
        padding: 2rem 1.5rem;
    }

    .contact-visual-panel {
        padding: 2.5rem 1.5rem;
    }

    .visual-text h3 {
        font-size: 1.5rem;
    }

    .info-row-modern {
        padding: 1.25rem 0;
    }

    .contact-social-wrapper {
        padding: 2rem 1.5rem;
    }

    .contact-social-icons {
        gap: 1rem;
    }

    .contact-social-icon {
        min-width: 80px;
        padding: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .breadcrumb-nav {
        padding: 0.875rem 1.75rem;
        gap: 0.75rem;
    }

    .breadcrumb-link,
    .breadcrumb-current {
        font-size: 0.9rem;
    }

    .page-hero {
        padding: 150px 0 80px;
        min-height: 350px;
    }

    /* Error Page 768px */
    .error-number {
        font-size: 6rem;
    }

    .error-icon {
        font-size: 8rem;
    }

    .error-actions {
        flex-direction: column;
    }
}

/* 640px Breakpoint */
@media (max-width: 640px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .objectives-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* 480px Breakpoint (Mobile Phones) */
@media (max-width: 480px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .services-showcase-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .facility-grid {
        grid-template-columns: 1fr;
    }

    .facility-card-new {
        border-right: none;
    }

    .facility-card-new:not(:last-child) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .facility-card-new:nth-last-child(2) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
}
