/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0F766E;
    --primary-dark: #134E4A;
    --neutral-white: #FFFFFF;
    --neutral-dark: #0F172A;
    /* --accent-color: #C4553E; */
    --accent-color: #E51F28;
    --accent-dark: #B3543A;
    --text-light: #64748B;
    --bg-light: #F1F5F9;
}

body {
    font-family: 'Poppins', 'Inter', 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--neutral-dark);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    text-align: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo h2 {
    font-size: .9rem;
    font-weight: 700;
    color: #E52029;
}

.logo p {
    font-size: .6rem;
    font-weight: 600;
    color: #ffffff;
}

.logo a img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--neutral-white);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.btn-contact {
    background: var(--accent-color);
    color: var(--neutral-white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-contact:hover {
    /* background: var(--accent-dark); */
    background: #C01920;
    /* Border: 2px solid #FF4A54;
    box-shadow: 0 0 8px rgba(229, 31, 40, 0.5); */
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-toggle .arrow {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.dropdown.dropdown-open .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--neutral-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border-radius: 5px;
    z-index: 1000;
}

.cta-dropdown .dropdown-menu {
    right: 0;
    left: auto;
}

.dropdown.dropdown-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--neutral-dark);
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--accent-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    /* background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--neutral-white);
    overflow: hidden;
    padding: 50px;
    min-height: 100vh;
}

/* Hero Background Slider */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.hero-bg-slider-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: heroBgFade 20s infinite;
    background: transparent;
}

.hero-bg-slide:nth-child(1) {
    animation-delay: 0s;
    opacity: 1;
}

.hero-bg-slide:nth-child(2) {
    animation-delay: 5s;
}

.hero-bg-slide:nth-child(3) {
    animation-delay: 10s;
}

.hero-bg-slide:nth-child(4) {
    animation-delay: 15s;
}

.hero-bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes heroBgFade {
    0% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    25% {
        opacity: 0;
    }

    95% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.2;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
    z-index: 3;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    perspective: 2500px;
    perspective-origin: center center;
}

.slider-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    width: max-content;
    height: 100%;
    will-change: transform;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.slider-card {
    flex: 0 0 auto;
    /* Calculate width to fit exactly 9 images: (100vw - 8 gaps of 10px) / 9 */
    width: calc((100vw - 80px) / 9);
    height: calc((100vw - 80px) / 9 * 1.3);
    max-width: 220px;
    min-width: 140px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    background: var(--neutral-white);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: transform 0.2s ease-out;
}

.slider-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--neutral-white);
}

.btn-primary:hover {
    background: #C01920;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 85, 62, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--neutral-white);
    border: 2px solid var(--neutral-white);
}

.btn-secondary:hover {
    background: var(--neutral-white);
    color: var(--primary-color);
}

