@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;700;800&display=swap');

/* =================== DESIGN SYSTEM VARIABLES  ===================== */
:root {
    --bg-primary: #FAFAFB;
    --bg-secondary: #F4F4F5;
    --bg-glass: rgba(255, 255, 255, 0.75);
    --bg-card: rgba(255, 255, 255, 0.90);
    --color-brand: #18181B;
    --color-brand-light: #3F3F46;
    --color-accent: #E21818;
    --color-accent-rgb: 226, 24, 24;
    --color-text-main: #09090B;
    --color-text-muted: #71717A;
    --border-glass: rgba(24, 24, 27, 0.08);
    --border-glass-hover: rgba(226, 24, 24, 0.25);
    --glow-shadow: 0 10px 30px rgba(24, 24, 27, 0.03);
    --glow-shadow-strong: 0 15px 40px rgba(226, 24, 24, 0.12);

    /* Category/Division Color Themes */
    --theme-home: #E21818;
    /* Accent/Brand Red */
    --theme-wire: #f57c00;
    /* Electric Blue */
    --theme-scrap: #E21818;
    /* Recycle Green */
    --theme-molding: #E65100;
    /* Molten Orange */
    --theme-dispenser: #E21818;
    /* Precision Cyan/Teal */
    --theme-esd: #E65100;
    /* Safety Amber */
    --theme-spm: #f57c00;
    /* Robotics Purple */

    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==========  RESET & CORE BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
}

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

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

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-secondary);
    border: 2px solid var(--bg-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-brand);
}

/* ==================== REUSABLE UTILITIES & GLASSMORPHISM ==================== */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.05);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: var(--border-glass-hover);
    box-shadow: 0 8px 32px 0 rgba(var(--color-accent-rgb), 0.08), var(--glow-shadow);
}

.about-card {
    background: var(--color-text-main);
    color: #ffffff;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-brand-light) 30%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-red {
    background: linear-gradient(135deg, #ffffff 30%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.glow-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.glow-btn-primary {
    background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-brand-light) 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(24, 24, 27, 0.4);
}

.glow-btn-primary:hover {
    box-shadow: 0 4px 25px rgba(219, 26, 26, 0.4), var(--glow-shadow);
    transform: translateY(-2px);
    border-color: var(--color-accent);
}

.glow-btn-secondary {
    background: transparent;
    color: var(--color-text-main);
    border: 1px solid var(--border-glass);
}

.glow-btn-secondary:hover {
    background: rgba(140, 199, 196, 0.1);
    border-color: var(--color-accent);
    box-shadow: var(--glow-shadow);
    transform: translateY(-2px);
}

