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

/* ---------- GLOBAL RESET & ROOT ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-primary: #2F2F97;
    --red-accent: #2F2F97;
    --black-base: #0e0a0a;
    --white-base: #ffffff;
    --gray-light: #f8f9fc;
    --gray-border: #eaeef5;
    --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 12px 24px rgba(0, 0, 0, 0.12);
    --font-body: 'Inter', sans-serif;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-md: 1.125rem;
    --text-lg: 1.25rem;
    --text-xl: 1.5rem;
    --text-2xl: 2rem;
    --text-3xl: 2.5rem;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;
    --transition: 0.25s ease;
}

body {
    font-family: var(--font-body);
    background: var(--white-base);
    color: var(--black-base);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li,
button,
input,
textarea,
.btn-primary,
.btn-outline,
.feature-title,
.quality-title,
.cta-title,
.cta-text,
.footer-title,
.footer-links a,
.footer-contact-list li,
.copyright p,
.developed-by p {
    font-family: var(--font-body);
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

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

/* Intersection Observer animation classes */
.anim-fadeup {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1),
        transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.anim-fadein-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1),
        transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.anim-fadein-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1),
        transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.anim-scalein {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1),
        transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Stagger delays for grid children */
.anim-delay-1 {
    transition-delay: 0.1s;
}

.anim-delay-2 {
    transition-delay: 0.2s;
}

.anim-delay-3 {
    transition-delay: 0.3s;
}

.anim-delay-4 {
    transition-delay: 0.4s;
}

.anim-visible {
    opacity: 1 !important;
    transform: none !important;
}

/* buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--blue-primary);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(47, 47, 151, 0.2);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 25px rgba(47, 47, 151, 0.3);
    color: #ffffff;
    background-color: var(--blue-primary);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 2px solid var(--white-base);
    color: var(--white-base);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 32px;
    border-radius: 50px;
    transition: var(--transition);
    min-width: 200px;
    text-decoration: none;
}

.btn-outline:hover {
    background-color: var(--white-base);
    color: var(--blue-primary);
}

/* ========== TOP BAR - 40% Blue / 60% Red ========== */
/* ========== TOP BAR - GENTLE SLASH SHAPE COLOR PARTITION ========== */
.top-bar {
    color: var(--white-base);
    text-align: center;
    padding: 6px 10px;
    font-size: 14px;
    font-weight: var(--fw-regular);
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    /* background: var(--blue-primary); */
    background: var(--blue-primary);
}

/* Gentle slash shape - 30% Red on left, 70% Blue on right */
.top-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: var(--blue-primary);
    clip-path: polygon(0% 0%, 100% 0%, 95% 100%, 0% 100%);
    z-index: 0;
    pointer-events: none;
}

.top-bar p {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.top-bar i {
    font-size: 1.2rem;
    flex-shrink: 0;
    color: var(--white-base);
}

/* Tablet responsive */
@media (max-width: 768px) {
    .top-bar::before {
        width: 35%;
        clip-path: polygon(0% 0%, 100% 0%, 82% 100%, 0% 100%);
    }
}

/* Mobile responsive */
@media (max-width: 550px) {
    .top-bar::before {
        width: 40%;
        clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 0% 100%);
    }
}

/* ========== NAVBAR ========== */
.navbar {
    background: var(--white-base);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-border);
    animation: slideDown 0.5s ease 0.1s both;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.logo-tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 19px; /* Dancing Script is slightly larger and bolder */
    font-weight: 500;
    color: #0e0a0a;
    text-transform: none;
    letter-spacing: normal;
    align-self: flex-end;
    margin-top: 2px;
}

.logo-icon {
    background: var(--blue-primary);
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
}

.logo-text {
    font-size: var(--text-xl);
    font-weight: var(--fw-extrabold);
    color: var(--blue-primary);
}

.logo-text span {
    color: var(--blue-primary);
}

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

.nav-links li a {
    text-decoration: none;
    font-weight: var(--fw-medium);
    color: #1e293b;
    transition: var(--transition);
    font-size: var(--text-base);
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links li a:not(.contact-btn-nav):hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: var(--blue-primary);
}

.nav-links li a.active {
    color: var(--blue-primary);
}

.nav-links li a.active:not(.contact-btn-nav)::after {
    width: 100%;
}

.contact-btn-nav {
    background-color: var(--blue-primary);
    padding: 8px 24px;
    border-radius: 40px;
    color: white !important;
    font-weight: var(--fw-semibold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.25s ease, transform 0.25s ease !important;
}

.contact-btn-nav:hover {
    background-color: #1a1a4e;
    transform: scale(1.02);
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--blue-primary);
    transition: 0.2s;
}

.hamburger:hover {
    color: var(--blue-primary);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--white-base);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    transition: right 0.35s ease-in-out;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gray-border);
    padding-bottom: 16px;
}

.mobile-menu-header .mobile-logo {
    font-weight: var(--fw-extrabold);
    font-size: var(--text-lg);
    color: var(--blue-primary);
}

.close-menu {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--blue-primary);
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.mobile-nav-list li a {
    text-decoration: none;
    font-size: var(--text-md);
    font-weight: var(--fw-medium);
    color: #1e293b;
    display: block;
    text-align: left;
    transition: 0.2s;
}

.mobile-nav-list li a:hover {
    color: var(--blue-primary);
    padding-left: 6px;
}

.mobile-nav-list li a.active {
    color: var(--blue-primary);
    padding-left: 6px;
}

.mobile-nav-list li a.mobile-contact {
    margin-top: 20px;
    background-color: var(--blue-primary);
    padding: 12px 20px !important;
    border-radius: 40px;
    color: white !important;
    font-weight: var(--fw-semibold);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    transition: all 0.25s ease;
}

.mobile-nav-list li a.mobile-contact:hover,
.mobile-nav-list li a.mobile-contact.active {
    background-color: #1a1a4e;
    color: white !important;
    padding: 12px 20px !important;
}

.overlay-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.overlay-blur.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 850px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-container {
        padding: 14px 24px;
    }
}

/* ========== SLIDER SECTION ========== */
.slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #1e2026;
}

.slides-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s cubic-bezier(0.25, 0.95, 0.45, 1), visibility 0.7s;
    background-size: cover !important;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #5f78c3;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* Overlay - Strictly left-side only for text contrast */
.slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Reduced vignette opacity for brighter images */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.05) 30%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

/* Secondary overlay removed to keep it "left side only" */
.slide::after {
    display: none;
}

/* Content aligned to left side - within the overlay area */
.slide-content {
    position: absolute;
    top: 50%;
    left: 7%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: left;
    max-width: 650px;
    width: 90%;
    padding: 0;
    margin: 0;
    color: #ffffff;
    animation: fadeInLeft 0.6s ease-out;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.slide-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 8px;
    /* Reduced gap between H and P */
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95), 0 4px 20px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 0, 0, 0.5);
    white-space: normal;
    display: block;
}

.slide-content .slide-subtext {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    margin-bottom: 30px;
    max-width: 100%;
    line-height: 1.6;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95), 0 4px 15px rgba(0, 0, 0, 0.75), 0 0 20px rgba(0, 0, 0, 0.5);
    opacity: 1;
    display: block;
    width: fit-content;
}