/* Introduction Section */
.intro-section {
    position: relative;
    padding: 4rem 0;
    background-image: url('../images/in10.jpeg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

#confetti-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.intro-section .container {
    position: relative;
    z-index: 2;
}

.intro-section h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.intro-section p {
    font-size: 1.1rem;
    color: wheat;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Stats Section */
.stats-section {
    position: relative;
    padding: 4rem 0;
    background-image: url('../images/in10.jpeg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--neutral-white);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    font-weight: 500;
}

/* Featured Sectors */
.featured-sectors {
    padding: 4rem 0;
    background-image: url(../images/sec1.jpeg);
}

.featured-sectors h2 {
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.sector-card {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.98);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(196, 85, 62, 0.05) 0%, rgba(15, 118, 110, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.sector-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 85, 62, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.sector-card>* {
    position: relative;
    z-index: 1;
}

.sector-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: rgba(196, 85, 62, 0.25);
    box-shadow:
        0 20px 50px rgba(196, 85, 62, 0.25),
        0 12px 30px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 1);
}

.sector-card:hover::before {
    opacity: 1;
}

.sector-card:hover::after {
    opacity: 1;
}

.sector-card:hover .sector-icon {
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 4px 8px rgba(196, 85, 62, 0.2));
}

.sector-card:hover h3 {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.sector-card:hover p {
    color: var(--neutral-dark);
}

.sector-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.sector-icon img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.sector-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.02em;
}

.sector-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
}

/* Brands Section */
.brands-section {
    padding: 5rem 0;
    background-image: url(../images/bdr2.jpeg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.brands-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.brands-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.brands-grid::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.brands-row {
    display: contents;
}

.brand-logo {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px; /* important */
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12),
                0 4px 12px rgba(15, 23, 42, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.brand-logo::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(135deg, #2563EB, #7C3AED, #EC4899);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.brand-logo:hover {
    transform: translateY(-12px) scale(1.1) rotate(2deg);
    box-shadow: 0 24px 48px rgba(37, 99, 235, 0.25),
        0 12px 24px rgba(15, 23, 42, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: transparent;
}

.brand-logo:hover::after {
    opacity: 1;
}

.brand-logo:nth-child(even):hover {
    transform: translateY(-12px) scale(1.1) rotate(-2deg);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* prevent cutting / stretching */
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: grayscale(20%) brightness(0.95);
}

.brand-logo:hover img {
    transform: scale(1.15);
    filter: grayscale(0%) brightness(1.1);
}

.brands-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.brands-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent);
}

.brands-tagline {
    display: inline-block;
    font-size: 0.875rem;
    color: #60A5FA;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(96, 165, 250, 0.3);
}

.brands-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.brands-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

.brands-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.btn-brands {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    color: var(--neutral-white);
    padding: 0.875rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4),
        0 2px 8px rgba(124, 58, 237, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-brands:hover {
    background: linear-gradient(135deg, #1D4ED8 0%, #6D28D9 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.5),
        0 4px 12px rgba(124, 58, 237, 0.4);
}

.btn-brands::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-brands:hover::after {
    transform: translateX(4px);
}

/* CTA Banner */
.cta-banner {
    padding: 6rem 0;
    background-image: url(../images/bdr2.jpeg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--neutral-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Testimonials Section */
/* .testimonials-section {
    padding: 6rem 0;
    background-image: url(../images/test1.jpeg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-left {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.testimonials-left::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 8s infinite;
    backdrop-filter: blur(10px);
}

@keyframes shimmer {

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

    50% {
        transform: rotate(180deg);
    }
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--neutral-white);
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.testimonials-tagline {
    padding: 1.5rem 2rem;
    border-radius: 12px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.testimonials-tagline p {
    color: var(--neutral-white);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.testimonials-right {
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    border-radius: 20px;
}

.testimonials-carousel {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
}

.testimonial-card {
    position: absolute;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border-radius: 20px;
    padding: 2rem;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), z-index 0.6s, opacity 0.6s, box-shadow 0.6s;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.testimonial-card:hover {
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.25);
}

.testimonial-card[data-index="0"] {
    transform: translateX(0) translateZ(0) scale(1);
    z-index: 4;
    opacity: 1;
}

.testimonial-card[data-index="1"] {
    transform: translateX(80px) translateZ(-50px) scale(0.9);
    z-index: 3;
    opacity: 0.8;
}

.testimonial-card[data-index="2"] {
    transform: translateX(160px) translateZ(-100px) scale(0.8);
    z-index: 2;
    opacity: 0.6;
}

.testimonial-card[data-index="3"] {
    transform: translateX(240px) translateZ(-150px) scale(0.7);
    z-index: 1;
    opacity: 0.4;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.testimonial-name-box {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    flex: 1;
    margin-right: 1rem;
}

.testimonial-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 30px;
    text-align: right;
    letter-spacing: 0.5px;
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--neutral-white);
    border: 4px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-photo {
    transform: scale(1.05);
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-review-box {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    padding: 2rem;
    border-radius: 16px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.testimonial-review {
    font-size: 1rem;
    color: var(--neutral-dark);
    line-height: 1.8;
    margin: 0;
    text-align: center;
    font-weight: 400;
    font-style: italic;
} */
/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    /* background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%); */
    background-image: url(../images/test1.jpeg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-left {
    /* background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%); */
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 20px;
    /* box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2); */
    position: relative;
    overflow: hidden;
}

.testimonials-left::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 8s infinite;
    backdrop-filter: blur(10px);
}

@keyframes shimmer {

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

    50% {
        transform: rotate(180deg);
    }
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--neutral-white);
    /* margin-bottom: 2rem; */
    /* text-transform: uppercase; */
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.testimonials-tagline {
    /* background: rgba(255, 255, 255, 0.15); */
    /* backdrop-filter: blur(10px); */
    padding: 1.5rem 2rem;
    border-radius: 12px;
    width: 100%;
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    position: relative;
    z-index: 1;
}

.testimonials-tagline p {
    color: var(--neutral-white);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.testimonials-right {
    /* background: var(--neutral-white); */
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    border-radius: 20px;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); */
}

.testimonials-carousel {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
}

.testimonial-card {
    position: absolute;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border-radius: 20px;
    padding: 2rem;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), z-index 0.6s, opacity 0.6s, box-shadow 0.6s;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.testimonial-card:hover {
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.25);
}

.testimonial-card[data-index="0"] {
    transform: translateX(0) translateZ(0) scale(1);
    z-index: 4;
    opacity: 1;
}

.testimonial-card[data-index="1"] {
    transform: translateX(80px) translateZ(-50px) scale(0.9);
    z-index: 3;
    opacity: 0.8;
}

.testimonial-card[data-index="2"] {
    transform: translateX(160px) translateZ(-100px) scale(0.8);
    z-index: 2;
    opacity: 0.6;
}

.testimonial-card[data-index="3"] {
    transform: translateX(240px) translateZ(-150px) scale(0.7);
    z-index: 1;
    opacity: 0.4;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.testimonial-name-box {
    /* background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%); */
    padding: 1rem 1.5rem;
    border-radius: 12px;
    flex: 1;
    margin-right: 1rem;
    /* box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2); */
}

.testimonial-name {
    font-size: 1.2rem;
    font-weight: 700;
    /* color: var(--neutral-white); */
    margin-top: 30px;
    text-align: right;
    letter-spacing: 0.5px;
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--neutral-white);
    border: 4px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-photo {
    transform: scale(1.05);
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-review-box {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    padding: 2rem;
    border-radius: 16px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    /* border: 2px solid rgba(99, 102, 241, 0.1);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05); */
}

.testimonial-review {
    font-size: 1rem;
    color: var(--neutral-dark);
    line-height: 1.8;
    margin: 0;
    text-align: center;
    font-weight: 400;
    font-style: italic;
}

/* Footer */
.footer {
    background: #2B2B2B;
    color: var(--neutral-white);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h2 {
    font-size: 0.8rem;
}

.footer-col .logo p {
    font-size: 0.5rem;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--neutral-white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.social-icons a:hover::before {
    width: 100%;
    height: 100%;
}

.social-icons a svg {
    width: 22px;
    height: 22px;
    fill: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icons a:hover svg {
    fill: #ffffff;
    transform: scale(1.1);
}

/* Facebook specific hover */
.social-icons a[aria-label="Facebook"]:hover {
    background: #1877F2;
    box-shadow: 0 5px 20px rgba(24, 119, 242, 0.4);
}

/* Instagram specific hover */
.social-icons a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 5px 20px rgba(188, 24, 136, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Page Headers */
#about-page-header {
    background-image: url(../images/ofr6.jpeg);
}

#careers-page-header {
    background-image: url(../images/ofr10.jpeg);
}

#gallery-page-header {
    background-image: url(../images/ofr14.jpeg);
}

#sectors-page-header {
    background-image: url(../images/ofr15.jpeg);
}

#services-page-header {
    background-image: url(../images/ofr12.jpeg);
}

.page-header {
    /* background: linear-gradient(135deg, #C4553E 0%, #e67e5f 100%); */
    background-image: url(../images/ofr6.jpeg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    color: var(--neutral-white);
    padding: 2rem 0;
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Content Sections */
#about-content-section {
    background-image: url(../images/ofr6.jpeg);
}

#careers-content-section {
    background-image: url(../images/ofr10.jpeg);
}

#gallery-content-section {
    background-image: url(../images/ofr14.jpeg);
}

#sectors-content-section {
    background-image: url(../images/ofr15.jpeg);
}

#services-content-section {
    background-image: url(../images/ofr12.jpeg);
}

.content-section {
    padding: 4rem 0;
    background-image: url(../images/ofr6.jpeg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

/* Unique background images for each sector */
body:has([href*="sectors-sanitary"]):not(:has([href*="sectors.html"])) .content-section,
.content-section[data-sector="sanitary"] {
    background-image: url(../images/sn-bg.jpeg);
}

body:has([href*="sectors-tiles"]):not(:has([href*="sectors.html"])) .content-section,
.content-section[data-sector="tiles"] {
    background-image: url(../images/tl-bg.jpeg);
}

body:has([href*="sectors-plumbing"]):not(:has([href*="sectors.html"])) .content-section,
.content-section[data-sector="plumbing"] {
    background-image: url(../images/pb1.jpg);
    position: relative;
}

body:has([href*="sectors-electricals"]):not(:has([href*="sectors.html"])) .content-section,
.content-section[data-sector="electricals"] {
    background-image: url(../images/el-bg.jpg);
    position: relative;
}

/* Attractive Overlay and Border for Electricals and Plumbing Sections */
.content-section[data-sector="electricals"]::before,
body:has([href*="sectors-electricals"]):not(:has([href*="sectors.html"])) .content-section::before,
.content-section[data-sector="plumbing"]::before,
body:has([href*="sectors-plumbing"]):not(:has([href*="sectors.html"])) .content-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(15, 118, 110, 0.1) 0%, rgba(196, 85, 62, 0.08) 100%),
        repeating-linear-gradient(45deg,
            transparent,
            transparent 20px,
            rgba(15, 118, 110, 0.04) 20px,
            rgba(15, 118, 110, 0.04) 40px);
    z-index: 0;
    pointer-events: none;
}

.content-section[data-sector="electricals"]::after,
body:has([href*="sectors-electricals"]):not(:has([href*="sectors.html"])) .content-section::after,
.content-section[data-sector="plumbing"]::after,
body:has([href*="sectors-plumbing"]):not(:has([href*="sectors.html"])) .content-section::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    box-shadow:
        inset 0 0 0 4px rgba(15, 118, 110, 0.4),
        inset 0 0 0 8px rgba(196, 85, 62, 0.3),
        inset 0 0 100px rgba(15, 118, 110, 0.15),
        0 0 0 1px rgba(15, 118, 110, 0.5),
        0 0 30px rgba(15, 118, 110, 0.25);
    background:
        linear-gradient(to right, rgba(15, 118, 110, 0.3) 0%, transparent 50%),
        linear-gradient(to bottom, rgba(15, 118, 110, 0.3) 0%, transparent 50%),
        linear-gradient(to left, rgba(196, 85, 62, 0.3) 0%, transparent 50%),
        linear-gradient(to top, rgba(196, 85, 62, 0.3) 0%, transparent 50%);
    background-size: 4px 100%, 100% 4px, 4px 100%, 100% 4px;
    background-position: left, top, right, bottom;
    background-repeat: no-repeat;
}

body:has([href*="sectors-hardware"]):not(:has([href*="sectors.html"])) .content-section,
.content-section[data-sector="hardware"] {
    /* background-image: url(../hard\ wares.jpeg); */
    background-image: url(../images/hw_bg.jpeg);
}

/* Default background for sectors.html */
.sectors-overview .content-section {
    background-image: url(../images/sn1.jpeg);
}

.content-section::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.4); */
    z-index: 0;
}

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

.content-section h2 {
    font-size: 2.5rem;
    /* color: var(--primary-color); */
    color: white;
    margin-bottom: 2rem;
}

.content-section h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.content-section .text-min {
    color: white;
    line-height: 1.8;
}

.content-section p {
    color: var(--text-light);
    /* color: white; */
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Frosted-glass effect for text elements in sector pages */
.content-section[data-sector="electricals"] h2,
.content-section[data-sector="hardware"] h2,
.content-section[data-sector="plumbing"] h2,
.content-section[data-sector="sanitary"] h2,
.content-section[data-sector="tiles"] h2,
body:has([href*="sectors-electricals"]):not(:has([href*="sectors.html"])) .content-section h2,
body:has([href*="sectors-hardware"]):not(:has([href*="sectors.html"])) .content-section h2,
body:has([href*="sectors-plumbing"]):not(:has([href*="sectors.html"])) .content-section h2,
body:has([href*="sectors-sanitary"]):not(:has([href*="sectors.html"])) .content-section h2,
body:has([href*="sectors-tiles"]):not(:has([href*="sectors.html"])) .content-section h2 {
    /* background: rgba(255, 255, 255, 0.8); */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.25rem 1.75rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    /* border: 1px solid rgba(255, 255, 255, 0.4); */
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: inline-block;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
}

.content-section[data-sector="electricals"] p,
.content-section[data-sector="hardware"] p,
.content-section[data-sector="plumbing"] p,
.content-section[data-sector="sanitary"] p,
.content-section[data-sector="tiles"] p,
body:has([href*="sectors-electricals"]):not(:has([href*="sectors.html"])) .content-section p,
body:has([href*="sectors-hardware"]):not(:has([href*="sectors.html"])) .content-section p,
body:has([href*="sectors-plumbing"]):not(:has([href*="sectors.html"])) .content-section p,
body:has([href*="sectors-sanitary"]):not(:has([href*="sectors.html"])) .content-section p,
body:has([href*="sectors-tiles"]):not(:has([href*="sectors.html"])) .content-section p {
    /* background: rgba(255, 255, 255, 0.75); */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.35);
    /* color: var(--neutral-dark); */
    color: white;
    font-weight: 500;
    margin-bottom: 1.25rem;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 2rem 0;
}

/* About Page Specific Styles - Redesigned Container Elements */
.content-section .container>.two-column {
    gap: 2.5rem;
    margin: 3rem 0;
}

.content-section .container>.two-column>div {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 118, 110, 0.1);
}