.glow-btn-youtube {
    background: linear-gradient(135deg, #18181b 0%, #09090b 100%);
    color: #ffffff;
    border: 2px solid var(--color-accent);
    box-shadow: 0 4px 15px rgba(226, 24, 24, 0.25);
    font-weight: 700;
}

.glow-btn-youtube i {
    color: var(--color-accent);
    font-size: 1.25rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease;
}

.glow-btn-youtube:hover {
    background: linear-gradient(135deg, var(--color-accent) 0%, #b01010 100%);
    color: #ffffff !important;
    border-color: #18181b;
    box-shadow: 0 6px 22px rgba(226, 24, 24, 0.5), 0 0 10px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.glow-btn-youtube:hover i {
    color: #ffffff;
    transform: scale(1.25) rotate(8deg);
}



@media (max-width: 991px) {
    .section-title {
        font-size: 22px;
    }

    .section-subtitle {
        text-align: center !important;
        font-size: 14px;
        margin-bottom: 20px;
    }
}

/* ===================== SCROLL REVEAL ANIMATIONS ===================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.active-reveal {
    opacity: 1;
    transform: translate(0);
}

/* ====================== TOP INFO BAR  ====================== */
.top-bar {
    background-color: #0c0c0e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact span {
    margin-right: 20px;
}

.top-bar-contact i {
    color: var(--color-accent);
    margin-right: 6px;
}

.top-bar-links a {
    margin-left: 15px;
    font-size: 0.85rem;
}

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

/* ==========================================================================
   HEADER & FLOATING NAVBAR
   ========================================================================== */
header.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.navbar-custom {
    padding: 15px 0;
    background: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.navbar-custom.scrolled {
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(24, 24, 27, 0.05);
    border-bottom: 1px solid var(--border-glass-hover);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-area img {
    width: 110px;
}

.logo-text h1 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Links & Color-coded Themes */
.nav-menu .nav-item:nth-child(1) .nav-link-item {
    --nav-item-color: var(--theme-home);
}

.nav-menu .nav-item:nth-child(2) .nav-link-item {
    --nav-item-color: var(--theme-wire);
}

.nav-menu .nav-item:nth-child(3) .nav-link-item {
    --nav-item-color: var(--theme-scrap);
}

.nav-menu .nav-item:nth-child(4) .nav-link-item {
    --nav-item-color: var(--theme-molding);
}

.nav-menu .nav-item:nth-child(5) .nav-link-item {
    --nav-item-color: var(--theme-dispenser);
}

.nav-menu .nav-item:nth-child(6) .nav-link-item {
    --nav-item-color: var(--theme-esd);
}

.nav-menu .nav-item:nth-child(7) .nav-link-item {
    --nav-item-color: var(--theme-spm);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link-item {
    font-family: var(--font-heading);
    font-weight: 600;
    /* Slightly bolder for improved legibility & design aesthetics */
    font-size: 16px;
    padding: 8px 0;
    letter-spacing: 0.4px;
    color: var(--color-brand-light);
    transition: var(--transition-smooth);
}

.nav-link-item:hover,
.nav-link-item.active {
    color: var(--nav-item-color);
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--nav-item-color);
    box-shadow: 0 0 8px var(--nav-item-color);
    transition: var(--transition-smooth);
}

.nav-link-item:hover::after,
.nav-link-item.active::after {
    width: 100%;
}

/* Dropdown styling */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 260px;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-bounce);
    z-index: 100;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown li {
    list-style: none;
    margin-bottom: 8px;
}

.nav-dropdown li:last-child {
    margin-bottom: 0;
}

.nav-dropdown a {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.nav-dropdown a:hover {
    color: var(--color-accent);
    background: rgba(219, 26, 26, 0.08);
    padding-left: 16px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--color-text-main);
    cursor: pointer;
    padding: 0;
    margin: 0;
    width: 44px;
    height: 44px;
    line-height: 1;
    align-items: center;
    justify-content: center;
}


@media(max-width: 767px) {
    .navbar-custom {
        padding: 12px 0;

    }

    .logo-area img {
        width: 80px;
    }
}


/* ------------------------- banner slider css start here ------------------------------- */



/* Slider wrapper */
.mainslider {
    width: 100%;
    position: relative;
}

/* Slick fixes */


/* Slide item */
.slider-big .item {
    position: relative;
}

/* Image */
.slider-big .item img {
    width: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.15);
    transition: transform 1.5s ease;
}

/* Active slide zoom effect */
.slider-big .slick-active img {
    transform: scale(1);
}


/* ------------------------- banner slider css ends here ------------------------------- */


/* Stats styling (now moved to About Us section) */
.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding-top: 30px;
    flex-wrap: wrap;
}

.stat-box h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 5px;
}

.stat-box p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero visual block (used for About banner image) */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(226, 24, 24, 0.25);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08), var(--glow-shadow);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition-smooth);
}

.hero-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    border-color: var(--color-accent);
    box-shadow: 0 20px 50px rgba(226, 24, 24, 0.1), var(--glow-shadow-strong);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ==========================================================================
   PRODUCT CATEGORIES SECTION
   ========================================================================== */
.categories-section {
    position: relative;
    background: var(--bg-secondary);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.category-img {
    position: relative;
    /* height: 240px; */
    overflow: hidden;
}

.category-img img {
    width: 100%;
    /* height: 100%;
    object-fit: cover; */
    transition: var(--transition-smooth);
}

.category-img::after {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(0deg, var(--bg-primary) 0%, transparent 80%); */
}

.category-card:hover .category-img img {
    transform: scale(1.08);
}

.category-info {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: start;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: rgba(226, 24, 24, 0.08);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-accent);
    margin-bottom: 20px;
    box-shadow: var(--glow-shadow);
}

.category-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

#category-name {
    font-size: 18px;
}