.slide-content .slide-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.slide-content .slide-features li {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white-base);
    /* Deeper shadow for list items */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.slide-content .slide-features li i {
    color: #ffffff;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.4);
    /* Darker icon bg for contrast */
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.slide-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn-primary,
.btn-outline {
    white-space: nowrap;
    justify-content: center;
}

.slide-buttons .btn-outline {
    border-color: #ffffff;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.slide-buttons .btn-outline:hover {
    background-color: var(--blue-primary);
    border-color: var(--blue-primary);
    color: #ffffff;
}

@media (max-width: 553px) {

    .btn-primary,
    .btn-outline {
        white-space: nowrap;
        text-align: center;
        line-height: 1.2;
        min-width: 0;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

.slider-arrow {
    display: none;
    /* Removed as per request for a cleaner look */
}

@media (max-width: 768px) {
    .slide-content h2 {
        white-space: normal;
        /* Allow wrapping on mobile for better fit */
    }
}

/* Added missing closing brace */

/* Redundant arrow classes removed */

.slider-dots {
    position: absolute;
    bottom: clamp(12px, 2vh, 20px);
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: clamp(10px, 2vw, 14px);
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

.dot.active-dot {
    background-color: var(--blue-primary);
    width: clamp(24px, 5vw, 28px);
    border-radius: 20px;
}

/* Tablet responsive */
@media (max-width: 1024px) {
    .slide::before {
        background: transparent;
    }

    .slide-content {
        width: 70%;
        left: 5%;
        padding: 0;
        background: transparent;
    }

    /* HIDE SUBTEXT AND FEATURES ON TABLET AND MOBILE */
    .slide-content .slide-subtext,
    .slide-content .slide-features {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .slide::before {
        background: transparent;
        clip-path: none !important;
    }

    .slide-content {
        width: 100%;
        left: 0;
        top: 50%;
        padding: 20px;
        background: transparent !important;
        backdrop-filter: none !important;
    }

    .slide-content h2 {
        white-space: normal;
        margin-bottom: 25px;
        font-size: 1.8rem;
    }

    /* HIDE SUBTEXT AND FEATURES ON ALL MOBILE/TAB SCREENS */
    .slide-content .slide-subtext,
    .slide-content .slide-features {
        display: none !important;
    }

    .slider-arrow {
        display: none !important;
    }
}

@media (max-width: 553px) {
    .slide-content {
        width: 95%;
        left: 4%;
    }

    .slide-content h2 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .slide-buttons {
        gap: 8px;
    }
}

/* LOGO */
.logo-image {
    height: 50px;
    width: auto;
    max-width: 100%;
    display: block;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .logo-image {
        height: 40px;
    }

    .logo-tagline {
        font-size: 12px;
        letter-spacing: 0.2px;
    }

    .footer-logo-img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 35px;
    }

    .logo-tagline {
        font-size: 10px;
        letter-spacing: 0.1px;
    }

    .footer-logo-img {
        height: 35px;
    }
}

/* ========== FOOTER ========== */
.site-footer {
    background-color: #0d1221;
    color: #e2e8f0;
    margin-top: 0;
    font-family: var(--font-body);
    border-top: 4px solid var(--blue-primary);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(47, 47, 151, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 100%;
    display: block;
}

.footer-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #ED1C24;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--blue-primary);
    border-radius: 2px;
}

.footer-links,
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    font-size: 0.875rem;
}

.footer-links li a:hover {
    color: var(--blue-primary);
    padding-left: 8px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.875rem;
    color: #b0b0b0;
}

.footer-contact-list li i {
    color: #ED1C24;
    font-size: 1rem;
    margin-top: 3px;
    min-width: 18px;
}

.footer-contact-list li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact-list li a:hover {
    color: #ED1C24;
}

.footer-bottom {
    background-color: #080b18;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 15px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: #64748b;
    font-size: 0.85rem;
}

gap: 16px;
}

.copyright p,
.developed-by p {
    font-size: 0.8rem;
    color: #888;
}

.developed-by a {
    color: #ED1C24;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.developed-by a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-logo-img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .footer-logo-img {
        height: 35px;
    }
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px 30px;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: left;
    }

    .footer-title::after {
        left: 0;
        transform: none;
    }

    .footer-title {
        text-align: left;
    }

    .footer-logo {
        display: flex;
        justify-content: flex-start;
    }

    .footer-description {
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-contact-list li {
        justify-content: flex-start;
    }
}

/* ========== ABOUT SECTION ========== */
.about-section {
    width: 100%;
    padding: 50px 0;
    background: #ffffff;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.about-image {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #eaeef5;
}

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

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

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: 30px;
    right: 30px;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeef5;
}

.experience-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.2);
}