.content-section .container>.two-column>div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.content-section .container>.two-column>div:hover::before {
    transform: scaleX(1);
}

.content-section .container>.two-column>div:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15, 118, 110, 0.15);
    border-color: rgba(15, 118, 110, 0.2);
}

.content-section .container>.two-column>div h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.content-section .container>.two-column>div h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.content-section .container>.two-column>div p {
    color: var(--neutral-dark);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

.content-section .container>.two-column>div p:last-child {
    margin-bottom: 0;
}

/* Our Vision Section Redesign */
.content-section .container>div[style*="margin-top: 3rem"] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(15, 118, 110, 0.1);
    position: relative;
    overflow: hidden;
    margin-top: 3rem !important;
}

.content-section .container>div[style*="margin-top: 3rem"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.content-section .container>div[style*="margin-top: 3rem"] h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.content-section .container>div[style*="margin-top: 3rem"] h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.content-section .container>div[style*="margin-top: 3rem"] p {
    color: var(--neutral-dark);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

.content-section .container>div[style*="margin-top: 3rem"] p:last-child {
    margin-bottom: 0;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* grid-template-columns: repeat(4, 1fr); */
    gap: 2.5rem;
    margin: 3rem 0;
}

.feature-item {
    position: relative;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.1);
    text-align: center;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

.feature-item[data-feature="range"] .feature-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.feature-item[data-feature="range"]:hover .feature-icon {
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.feature-item[data-feature="support"] .feature-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.feature-item[data-feature="support"]:hover .feature-icon {
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4);
}

.feature-item[data-feature="pricing"] .feature-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.feature-item[data-feature="pricing"]:hover .feature-icon {
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.feature-item h4 {
    color: var(--neutral-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Product Categories */
.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.product-category {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.product-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.product-category:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
    border-left-color: var(--primary-dark);
}

.product-category:hover::before {
    opacity: 1;
}

.product-category>* {
    position: relative;
    z-index: 1;
}

.product-category h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.product-category img {
    width: 200px;
    height: 200px;
}

.product-category ul {
    list-style: none;
    margin-top: 1rem;
}

.product-category ul li {
    padding: 0.3rem 0;
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
}

.product-category ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Product Gallery Section */
.product-gallery-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    min-height: 60vh;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.product-card {
    background: var(--neutral-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.2);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f1f5f9;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-type {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.product-brand {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #e2e8f0;
}

/* Product Detail Section */
.product-detail-section {
    padding: 4rem 0;
    background: #ffffff;
    min-height: 80vh;
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Left Section: Image Gallery */
.product-gallery-panel {
    position: sticky;
    top: 2rem;
}

.main-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: #1e293b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gallery-nav-btn:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav-btn.prev-btn {
    left: 1rem;
}

.gallery-nav-btn.next-btn {
    right: 1rem;
}

.gallery-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.thumbnail-item {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.thumbnail-item:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.thumbnail-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right Section: Product Information */
.product-info-panel {
    padding: 2rem 0;
}

.product-specs {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 0 0 40%;
}

.spec-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    text-align: right;
    flex: 1;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-product-action {
    padding: 1rem 2rem;
    background: #1e293b;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
}

.btn-product-action:hover {
    background: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-product-action.contact-btn {
    background: #1e293b;
}

.btn-product-action.where-to-buy-btn {
    background: #475569;
}

.btn-product-action.where-to-buy-btn:hover {
    background: #334155;
}

/* Gallery */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    color: var(--neutral-dark);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-color);
    color: var(--neutral-white);
    border-color: var(--accent-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
    background: var(--bg-light);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--neutral-white);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .caption {
    transform: translateY(0);
}

/* Contact Form */
/* Contact Us Section */
.contact-section {
    /* background: #000000; */
    /* background-image: url('../cn2.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed; */
    color: var(--neutral-white);
    min-height: 100vh;
}

.contact-header {
    position: relative;
    padding: 4rem 0;
    background-image: url('../images/cn9.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.contact-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-image: url('../cn2.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed; */
    /* background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1920&h=1080&fit=crop') center/cover; */
    filter: blur(8px);
    opacity: 0.3;
    z-index: 1;
}

.contact-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--neutral-white);
    /* margin-bottom: 0.5rem; */
}

/* .contact-header .breadcrumbs {
    color: var(--neutral-white);
    font-size: 1rem;
    opacity: 0.8;
} */

.contact-main {
    /* background: #000000; */
    background-image: url('../images/cn9.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 0 0 4rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-form-header p {
    color: var(--neutral-white);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.contact-form-header h2 {
    color: var(--neutral-white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    /* color: var(--neutral-white); */
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    /* border: 1px solid rgba(255, 255, 255, 0.9); */
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    /* color: var(--neutral-white); */
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(37, 99, 235, 0.6);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

/* Form Validation Styles */
.form-group .required {
    color: #ff4444;
    margin-left: 0.25rem;
}

.form-group input.error,
.form-group textarea.error {
    border: 2px solid #ff4444;
    background: rgba(255, 68, 68, 0.1);
}

.form-group input.error:focus,
.form-group textarea.error:focus {
    border-color: #ff6666;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.2);
}

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

.error-message::before {
    content: "⚠ ";
    margin-right: 0.25rem;
}

.btn-send {
    width: 100%;
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--neutral-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-send:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-info-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: var(--neutral-white);
}

.contact-intro {
    color: var(--neutral-white);
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
    margin-top: 8rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--neutral-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-details p {
    color: var(--neutral-white);
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.contact-map {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 2rem;
    position: relative;
}

.branch-map {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

.branch-map[data-branch="branch1"] {
    display: block !important;
}

.branch-map[data-branch="branch2"] {
    display: none;
}

.branch-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Job Listings */
.job-listing {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-color);
}

.job-listing h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.job-listing .job-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.job-meta span {
    color: var(--text-light);
}

/* Map */
.map-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design */
@media (max-width: 1022px) {
    .hamburger {
        display: flex;
    }

    /* Reduce font size for navbar items */
    .nav-menu a {
        font-size: 0.85rem;
    }

    /* Reduce logo size proportionally */
    .logo a img {
        height: 36px;
        width: auto;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: transparent;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
        height: 300px;
        /* Modern Glassmorphism Effect */
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow:
            0 10px 27px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 950px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    /* Ensure text remains sharp and readable on glassmorphism background */
    .nav-menu.active a {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .nav-menu li {
        width: 100%;
        /* padding: 1rem 0; */
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        margin: 0;
        transition: opacity 0.3s, visibility 0.3s, max-height 0.3s, margin 0.3s;
    }

    .dropdown.dropdown-open .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        margin: 0.5rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero {
        height: 500px;
    }

    .hero-slider {
        padding: 1.5rem 0;
    }

    .slider-wrapper {
        height: 220px;
    }

    .slider-card {
        width: 130px;
        height: 170px;
        border-radius: 14px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .intro-section h2,
    .featured-sectors h2,
    .content-section h2 {
        font-size: 2rem;
    }

    /* Frosted-glass responsive adjustments */
    .content-section[data-sector="electricals"] h2,
    .content-section[data-sector="hardware"] h2,
    .content-section[data-sector="plumbing"] h2,
    .content-section[data-sector="sanitary"] h2,
    .content-section[data-sector="tiles"] h2,
    body:has([href*="sectors-electricals"]):not(:has([href*="sectors.html"])) .content-section h2,
    body:has([href*="sectors-hardware"]):not(:has([href*="sectors.html"])) .content-section h2,
    body:has([href*="sectors-plumbing"]):not(:has([href*="sectors.html"])) .content-section h2,
    body:has([href*="sectors-sanitary"]):not(:has([href*="sectors.html"])) .content-section h2,
    body:has([href*="sectors-tiles"]):not(:has([href*="sectors.html"])) .content-section h2 {
        padding: 1rem 1.25rem;
        font-size: 1.75rem;
    }

    .content-section[data-sector="electricals"] p,
    .content-section[data-sector="hardware"] p,
    .content-section[data-sector="plumbing"] p,
    .content-section[data-sector="sanitary"] p,
    .content-section[data-sector="tiles"] p,
    body:has([href*="sectors-electricals"]):not(:has([href*="sectors.html"])) .content-section p,
    body:has([href*="sectors-hardware"]):not(:has([href*="sectors.html"])) .content-section p,
    body:has([href*="sectors-plumbing"]):not(:has([href*="sectors.html"])) .content-section p,
    body:has([href*="sectors-sanitary"]):not(:has([href*="sectors.html"])) .content-section p,
    body:has([href*="sectors-tiles"]):not(:has([href*="sectors.html"])) .content-section p {
        padding: 0.875rem 1.25rem;
    }

    /* About Page Responsive Styles */
    .content-section .container>.two-column {
        gap: 2rem;
        margin: 2rem 0;
    }

    .content-section .container>.two-column>div {
        padding: 2rem 1.5rem;
    }

    .content-section .container>.two-column>div h2 {
        font-size: 1.75rem;
    }

    .content-section .container>div[style*="margin-top: 3rem"] {
        padding: 2rem 1.5rem;
        margin-top: 2.5rem !important;
    }

    .content-section .container>div[style*="margin-top: 3rem"] h2 {
        font-size: 1.75rem;
    }

    .stats-grid,
    .sectors-grid {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
    }

    .product-categories {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

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

    .product-gallery-panel {
        position: relative;
        top: 0;
    }

    .product-actions {
        grid-template-columns: 1fr;
    }

    .brand-logo:hover {
        transform: translateY(-8px) scale(1.08) rotate(1deg);
    }

    .brand-logo:nth-child(even):hover {
        transform: translateY(-8px) scale(1.08) rotate(-1deg);
    }

    .brands-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 1rem;
        padding: 1.5rem 1rem;
    }

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

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

    .product-image {
        height: 200px;
    }

    .product-detail-wrapper {
        gap: 1.5rem;
    }

    .product-specs {
        padding: 1.5rem;
    }

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

    .feature-item {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .feature-number {
        font-size: 2rem;
    }

    .spec-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .spec-value {
        text-align: left;
    }

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

    .brand-logo:hover {
        transform: translateY(-6px) scale(1.06);
    }

    .brand-logo:nth-child(even):hover {
        transform: translateY(-6px) scale(1.06);
    }

    .brands-title {
        font-size: 1.75rem;
    }

    .brands-subtitle {
        font-size: 1rem;
    }

    .page-header {
        padding: 2rem 0;
    }

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

    .contact-header h1 {
        font-size: 2.5rem;
    }

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

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

    .testimonials-left {
        padding: 3rem 2rem;
    }

    .testimonials-title {
        font-size: 2.5rem;
    }

    .testimonials-right {
        min-height: 400px;
        padding: 2rem;
    }

    .testimonials-carousel {
        height: 400px;
        max-width: 100%;
    }

    .testimonial-card {
        width: 350px;
        height: 400px;
        padding: 1.5rem;
    }

    .testimonial-card[data-index="1"] {
        transform: translateX(60px) translateZ(-50px) scale(0.9);
    }

    .testimonial-card[data-index="2"] {
        transform: translateX(120px) translateZ(-100px) scale(0.8);
    }

    .testimonial-card[data-index="3"] {
        transform: translateX(180px) translateZ(-150px) scale(0.7);
    }
}

/* WhatsApp Widget Styles */
.whatsapp-widget {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1000;
    font-family: 'Poppins', sans-serif;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes pulse {

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

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

.whatsapp-chatbox {
    position: fixed;
    left: 20px;
    bottom: 100px;
    width: 350px;
    max-width: calc(100vw - 40px);
    height: 500px;
    max-height: calc(100vh - 120px);
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
    z-index: 1001;
}

.whatsapp-chatbox.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.chatbox-header {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbox-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbox-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.chatbox-header-text h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chatbox-header-text p {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
}

.chatbox-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.chatbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.chatbox-close svg {
    width: 18px;
    height: 18px;
}

.chatbox-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chatbox-message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    word-wrap: break-word;
    animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.chatbox-message.received {
    background: white;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chatbox-message.sent {
    background: #DCF8C6;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chatbox-message-time {
    font-size: 10px;
    color: #999;
    margin-top: 4px;
    text-align: right;
}

.chatbox-input-area {
    padding: 15px;
    background: white;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.chatbox-input {
    flex: 1;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
}

.chatbox-input:focus {
    border-color: #25D366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.chatbox-send {
    background: #25D366;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.chatbox-send:hover {
    background: #128C7E;
    transform: scale(1.05);
}

.chatbox-send svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.chatbox-welcome {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-widget {
        left: 15px;
        bottom: 15px;
    }

    .whatsapp-icon {
        width: 55px;
        height: 55px;
    }

    .whatsapp-chatbox {
        left: 15px;
        bottom: 85px;
        width: calc(100vw - 30px);
        height: calc(100vh - 100px);
        max-height: 600px;
    }
}

/* Job Application Form Styles */
.application-form-container {
    max-width: 950px;
    margin: 3rem auto;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 4rem;
    border-radius: 5px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
}

.application-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    /* background: linear-gradient(90deg, #C4553E 0%, #e67e5f 50%, #C4553E 100%); */
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    background-size: 200% 100%;
    animation: shimmer 5s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.application-form {
    width: 100%;
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-label {
    /* color: #C4553E; */
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-label::after {
    content: '*';
    color: #C4553E;
    font-weight: 700;
    margin-left: 2px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    outline: none;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.form-input::placeholder {
    color: #999;
    font-weight: 400;
}

.form-input:hover {
    border-color: #d0d0d0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.form-input:focus {
    border-color: #C4553E;
    box-shadow: 0 0 0 4px rgba(196, 85, 62, 0.15), 0 4px 15px rgba(196, 85, 62, 0.1);
    transform: translateY(-1px);
    background: #fffefb;
}

.file-input-wrapper {
    position: relative;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-input-label {
    display: flex;
    align-items: center;
    gap: 0;
    cursor: pointer;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    padding: 0;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.file-input-label:hover {
    border-color: #d0d0d0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.file-input:focus+.file-input-label {
    border-color: #4A90E2;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.15), 0 4px 15px rgba(74, 144, 226, 0.1);
}

.file-button {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    color: #C4553E;
    padding: 14px 24px;
    border-right: 2px solid #e8e8e8;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border-radius: 8px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.file-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.file-input-label:hover .file-button::before {
    left: 100%;
}

.file-input-label:hover .file-button {
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    color: #a84535;
}

.file-name {
    flex: 1;
    padding: 14px 18px;
    /* color: #C4553E; */
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.file-input:focus+.file-input-label .file-button {
    border-color: #4A90E2;
    background: linear-gradient(135deg, #e8f4fd 0%, #d0e8fb 100%);
    color: #4A90E2;
}

.form-submit {
    display: flex;
    justify-content: center;
    /* margin-top: 3rem; */
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.btn-submit-application {
    /* background: linear-gradient(135deg, #C4553E 0%, #d6654a 100%); */
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 16px 50px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(196, 85, 62, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit-application::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #C01920;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit-application:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit-application:hover {
    /* background: linear-gradient(135deg, #a84535 0%, #C4553E 100%); */
    /* background: #C01920; */
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 85, 62, 0.4);
}

.btn-submit-application:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(196, 85, 62, 0.3);
}

.btn-submit-application span {
    position: relative;
    z-index: 1;
}

/* Responsive Design for Application Form */
@media (max-width: 768px) {
    .application-form-container {
        padding: 2.5rem 1.5rem;
        margin: 1rem;
        border-radius: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .form-label {
        font-size: 14px;
    }

    .form-input {
        padding: 13px 16px;
        font-size: 14px;
    }

    .file-input-label {
        flex-direction: column;
        align-items: stretch;
        border-radius: 10px;
    }

    .file-button {
        border-right: none;
        border-bottom: 2px solid #e8e8e8;
        border-radius: 8px 8px 0 0;
        text-align: center;
        padding: 13px 20px;
    }

    .file-name {
        text-align: center;
        padding: 13px 16px;
        justify-content: center;
    }

    .form-submit {
        margin-top: 2.5rem;
        padding-top: 1.5rem;
    }

    .btn-submit-application {
        padding: 14px 40px;
        font-size: 15px;
        width: 100%;
        max-width: 300px;
    }
}

/* Offers Page Styles */
.offers-hero {
    /* background: linear-gradient(135deg, #C4553E 0%, #e67e5f 100%); */
    background-image: url(../images/hdr5.jpeg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.offers-hero h1 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.offers-hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.offers-section {
    padding: 4rem 0;
    background-image: url(../images/hdr5.jpeg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.offer-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease;
}

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

.offer-media {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f0f0f0;
}

.offer-image-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.offer-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offer-image-link:hover img {
    transform: scale(1.1);
}

.offer-video {
    width: 100%;
    height: 100%;
    position: relative;
}

.offer-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.offer-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.offer-title {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.offer-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.offer-meta {
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e8e8e8;
}

.offer-validity {
    display: flex;
    align-items: center;
    color: #C4553E;
    font-size: 0.9rem;
    font-weight: 500;
}

.offer-validity strong {
    margin-right: 0.5rem;
    color: #2c3e50;
}

.offer-cta {
    display: inline-block;
    background: linear-gradient(135deg, #C4553E 0%, #d6654a 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(196, 85, 62, 0.3);
}

.offer-cta:hover {
    background: linear-gradient(135deg, #a84535 0%, #C4553E 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 85, 62, 0.4);
}

/* Responsive Design for Offers */
@media (max-width: 768px) {
    .offers-hero h1 {
        font-size: 2rem;
    }

    .offers-hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .offer-media {
        height: 200px;
    }

    .offer-content {
        padding: 1.5rem;
    }

    .offer-title {
        font-size: 1.3rem;
    }
}

/* Additional Responsive Styles for Smaller Screens */
@media (max-width: 600px) {
    .container {
        padding: 0 15px;
    }

    .logo h2 {
        font-size: 0.75rem;
    }

    .logo p {
        font-size: 0.5rem;
    }

    .logo a img {
        height: 35px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
        padding: 0 1rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

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

    .contact-form-panel {
        padding: 1.5rem;
    }

    .contact-form-header h2 {
        font-size: 1.5rem;
    }

    .contact-header h1 {
        font-size: 2.5rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-map iframe,
    .branch-map iframe {
        width: 100% !important;
        height: 250px !important;
        max-width: 100%;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .stats-grid {
        gap: 1.5rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .sectors-grid {
        gap: 1.5rem;
    }

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

    .testimonials-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .nav-wrapper {
        padding: 0.75rem 0;
    }

    .logo h2 {
        font-size: 0.7rem;
    }

    .logo p {
        font-size: 0.45rem;
    }

    .logo a img {
        height: 30px;
    }

    .hero {
        height: 450px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 0.85rem;
    }

    .slider-card {
        width: 110px;
        height: 150px;
    }

    .slider-wrapper {
        height: 180px;
    }

    .intro-section h2,
    .featured-sectors h2,
    .content-section h2 {
        font-size: 1.75rem;
    }

    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-form-header h2 {
        font-size: 1.25rem;
    }

    .contact-form-panel {
        padding: 1.25rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .contact-method {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }

    .contact-map iframe,
    .branch-map iframe {
        width: 100% !important;
        height: 200px !important;
        max-width: 100%;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .btn-send {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .page-header {
        padding: 1.5rem 0;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .stats-grid {
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-item h3 {
        font-size: 1.75rem;
    }

    .stat-item p {
        font-size: 0.85rem;
    }

    .sectors-grid {
        gap: 1rem;
    }

    .sector-card {
        padding: 1.5rem 1rem;
    }

    .sector-card h3 {
        font-size: 1.25rem;
    }

    .sector-card p {
        font-size: 0.85rem;
    }

    .testimonials-wrapper {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .testimonials-left {
        padding: 2rem 1.5rem;
    }

    .testimonials-title {
        font-size: 1.5rem;
    }

    .testimonials-right {
        min-height: 350px;
        padding: 1.5rem;
    }

    .testimonials-carousel {
        height: 350px;
    }

    .brands-title {
        font-size: 1.5rem;
    }

    .brands-grid {
        gap: 0.75rem;
        padding: 1.5rem 1rem;
    }

    .brand-logo {
        padding: 0.75rem;
    }

    .testimonials-title {
        font-size: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

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

    .footer-col h4 {
        font-size: 1.1rem;
    }

    .product-grid {
        gap: 1rem;
    }

    .product-card {
        padding: 1rem;
    }

    .offer-content {
        padding: 1.25rem;
    }

    .offer-title {
        font-size: 1.1rem;
    }

    .offer-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    .container {
        padding: 0 10px;
    }

    .logo h2 {
        font-size: 0.65rem;
    }

    .logo p {
        font-size: 0.4rem;
    }

    .logo a img {
        height: 28px;
    }

    .hero {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 1.25rem;
    }

    .hero-content p {
        font-size: 0.8rem;
    }

    .slider-card {
        width: 100px;
        height: 140px;
    }

    .slider-wrapper {
        height: 160px;
    }

    .intro-section h2,
    .featured-sectors h2,
    .content-section h2 {
        font-size: 1.5rem;
    }

    .contact-header h1 {
        font-size: 1.75rem;
    }

    .contact-form-header h2 {
        font-size: 1.1rem;
    }

    .contact-form-panel {
        padding: 1rem;
    }

    .contact-methods {
        gap: 1rem;
    }

    .contact-icon {
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
    }

    .contact-details h4 {
        font-size: 0.9rem;
    }

    .contact-details p {
        font-size: 0.8rem;
    }

    .contact-map iframe,
    .branch-map iframe {
        width: 100% !important;
        height: 180px !important;
        max-width: 100%;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.85rem;
    }

    .error-message {
        font-size: 0.75rem;
    }

    .btn-send {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }

    .page-header h1 {
        font-size: 1.25rem;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .stat-item p {
        font-size: 0.8rem;
    }

    .sector-card h3 {
        font-size: 1.1rem;
    }

    .sector-card p {
        font-size: 0.8rem;
    }

    .brands-title {
        font-size: 1.25rem;
    }

    .brands-grid {
        gap: 0.5rem;
        padding: 1.25rem 0.75rem;
    }

    .testimonials-title {
        font-size: 1.25rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-name {
        font-size: 1.1rem;
    }

    .testimonial-review {
        font-size: 0.85rem;
    }

    .footer-col h4 {
        font-size: 1rem;
    }

    .footer-col p,
    .footer-col li {
        font-size: 0.85rem;
    }

    .offer-title {
        font-size: 1rem;
    }

    .offer-description {
        font-size: 0.8rem;
    }

    .offer-cta {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 350px) {
    .container {
        padding: 0 8px;
    }

    .logo h2 {
        font-size: 0.6rem;
    }

    .logo p {
        font-size: 0.35rem;
    }

    .logo a img {
        height: 25px;
    }

    .hero {
        height: 350px;
    }

    .hero-content h1 {
        font-size: 1.1rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 0.75rem;
    }

    .slider-card {
        width: 90px;
        height: 130px;
    }

    .slider-wrapper {
        height: 150px;
    }

    .intro-section h2,
    .featured-sectors h2,
    .content-section h2 {
        font-size: 1.25rem;
    }

    .contact-header h1 {
        font-size: 1.5rem;
    }

    .contact-form-header h2 {
        font-size: 1rem;
    }

    .contact-form-panel {
        padding: 0.875rem;
    }

    .contact-methods {
        gap: 0.875rem;
    }

    .contact-icon {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .contact-details h4 {
        font-size: 0.85rem;
    }

    .contact-details p {
        font-size: 0.75rem;
    }

    .contact-map iframe,
    .branch-map iframe {
        width: 100% !important;
        height: 160px !important;
        max-width: 100%;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.55rem;
        font-size: 0.8rem;
    }

    .error-message {
        font-size: 0.7rem;
    }

    .btn-send {
        padding: 0.55rem 1rem;
        font-size: 0.8rem;
    }

    .page-header h1 {
        font-size: 1.1rem;
    }

    .stat-item {
        padding: 1.25rem 0.75rem;
    }

    .stat-item h3 {
        font-size: 1.25rem;
    }

    .stat-item p {
        font-size: 0.75rem;
    }

    .sector-card {
        padding: 1.25rem 0.75rem;
    }

    .sector-card h3 {
        font-size: 1rem;
    }

    .sector-card p {
        font-size: 0.75rem;
    }

    .brands-title {
        font-size: 1.1rem;
    }

    .brands-grid {
        gap: 0.5rem;
        padding: 1rem 0.5rem;
    }

    .testimonials-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .testimonials-left {
        padding: 1.75rem 1.25rem;
    }

    .testimonials-title {
        font-size: 1.1rem;
    }

    .testimonials-right {
        min-height: 320px;
        padding: 1.25rem;
    }

    .testimonials-carousel {
        height: 320px;
    }

    .testimonial-card {
        padding: 1rem;
    }

    .testimonial-name {
        font-size: 1rem;
    }

    .testimonial-review {
        font-size: 0.8rem;
    }

    .footer-col h4 {
        font-size: 0.95rem;
    }

    .footer-col p,
    .footer-col li {
        font-size: 0.8rem;
    }

    .offer-title {
        font-size: 0.95rem;
    }

    .offer-description {
        font-size: 0.75rem;
    }

    .offer-cta {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
}

@media (max-width: 300px) {

    /* Prevent horizontal overflow */
    html,
    body {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        padding: 0 4px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Navigation */
    .nav-wrapper {
        padding: 0.4rem 0;
        flex-wrap: wrap;
    }

    .logo {
        flex: 0 0 auto;
        min-width: 0;
    }

    .logo h2 {
        font-size: 0.5rem;
        line-height: 1.2;
        word-break: break-word;
    }

    .logo p {
        font-size: 0.28rem;
        line-height: 1.2;
        word-break: break-word;
    }

    .logo a img {
        height: 20px;
        width: auto;
        max-width: 100%;
    }

    .hamburger {
        flex: 0 0 auto;
    }

    .hamburger span {
        width: 20px;
        height: 2px;
    }

    .nav-menu {
        top: 60px;
        padding: 1rem 0;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .nav-menu.active {
        height: auto;
        max-height: calc(100vh - 60px);
        padding: 1rem 0;
    }

    .nav-menu a {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
        word-break: break-word;
    }

    .nav-menu li {
        padding: 0.25rem 0;
    }

    .dropdown-menu {
        padding: 0.25rem 0;
        margin: 0.25rem 0;
    }

    .dropdown-menu a {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .btn-contact {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    /* Hero Section */
    .hero {
        height: 280px;
        padding: 20px 4px;
        min-height: auto;
    }

    .hero-content {
        padding: 0 4px;
    }

    .hero-content h1 {
        font-size: 0.9rem;
        line-height: 1.2;
        padding: 0 0.25rem;
        margin-bottom: 0.5rem;
    }

    .hero-content p {
        font-size: 0.65rem;
        padding: 0 0.25rem;
        line-height: 1.4;
    }

    .hero-slider {
        margin: 1rem 0;
    }

    .slider-wrapper {
        height: 120px;
    }

    .slider-card {
        width: 70px;
        height: 100px;
        border-radius: 10px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .btn {
        padding: 0.45rem 0.9rem;
        font-size: 0.7rem;
        width: 100%;
        max-width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    /* Sections */
    .intro-section,
    .stats-section,
    .featured-sectors,
    .content-section {
        padding: 2rem 0;
    }

    .intro-section h2,
    .featured-sectors h2,
    .content-section h2,
    .stats-section h2 {
        font-size: 1rem;
        padding: 0 0.5rem;
        line-height: 1.3;
    }

    .intro-section p,
    .content-section p {
        font-size: 0.7rem;
        padding: 0 0.5rem;
        line-height: 1.5;
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .stat-item {
        padding: 1rem 0.5rem;
    }

    .stat-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .stat-item h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .stat-item p {
        font-size: 0.65rem;
    }

    /* Sectors Grid */
    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .sector-card {
        padding: 1rem 0.5rem;
        min-height: auto;
    }

    .sector-icon {
        margin-bottom: 0.75rem;
    }

    .sector-icon img {
        width: 120px;
        height: 120px;
    }

    .sector-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .sector-card p {
        font-size: 0.65rem;
        line-height: 1.4;
    }

    /* Brands Section */
    .brands-section {
        padding: 2rem 0;
    }

    .brands-content {
        padding: 1.5rem 1rem;
    }

    .brands-tagline {
        font-size: 0.7rem;
    }

    .brands-title {
        font-size: 0.9rem;
    }

    .brands-subtitle {
        font-size: 0.8rem;
    }

    .brands-description {
        font-size: 0.7rem;
    }

    .brands-grid {
        gap: 0.3rem;
        padding: 1rem 0.3rem;
    }

    .brand-logo {
        padding: 0.4rem;
        border-radius: 12px;
    }

    /* CTA Banner */
    .cta-banner {
        padding: 2rem 0;
    }

    .cta-content h2 {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .cta-content p {
        font-size: 0.75rem;
        padding: 0 0.5rem;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 2rem 0;
    }

    .testimonials-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .testimonials-left {
        padding: 1.5rem 1rem;
    }

    .testimonials-title {
        font-size: 0.9rem;
    }

    .testimonials-tagline p {
        font-size: 0.75rem;
    }

    .testimonials-right {
        padding: 1rem;
        min-height: auto;
    }

    .testimonials-carousel {
        height: auto;
        max-width: 100%;
    }

    .testimonial-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 300px;
        padding: 1rem 0.75rem;
        position: relative;
    }

    .testimonial-card[data-index="1"],
    .testimonial-card[data-index="2"],
    .testimonial-card[data-index="3"] {
        display: none;
    }

    .testimonial-header {
        flex-direction: column;
        align-items: center;
        margin-bottom: 1rem;
    }

    .testimonial-name-box {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .testimonial-name {
        font-size: 0.9rem;
        text-align: center;
        margin-top: 0;
    }

    .testimonial-photo {
        width: 60px;
        height: 60px;
    }

    .testimonial-review-box {
        padding: 1rem;
        min-height: auto;
    }

    .testimonial-review {
        font-size: 0.7rem;
        line-height: 1.5;
    }

    /* Contact Section */
    .contact-header {
        padding: 2rem 0;
    }

    .contact-header h1 {
        font-size: 1.1rem;
        padding: 0 0.5rem;
    }

    .contact-main {
        padding: 0 0 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .contact-form-panel {
        padding: 1rem 0.75rem;
        border-radius: 10px;
    }

    .contact-form-header p {
        font-size: 0.7rem;
    }

    .contact-form-header h2 {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .contact-info-panel {
        padding: 1rem 0.75rem;
    }

    .contact-intro {
        font-size: 0.7rem;
        margin-top: 0;
        margin-bottom: 1.5rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact-method {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .contact-icon {
        width: 24px;
        height: 24px;
        font-size: 0.85rem;
    }

    .contact-details h4 {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }

    .contact-details p {
        font-size: 0.65rem;
        word-break: break-word;
    }

    .contact-map {
        height: 140px;
        margin-top: 1rem;
    }

    .contact-map iframe,
    .branch-map iframe {
        width: 100% !important;
        height: 140px !important;
        max-width: 100%;
    }

    .form-group {
        margin-bottom: 0.75rem;
    }

    .form-group label {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.45rem;
        font-size: 0.7rem;
        border-radius: 5px;
        width: 100%;
        box-sizing: border-box;
    }

    .form-group textarea {
        min-height: 80px;
    }

    .error-message {
        font-size: 0.6rem;
        margin-top: 0.25rem;
    }

    .btn-send {
        padding: 0.45rem 0.75rem;
        font-size: 0.7rem;
        margin-top: 0.5rem;
        width: 100%;
    }

    /* Page Headers */
    .page-header {
        padding: 1rem 0;
    }

    .page-header h1 {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .page-header p {
        font-size: 0.7rem;
        padding: 0 0.5rem;
    }

    /* Content Sections */
    .content-section {
        padding: 2rem 0;
    }

    .content-section h2 {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
        margin-bottom: 1rem;
    }

    .content-section h3 {
        font-size: 0.85rem;
        margin: 1rem 0 0.5rem;
    }

    .content-section p,
    .content-section .text-min {
        font-size: 0.7rem;
        padding: 0.75rem 1rem;
        margin-bottom: 1rem;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }

    .content-section .container>.two-column>div {
        padding: 1.5rem 1rem;
    }

    .content-section .container>.two-column>div h2 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .content-section .container>.two-column>div p {
        font-size: 0.7rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }

    .feature-item {
        padding: 1.5rem 1rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .feature-number {
        font-size: 1.5rem;
    }

    .feature-item h4 {
        font-size: 0.9rem;
    }

    .feature-item p {
        font-size: 0.7rem;
    }

    /* Product Grids */
    .product-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .product-card {
        padding: 1rem 0.75rem;
    }

    .product-image {
        height: 180px;
    }

    .product-title {
        font-size: 0.9rem;
    }

    .product-type {
        font-size: 0.8rem;
    }

    .product-brand {
        font-size: 0.75rem;
    }

    .product-price {
        font-size: 0.9rem;
    }

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

    .product-category {
        padding: 1rem 0.75rem;
    }

    .product-category h4 {
        font-size: 0.9rem;
    }

    .product-category img {
        width: 150px;
        height: 150px;
    }

    /* Product Detail */
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-specs {
        padding: 1rem 0.75rem;
    }

    .spec-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        padding: 0.75rem 0;
    }

    .spec-label {
        font-size: 0.7rem;
    }

    .spec-value {
        font-size: 0.75rem;
        text-align: left;
    }

    .product-actions {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .btn-product-action {
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
    }

    .thumbnail-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    /* Gallery */
    .gallery-filters {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }

    /* Offers */
    .offers-hero {
        padding: 1.5rem 0;
    }

    .offers-hero h1 {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .offers-hero p {
        font-size: 0.75rem;
        padding: 0 0.5rem;
    }

    .offers-section {
        padding: 2rem 0;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .offer-card {
        border-radius: 12px;
    }

    .offer-media {
        height: 180px;
    }

    .offer-content {
        padding: 1rem 0.75rem;
    }

    .offer-title {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .offer-description {
        font-size: 0.65rem;
        margin-bottom: 1rem;
    }

    .offer-validity {
        font-size: 0.7rem;
    }

    .offer-cta {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
        width: 100%;
        text-align: center;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .footer-col {
        padding: 0.5rem 0;
    }

    .footer-col h2 {
        font-size: 0.7rem;
    }

    .footer-col h4 {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .footer-col p,
    .footer-col li {
        font-size: 0.7rem;
        line-height: 1.6;
        word-break: break-word;
    }

    .footer-col .logo p {
        font-size: 0.45rem;
    }

    .social-icons {
        gap: 0.75rem;
        margin-top: 0.75rem;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
    }

    .social-icons a svg {
        width: 18px;
        height: 18px;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.65rem;
    }

    /* Application Form */
    .application-form-container {
        padding: 1.5rem 0.75rem;
        margin: 1rem 0.5rem;
    }

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

    .form-label {
        font-size: 0.7rem;
    }

    .form-input {
        padding: 0.5rem 0.75rem;
        font-size: 0.7rem;
    }

    .file-button {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }

    .file-name {
        padding: 0.5rem 0.75rem;
        font-size: 0.7rem;
    }

    .btn-submit-application {
        padding: 0.5rem 1.5rem;
        font-size: 0.7rem;
        width: 100%;
        max-width: 100%;
    }

    /* WhatsApp Widget */
    .whatsapp-widget {
        left: 10px;
        bottom: 10px;
    }

    .whatsapp-icon {
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-chatbox {
        left: 10px;
        bottom: 70px;
        width: calc(100vw - 20px);
        height: calc(100vh - 80px);
        max-height: 500px;
    }

    .chatbox-header {
        padding: 15px;
    }

    .chatbox-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .chatbox-header-text h3 {
        font-size: 14px;
    }

    .chatbox-header-text p {
        font-size: 11px;
    }

    .chatbox-messages {
        padding: 15px;
    }

    .chatbox-message {
        padding: 10px 12px;
        font-size: 0.7rem;
    }

    .chatbox-input-area {
        padding: 10px;
    }

    .chatbox-input {
        padding: 8px 15px;
        font-size: 0.7rem;
    }

    .chatbox-send {
        width: 40px;
        height: 40px;
    }

    .chatbox-send svg {
        width: 18px;
        height: 18px;
    }

    /* Ensure no horizontal overflow */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    body {
        overflow-x: hidden;
        width: 100%;
    }

    img,
    video,
    iframe,
    embed,
    object {
        max-width: 100%;
        height: auto;
    }

    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }

    /* Prevent text overflow */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    span,
    a,
    li,
    td,
    th {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    /* Ensure buttons are tappable */
    button,
    .btn,
    a.btn,
    input[type="submit"],
    input[type="button"] {
        min-height: 44px;
        min-width: 44px;
    }
}