.category-info p {
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.category-link {
    margin-top: auto;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.category-link i {
    transition: var(--transition-smooth);
}

.category-card:hover .category-link i {
    transform: translateX(6px);
}


@media (max-width: 991px) {
    .category-info h3 {
        font-size: 20px;
        text-align: start;
    }

    .category-link {
        font-size: 12px;
    }
}

/* ==========================================================================
   HOW WE WORK TIMELINE
   ========================================================================== */
.timeline-section {
    position: relative;
}

.timeline-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    margin-top: 60px;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 12%;
    width: 76%;
    height: 2px;
    background: linear-gradient(90deg, var(--border-glass) 0%, var(--color-accent) 50%, var(--border-glass) 100%);
    z-index: 1;
}

.timeline-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px auto;
    background: var(--bg-secondary);
    border: 2px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.05);
    transition: var(--transition-smooth);
}

.step-number span {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-weight: 500;
}

.step-number h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent);
}

.timeline-step:hover .step-number {
    border-color: var(--color-accent);
    box-shadow: var(--glow-shadow-strong);
    transform: translateY(-5px);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-desc {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    max-width: 220px;
    margin: 0 auto;
}

/* ==========================================================================
   CLIENT LOGO TICKER
   ========================================================================== */
.client-section {
    background: var(--bg-primary);
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    padding: 60px 0;
    overflow: hidden;
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.ticker {
    display: flex;
    width: max-content;
    animation: tickerMove 25s infinite linear;
}

.ticker:hover {
    animation-play-state: paused;
}

.ticker-item {
    width: calc(100vw / 6);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
}

.ticker-item img {
    /* height: 70px;
    width: 85%;
    max-width: 170px;
    object-fit: contain; */
    background: #ffffff;
    padding: 10px 18px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.06);
    filter: grayscale(1) opacity(0.85);
    transition: var(--transition-smooth);
}

.ticker-item:hover img {
    filter: grayscale(0) opacity(1);
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(var(--color-accent-rgb), 0.15), var(--glow-shadow);
    border-color: var(--color-accent);
}

@media (max-width: 1200px) {
    .ticker-item {
        width: calc(100vw / 4);
    }
}

@media (max-width: 991px) {
    .ticker-item {
        width: calc(100vw / 2);
    }

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


@keyframes tickerMove {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* ==========================================================================
   ENQUIRY FORM SECTION
   ========================================================================== */
.enquiry-section {
    position: relative;
    overflow: hidden;
    background: #0c0c0e;
    color: #ffffff;
    padding: 100px 0;
}

.enquiry-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(226, 24, 24, 0.06) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.enquiry-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.enquiry-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.enquiry-details h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.enquiry-details p {
    color: #a1a1aa;
    line-height: 1.8;
    margin-bottom: 40px;
}

.enquiry-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.enquiry-info-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(226, 24, 24, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(226, 24, 24, 0.08);
}

.enquiry-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(226, 24, 24, 0.1);
    border: 1px solid rgba(226, 24, 24, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.enquiry-info-item:hover .enquiry-info-icon {
    background: var(--color-accent);
    color: #ffffff;
    transform: rotate(5deg) scale(1.05);
}

.enquiry-info-text h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #a1a1aa;
    margin: 0;
}

.enquiry-info-text p {
    font-family: var(--font-heading);
    font-weight: 600;
    color: #ffffff;
    margin: 5px 0 0 0;
    font-size: 1rem;
}

/* Glass Form styling */
.enquiry-form-card {
    padding: 40px;
    background: rgba(18, 18, 20, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    transition: var(--transition-smooth);
}

.enquiry-form-card:hover {
    border-color: rgba(226, 24, 24, 0.3);
    box-shadow: 0 20px 50px rgba(226, 24, 24, 0.05), var(--glow-shadow-strong);
}

.form-group-custom {
    position: relative;
    margin-bottom: 25px;
}

.form-control-custom {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #ffffff;
    outline: none;
    transition: var(--transition-smooth);
}

.form-control-custom:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 15px rgba(226, 24, 24, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.form-label-custom {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #a1a1aa;
    pointer-events: none;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

/* Trigger floating label */
.form-control-custom:focus~.form-label-custom,
.form-control-custom:not(:placeholder-shown)~.form-label-custom {
    top: -8px;
    left: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
    background: #0c0c0e;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

textarea.form-control-custom~.form-label-custom {
    top: 25px;
}

textarea.form-control-custom:focus~.form-label-custom,
textarea.form-control-custom:not(:placeholder-shown)~.form-label-custom {
    top: -8px;
}

/* Toast message style */
.form-message {
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 0.9rem;
    display: none;
}

.form-message.success {
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
}

.form-message.error {
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}


@media (max-width: 991px) {
    .enquiry-details h2 {
        font-size: 28px;
    }

    .enquiry-form-card {
        padding: 20px;
    }

    .enquiry-info-text h4 {
        text-align: start;
    }
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
footer {
    border-top: 1px solid var(--border-glass);
    background-color: #0c0c0e;
}

.footer-top {
    padding: 80px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
}

.footer-logo-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo-block img {
    width: 120px;
}

.footer-logo-block p {
    color: #fff;
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer-col-title {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-accent);
}

.footer-links-list {
    list-style: none;
    padding-left: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #fff;
    font-size: 0.9rem;
}

.footer-links-list a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-map-container {
    width: 100%;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 15px;
}

.footer-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    /* Inverts Google Map to a beautiful dark themed map */
    filter: invert(90%) hue-rotate(180deg) opacity(0.85);
}

.footer-address-block {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-address-block i {
    color: var(--color-accent);
    margin-top: 3px;
}

.footer-address-block p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Footer bottom bar */
.footer-bottom {
    background-color: #000000;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.social-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.social-icon-btn:hover {
    background: rgba(226, 24, 24, 0.08);
    border-color: var(--color-accent);
    color: var(--color-accent);
    box-shadow: var(--glow-shadow);
    transform: translateY(-3px);
}


@media (max-width: 992px) {
    .footer-top {
        padding: 60px 0 30px 0;
    }

    .footer-logo-block img {
        width: 90px;
    }
}

/* ==========================================================================
   FLOATING SIDEBAR ENQUIRY BUTTON
   ========================================================================== */
.floating-sidebar-cop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
}

.floating-sidebar-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-brand-light) 100%);
    border: 1px solid rgba(226, 24, 24, 0.4);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1), var(--glow-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: var(--transition-bounce);
}

.floating-sidebar-btn i {
    font-size: 1.5rem;
}

.floating-sidebar-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(226, 24, 24, 0.2), var(--glow-shadow-strong);
    border-color: var(--color-accent);
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }

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

@media (max-width: 992px) {
    .section-padding {
        padding: 55px 0;
    }

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

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

    .timeline-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .timeline-track::before {
        display: none;
        /* Hide linear connector track on grid wrap */
    }

    .enquiry-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .enquiry-details {
        text-align: center;
    }

    .enquiry-info-item {
        /* justify-content: center; */
    }
}

@media (max-width: 991px) {
    .top-bar {
        display: none !important;
    }

    /* Mobile Menu Drawer style */
    .menu-toggle {
        display: flex;
    }

    .hero-stats {
        justify-content: center;
        gap: 20px;
    }

    .sticky-contact-left {
        left: 15px;
        bottom: 15px;
        gap: 10px;
    }

    .sticky-contact-btn {
        width: 42px;
        height: 42px;
        font-size: 1.15rem;
    }

    .floating-sidebar-cop {
        right: 5px;
        bottom: 15px;
        display: none;
    }

    .floating-sidebar-btn {
        width: 42px;
        height: 42px;
    }

    .floating-sidebar-btn i {
        font-size: 1.15rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px;
        gap: 20px;
        transition: var(--transition-smooth);
        overflow-y: auto;
        border-top: 1px solid var(--border-glass);
    }

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

    .nav-dropdown {
        position: static;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        width: 100%;
        box-shadow: none;
        background: transparent;
        border: none;
        padding-left: 20px;
        display: none;
    }

    .nav-item:hover .nav-dropdown {
        display: block;
    }

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

    .timeline-track {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    p {
        font-size: 14px !important;
        text-align: justify !important;

    }
}

/* ==========================================================================
   BLOG SECTION & 3D CAROUSEL
   ========================================================================== */
.blog-section {
    position: relative;
    background: var(--color-text-main);
    overflow: hidden;
}

.blog-carousel-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 40px auto 0 auto;
    padding: 0 50px;
    perspective: 1000px;
    /* Essential for 3D translations */
}

.blog-carousel-container {
    position: relative;
    width: 100%;
    height: 490px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.blog-card {
    position: absolute;
    width: 360px;
    height: 100%;
    left: 50%;
    top: 50%;
    margin-left: -180px;
    margin-top: -245px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s, border-color 0.4s, box-shadow 0.4s;
    transform-style: preserve-3d;
    cursor: pointer;
    z-index: 1;
}

/* 3D Carousel positions */
.blog-card.prev {
    transform: translate3d(-270px, 0, -150px) rotateY(25deg);
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.blog-card.active {
    transform: translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
    z-index: 3;
    border-color: var(--color-accent);
    box-shadow: 0 15px 40px rgba(var(--color-accent-rgb), 0.15), var(--glow-shadow-strong);
    pointer-events: auto;
}

.blog-card.next {
    transform: translate3d(270px, 0, -150px) rotateY(-25deg);
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

/* Sub-card parts styling */
.blog-card-img-wrapper {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.blog-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-card-img-wrapper img {
    transform: scale(1.08);
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 12, 20, 0.85);
    border: 1px solid var(--border-glass);
    color: var(--color-accent);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}

.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-date i {
    color: var(--color-accent);
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text-main);
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: #000;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-read-more {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    transition: var(--transition-smooth);
}

.blog-read-more i {
    transition: var(--transition-smooth);
}

.blog-card.active:hover .blog-read-more i {
    transform: translateX(6px);
}

.blog-card.active:hover {
    border-color: var(--color-accent);
    box-shadow: 0 15px 45px rgba(var(--color-accent-rgb), 0.2), var(--glow-shadow-strong);
}

/* Custom Navigation Controls */
.carousel-control-prev-custom,
.carousel-control-next-custom {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateZ(80px);
    /* Pushes buttons forward in 3D space to prevent overlapping */
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 50%;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    /* Elevated z-index to stay on top */
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
}

.carousel-control-prev-custom {
    left: 10px;
}

.carousel-control-next-custom {
    right: 10px;
}

.carousel-control-prev-custom:hover,
.carousel-control-next-custom:hover {
    background: rgba(var(--color-accent-rgb), 0.08);
    border-color: var(--color-accent);
    color: var(--color-accent);
    box-shadow: var(--glow-shadow);
}

/* Carousel Indicators */
.carousel-indicators-custom {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.indicator-dot.active {
    background: var(--color-accent);
    box-shadow: 0 0 12px var(--color-accent), var(--glow-shadow);
    border-color: var(--color-accent);
}

.indicator-dot:hover:not(.active) {
    background: rgba(0, 242, 254, 0.45);
    border-color: var(--color-accent);
}

/* Responsive Styles for Blog Carousel */
@media (max-width: 992px) {
    .blog-carousel-wrapper {
        padding: 0 40px;
    }

    .blog-card.prev {
        transform: translate3d(-190px, 0, -120px) rotateY(20deg) scale(0.9);
        opacity: 0.3;
    }

    .blog-card.next {
        transform: translate3d(190px, 0, -120px) rotateY(-20deg) scale(0.9);
        opacity: 0.3;
    }
}

@media (max-width: 991px) {
    .blog-carousel-container {
        height: 450px;
    }

    .blog-card {
        width: 290px;
        height: 100%;
        margin-left: -145px;
        margin-top: -225px;
    }

    .blog-card.prev {
        transform: translate3d(-100px, 0, -100px) rotateY(15deg) scale(0.75);
        opacity: 0.15;
    }

    .blog-card.next {
        transform: translate3d(100px, 0, -100px) rotateY(-15deg) scale(0.75);
        opacity: 0.15;
    }

    .blog-card-img-wrapper {
        height: 160px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 1.1rem;
    }

    .carousel-control-prev-custom,
    .carousel-control-next-custom {
        width: 30px;
        height: 30px;
    }

    .carousel-control-prev-custom,
    .carousel-control-next-custom i {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .blog-carousel-wrapper {
        padding: 0;
    }

    .blog-card.prev {
        transform: translate3d(-60px, 0, -100px) rotateY(10deg) scale(0.7);
        opacity: 0.05;
    }

    .blog-card.next {
        transform: translate3d(60px, 0, -100px) rotateY(-10deg) scale(0.7);
        opacity: 0.05;
    }

    .carousel-control-prev-custom {
        left: -4px;
    }

    .carousel-control-next-custom {
        right: -4px;
    }
}

/* Sticky contact buttons left side (Phone & WhatsApp) */
.sticky-contact-left {
    position: fixed;
    left: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.sticky-contact-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.35rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: var(--transition-bounce);
}

.sticky-contact-btn.phone-btn {
    background-color: var(--color-accent);
    /* Logo Red */
}

.sticky-contact-btn.phone-btn:hover {
    background-color: #c71414;
}

.sticky-contact-btn.whatsapp-btn {
    background-color: #000000;
    /* Logo Black */
}

.sticky-contact-btn.whatsapp-btn:hover {
    background-color: var(--color-text-main);
}

.sticky-contact-btn:hover {
    transform: scale(1.1);
    color: #ffffff;
}

@media (max-width: 991px) {
    .sticky-contact-btn {
        width: 35px;
        height: 35px;
    }

    .sticky-contact-left i {
        font-size: 1rem;
    }
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
    position: relative;
    background: var(--bg-primary);
    overflow: hidden;
}

.faq-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.faq-banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.faq-image-wrapper:hover .faq-banner-img {
    transform: scale(1.03);
}

.faq-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.faq-container {
    width: 100%;
}

.faq-item {
    margin-bottom: 18px;
    border-radius: 14px;
    border: 1px solid var(--border-glass);
    background: var(--bg-card);
    transition: var(--transition-smooth);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 26px;
    background: transparent;
    cursor: pointer;
    user-select: none;
    transition: var(--transition-smooth);
}

.faq-header h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--color-text-main);
    transition: var(--transition-smooth);
    text-align: left;
}

.faq-icon {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s;
    margin-left: 15px;
    flex-shrink: 0;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
    padding: 0 26px 22px 26px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: left;
}

/* Expanded State classes */
.faq-item.active {
    border-color: var(--border-glass-hover);
    box-shadow: 0 12px 30px rgba(var(--color-accent-rgb), 0.04), var(--glow-shadow);
    background: #ffffff;
}

.faq-item.active .faq-header h3 {
    color: var(--color-accent);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--color-accent);
}

.payment-gateway-badge {
    display: inline-block;
}

.payment-gateway-badge img {
    max-height: 40px;
    border-radius: 4px;
    background: #ffffff;
    padding: 4px 8px;
    display: inline-block;
}

/* Moved Inline Styles */
.nav-link-item i {
    font-size: 0.75rem;
}

#navEnquiryBtn {
    font-size: 0.85rem;
}

.categories-section span.text-gradient,
.about-section span.text-gradient,
.enquiry-details span.text-gradient-red,
.timeline-section span.text-gradient,
.faq-section span.text-gradient {
    letter-spacing: 2px;
    font-size: 14px;
}

.about-section span.text-gradient {
    font-size: 0.9rem;
}

.categories-section .row>div:nth-child(2) {
    transition-delay: 0.1s;
}

.categories-section .row>div:nth-child(3) {
    transition-delay: 0.2s;
}

.categories-section .row>div:nth-child(4) {
    transition-delay: 0.3s;
}

.categories-section .row>div:nth-child(5) {
    transition-delay: 0.4s;
}

.categories-section .row>div:nth-child(6) {
    transition-delay: 0.5s;
}

.timeline-step:nth-child(2) {
    transition-delay: 0.15s;
}

.timeline-step:nth-child(3) {
    transition-delay: 0.3s;
}

.timeline-step:nth-child(4) {
    transition-delay: 0.45s;
}

#aboutText p.color-text-muted:nth-of-type(1) {
    font-size: 1.05rem;
    line-height: 1.8;
}

#aboutText p.color-text-muted:nth-of-type(2) {
    font-size: 1.02rem;
    line-height: 1.8;
}

.client-section span.text-gradient {
    letter-spacing: 2.5px;
    font-size: 0.85rem;
}

.client-section h3 {
    font-size: 1.6rem;
}

.blog-section span.text-white {
    letter-spacing: 2px;
}

.faq-section h2.section-title {
    font-size: 2.2rem;
}

.faq-section .faq-item:nth-child(2) {
    transition-delay: 0.1s;
}

.faq-section .faq-item:nth-child(3) {
    transition-delay: 0.2s;
}

.faq-section .faq-item:nth-child(4) {
    transition-delay: 0.3s;
}

.faq-section .faq-item:nth-child(5) {
    transition-delay: 0.4s;
}

.footer-logo-block h4 {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: #fff;
}

/* ==========================================================================
   ABOUT PAGE STYLES (about.html)
   ========================================================================== */

/* Hero Section */
.about-hero,
.contact-hero {
    position: relative;
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-brand-light) 100%) !important;
    min-height: 350px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-subtitle-label {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.about-hero-lead {
    max-width: 750px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
}

.about-hero-glow-top {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--color-accent-rgb), 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.about-hero-glow-bottom {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--color-accent-rgb), 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Image wrappers and content */
.about-image-wrapper {
    border-radius: 24px;
    border: 1px solid var(--border-glass);
}

.about-image {
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-section-title-large {
    font-size: 28px;
    line-height: 1.2;
}

.about-lead-paragraph {
    font-size: 1.05rem;
    color: #000;
}

/* Mission, Vision, Values */
.about-philosophy-card {
    border-radius: 20px;
    background: var(--bg-card) !important;
}

.about-philosophy-icon-circle {
    width: 75px;
    height: 75px;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(226, 24, 24, 0.25);
}

.about-philosophy-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.mision-vision-card {
    padding: 30px;
}

/* Infrastructure and metrics */
.about-metric-card {
    border-color: var(--border-glass) !important;
}

.about-metric-number {
    color: var(--color-accent) !important;
}

.about-quality-card-list {
    border-radius: 24px;
    background: var(--bg-card) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
}

.about-quality-description-text {
    line-height: 1.5;
}

/* CTA */
.about-cta-section {
    background: linear-gradient(135deg, var(--color-brand) 0%, #08080a 100%) !important;
}

.about-cta-lead {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.75);
}

.about-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--color-accent-rgb), 0.05) 0%, transparent 60%);
    pointer-events: none;
}