.badge-icon {
    width: 48px;
    height: 48px;
    background: var(--blue-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon i {
    font-size: 24px;
    color: #ffffff;
}

.badge-body {
    flex: 1;
}

.badge-title {
    font-size: 1rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.badge-description {
    font-size: 0.7rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-welcome {
    margin-bottom: 4px;
}

.welcome-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 2px;
    color: var(--blue-primary);
    background: rgba(47, 47, 151, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.about-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    color: #1a1a2e;
    margin: 0;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-text p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

.about-text p strong {
    color: var(--blue-primary);
    font-weight: 700;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.about-point-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #f8f9fc;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.about-point-item i {
    color: var(--blue-primary);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.about-point-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
}

.about-point-item:hover,
.about-point-item.active {
    background: #ffffff;
    border-color: var(--blue-primary);
    box-shadow: 0 5px 15px rgba(47, 47, 151, 0.08);
    transform: translateY(-2px);
}

.about-point-item:hover i,
.about-point-item.active i {
    color: var(--blue-primary);
}


.about-button {
    margin-top: 8px;
}

.know-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--blue-primary);
    color: #ffffff;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(47, 47, 151, 0.2);
    min-width: 200px;
}

.know-more-btn i {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.know-more-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 25px rgba(47, 47, 151, 0.3);
    background: var(--blue-primary);
}

.know-more-btn:hover i {
    transform: translateX(6px);
}

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

    .about-container {
        gap: 40px;
    }

    .about-title {
        font-size: 1.7rem;
    }

    .about-text p {
        font-size: 0.85rem;
    }

    .experience-badge {
        left: 20px;
        right: 20px;
        padding: 14px 18px;
        bottom: -25px;
    }

    .badge-icon {
        width: 44px;
        height: 44px;
    }

    .badge-icon i {
        font-size: 22px;
    }

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

    .badge-description {
        font-size: 0.65rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 70px;
        align-items: center;
    }

    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .about-image {
        aspect-ratio: 4 / 3;
    }

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

    .about-text p {
        font-size: 0.85rem;
    }

    .experience-badge {
        left: 20px;
        right: 20px;
        padding: 14px 18px;
        bottom: -25px;
    }

    .know-more-btn {
        padding: 11px 26px;
        font-size: 0.85rem;
    }
}

@media (max-width: 580px) {
    .experience-badge {
        flex-direction: column;
        text-align: center;
        left: 15px;
        right: 15px;
        padding: 14px 16px;
        bottom: -20px;
    }

    .badge-icon {
        margin-bottom: 6px;
    }

    .badge-title {
        font-size: 0.85rem;
    }

    .badge-description {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }

    .about-container {
        padding: 0 16px;
        gap: 65px;
    }

    .about-image {
        aspect-ratio: 4 / 3;
    }

    .welcome-tag {
        font-size: 0.65rem;
    }

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

    .about-text p {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .experience-badge {
        left: 12px;
        right: 12px;
        padding: 12px 14px;
        bottom: -18px;
    }

    .badge-icon {
        width: 38px;
        height: 38px;
    }

    .badge-icon i {
        font-size: 18px;
    }

    .badge-title {
        font-size: 0.8rem;
    }

    .badge-description {
        font-size: 0.55rem;
    }

    .know-more-btn {
        padding: 9px 22px;
        font-size: 0.8rem;
    }
}

/* ========== WHY CHOOSE US ========== */
.why-choose-section {
    width: 100%;
    background-color: #eeeeef;
    padding: 50px 0;
}

.why-choose-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.why-choose-section {
    width: 100%;
    padding: 100px 0 80px 0;
    background: linear-gradient(135deg, #1a1a4e 0%, #2f2f97 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Elegant background dot texture */
.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px);
    background-size: 25px 25px;
    z-index: -1;
}

/* Soft glowing orb effect behind the text */
.why-choose-section::after {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    z-index: -1;
}

.why-choose-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.why-choose-section .section-header {
    text-align: center;
    margin-bottom: 35px;
}

.why-choose-section .section-subtitle {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.why-choose-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.why-choose-section .section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.about-features-grid {
    grid-template-columns: repeat(3, 1fr);
}

.why-choose-section .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 40px 25px;
    background: #ffffff;
    border-radius: 20px;
    /* Stronger, deeper shadow to pop against the dark blue background */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.why-choose-section .feature-item:hover {
    /* More pronounced hover lift effect */
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.why-choose-section .feature-icon {
    width: 75px;
    height: 75px;
    /* Increased contrast for the icon background */
    background-color: #e8eef6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.why-choose-section .feature-item:hover .feature-icon {
    background-color: var(--blue-primary);
    transform: scale(1.15) rotate(5deg);
}

.why-choose-section .feature-icon i {
    font-size: 28px;
    color: var(--blue-primary);
    transition: color 0.4s ease;
}

.why-choose-section .feature-item:hover .feature-icon i {
    color: #ffffff;
}

.why-choose-section .feature-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-choose-section .feature-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.3;
    margin: 0;
}

.why-choose-section .feature-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}


.about-foundation-bg {
    padding: 60px 0 !important;
    /* Reduced from 100px */
}

.about-foundation-bg .about-features-grid {
    gap: 30px;
    margin-top: 10px;
}

.about-foundation-bg .feature-item {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    /* Reduced from 45px 30px */
    background: #ffffff;
    border-radius: 20px;
    border: none;
    border-top: 4px solid var(--blue-primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-foundation-bg .feature-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(47, 47, 151, 0.15);
    border-top-color: var(--blue-primary);
}

.about-foundation-bg .feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    border-radius: 50%;
    background: rgba(47, 47, 151, 0.08);
}

.about-foundation-bg .feature-item:hover .feature-icon {
    background: var(--blue-primary);
    transform: scale(1.1);
}

.about-foundation-bg .feature-icon i {
    font-size: 30px;
    color: var(--blue-primary);
}

.about-foundation-bg .feature-item:hover .feature-icon i {
    color: #ffffff;
}

.about-foundation-bg .feature-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--blue-primary);
    letter-spacing: -0.5px;
}

.about-foundation-bg .feature-item:hover .feature-title {
    color: var(--blue-primary);
}


@media (max-width: 1100px) {
    .features-grid {
        gap: 25px;
    }

    .why-choose-section .feature-icon {
        width: 42px;
        height: 42px;
    }

    .why-choose-section .feature-icon i {
        font-size: 20px;
    }

    .why-choose-section .feature-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .why-choose-section .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .why-choose-section {
        padding: 50px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-choose-section .section-header {
        margin-bottom: 35px;
    }

    .why-choose-section .section-title {
        font-size: 1.5rem;
    }

    .why-choose-section .section-description {
        font-size: 0.85rem;
    }

    .why-choose-section .feature-icon {
        width: 40px;
        height: 40px;
    }

    .why-choose-section .feature-icon i {
        font-size: 18px;
    }

    .why-choose-section .feature-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 40px 0;
    }

    .why-choose-container {
        padding: 0 16px;
    }

    .why-choose-section .section-subtitle {
        font-size: 0.7rem;
    }

    .why-choose-section .section-title {
        font-size: 1.3rem;
    }

    .why-choose-section .section-description {
        font-size: 0.8rem;
    }

    .why-choose-section .feature-icon {
        width: 36px;
        height: 36px;
    }

    .why-choose-section .feature-icon i {
        font-size: 16px;
    }

    .why-choose-section .feature-title {
        font-size: 0.85rem;
    }
}

/* ========== VISION SECTION - SOLID BOLD STYLE ========== */
.vision-section {
    width: 100%;
    padding: 120px 0;
    background-color: #f8f9fa;
    background-image:
        /* Hexagonal Chemical Pattern */
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 5L89 27.5V72.5L50 95L11 72.5V27.5L50 5Z' fill='none' stroke='%232F2F97' stroke-width='1' stroke-opacity='0.05'/%3E%3C/svg%3E"),
        /* Dense Molecular Pattern */
        url("data:image/svg+xml,%3Csvg width='300' height='300' viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3Base%3Cg fill='none' stroke='%232F2F97' stroke-width='1.5' stroke-opacity='0.08'%3E%3Ccircle cx='40' cy='40' r='4' fill='%232F2F97' fill-opacity='0.08'/%3E%3Ccircle cx='100' cy='80' r='3' fill='%232F2F97' fill-opacity='0.08'/%3E%3Ccircle cx='160' cy='50' r='4' fill='%23ed1c24' fill-opacity='0.08'/%3E%3Cline x1='40' y1='40' x2='100' y2='80' /%3E%3Cline x1='100' y1='80' x2='160' y2='50' /%3E%3Ccircle cx='240' cy='150' r='5' fill='%232F2F97' fill-opacity='0.08'/%3E%3Ccircle cx='180' cy='180' r='4' fill='%23ed1c24' fill-opacity='0.08'/%3E%3Cline x1='240' y1='150' x2='180' y2='180' /%3E%3Ccircle cx='50' cy='240' r='4' fill='%232F2F97' fill-opacity='0.08'/%3E%3Ccircle cx='120' cy='220' r='3' fill='%232F2F97' fill-opacity='0.08'/%3E%3Cline x1='50' y1='240' x2='120' y2='220' /%3E%3C/g%3E%3C/svg%3E"),
        /* Grid */
        linear-gradient(rgba(47, 47, 151, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47, 47, 151, 0.08) 1px, transparent 1px);
    background-size: 150px 150px, 300px 300px, 40px 40px, 40px 40px;
    position: relative;
    overflow: hidden;
}

/* Decorative Complex Molecular Clusters */
.vision-section::before {
    content: '';
    position: absolute;
    top: 50px;
    right: 3%;
    width: 300px;
    height: 300px;
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%232F2F97' stroke-width='2' opacity='0.15'%3E%3Ccircle cx='30' cy='30' r='12' fill='%232F2F97' /%3E%3Ccircle cx='80' cy='50' r='10' fill='%232F2F97' /%3E%3Ccircle cx='110' cy='20' r='8' fill='%23ed1c24' /%3E%3Ccircle cx='50' cy='90' r='10' fill='%232F2F97' /%3E%3Cline x1='30' y1='30' x2='80' y2='50' /%3E%3Cline x1='80' y1='50' x2='110' y2='20' /%3E%3Cline x1='30' y1='30' x2='50' y2='90' /%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    z-index: 0;
    transform: rotate(20deg);
}

.vision-section::after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 2%;
    width: 250px;
    height: 250px;
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%232F2F97' stroke-width='2' opacity='0.15'%3E%3Ccircle cx='40' cy='80' r='12' fill='%23ed1c24' /%3E%3Ccircle cx='90' cy='60' r='10' fill='%232F2F97' /%3E%3Ccircle cx='20' cy='40' r='8' fill='%232F2F97' /%3E%3Ccircle cx='100' cy='100' r='6' fill='%232F2F97' /%3E%3Cline x1='40' y1='80' x2='90' y2='60' /%3E%3Cline x1='40' y1='80' x2='20' y2='40' /%3E%3Cline x1='90' y1='60' x2='100' y2='100' /%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    z-index: 0;
    transform: rotate(-15deg);
}