/* .contact-hero,
.about-hero h1 {
    font-size: 36px !important;
} */

@media(max-width: 991px) {

    .about-hero,
    .contact-hero {
        padding: 50px 0 20px 0;
        min-height: 250px;
    }

    .contact-hero h1 {
        font-size: 24px;
    }

    .about-hero-subtitle-label {
        font-size: 12px;
    }

    .about-hero h1 {
        font-size: 26px;
    }

    .about-section-title-large {
        font-size: 22px;
    }

    .about-ul span {
        font-size: 14px;

    }

    .mision-vision-card {
        padding: 20px;
    }

    .about-cta-section h2 {
        font-size: 24px;
    }
}

/* ==========================================================================
   CONTACT PAGE STYLES (contact.html)
   ========================================================================== */
.contact-info-card {
    border-radius: 20px;
    background: var(--bg-card) !important;
    border: 1px solid var(--border-glass);
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-detail-item:last-child {
    margin-bottom: 0;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(226, 24, 24, 0.08);
    color: var(--color-accent);
    border-radius: 12px;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(226, 24, 24, 0.05);
}

.contact-map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    height: 300px;
}

.contact-map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   ENQUIRY PAGE STYLES (enquiry.html)
   ========================================================================== */
.breadcrumb-nav {
    background: var(--bg-secondary);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-glass);
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
    gap: 10px;
}

.breadcrumb-item-custom a {
    color: var(--color-text-muted);
}

.breadcrumb-item-custom a:hover {
    color: var(--color-accent);
}

.breadcrumb-item-custom.active {
    color: var(--color-text-main);
    font-weight: 500;
}

.breadcrumb-separator {
    color: var(--color-text-muted);
}

.specs-table-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    background: var(--bg-card);
}

.specs-table-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-main);
}

.specs-table {
    margin-bottom: 0;
}

.specs-table th {
    background-color: var(--bg-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    width: 35%;
    color: var(--color-text-main);
    border-color: var(--border-glass);
    padding: 14px 20px;
}

.specs-table td {
    border-color: var(--border-glass);
    padding: 14px 20px;
    color: var(--color-text-muted);
}

.specs-table tr:last-child td,
.specs-table tr:last-child th {
    border-bottom: 0;
}

.bg-secondary-section {
    background-color: var(--bg-secondary) !important;
}

.enquiry-right-content h2 {
    font-size: 15px;
}

@media (max-width: 991px) {
    .glow-btn-primary {
        padding: 8px 20px;
        font-size: 0.85rem;
    }

    .glow-btn-secondary {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .specs-table tr {
        display: block;
        border-bottom: 1px solid var(--border-glass);
    }

    .specs-table th,
    .specs-table td {
        display: block;
        width: 100% !important;
        padding: 10px 16px;
        text-align: left;
    }

    .specs-table th {
        background-color: var(--bg-secondary);
        font-weight: 700;
        border-bottom: 0;
        padding-top: 12px;
    }

    .specs-table td {
        padding-bottom: 12px;
        border-top: 0;
    }

    .specs-table tr:last-child {
        border-bottom: 0;
    }

    .faq-section h2.section-title {
        font-size: 1.6rem;
    }
}

/* ==========================================================================
   BLOG GRID PAGE CUSTOM STYLING
   ========================================================================== */
.blog-grid-card {
    position: relative;
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    box-shadow: var(--glow-shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
    margin-bottom: 20px;
    height: 100%;
}

.blog-grid-card:hover {
    border-color: var(--border-glass-hover);
    box-shadow: var(--glow-shadow-strong);
    transform: translateY(-8px);
}

.blog-grid-card:hover .blog-card-img-wrapper img {
    transform: scale(1.08);
}

.blog-grid-card:hover .blog-read-more i {
    transform: translateX(6px);
}

/* ==========================================================================
   BLOG DETAILS PAGE STYLING
   ========================================================================== */
.blog-detail-article {
    padding-right: 15px;
}

.blog-detail-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--border-glass);
    box-shadow: var(--glow-shadow);
    transition: var(--transition-smooth);
}

.blog-detail-img-wrapper:hover {
    border-color: var(--border-glass-hover);
    box-shadow: var(--glow-shadow-strong);
}

.blog-detail-img-wrapper img {
    transition: var(--transition-smooth);
}

.blog-detail-img-wrapper:hover img {
    transform: scale(1.02);
}

/* Typography inside blog post */
.blog-detail-body-content h3 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--color-brand);
    margin-top: 35px;
    margin-bottom: 15px;
    letter-spacing: -0.2px;
}