.vision-container {
    max-width: 1140px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 24px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 30px 60px rgba(13, 10, 44, 0.08);
    border: 1px solid #eef0f7;
}

.vision-left {
    flex: 0 0 42%;
    background-color: #2F2F97;
    /* Solid Brand Blue */
    padding: 70px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Decorative square in corner */
.vision-left::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 40px;
    height: 40px;
    border-top: 3px solid rgba(255, 255, 255, 0.2);
    border-left: 3px solid rgba(255, 255, 255, 0.2);
}

.vision-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    background-color: #ed1c24;
    /* Solid Brand Red */
    padding: 10px 24px;
    border-radius: 4px;
    /* Sharp modern look */
    margin-bottom: 25px;
    width: fit-content;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
}

.vision-heading {
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
}

.vision-divider-line {
    display: none;
    /* Not needed in this card layout */
}

.vision-right {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.vision-quote-icon {
    width: 60px;
    height: 60px;
    background-color: #f1f3f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ed1c24;
    margin-bottom: 30px;
}

.vision-description {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #1a1a2e;
    margin: 0;
    font-weight: 500;
    position: relative;
}

/* Accent block for description */
.vision-description::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #ed1c24;
    border-radius: 2px;
}

@media (max-width: 992px) {
    .vision-container {
        flex-direction: column;
    }

    .vision-left {
        flex: none;
        padding: 50px 40px;
    }

    .vision-right {
        padding: 50px 40px;
    }

    .vision-heading {
        font-size: 2.2rem;
    }

    .vision-description {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .vision-section {
        padding: 60px 0;
    }

    .vision-left {
        padding: 40px 30px;
    }

    .vision-right {
        padding: 40px 30px 40px 60px;
        /* Space for the red bar */
    }
}

@media (max-width: 480px) {
    .vision-heading {
        font-size: 1.8rem;
    }

    .vision-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .vision-right {
        padding: 40px 20px 40px 40px;
    }
}



/* ========== COMMITMENT TO QUALITY ========== */
.quality-section {
    width: 100%;
    background-color: #f4f7f9;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Scientific Grid Background */
.quality-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(47, 47, 151, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47, 47, 151, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

/* Large Geometric Accent Ring */
.quality-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    border: 2px dashed rgba(47, 47, 151, 0.12);
    z-index: -1;
    pointer-events: none;
}

.quality-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.quality-section .section-header {
    text-align: center;
    margin-bottom: 35px;
}

.quality-section .section-subtitle {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 2px;
    color: var(--blue-primary);
    background: rgba(47, 47, 151, 0.08);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.quality-section .section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 16px 0;
    line-height: 1.3;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.5px;
}

.quality-section .section-description {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.quality-card {
    background: #ffffff;
    padding: 40px 30px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #eaeef5;
    border-radius: 20px;
    height: 100%;
}

.quality-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(47, 47, 151, 0.08);
    border-color: rgba(47, 47, 151, 0.1);
}

.quality-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: rgba(47, 47, 151, 0.06);
    border-radius: 16px;
    margin-bottom: 25px;
    color: var(--blue-primary);
    transition: all 0.4s ease;
}

.quality-card:hover .quality-icon {
    background-color: var(--blue-primary);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.quality-icon svg {
    width: 42px;
    height: 42px;
}

.quality-body {
    text-align: left;
}

.quality-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px 0;
}

.quality-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

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

    .quality-grid {
        gap: 25px;
    }

    .quality-card {
        padding: 25px;
    }

    .quality-icon svg {
        width: 38px;
        height: 38px;
    }

    .quality-title {
        font-size: 1.2rem;
    }

    .quality-text {
        font-size: 0.85rem;
    }

    .quality-section .section-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .quality-section {
        padding: 50px 0;
    }

    .quality-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 450px;
        margin: 0 auto;
    }

    .quality-card {
        padding: 25px;
    }

    .quality-section .section-title {
        font-size: 1.5rem;
    }

    .quality-section .section-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .quality-section {
        padding: 40px 0;
    }

    .quality-container {
        padding: 0 16px;
    }

    .quality-section .section-subtitle {
        font-size: 0.7rem;
    }

    .quality-section .section-title {
        font-size: 1.3rem;
    }

    .quality-section .section-description {
        font-size: 0.85rem;
    }

    .quality-card {
        padding: 20px;
    }

    .quality-icon svg {
        width: 34px;
        height: 34px;
    }

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

    .quality-text {
        font-size: 0.8rem;
    }
}

/* ========== CTA SECTION ========== */
.cta-section {
    width: 100%;
    position: relative;
    background-image: url('../images/foundation-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 0;
    border-top: 1px solid #e2e8f0;
}

.cta-overlay {
    display: none;
}

.cta-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--blue-primary);
    margin: 0;
    letter-spacing: -1px;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.cta-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #64748b;
    margin: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--blue-primary);
    color: #ffffff;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(47, 47, 151, 0.2);
    min-width: 200px;
}

.cta-button i {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 25px rgba(47, 47, 151, 0.3);
    background: var(--blue-primary);
}

.cta-button:hover i {
    transform: translateX(6px);
}

@media (max-width: 992px) {
    .cta-title {
        font-size: 1.5rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        height: auto;
        min-height: 200px;
        padding: 30px 0;
    }

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

    .cta-text {
        font-size: 1rem;
    }

    .cta-button {
        min-width: 100%;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.1rem;
    }

    .cta-text {
        font-size: 0.9rem;
    }

    .cta-button {
        min-width: 100%;
        padding: 12px 20px;
    }

    .cta-container {
        padding: 0 16px;
    }
}

/* ========== OUR EXPERTISE ========== */
.seg-expertise-section {
    width: 100%;
    background: #ffffff;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.seg-expertise-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(47, 47, 151, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.seg-expertise-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.seg-expertise-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.seg-expertise-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.seg-expertise-header {
    text-align: left;
}

.seg-expertise-subtitle {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 2px;
    color: var(--blue-primary);
    background: rgba(47, 47, 151, 0.08);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.seg-expertise-header {
    margin-bottom: 30px;
    position: relative;
}

.seg-expertise-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 16px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.seg-expertise-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

.seg-expertise-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.seg-expertise-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 15px 25px;
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 20px;
    cursor: default;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}