.blog-detail-body-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 22px;
}

.blog-detail-body-content p.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-brand-light);
    font-weight: 500;
}

.blog-detail-body-content ul,
.blog-detail-body-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.blog-detail-body-content li {
    font-size: 1.02rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    line-height: 1.7;
}

.blog-detail-body-content li strong {
    color: var(--color-text-main);
}

.blog-detail-body-content blockquote {
    position: relative;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-brand);
    border-left: 4px solid var(--color-accent);
    background: var(--bg-secondary);
    padding: 24px 30px;
    margin: 35px 0;
    border-radius: 0 16px 16px 0;
    line-height: 1.6;
}

/* Sidebar Widgets */
.sticky-sidebar {
    position: sticky;
    top: 100px;
    z-index: 10;
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    box-shadow: var(--glow-shadow);
    transition: var(--transition-smooth);
}

.sidebar-widget:hover {
    border-color: var(--border-glass-hover);
    box-shadow: 0 10px 30px rgba(var(--color-accent-rgb), 0.04), var(--glow-shadow);
}

.widget-title {
    position: relative;
    font-size: 1.25rem;
    color: var(--color-brand);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bg-secondary);
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--color-accent);
}

/* Related Post Card */
.related-post-card {
    transition: var(--transition-smooth);
    padding: 10px;
    border-radius: 12px;
    border: 1px solid transparent;
}

.related-post-card:hover {
    background: #ffffff;
    border-color: var(--border-glass);
    box-shadow: var(--glow-shadow);
    transform: translateY(-2px);
}

.related-post-card:hover .related-post-title {
    color: var(--color-accent) !important;
}

.related-post-img-wrapper {
    width: 75px;
    height: 75px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border-glass);
}

.related-post-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.related-post-card:hover .related-post-img-wrapper img {
    transform: scale(1.08);
}

.related-post-info {
    flex-grow: 1;
}

.hover-red:hover {
    color: var(--color-accent) !important;
}

.small-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
}

/* Responsive adjustments for details page */
@media (max-width: 991px) {
    .blog-detail-article {
        padding-right: 0;
    }

    .sticky-sidebar {
        position: static;
        margin-top: 40px;
    }

    .blog-detail-body-content h3 {
        font-size: 1.45rem;
    }
}