/*image */

.seg-expertise-item:hover {
    transform: translateX(10px);
    border-color: var(--blue-primary);
    box-shadow: 0 15px 35px rgba(47, 47, 151, 0.08);
}

.seg-expertise-item-icon {
    width: 60px;
    height: 60px;
    background: rgba(47, 47, 151, 0.06);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: var(--blue-primary);
}

.seg-expertise-item:hover .seg-expertise-item-icon {
    background: var(--blue-primary);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.seg-expertise-item-icon svg {
    width: 28px;
    height: 28px;
}

.seg-expertise-item-content {
    flex: 1;
}

.seg-expertise-item-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 6px 0;
    transition: color 0.3s ease;
}

.seg-expertise-item:hover .seg-expertise-item-title {
    color: var(--blue-primary);
}

.seg-expertise-item-desc {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.seg-expertise-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.seg-expertise-image-wrapper {
    position: relative;
    width: 80%;
    max-width: 420px;
    aspect-ratio: 1 / 1.15;
    z-index: 1;
}

/* Large Decorative Background Shape */
.seg-expertise-image::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -15%;
    width: 120%;
    height: 110%;
    background: radial-gradient(circle, rgba(47, 47, 151, 0.04) 0%, transparent 70%);
    border: 1px solid rgba(47, 47, 151, 0.05);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    /* Organic shape */
    animation: morphShape 15s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes morphShape {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    33% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }

    66% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }
}

/* Scientific Dot Pattern Overlay */
.seg-expertise-image::after {
    content: '';
    position: absolute;
    bottom: -5%;
    left: -10%;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--blue-primary) 1px, transparent 1px);
    background-size: 15px 15px;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.expertise-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    border-radius: 24px;
    border: 1px solid #cbd5e1;
    /* Subtle frame border */
    box-shadow: 0 20px 50px rgba(10, 15, 40, 0.12);
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

/* Decorative Corner Accent */
.seg-expertise-image-wrapper::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
    border-top: 4px solid var(--blue-primary);
    border-left: 4px solid var(--blue-primary);
    border-radius: 24px 0 0 0;
    z-index: 2;
    opacity: 0.6;
}

.expertise-img.active {
    opacity: 1;
    z-index: 1;
}

.seg-expertise-image-badge {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(47, 47, 151, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 10;
    border-left: 5px solid var(--blue-primary);
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {

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

    50% {
        transform: translateY(-10px);
    }
}

.seg-badge-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--blue-primary);
    line-height: 1;
}

.seg-badge-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

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

    .seg-expertise-wrapper {
        gap: 40px;
    }

    .seg-expertise-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .seg-expertise-section {
        padding: 50px 0;
    }

    .seg-expertise-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
        align-items: center;
    }

    .seg-expertise-header {
        text-align: center;
    }

    .seg-expertise-title {
        font-size: 1.5rem;
    }

    .seg-expertise-description {
        font-size: 0.9rem;
        text-align: center;
    }

    .seg-expertise-list {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .seg-expertise-item {
        padding: 10px 0;
    }

    .seg-expertise-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .seg-expertise-image-wrapper {
        width: 90%;
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .seg-expertise-section {
        padding: 40px 0;
    }

    .seg-expertise-container {
        padding: 0 16px;
    }

    .seg-expertise-subtitle {
        font-size: 0.7rem;
    }

    .seg-expertise-title {
        font-size: 1.3rem;
    }

    .seg-expertise-description {
        font-size: 0.85rem;
    }

    .seg-expertise-item {
        gap: 12px;
        padding: 8px 0;
    }

    .seg-expertise-item-icon {
        width: 34px;
        height: 34px;
    }

    .seg-expertise-item-title {
        font-size: 1rem;
    }

    .seg-expertise-item-desc {
        font-size: 0.75rem;
    }
}



/* Product Category Section */
.product-category-section {
    width: 100%;
    background: #f8f9fc;
    padding: 50px 0;
}

.product-category-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-top {
    text-align: center;
    margin-bottom: 30px;
}

.section-heading {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 12px 0;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2E3092, #ED1C24);
    margin: 0 auto;
    border-radius: 2px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.category-item {
    background: #ffffff;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #eaeef5;
    overflow: hidden;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: #2E3092;
}

.category-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 15px;
    text-decoration: none;
}

.category-icon {
    width: 55px;
    height: 55px;
    background: rgba(46, 48, 146, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.category-item:hover .category-icon {
    background: #2E3092;
}

.category-icon svg {
    width: 34px;
    height: 34px;
    transition: all 0.3s ease;
    overflow: visible;
}

.category-icon svg path,
.category-icon svg circle,
.category-icon svg rect {
    stroke: #ffffff !important;
    stroke-width: 2px !important;
    transition: all 0.3s ease;
}

.category-item:hover .category-icon svg path,
.category-item:hover .category-icon svg circle,
.category-item:hover .category-icon svg rect {
    stroke: #ffffff !important;
}

/* Unique fills for specific icon elements */
.category-icon svg circle[fill="#2E3092"],
.category-icon svg path[fill="#2E3092"] {
    fill: #2E3092 !important;
    transition: all 0.3s ease;
}

.category-item:hover .category-icon svg circle[fill="#2E3092"],
.category-item:hover .category-icon svg path[fill="#2E3092"] {
    fill: #ffffff !important;
}

.category-content {
    flex: 1;
}

.category-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.category-item:hover .category-title {
    color: #2E3092;
}

@media (max-width: 1100px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .category-link {
        padding: 15px 12px;
        gap: 12px;
    }

    .category-icon {
        width: 48px;
        height: 48px;
    }

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

    .category-title {
        font-size: 0.85rem;
    }
}

@media (max-width: 900px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .section-heading {
        font-size: 1.6rem;
    }
}

@media (max-width: 600px) {
    .product-category-section {
        padding: 50px 0;
    }

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

    .category-link {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        gap: 10px;
    }

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

    .category-title {
        font-size: 0.8rem;
        text-align: center;
    }

    .section-heading {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .product-category-section {
        padding: 40px 0;
    }

    .product-category-container {
        padding: 0 16px;
    }

    .category-grid {
        gap: 10px;
    }

    .category-link {
        padding: 12px;
    }

    .category-icon {
        width: 42px;
        height: 42px;
    }

    .category-icon svg {
        width: 24px;
        height: 24px;
    }

    .category-title {
        font-size: 0.7rem;
    }

    .section-heading {
        font-size: 1.2rem;
    }
}

/* certificate section */
.certificate-section {
    width: 100%;
    background: #ffffff;
    padding: 60px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Elegant security-document diagonal pattern */
.certificate-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(-45deg,
            rgba(47, 47, 151, 0.02) 0px,
            rgba(47, 47, 151, 0.02) 2px,
            transparent 2px,
            transparent 16px);
    z-index: -1;
    pointer-events: none;
}

.certificate-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.certificate-header {
    text-align: center;
    margin-bottom: 35px;
}

.certificate-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 2px;
    color: var(--blue-primary);
    background: rgba(47, 47, 151, 0.08);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.certificate-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 16px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.certificate-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.certificate-divider {
    display: none;
    /* Removed for cleaner look */
}

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

.certificate-item {
    border: 1px solid #eaeef5;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.certificate-item:hover {
    border-color: rgba(47, 47, 151, 0.15);
    box-shadow: 0 20px 40px rgba(47, 47, 151, 0.08);
    transform: translateY(-8px);
}

.certificate-image {
    width: 100%;
    height: 160px;
}

.certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}

.certificate-item:hover .certificate-image img {
    transform: scale(1.05);
}

.certificate-caption {
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a2e;
    text-align: center;
    border-top: 1px solid #eee;
}

.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 40, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 9999;
}

.lightbox-modal.active {
    visibility: visible;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 95vw;
    max-height: 90vh;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--blue-primary);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

@media (max-width: 992px) {
    .certificate-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .certificate-grid {
        grid-template-columns: 1fr;
    }
}


/* Inner page banner style  */
.seg-inner-banner {
    position: relative;
    width: 100%;
    height: 320px;
    /* fixed banner height */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.seg-inner-banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.seg-inner-banner__container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    z-index: 2;
    padding: 0 20px;
}

.seg-inner-banner__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
}

/* Title */
.seg-inner-banner__title {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* Breadcrumb */
.seg-inner-banner__breadcrumb {
    font-size: 14px;
    color: #fff;
}

.seg-inner-banner__breadcrumb a {
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
}

.seg-inner-banner__breadcrumb span {
    margin: 0 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .seg-inner-banner {
        height: 280px;
    }

    .seg-inner-banner__title {
        font-size: 28px;
    }
}


/* inner page about - about section  */
.about-page-section {
    width: 100%;
    padding: 50px 0;
    background: #ffffff;
}

.about-page-container {
    max-width: 1280px;
    margin: auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image */
.about-page-image-wrapper {
    position: relative;
    border-radius: 24px;
    height: 100%;
}

.about-page-image {
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
}

.about-page-image img {
    width: 100%;
    height: 100%;
    object-fit: inherit;
    transition: 0.5s ease;
}

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

/* Badge */
.about-page-badge {
    position: absolute;
    bottom: -30px;
    left: 30px;
    right: 30px;
    background: #fff;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    gap: 15px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

.about-page-badge-icon {
    width: 48px;
    height: 48px;
    background: var(--blue-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page-badge-icon i {
    color: #fff;
    font-size: 22px;
}

.about-page-badge-title {
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
}

.about-page-badge-desc {
    font-size: 0.7rem;
    margin: 0;
    color: #6c757d;
}

/* Content */
.about-page-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-page-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: capitalize;
    background: rgba(47, 47, 151, 0.1);
    color: var(--blue-primary);
    padding: 4px 10px;
    border-radius: 20px;
}

.about-page-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
}

.about-page-section .about-page-text,
.about-sourcing-section .about-page-text {
    height: 350px;
    overflow-y: auto;
    padding-right: 5px;
    /* Tiny buffer */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.about-page-section .about-page-text::-webkit-scrollbar,
.about-sourcing-section .about-page-text::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Webkit */
}

.about-page-text p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 18px;
}

.about-page-text p:last-child {
    margin-bottom: 0;
}


/* Button */
.about-page-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--blue-primary);
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 200px;
}

text-decoration: none;
transition: 0.3s ease;
}

.about-page-link-btn:hover {
    background: var(--blue-primary);
    transform: translateY(-3px);
}

/* Responsive for About Section */
@media (max-width: 992px) {
    .about-page-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-page-container .about-image-wrapper,
    .about-sourcing-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .about-page-container .about-image,
    .about-sourcing-image-wrapper .about-page-image {
        aspect-ratio: 4 / 3;
    }

    .about-page-container .experience-badge,
    .about-page-badge {
        bottom: -20px;
        left: 20px;
        right: 20px;
        padding: 12px 15px;
    }

    .about-page-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .about-page-section {
        padding: 60px 0;
    }

    .about-page-container .experience-badge,
    .about-page-badge {
        display: none;
        /* Hide badge on small mobile to save space or adjust layout */
    }

    .about-page-title {
        font-size: 1.5rem;
    }
}


/* vision and misison  */
/* Vision Mission Section - Matches your existing design system */
.vision-mission-section {
    width: 100%;
    padding: 60px 0;
    background: var(--white-base, #ffffff);
    font-family: var(--font-body, 'Inter', sans-serif);
}

.vision-mission-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Card styling - exactly matching the reference layout */
.vm-card {
    background: var(--white-base, #ffffff);
    text-align: center;
    padding: 40px 30px;
    border-radius: 8px;
    transition: all var(--transition, 0.25s ease);
    border: 1px solid var(--gray-border, #eaeef5);
    box-shadow: var(--shadow-sm, 0 8px 20px rgba(0, 0, 0, 0.05));
}

.vm-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover, 0 12px 24px rgba(0, 0, 0, 0.12));
    border-color: var(--blue-primary, #2F2F97);
}

/* Icon styling */
.vm-icon {
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(47, 47, 151, 0.08);
    border-radius: 50%;
    transition: all var(--transition, 0.25s ease);
}

.vm-card:hover .vm-icon {
    background: var(--blue-primary, #2F2F97);
}

.vm-icon i {
    font-size: 38px;
    color: var(--blue-primary, #2F2F97);
    transition: all var(--transition, 0.25s ease);
}

.vm-card:hover .vm-icon i {
    color: var(--white-base, #ffffff);
}

/* Title styling - matches existing heading hierarchy */
.vm-title {
    font-size: 28px;
    font-weight: var(--fw-extrabold, 800);
    color: var(--blue-primary, #2F2F97);
    margin: 0 0 16px 0;
    letter-spacing: -0.3px;
    font-family: var(--font-body, 'Inter', sans-serif);
}

/* Description text - matches your body text style */
.vm-text {
    font-size: var(--text-base, 1rem);
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-weight: var(--fw-regular, 400);
}

/* Responsive breakpoints - consistent with your existing media queries */
@media (max-width: 768px) {
    .vision-mission-section {
        padding: 50px 0;
    }

    .vision-mission-grid {
        gap: 25px;
    }

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

    .vm-icon {
        width: 70px;
        height: 70px;
    }

    .vm-icon i {
        font-size: 32px;
    }

    .vm-title {
        font-size: 24px;
    }

    .vm-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .vision-mission-section {
        padding: 40px 0;
    }

    .vision-mission-container {
        padding: 0 20px;
    }

    .vm-card {
        padding: 28px 20px;
    }

    .vm-icon {
        width: 65px;
        height: 65px;
    }

    .vm-icon i {
        font-size: 30px;
    }

    .vm-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .vm-card {
        padding: 24px 16px;
    }

    .vm-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 18px;
    }

    .vm-icon i {
        font-size: 26px;
    }

    .vm-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .vm-text {
        font-size: 0.85rem;
    }
}


/* inner page - contact  */
/* Contact Section - Matching your existing design system */
.contact-section {
    width: 100%;
    background: var(--gray-light, #f8f9fc);
    padding: 50px 0;
    font-family: var(--font-body, 'Inter', sans-serif);
    overflow: hidden;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* Left Side Contact Info */
.contact-info {
    background: var(--white-base, #ffffff);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm, 0 8px 20px rgba(0, 0, 0, 0.05));
    border: 1px solid var(--gray-border, #eaeef5);
    transition: all var(--transition, 0.25s ease);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-info:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover, 0 12px 24px rgba(0, 0, 0, 0.12));
}

.contact-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 2px;
    color: var(--blue-primary);
    background: rgba(47, 47, 151, 0.1);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
    width: fit-content;
}

.contact-title {
    font-size: 1.8rem;
    font-weight: var(--fw-extrabold, 800);
    color: var(--blue-primary, #2F2F97);
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.contact-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 28px;
}

.contact-list {
    margin-bottom: 30px;
}

.contact-list-title {
    font-size: 1rem;
    font-weight: var(--fw-semibold, 600);
    color: var(--blue-primary, #2F2F97);
    margin: 0 0 12px 0;
}

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

.contact-list-items li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 10px;
}

.contact-list-items li i {
    color: var(--blue-primary);
    font-size: 0.85rem;
}

.contact-details {
    /* margin-top: auto; */
    padding-top: 20px;
    border-top: 1px solid var(--gray-border, #eaeef5);
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

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

.contact-detail-icon {
    width: 42px;
    height: 42px;
    background: rgba(47, 47, 151, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition, 0.25s ease);
}

.contact-detail-icon i {
    font-size: 18px;
    color: var(--blue-primary, #2F2F97);
}

.contact-detail-text {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.4;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}
.contact-detail-text a {
    color: #4a5568;
    text-decoration: none;
    transition: color var(--transition, 0.25s ease);
}

.contact-detail-text a:hover {
    color: var(--blue-primary, #2F2F97);
}

.contact-detail-text strong {
    color: var(--blue-primary, #2F2F97);
    font-weight: var(--fw-semibold, 600);
}

/* Right Side Form */
.contact-form-wrapper {
    background: var(--white-base, #ffffff);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm, 0 8px 20px rgba(0, 0, 0, 0.05));
    border: 1px solid var(--gray-border, #eaeef5);
    transition: all var(--transition, 0.25s ease);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-form-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover, 0 12px 24px rgba(0, 0, 0, 0.12));
}

.contact-form {
    display: flex;
    flex-direction: column;
    height: 100%;
}



.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 0.9rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    border: 1px solid var(--gray-border, #eaeef5);
    border-radius: 12px;
    background: var(--white-base, #ffffff);
    transition: all var(--transition, 0.25s ease);
    outline: none;
    color: var(--black-base, #0e0a0a);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue-primary, #2F2F97);
    box-shadow: 0 0 0 3px rgba(47, 47, 151, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--blue-primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 34px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    min-height: 54px;
    box-shadow: 0 4px 15px rgba(47, 47, 151, 0.2);
}

.contact-submit-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 25px rgba(47, 47, 151, 0.3);
    background: var(--blue-primary);
}

.contact-submit-btn i {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-submit-btn:hover i {
    transform: translateX(6px);
}

.form-status {
    margin-top: 15px;
    font-size: 0.85rem;
    text-align: center;
}

.form-status.success {
    color: #10b981;
}

.form-status.error {
    color: var(--blue-primary);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-title {
        font-size: 1.6rem;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-section {
        padding: 50px 0;
    }



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

    .contact-info,
    .contact-form-wrapper {
        padding: 28px 22px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-container {
        padding: 0 16px;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 24px 18px;
    }

    .contact-badge {
        font-size: 0.7rem;
    }

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

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

    .contact-list-items li {
        font-size: 0.85rem;
    }

    .contact-detail-text {
        font-size: 0.85rem;
    }

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

    .contact-submit-btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    /* Prevent Google reCAPTCHA overflow */
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: 0 0;
        -webkit-transform: scale(0.85);
        -webkit-transform-origin: 0 0;
        width: 258px;
        height: 67px;
    }
}

@media (max-width: 350px) {
    .g-recaptcha {
        transform: scale(0.75);
        transform-origin: 0 0;
        -webkit-transform: scale(0.75);
        -webkit-transform-origin: 0 0;
        width: 228px;
        height: 59px;
    }
}


/* New About Page - Quality Section Design */
.about-quality-section {
    padding: 60px 0;
    background-color: #f8f9fc;
    background-image: radial-gradient(#d1d9e6 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    position: relative;
    overflow: hidden;
}


.about-quality-section .about-page-content {
    background: #ffffff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeef5;
}














.about-quality-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-quality-left {
    position: relative;
}

.about-quality-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(47, 47, 151, 0.08);
    color: var(--blue-primary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: capitalize;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.about-quality-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--blue-primary, #2F2F97);
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-quality-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 30px;
}

.about-quality-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.quality-feature-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 24px;
    display: flex;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #eaeef5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.quality-feature-card:hover {
    border-color: var(--blue-primary, #2F2F97);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}


.quality-feature-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    color: var(--blue-primary, #2F2F97);
    font-size: 24px;
    transition: all 0.3s ease;
}

.quality-feature-card:hover .quality-feature-icon {
    background: var(--blue-primary, #2F2F97);
    color: #ffffff;
}

.quality-feature-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue-primary, #2F2F97);
    margin-bottom: 8px;
}

.quality-feature-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

/* Decorative element */
.about-quality-section::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(47, 47, 151, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

@media (max-width: 992px) {
    .about-quality-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .about-quality-tag {
        margin-left: auto;
        margin-right: auto;
    }

    .about-quality-title {
        font-size: 2.2rem;
    }

    .quality-feature-card {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .about-quality-section {
        padding: 60px 0;
    }

    .about-quality-title {
        font-size: 1.8rem;
    }

    .quality-feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
}

.about-foundation-bg {
    background-color: #f4f7fa;
    background-image:
        linear-gradient(rgba(244, 247, 250, 0.2), rgba(244, 247, 250, 0.2)),
        url('../images/foundation-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    /* Static for consistency */
    position: relative;
    overflow: hidden;
}

/* Fix text color for foundation section in about.php */
.about-foundation-bg .section-title {
    color: #1a1a2e !important;
}

.about-foundation-bg .section-description {
    color: #64748b !important;
}

.about-foundation-bg .section-subtitle {
    background: rgba(47, 47, 151, 0.1);
    color: var(--blue-primary);
}

/* Texture overlay */
.about-foundation-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(47, 47, 151, 0.03) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    pointer-events: none;
}

/* Glassmorphism for cards in this section */
.about-foundation-bg .feature-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}


/* Mirrored About Section for Sourcing */
.about-sourcing-section {
    padding: 60px 0;
    background: #ffffff;
    overflow: hidden;
}

.about-sourcing-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* On Mobile, stack Image first */
@media (max-width: 992px) {
    .about-sourcing-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-sourcing-image-wrapper {
        order: -1;
    }
}

.products-page-section {
    padding: 80px 0;
    background: #f8f9fc;
    position: relative;
    overflow: hidden;
}

/* Add Scientific Pattern consistent with Index */
.products-page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(47, 47, 151, 0.02) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(47, 47, 151, 0.02) 1.5px, transparent 1.5px);
    background-size: 60px 60px;
    opacity: 0.8;
    pointer-events: none;
}

/* Floating decorative shapes */
.products-page-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(47, 47, 151, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.products-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.products-page-section .section-header {
    text-align: center;
    margin-bottom: 35px;
}

.products-page-section .section-subtitle {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 2px;
    color: var(--blue-primary);
    background: rgba(47, 47, 151, 0.1);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.products-page-section .section-title {
    font-size: 2.5rem;
    /* Matches Why Choose Us / Quality headers */
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.2;
}

.products-page-section .section-description {
    font-size: 1.05rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}


.product-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .product-categories-grid {
        grid-template-columns: 1fr;
    }
}

.category-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 45px 40px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(47, 47, 151, 0.1);
    border-color: var(--blue-primary);
}

/* Category Unique Watermarks */
.category-card::before {
    content: attr(data-index);
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(47, 47, 151, 0.03);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
    z-index: 1;
}

.category-icon {
    width: 70px;
    height: 70px;
    background: var(--blue-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(47, 47, 151, 0.15);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    background: #ED1C24;
}

.category-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.1;
}

.category-name small {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    margin-top: 6px;
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    position: relative;
    z-index: 1;
}

@media (max-width: 576px) {
    .product-list {
        grid-template-columns: 1fr;
    }
}

.product-item {
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1.5px solid #edf2f7;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.product-item:hover {
    background: #ffffff;
    border-color: var(--blue-primary);
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(47, 47, 151, 0.08);
}

.products-page-section .product-name {
    font-size: 0.95rem;
    color: #1e293b !important;
    /* Explicitly dark for this section */
    font-weight: 700;
    line-height: 1.2;
}

.product-item:hover .product-name {
    color: var(--blue-primary) !important;
}

.product-view-hint {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    background: var(--blue-primary);
    padding: 5px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.product-item:hover .product-view-hint {
    background: #ED1C24;
}

@media (max-width: 768px) {
    .category-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .category-header {
        gap: 15px;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .category-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
        border-radius: 14px;
    }

    .category-name {
        font-size: 1.25rem;
    }

    .category-name small {
        font-size: 0.85rem;
        margin-top: 4px;
    }

    .products-page-section .product-name {
        font-size: 0.85rem;
    }

    .products-page-section .section-title {
        font-size: 1.75rem;
    }

    .products-page-section .section-description {
        font-size: 0.9rem;
    }
}

/* Modal Styles */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.product-modal.active {
    display: flex;
}

.modal-content {
    background: #ffffff;
    width: 100%;
    max-width: 900px;
    max-height: 85vh;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
}

@media (max-width: 768px) {
    .modal-content {
        display: flex;
        flex-direction: column;
        max-height: 90vh;
        width: 95%;
    }

    .modal-slider {
        flex-shrink: 0;
        height: 250px;
        aspect-ratio: auto;
    }

    .modal-info {
        flex-grow: 1;
        overflow-y: auto;
        padding: 25px;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.modal-close:hover {
    background: var(--blue-primary);
}

.modal-slider {
    position: relative;
    background: #f1f5f9;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.slider-container {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.slider-slide {
    min-width: 100%;
    height: 100%;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.slider-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.slider-dot.active {
    background: #ffffff;
    width: 25px;
    border-radius: 10px;
}

.modal-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-category {
    font-size: 0.8rem;
    text-transform: capitalize;
    color: var(--blue-primary);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.modal-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue-primary, #2F2F97);
    margin-bottom: 20px;
}

.modal-desc {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--blue-primary);
    color: #ffffff;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(47, 47, 151, 0.2);
}

.modal-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 25px rgba(47, 47, 151, 0.3);
    background: var(--blue-primary);
}

/* ============================================ */
/* FEATURED PRODUCTS SECTION (INDEX)           */
/* ============================================ */
.featured-products-section {
    padding: 60px 0;
    background-color: #f4f7fa;
    background-image:
        radial-gradient(at 0% 0%, rgba(47, 47, 151, 0.03) 0, transparent 50%),
        radial-gradient(at 100% 100%, rgba(47, 47, 151, 0.03) 0, transparent 50%);
    position: relative;
    overflow: hidden;
}

/* Scientific/Molecular Pattern Background */
.featured-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(47, 47, 151, 0.02) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(47, 47, 151, 0.02) 1.5px, transparent 1.5px);
    background-size: 60px 60px;
    opacity: 0.8;
    pointer-events: none;
}

/* Large Molecular Decorative Shapes */
.featured-products-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(47, 47, 151, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

.featured-products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.featured-products-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.featured-products-section .section-subtitle {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--blue-primary);
    background: rgba(47, 47, 151, 0.12);
    /* Increased from 0.06 */
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.featured-products-section .section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 20px 0;
    line-height: 1.1;
    letter-spacing: -1px;
}

.featured-products-section .section-description {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.featured-products-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.featured-products-section .section-header {
    text-align: center;
    margin-bottom: 35px;
}

.featured-products-section .section-subtitle {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 2px;
    color: var(--blue-primary);
    background: rgba(47, 47, 151, 0.08);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.featured-products-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.featured-products-section .section-description {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.featured-carousel-viewport {
    width: 100%;
    overflow: hidden;
    padding: 40px 0 20px;
    position: relative;
}

.featured-carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: auto;
    /* Changed to auto for smoother JS-based scrolling */
    padding: 20px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    /* Prevent text selection during drag */
}

.featured-carousel-track::-webkit-scrollbar {
    display: none;
}

.featured-product-card {
    background: #ffffff;
    border-radius: 20px;
    /* Tighter radius */
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    border: 1px solid #cbd5e1;
    /* More visible border before hover */
    width: 360px;
    height: 280px;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 0;
}

.featured-product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
    border-color: var(--blue-primary);
    /* Border highlights on hover */
}

.product-image-wrapper {
    width: 100%;
    height: 180px;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    /* Full image */
}

/* Dark Overlay on Hover Removed */
.product-image-wrapper::before {
    display: none;
}

.featured-product-card:hover .product-image-wrapper::before {
    display: none;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.featured-product-card:hover .product-image-wrapper img {
    transform: none;
}

/* Info - Outside / Below Image */
.product-info {
    position: relative;
    width: 100%;
    height: 100px;
    padding: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transform: translateY(0);
    background: #f8fafc;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    border-top: 1px solid #e2e8f0;
    border-bottom-left-radius: 19px;
    border-bottom-right-radius: 19px;
    box-sizing: border-box;
}

.featured-product-card:hover .product-info {
    background: #f1f5f9;
}

.product-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    color: #ffffff;
    background: var(--blue-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.product-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1e293b !important;
    margin: 0;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.featured-product-card:hover .product-name {
    color: var(--blue-primary) !important;
    transform: scale(1.02);
}

/* View Button hint removed */

.view-more-container {
    text-align: center;
    margin-top: 10px;
    /* Reduced from 40px */
}

@media (max-width: 768px) {
    .featured-products-section {
        padding: 80px 0;
    }

    .featured-carousel-viewport {
        mask-image: none;
        padding: 10px 0 40px;
    }

    .featured-product-card {
        width: 320px;
        height: 270px;
    }

    .product-image-wrapper {
        height: 170px;
    }

    .product-info {
        opacity: 1;
        transform: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: #f8fafc;
        height: 100px;
    }

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

@media (max-width: 576px) {
    .featured-product-card {
        width: 295px;
        height: 255px;
    }

    .product-image-wrapper {
        height: 155px;
    }

    .product-info {
        height: 100px;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .product-name {
        font-size: 1.0rem;
    }
}

@media (max-width: 400px) {
    .featured-products-section {
        padding: 60px 0;
    }

    .featured-product-card {
        width: 270px;
        height: 240px;
    }

    .product-image-wrapper {
        height: 140px;
    }
}