/* ====================================
   RESPONSIVE TYPOGRAPHY VARIABLES
   ==================================== */
:root {
    /* Responsive typography sizes */
    --h1-size-xl: 4.5rem;
    --h1-size-lg: 3.5rem;
    --h1-size-md: 2.5rem;
    --h1-size-sm: 2rem;
    --h1-size-xs: 1.8rem;
    
    --h2-size-xl: 3.5rem;
    --h2-size-lg: 2.8rem;
    --h2-size-md: 2rem;
    --h2-size-sm: 1.75rem;
    --h2-size-xs: 1.5rem;
    
    --h3-size-xl: 2.5rem;
    --h3-size-lg: 2rem;
    --h3-size-md: 1.5rem;
    --h3-size-sm: 1.25rem;
    --h3-size-xs: 1.1rem;
    
    --body-size-xl: 1.2rem;
    --body-size-lg: 1.1rem;
    --body-size-md: 1rem;
    --body-size-sm: 0.9rem;
    --body-size-xs: 0.85rem;
}

/* ====================================
   LOADING SCREEN
   ==================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999; /* Highest z-index to ensure it's above everything */
    transition: opacity 0.8s ease, visibility 0.8s ease;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
}

.loading-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(228, 72, 126, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(243, 156, 18, 0.03) 0%, transparent 50%);
    animation: background-shift 8s ease-in-out infinite;
}

@keyframes background-shift {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(1deg);
    }
}

/* Floating particles */
.loading-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(228, 72, 126, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(243, 156, 18, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(228, 72, 126, 0.2), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(243, 156, 18, 0.2), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(228, 72, 126, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particle-float 20s linear infinite;
    opacity: 0.6;
}

@keyframes particle-float {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100px);
    }
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-screen.removed {
    display: none !important;
}

/* Hide main content during loading */
body.loading {
    overflow: hidden;
}

body.loading #header,
body.loading #main-content,
body.loading main,
body.loading .hero,
body.loading .key-services,
body.loading .about,
body.loading .contact,
body.loading footer {
    display: none !important;
}

/* Ensure main content is visible after loading */
body:not(.loading) #header,
body:not(.loading) #main-content,
body:not(.loading) main,
body:not(.loading) .hero,
body:not(.loading) .key-services,
body:not(.loading) .about,
body:not(.loading) .contact,
body:not(.loading) footer {
    display: block !important;
}



.loader {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 40px;
}

.loader-circle {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #f39c12);
    animation: loader-bounce 1.4s ease-in-out infinite both;
}

.loader-circle.circle-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -0.32s;
}

.loader-circle.circle-2 {
    top: 20px;
    right: 20px;
    animation-delay: -0.16s;
}

.loader-circle.circle-3 {
    bottom: 20px;
    right: 20px;
    animation-delay: 0s;
}

.loader-circle.circle-4 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -0.48s;
}

.loader-circle.circle-5 {
    bottom: 20px;
    left: 20px;
    animation-delay: -0.32s;
}

@keyframes loader-bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.loader-logo {
    animation: logo-float 2s ease-in-out infinite;
    position: relative;
    margin-bottom: 30px;
}

.loader-logo img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(228, 72, 126, 0.3));
}

.loader-logo::before, 
.loader-logo::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 3px;
    background: linear-gradient(to right, transparent, #ff6b35, #f39c12, transparent);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.loader-logo::before {
    top: -25px;
    animation: line-glow 2s ease-in-out infinite;
}

.loader-logo::after {
    bottom: -25px;
    animation: line-glow 2s ease-in-out infinite reverse;
}

.loading-text {
    font-family: var(--heading-font);
    color: #2c3e50;
    margin-top: 25px;
    letter-spacing: 1.5px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    max-width: 400px;
    line-height: 1.6;
    animation: text-fade-in 2s ease-in-out infinite;
    background: linear-gradient(135deg, #ff6b35, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes text-fade-in {
    0%, 100% {
        opacity: 0.7;
        transform: translateY(5px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logo-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes line-glow {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1);
    }
}



/* Loading screen animation states */
.loading-screen.removed {
    display: none !important;
    animation: none !important;
}

.loading-screen.removed .loader-circle,
.loading-screen.removed .loader-logo,
.loading-screen.removed .loading-text {
    animation: none !important;
}

/* Additional loading screen fixes */
body.loading .loading-screen {
    z-index: 99999 !important;
    display: flex !important;
}

body:not(.loading) .loading-screen.hidden,
body:not(.loading) .loading-screen.removed {
    z-index: -1 !important;
}

/* Force hide all content during loading */
body.loading *:not(.loading-screen):not(.loading-screen *) {
    visibility: hidden !important;
}

/* Ensure loading screen is always on top during loading */
body.loading .loading-screen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: #ffffff !important;
    z-index: 99999 !important;
}





/* ====================================
   HEADER ANIMATIONS
   ==================================== */
#header.scrolled {
    background-color: rgba(255, 255, 255, 0.97);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

#header.header-hidden {
    transform: translateY(-100%);
}

#header.header-visible {
    transform: translateY(0);
    animation: slide-down 0.3s ease-in-out;
}

@keyframes slide-down {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* ====================================
   ROOT VARIABLES AND RESET
   ==================================== */
:root {
    /* Main Colors - Neutral scheme (page-specific colors will override) */
    --primary-color: #ff6b35;
    --secondary-color: #f39c12;
    --accent-color: #aaaaaa;
    --light-color: #f5f5f5;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F9F9F9;
    --light-gray: #EEEEEE;
    --medium-gray: #CCCCCC;
    --dark-gray: #666666;
    --black: #000000;
    --text-dark: #333333;
    --text-gray: #6c757d;
    
    /* Typography */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    --spacing-xxl: 7rem;
    
    /* Border Radius - Square edges */
    --radius-sm: 0;
    --radius-md: 0;
    --radius-lg: 0;
    --radius-xl: 0;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Container Widths */
    --container-max-width: 1200px;
    --container-padding: 1.5rem;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--secondary-orange);
}

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

ul, ol {
    list-style-type: none;
}

/* Highlight styles moved to page-specific CSS files to avoid conflicts */

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-sm);
}

/* Highlight styles moved to page-specific CSS files to avoid conflicts */

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--dark-gray);
}

/* ====================================
   BUTTONS
   ==================================== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
    border: none;
    border-radius: 0; /* Completely squared */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.btn-primary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(102, 102, 102, 0.3);
    border-color: var(--primary-color);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(102, 102, 102, 0.3);
}

/* ====================================
   HEADER & NAVIGATION
   ==================================== */
#header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10000;
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-medium);
    border-bottom: 2px solid rgba(228, 72, 126, 0.1);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

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

.logo img {
    height: 65px;
    width: auto;
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.desktop-nav ul {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.desktop-nav a {
    color: var(--black);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.8rem 1rem;
    position: relative;
    transition: all var(--transition-medium);
    margin: 0 2px;
}

.desktop-nav a:hover {
    color: var(--primary-color);
    background-color: rgba(255, 107, 53, 0.05);
}

.desktop-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-color);
    transition: height var(--transition-fast);
}

.desktop-nav a:hover::before {
    height: 3px;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-medium), left var(--transition-medium);
}

.desktop-nav a:hover::after {
    width: 80%;
    left: 10%;
}

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

.has-dropdown .fa-chevron-down {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--white);
    min-width: 180px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px; /* Slightly blunt squared */
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    border-top: 3px solid var(--primary-color);
}

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

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--black);
    text-align: center;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
}

.dropdown-menu a::before,
.dropdown-menu a::after {
    display: none;
}

/* Mobile dropdown */
.mobile-nav .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-left: 2px solid var(--primary-color);
    margin-left: 20px;
    padding: 0;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav .has-dropdown.active .dropdown-menu {
    max-height: 200px;
}

.mobile-nav .has-dropdown.active .fa-chevron-down {
    transform: rotate(180deg);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--black);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform var(--transition-medium);
    z-index: 999;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav ul {
    padding: var(--spacing-md);
}

.mobile-nav li {
    margin-bottom: var(--spacing-sm);
}

.mobile-nav a {
    color: var(--black);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    padding: var(--spacing-xs) 0;
}

/* ====================================
   FOOTER - IMPROVED DESIGN
   ==================================== */
#footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b35' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.footer-main {
    padding: 30px 0 25px;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 20px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.footer-description {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #cccccc;
    margin: 0;
    max-width: 350px;
    font-family: 'Georgia', serif;
}

.footer-social h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-link i {
    font-size: 0.9rem;
    z-index: 1;
    position: relative;
}

/* Social Media Specific Colors */
.social-link.linkedin:hover {
    background: #0077b5;
    color: #ffffff;
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: #ffffff;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: #ffffff;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #ffffff;
}

.social-link.youtube:hover {
    background: #ff0000;
    color: #ffffff;
}

/* Footer Links Sections */
.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 35px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

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

.footer-links li,
.footer-services li {
    margin-bottom: 8px;
}

.footer-links a,
.footer-services a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover,
.footer-services a:hover {
    color: #e4487e;
    transition: color 0.3s ease;
}

/* Footer Contact Section */
.footer-contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact .contact-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact .contact-icon i {
    font-size: 0.8rem;
    color: #ffffff;
}

.footer-contact .contact-details h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 3px 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact .contact-details p {
    font-size: 0.8rem;
    color: #cccccc;
    margin: 0;
    line-height: 1.3;
    font-family: 'Georgia', serif;
}

/* Newsletter Section */
.newsletter h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter p {
    font-size: 0.8rem;
    color: #cccccc;
    margin-bottom: 12px;
    line-height: 1.4;
    font-family: 'Georgia', serif;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 0.8rem;
    outline: none;
    font-family: 'Georgia', serif;
}

.newsletter-form input::placeholder {
    color: #cccccc;
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 10px 15px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.copyright p {
    margin: 0;
    color: #cccccc;
    font-size: 0.8rem;
    font-family: 'Georgia', serif;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
    font-family: 'Georgia', serif;
}

.footer-bottom-links a:hover {
    color: #e4487e;
}

.footer-bottom-links .separator {
    color: #666666;
    font-size: 0.7rem;
}

/* Responsive Design for Footer */
@media (max-width: 1200px) {
    .footer-content {
        gap: 35px;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }
    
    .footer-description {
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .footer-links ul,
    .footer-services ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-contact .contact-item {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 35px 0 25px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .newsletter-form input,
    .newsletter-btn {
        border-radius: 0;
    }
    
    .newsletter-form input {
        border-radius: 15px 15px 0 0;
    }
    
    .newsletter-btn {
        border-radius: 0 0 15px 15px;
    }
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ====================================
   ACCESSIBILITY AND FOCUS MANAGEMENT
   ==================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (prefers-contrast: high) {
    .btn {
        border: 2px solid #000 !important;
    }
}

/* Focus visible for keyboard navigation */
.btn:focus-visible,
.mobile-nav a:focus-visible,
.dropdown-menu a:focus-visible {
    outline: 3px solid var(--primary-color) !important;
    outline-offset: 2px !important;
}



/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .mobile-nav a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ====================================
   NAVBAR AND FOOTER INJECTION
   ==================================== */
/* This section handles dynamic injection of navbar and footer */
.navbar-injected {
    position: relative;
    z-index: 1000;
}

.footer-injected {
    position: relative;
    z-index: 100;
}

/* Ensure proper spacing when navbar is injected */
body:not(.index-page) {
    padding-top: 0;
}

/* Animation for injected elements */
.navbar-injected,
.footer-injected {
    animation: fadeInUp 0.5s ease-out;
}

/* Ensure injected navbar has the same layout as original */
.navbar-injected #header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10000;
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-medium);
    border-bottom: 2px solid rgba(228, 72, 126, 0.1);
}

/* Override about-us.css container styles specifically for navbar */
.navbar-injected #header .container,
.navbar-injected header .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 90px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* Override any centering from other CSS files */
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
}

/* Additional override to ensure navbar container is not affected by about-us.css */
.navbar-injected #header .container,
.navbar-injected header .container,
.navbar-injected .container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-align: left !important;
}

/* Fix: Target the actual structure where header has class navbar-injected */
header.navbar-injected {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10000;
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-medium);
    border-bottom: 2px solid rgba(228, 72, 126, 0.1);
}

header.navbar-injected .container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-align: left !important;
    height: 90px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo styles for injected navbar */
header.navbar-injected .logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    /* Ensure logo is not centered */
    margin-right: auto;
}

header.navbar-injected .logo img {
    height: 65px;
    width: auto;
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease;
}

/* Navigation styles for injected navbar */
header.navbar-injected .desktop-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

header.navbar-injected .desktop-nav ul {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin: 0;
    padding: 0;
    list-style: none;
}

header.navbar-injected .desktop-nav a {
    color: var(--black);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.8rem 1rem;
    position: relative;
    transition: all var(--transition-medium);
    margin: 0 2px;
    text-decoration: none;
}

header.navbar-injected .desktop-nav a:hover {
    color: var(--primary-color);
    background-color: rgba(255, 107, 53, 0.05);
}

header.navbar-injected .desktop-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-color);
    transition: height var(--transition-fast);
}

header.navbar-injected .desktop-nav a:hover::before {
    height: 3px;
}

header.navbar-injected .desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-medium), left var(--transition-medium);
}

header.navbar-injected .desktop-nav a:hover::after {
    width: 80%;
    left: 10%;
}

/* Mobile menu toggle for injected navbar */
header.navbar-injected .mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--black);
    margin-left: auto;
}

/* Mobile navigation for injected navbar */
header.navbar-injected .mobile-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform var(--transition-medium);
    z-index: 999;
}

header.navbar-injected .mobile-nav.active {
    transform: translateY(0);
}

header.navbar-injected .mobile-nav ul {
    padding: var(--spacing-md);
    margin: 0;
    list-style: none;
}

header.navbar-injected .mobile-nav li {
    margin-bottom: var(--spacing-sm);
}

header.navbar-injected .mobile-nav a {
    color: var(--black);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    padding: var(--spacing-xs) 0;
    text-decoration: none;
}

/* Responsive design for injected navbar */
@media (max-width: 768px) {
    header.navbar-injected .desktop-nav {
        display: none;
    }
    
    header.navbar-injected .mobile-menu-toggle {
        display: block;
    }
}

/* Dropdown Menu for injected navbar */
header.navbar-injected .has-dropdown {
    position: relative;
}

header.navbar-injected .has-dropdown .fa-chevron-down {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

header.navbar-injected .has-dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

header.navbar-injected .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--white);
    min-width: 180px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    border-top: 3px solid var(--primary-color);
}

header.navbar-injected .has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

header.navbar-injected .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--black);
    text-align: center;
    transition: all 0.2s ease;
    text-decoration: none;
}

header.navbar-injected .dropdown-menu a:hover {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
}

header.navbar-injected .dropdown-menu a::before,
header.navbar-injected .dropdown-menu a::after {
    display: none;
}

/* Mobile dropdown for injected navbar */
header.navbar-injected .mobile-nav .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-left: 2px solid var(--primary-color);
    margin-left: 20px;
    padding: 0;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

header.navbar-injected .mobile-nav .has-dropdown.active .dropdown-menu {
    max-height: 200px;
}

header.navbar-injected .mobile-nav .has-dropdown.active .fa-chevron-down {
    transform: rotate(180deg);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================================
   PRODUCT PAGES - COMPLETE STYLES
   ==================================== */

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: linear-gradient(135deg, var(--white) 0%, #fefefe 100%);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(228, 72, 126, 0.1);
    border: 2px solid transparent;
    transform: translateY(0);
    will-change: transform, box-shadow, border-color;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.25);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
}

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

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1 !important;
    z-index: 2;
    position: relative;
    transform: scale(1) rotate(0deg);
}

.benefit-card h3 {
    color: var(--black);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.benefit-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(3deg);
    color: var(--secondary-pink);
    opacity: 1 !important;
}

/* Product Hero Section */
.product-hero {
    padding: 120px 0 80px;
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(228, 72, 126, 0.1) 0%, rgba(0, 150, 136, 0.1) 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 1;
    visibility: visible;
    min-height: 600px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.4) 0%, 
        rgba(255, 182, 193, 0.4) 100%);
    z-index: 2;
}

.product-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
    width: 100%;
}

.product-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.2;
}

/* Highlight styles moved to page-specific CSS files to avoid conflicts */

.product-hero-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(102, 102, 102, 0.3);
    transition: all 0.3s ease;
    animation: slideInRight 0.8s ease-out both;
    opacity: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature:nth-child(1) { animation-delay: 0.4s; }
.feature:nth-child(2) { animation-delay: 0.6s; }
.feature:nth-child(3) { animation-delay: 0.8s; }

.feature:hover {
    background: rgba(102, 102, 102, 0.1);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(102, 102, 102, 0.2);
    border-color: rgba(102, 102, 102, 0.6);
}

.feature i {
    color: var(--primary-color);
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 4px rgba(102, 102, 102, 0.4));
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Product Overview Section */
.product-overview {
    padding: 80px 0;
    background: var(--white);
}

/* Product Categories Section */
.product-categories {
    padding: 80px 0;
    background: var(--light-gray);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.category-item {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.category-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 30px 30px 0;
    border-color: transparent var(--primary-color) transparent transparent;
}

.category-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.category-item h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 600;
}

.category-item p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-item ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.category-item li {
    padding: 8px 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 20px;
}

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

/* Manufacturing Process Section */
.manufacturing-process {
    padding: 80px 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 600;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Specifications Section */
.specifications {
    padding: 80px 0;
    background: var(--light-gray);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.spec-item {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.spec-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--white) 0%, #fefefe 100%);
}

.corner-decoration {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    opacity: 0.1;
    transition: all 0.3s ease;
}

.spec-item:hover .corner-decoration {
    opacity: 0.3;
    background: var(--secondary-pink);
}

.corner-decoration.top-left {
    top: 0;
    left: 0;
    border-radius: 0 0 20px 0;
}

.corner-decoration.top-right {
    top: 0;
    right: 0;
    border-radius: 0 0 0 20px;
}

.corner-decoration.bottom-left {
    bottom: 0;
    left: 0;
    border-radius: 0 20px 0 0;
}

.corner-decoration.bottom-right {
    bottom: 0;
    right: 0;
    border-radius: 20px 0 0 0;
}

.spec-item h4 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.spec-item p {
    color: var(--text-gray);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.spec-item:hover h4 {
    color: var(--primary-color);
}

.spec-item:hover p {
    color: var(--dark-gray);
}

/* Call to Action Section */
.product-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-buttons .btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Product Pages */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-video-bg {
        min-height: 500px;
    }
    
    .product-hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .product-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-video-bg {
        min-height: 400px;
    }
    
    .product-hero-content h1 {
        font-size: 2rem;
    }
    
    .product-hero-content p {
        font-size: 1rem;
    }
    
    .feature {
        font-size: 1rem;
        padding: 10px 15px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}
/* ====================================
   ABOUT US PAGE STYLES - COMPLETE REDESIGN
   Based on actual about us.html structure
   ==================================== */

/* Essential CSS Variables */
:root {
    --primary-purple: #ff6b35;
    --white: #ffffff;
    --black: #000000;
    --dark-gray: #333333;
    --light-gray: #f8f9fa;
    --border-gray: #ff6b35;
    --text-gray: #333333;
    --shadow-light: rgba(255, 107, 53, 0.1);
    --shadow-medium: rgba(255, 107, 53, 0.2);
}

/* ====================================
   GLOBAL STYLES
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    color: var(--primary-purple);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-purple);
}

.intro-text {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: center;
}

/* ====================================
   HERO SECTION - ENHANCED
   ==================================== */
.about-hero-section {
    position: relative;
    height: 70vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, var(--white) 100%);
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroImageFloat 20s ease-in-out infinite;
}

@keyframes heroImageFloat {
    0%, 100% { transform: scale(1.05) translateY(0px); }
    50% { transform: scale(1.05) translateY(-20px); }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.85), 
        rgba(255, 107, 53, 0.7),
        rgba(255, 107, 53, 0.6));
    z-index: 2;
    animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% { opacity: 0.85; }
    50% { opacity: 0.95; }
}

.hero-content-text {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    animation: heroContentSlide 1.2s ease-out;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

@keyframes heroContentSlide {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-content-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 72px;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--white), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6)); }
    to { filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8)); }
}

.line-divider {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--white), transparent);
    margin: 0 auto;
    border-radius: 3px;
    animation: lineExpand 2s ease-out 0.5s both;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

@keyframes lineExpand {
    from { width: 0; opacity: 0; }
    to { width: 100px; opacity: 1; }
}

/* Floating particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; }
.particle:nth-child(7) { left: 70%; animation-delay: 12s; }
.particle:nth-child(8) { left: 80%; animation-delay: 14s; }

@keyframes particleFloat {
    0% { 
        transform: translateY(100vh) rotate(0deg); 
        opacity: 0; 
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { 
        transform: translateY(-100px) rotate(360deg); 
        opacity: 0; 
    }
}

/* ====================================
   ABOUT COMPANY SECTION - ENHANCED
   ==================================== */
.about-section { padding: 64px 0; background-color: rgba(255, 107, 53, 0.05); }
.about-section .container { max-width: 1100px; margin: 0 auto; padding: 0 30px; }
.about-section .content-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.about-section .text-content { max-width: 500px; }
.about-section .section-label { font-size: 0.85rem; color: var(--text-gray); font-weight: 500; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 15px; }
.about-section .main-heading { font-size: 2.6rem; color: var(--text-gray); font-weight: 700; line-height: 1.2; margin-bottom: 25px; }
.about-section .main-heading .brand-name { color: var(--primary-purple); }
.about-section .description { font-size: 1rem; color: var(--text-gray); line-height: 1.7; }
.about-section .stats-container { background: #ffffff; border-radius: 0; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.about-section .stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 30px; }
.about-section .stats-row:last-child { grid-template-columns: repeat(2, 1fr); margin-bottom: 0; }
.about-section .stat-item { text-align: center; padding: 20px 10px; position: relative; }
.about-section .stat-item:not(:last-child)::after { content: ''; position: absolute; right: -15px; top: 20%; bottom: 20%; width: 1px; background-color: var(--border-gray); }
.about-section .stats-row:last-child .stat-item:not(:last-child)::after { right: -15px; }
.about-section .stat-number { font-size: 2.5rem; font-weight: 800; color: var(--primary-purple); margin-bottom: 8px; line-height: 1; }
.about-section .stat-label { font-size: 0.8rem; color: var(--text-gray); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.3; }
@media (max-width: 768px) {
    .about-section .content-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .about-section .main-heading { font-size: 2.2rem; }
    .about-section .stats-row { grid-template-columns: 1fr; gap: 20px; }
    .about-section .stats-row:last-child { grid-template-columns: 1fr; }
    .about-section .stat-item::after { display: none; }
    .about-section .container { padding: 0 20px; }
}









.facts-grid-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
    flex-wrap: nowrap;
    padding: 20px 0;
    width: 100%;
    max-width: 1000px;
}

.fact-card-2 {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 14px rgba(60,80,170,0.11);
    padding: 32px 24px;
    width: 200px;
    height: 180px;
    transition: all 0.3s cubic-bezier(.71,.18,.33,1.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    border: none;
    flex-shrink: 0;
    margin: 0 auto;
}



.fact-card-2:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 32px rgba(60,80,170,0.11);
}

.fact-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    transition: all 0.3s cubic-bezier(.71,.18,.33,1.12);
    position: relative;
    display: inline-block;
    line-height: 1;
}

.fact-card-2:hover .fact-number {
    transform: scale(1.17);
}

.fact-label {
    font-size: 13px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(.71,.18,.33,1.12);
    position: relative;
    z-index: 2;
    line-height: 1.3;
    max-width: 100%;
}







/* Animated counter effect */
.fact-number[data-target] {
    animation: countUp 2s ease-out 1s both;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ====================================
   PRODUCT OPTIONS SECTION - ENHANCED
   ==================================== */
.product-options-section { 
    padding: 80px 0; 
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, var(--white) 100%); 
    position: relative; 
    overflow: hidden; 
}

.product-options-section .section-header {
    margin-bottom: 60px;
}

.product-options-section .intro-text {
    max-width: 700px;
    margin-bottom: 30px;
}

.product-bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.product-bg-particles .particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(122, 80, 150, 0.2);
    border-radius: 50%;
    animation: productParticleFloat 20s linear infinite;
}

.product-bg-particles .particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.product-bg-particles .particle:nth-child(2) { left: 25%; top: 60%; animation-delay: 3s; }
.product-bg-particles .particle:nth-child(3) { left: 50%; top: 30%; animation-delay: 6s; }
.product-bg-particles .particle:nth-child(4) { left: 70%; top: 70%; animation-delay: 9s; }
.product-bg-particles .particle:nth-child(5) { left: 85%; top: 40%; animation-delay: 12s; }
.product-bg-particles .particle:nth-child(6) { left: 40%; top: 80%; animation-delay: 15s; }

@keyframes productParticleFloat {
    0% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 0; 
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { 
        transform: translateY(-100px) rotate(360deg); 
        opacity: 0; 
    }
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    justify-items: center;
    margin-top: 20px;
}

.option-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(122, 80, 150, 0.15);
    width: 100%;
    max-width: 500px;
    transition: all 0.4s cubic-bezier(.71,.18,.33,1.12);
    display: block;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    margin: 0 auto;
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(122, 80, 150, 0.25);
    border-color: var(--primary-purple);
}

.option-image-container {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.option-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

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

.option-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(122, 80, 150, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.option-card:hover .option-overlay {
    opacity: 1;
}

.overlay-content {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

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

.learn-more {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.overlay-content i {
    font-size: 24px;
}

.option-content {
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
    background: var(--white);
}

.option-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -65px auto 20px;
    position: relative;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(122, 80, 150, 0.3);
    transition: all 0.4s ease;
}

.option-card:hover .option-icon {
    transform: scale(1.1) rotate(10deg);
}

.option-icon i {
    font-size: 28px;
    color: white;
    transition: all 0.4s ease;
}

.option-card:hover .option-icon i {
    transform: scale(1.2);
}

.option-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.option-card:hover .option-content h3 {
    color: var(--primary-purple);
}

.option-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    transition: all 0.3s ease;
    margin-bottom: 0;
}



/* ====================================
   VISION MISSION SECTION - ENHANCED
   ==================================== */
/* Vision & Mission - Professional redesign */
.vision-mission-section { padding: 56px 0; background: var(--white); position: relative; overflow: hidden; }
.vision-mission-section .section-header { margin-bottom: 30px; }
.vision-mission-section .intro-text { text-align: center; max-width: 760px; }

.vm-grid { display: grid; grid-template-columns: repeat(2, minmax(280px, 1fr)); gap: 30px; width: 100%; max-width: 1000px; margin: 40px auto 0; }
.vm-card { 
    background: #fff; 
    border: 1px solid var(--border-gray); 
    border-radius: 12px; 
    padding: 32px; 
    box-shadow: 0 6px 18px rgba(0,0,0,0.06); 
    text-align: left; 
    display: grid; 
    grid-template-columns: 54px 1fr; 
    grid-template-rows: auto auto; 
    column-gap: 18px; 
    align-items: start;
    transition: all 0.3s ease;
    cursor: pointer;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    border-color: var(--primary-purple);
}
.vm-icon { 
    width: 54px; 
    height: 54px; 
    border-radius: 12px; 
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple)); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #fff; 
    flex-shrink: 0; 
    grid-column: 1; 
    grid-row: 1 / span 2;
    transition: all 0.3s ease;
}

.vm-card:hover .vm-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple));
}
.vm-icon i { font-size: 22px; }
.vm-card h3 { 
    font-family: 'Montserrat', sans-serif; 
    font-size: 22px; 
    font-weight: 700; 
    color: var(--dark-gray); 
    margin: 2px 0 6px 0; 
    grid-column: 2; 
    grid-row: 1;
    transition: all 0.3s ease;
}

.vm-card p { 
    font-size: 16px; 
    color: var(--text-gray); 
    line-height: 1.7; 
    margin: 0; 
    grid-column: 2; 
    grid-row: 2;
    transition: all 0.3s ease;
}

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

.vm-card:hover p {
    color: var(--dark-gray);
}

.vm-divider { height: 1px; background: var(--border-gray); width: 100%; max-width: 1000px; margin: 32px auto; }

.vm-values-grid { display: grid; grid-template-columns: repeat(4, minmax(200px, 1fr)); gap: 20px; width: 100%; max-width: 1200px; margin: 0 auto; }
.vm-value { 
    background: #fff; 
    border: 1px solid var(--border-gray); 
    border-radius: 12px; 
    padding: 24px; 
    text-align: left; 
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    cursor: pointer;
}

.vm-value:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: var(--primary-purple);
}
.vm-value-icon { 
    width: 48px; 
    height: 48px; 
    border-radius: 10px; 
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple)); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #fff; 
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.vm-value:hover .vm-value-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple));
}
.vm-value-icon i { font-size: 20px; }
.vm-value h4 { 
    font-family: 'Montserrat', sans-serif; 
    font-size: 18px; 
    font-weight: 700; 
    color: var(--dark-gray); 
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.vm-value p { 
    font-size: 14px; 
    color: var(--text-gray); 
    line-height: 1.6;
    transition: all 0.3s ease;
}

.vm-value:hover h4 {
    color: var(--primary-purple);
}

.vm-value:hover p {
    color: var(--dark-gray);
}

@media (max-width: 1024px) {
    .vm-values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .vision-mission-section { padding: 56px 0; }
    .vm-grid { grid-template-columns: 1fr; }
    .vm-values-grid { grid-template-columns: 1fr; }
}



/* ====================================
   CORE VALUES SECTION - ENHANCED
   ==================================== */
.core-values-section { padding: 64px 0; background: var(--white); position: relative; overflow: hidden; }



.core-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    justify-items: center;
}

.value-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 14px rgba(60,80,170,0.12);
    padding: 30px 20px;
    min-width: 250px;
    max-width: 250px;
    min-height: 200px;
    transition: all 0.3s cubic-bezier(.71,.18,.33,1.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    border: none;
    margin: 0 auto;
}



.value-card:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 32px var(--primary-purple);
}



.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s cubic-bezier(.71,.18,.33,1.12);
    position: relative;
    overflow: hidden;
}



.value-card:hover .value-icon {
    transform: scale(1.17);
}

.value-icon i {
    font-size: 28px;
    color: var(--white);
    transition: all 0.3s cubic-bezier(.71,.18,.33,1.12);
    z-index: 2;
    position: relative;
}

.value-card:hover .value-icon i {
    transform: scale(1.3) rotate(-5deg);
    color: var(--white);
}

.value-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
    transition: all 0.3s cubic-bezier(.71,.18,.33,1.12);
    position: relative;
    z-index: 2;
}



.value-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    transition: all 0.3s cubic-bezier(.71,.18,.33,1.12);
    position: relative;
    z-index: 2;
}



/* ====================================
   WORKFLOW SECTION - ENHANCED ROADMAP DESIGN
   ==================================== */
.workflow-section { 
    padding: 80px 0; 
    background: #fff; 
    position: relative; 
    overflow: hidden; 
}

.workflow-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-gray);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header .highlight {
    color: var(--primary-purple) !important;
}

/* Override any orange highlights from main styles */
.section-header h2 .highlight {
    color: var(--primary-purple) !important;
}

/* Ensure all section headers use purple */
.section-header h2 .highlight,
.section-header .highlight,
h2 .highlight,
.highlight {
    color: var(--primary-purple) !important;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* New snake layout workflow */
.wf-rows { 
    display: flex; 
    flex-direction: column; 
    gap: 80px; 
    position: relative; 
    max-width: 1200px; 
    margin: 0 auto;
}

/* Additional connector from step 4 to step 5 - removed unnecessary lines */

.wf-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; position: relative; }
.wf-row.reverse { flex-direction: row-reverse; }

/* Row horizontal line */
.wf-row::before { 
    content: ''; 
    position: absolute; 
    top: 60px; 
    left: 8%; 
    right: 8%; 
    height: 2px; 
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-purple), var(--primary-purple)); 
    z-index: 0;
    transition: all 0.3s ease;
}

.wf-row.reverse::before { 
    background: linear-gradient(270deg, var(--primary-purple), var(--primary-purple), var(--primary-purple)); 
}

/* Subtle connecting lines hover effects */
.wf-row:hover::before {
    height: 3px;
}

.wf-step { 
    flex: 1; 
    text-align: center; 
    position: relative; 
    z-index: 1; 
    max-width: 260px; 
    transition: all 0.3s ease;
}

.wf-icon { 
    width: 110px; 
    height: 110px; 
    background: #fff; 
    border: 3px solid var(--border-gray); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 16px; 
    transition: all 0.3s ease;
}

.wf-icon:hover { 
    border-color: var(--primary-purple); 
    transform: scale(1.05);
}

.wf-num { 
    font-size: 1.8rem; 
    font-weight: 800; 
    color: var(--primary-purple); 
    transition: all 0.3s ease; 
}

.wf-step:hover .wf-num {
    color: var(--primary-purple);
}

.wf-title { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    font-size: 1.15rem; 
    color: var(--primary-purple); 
    margin-bottom: 8px; 
    font-weight: 700;
    transition: all 0.3s ease; 
}

.wf-step:hover .wf-title {
    color: var(--primary-purple);
}

.wf-desc { 
    color: var(--text-gray); 
    line-height: 1.6; 
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

/* Hover effect on description affects step number */
.wf-step:hover .wf-desc ~ .wf-num,
.wf-desc:hover ~ .wf-num,
.wf-desc:hover + .wf-num {
    transform: scale(1.2);
    color: var(--primary-purple);
}

/* Subtle hover effects for workflow steps */

@media (max-width: 1200px) {
    .wf-rows { gap: 40px; }
    .wf-row { flex-wrap: wrap; justify-content: center; gap: 30px; }
    .wf-step { flex-basis: calc(50% - 15px); min-width: 260px; }
    .wf-row::before { display: none; }
    

}

@media (max-width: 768px) {
    .wf-step { 
        flex-basis: 100%; 
        min-width: auto; 
    }
    .wf-row { 
        flex-direction: column; 
        align-items: center; 
    }
    .wf-row.reverse { 
        flex-direction: column; 
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .workflow-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .wf-icon {
        width: 90px;
        height: 90px;
    }
    
    .wf-num {
        font-size: 1.5rem;
    }
    
    .wf-title {
        font-size: 1.1rem;
    }
    
    .wf-desc {
        font-size: 0.9rem;
    }
}
/* End new snake layout */

/* Purple flowing timeline */
.flowing-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, 
        var(--primary-purple) 0%, var(--primary-purple) 12.5%, var(--primary-purple) 25%, var(--primary-purple) 37.5%, 
        var(--primary-purple) 50%, var(--primary-purple) 62.5%, var(--primary-purple) 75%, var(--primary-purple) 100%);
    transform: translateX(-50%);
    border-radius: 10px;
    opacity: 0.8;
}





.timeline-step {
    display: flex;
    align-items: center;
    margin-bottom: 120px;
    position: relative;
    width: 100%;
    justify-content: center;
}

.timeline-step:nth-child(even) { 
    flex-direction: row-reverse;
}

.timeline-step:nth-child(1) { animation-delay: 0.1s; }
.timeline-step:nth-child(2) { animation-delay: 0.2s; }
.timeline-step:nth-child(3) { animation-delay: 0.3s; }
.timeline-step:nth-child(4) { animation-delay: 0.4s; }
.timeline-step:nth-child(5) { animation-delay: 0.5s; }
.timeline-step:nth-child(6) { animation-delay: 0.6s; }
.timeline-step:nth-child(7) { animation-delay: 0.7s; }
.timeline-step:nth-child(8) { animation-delay: 0.8s; }



/* Unique hexagon step indicator with purple theme */
.step-icon-wrapper {
    width: 120px;
    height: 120px;
    position: relative;
    flex-shrink: 0;
    z-index: 3;
}

.hexagon {
    width: 100%;
    height: 100%;
    position: relative;
    transform: rotate(30deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}



.hexagon-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    z-index: 2;
    width: 80%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
}

.step-number {
    font-size: 2rem;
    line-height: 1;
}

.step-label {
    font-size: 0.6rem;
    letter-spacing: 2px;
    opacity: 0.9;
    text-transform: uppercase;
}

.timeline-step:hover .hexagon {
    transform: rotate(30deg) scale(1.1);
    filter: brightness(1.1) saturate(1.2);
}

/* White content cards with purple accents */
.step-content {
    flex: 1;
    margin: 0 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(122, 80, 150, 0.1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(122, 80, 150, 0.08);
    max-width: 500px;
}



.step-content:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary-purple);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

/* Purple connecting elements */
.step-connector {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-purple), transparent);
    opacity: 0.6;
    z-index: 1;
}

.timeline-step:nth-child(odd) .step-connector {
    left: calc(50% + 60px);
}

.timeline-step:nth-child(even) .step-connector {
    right: calc(50% + 60px);
}

.step-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark-gray);
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.8;
    font-weight: 400;
    color: var(--text-gray);
}

/* All timeline steps use purple color */
.timeline-step:nth-child(1) .hexagon { background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple)); }
.timeline-step:nth-child(1) .step-content h4 { color: var(--primary-purple); }
.timeline-step:nth-child(1) .step-connector { background: linear-gradient(90deg, transparent, var(--primary-purple), transparent); }

.timeline-step:nth-child(2) .hexagon { background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple)); }
.timeline-step:nth-child(2) .step-content h4 { color: var(--primary-purple); }
.timeline-step:nth-child(2) .step-connector { background: linear-gradient(90deg, transparent, var(--primary-purple), transparent); }

.timeline-step:nth-child(3) .hexagon { background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple)); }
.timeline-step:nth-child(3) .step-content h4 { color: var(--primary-purple); }
.timeline-step:nth-child(3) .step-connector { background: linear-gradient(90deg, transparent, var(--primary-purple), transparent); }

.timeline-step:nth-child(4) .hexagon { background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple)); }
.timeline-step:nth-child(4) .step-content h4 { color: var(--primary-purple); }
.timeline-step:nth-child(4) .step-connector { background: linear-gradient(90deg, transparent, var(--primary-purple), transparent); }

.timeline-step:nth-child(5) .hexagon { background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple)); }
.timeline-step:nth-child(5) .step-content h4 { color: var(--primary-purple); }
.timeline-step:nth-child(5) .step-connector { background: linear-gradient(90deg, transparent, var(--primary-purple), transparent); }

.timeline-step:nth-child(6) .hexagon { background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple)); }
.timeline-step:nth-child(6) .step-content h4 { color: var(--primary-purple); }
.timeline-step:nth-child(6) .step-connector { background: linear-gradient(90deg, transparent, var(--primary-purple), transparent); }

.timeline-step:nth-child(7) .hexagon { background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple)); }
.timeline-step:nth-child(7) .step-content h4 { color: var(--primary-purple); }
.timeline-step:nth-child(7) .step-connector { background: linear-gradient(90deg, transparent, var(--primary-purple), transparent); }

.timeline-step:nth-child(8) .hexagon { background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple)); }
.timeline-step:nth-child(8) .step-content h4 { color: var(--primary-purple); }
.timeline-step:nth-child(8) .step-connector { background: linear-gradient(90deg, transparent, var(--primary-purple), transparent); }

/* Purple accent elements */
.step-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), transparent);
    border-radius: 0 2px 0 0;
}

.step-content:hover::after {
    width: 120px;
    transition: width 0.4s ease;
}

/* Enhanced hover effects */
.hexagon::after {
    box-shadow: 0 0 30px rgba(122, 80, 150, 0.3);
}

.timeline-step:hover .hexagon::after {
    box-shadow: 0 0 40px rgba(122, 80, 150, 0.5);
}

/* Responsive design */
@media (max-width: 992px) {
    .options-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-items: center;
    }
    
    .option-card {
        max-width: 450px;
    }
}
    
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        justify-items: center;
        max-width: 100%;
    }
    
    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
    }
    
    .facts-grid-2 {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .sustainability-badges {
        gap: 20px;
        justify-content: center;
    }
    
    .testimonials-slider {
        width: 100%;
        max-width: 100%;
    }
    
    .testimonial-content {
        min-width: auto;
        max-width: 100%;
        padding: 40px 30px;
    }
    
    .workflow-timeline-wrapper {
        padding: 0 20px;
    }

    .timeline-step {
        flex-direction: column !important;
        text-align: center;
        margin-bottom: 80px;
    }

    .timeline-step:nth-child(even) {
        flex-direction: column !important;
    }

    .step-content {
        margin: 30px 0 0 0;
        max-width: 400px;
    }

    .step-connector {
        display: none;
    }

    .flowing-line {
        display: none;
    }

    .step-icon-wrapper {
        width: 100px;
        height: 100px;
    }

    .step-number {
        font-size: 1.6rem;
    }

@media (max-width: 480px) {
    .options-grid {
        gap: 20px;
    }
    
    .vision-grid {
        gap: 20px;
        max-width: 100%;
    }
    
    .core-values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .facts-grid-2 {
        gap: 15px;
    }
    
    .sustainability-badges {
        gap: 15px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .infrastructure-grid {
        gap: 15px;
    }
    
    .accreditations-grid {
        gap: 15px;
    }
    
    .sustainability-badges img,
    .sustainability-badges i {
        width: 80px;
        height: 80px;
    }
    
    .fact-card-2 {
        width: 140px;
        height: 120px;
        padding: 20px 15px;
    }
    
    .value-card {
        padding: 25px 15px;
        min-width: 200px;
        max-width: 200px;
    }
    
    .vision-card,
    .mission-card {
        padding: 30px 20px;
        min-width: auto;
        max-width: 100%;
    }
    
    .option-card {
        min-width: auto;
        max-width: 100%;
    }
    
    .option-image-container {
        height: 250px;
    }
    
    .option-content {
        padding: 25px 20px;
    }
    
    .option-icon {
        width: 60px;
        height: 60px;
        margin: -50px auto 15px;
    }
    
    .option-icon i {
        font-size: 24px;
    }
    
    .infrastructure-card {
        min-width: auto;
        max-width: 100%;
    }
    
    .accreditation-item {
        min-width: auto;
        max-width: 100%;
        padding: 20px 15px;
    }
    
    .testimonial-content {
        min-width: auto;
        max-width: 100%;
    }
    
    .sustainability-badges img,
    .sustainability-badges i {
        min-width: auto;
        max-width: 100%;
    }
    
    .workflow-section {
        padding: 60px 0;
    }
    
    .timeline-step {
        margin-bottom: 60px;
    }
    
    .step-content {
        padding: 30px 25px;
        margin: 20px 0 0 0;
    }
    
    .step-content h4 {
        font-size: 1.5rem;
}

.step-content p {
    font-size: 1rem;
    }
    
    .step-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .step-number {
        font-size: 1.4rem;
    }
    
    .step-label {
        font-size: 0.5rem;
    }
}

/* ====================================
   ACCREDITATIONS SECTION - ENHANCED
   ==================================== */
.accreditations-section { padding: 80px 0; background: var(--white); position: relative; overflow: hidden; }



.accreditations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-top: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    justify-items: center;
}

.accreditation-item {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 14px rgba(60,80,170,0.11);
    padding: 30px 20px;
    min-width: 140px;
    max-width: 140px;
    min-height: 140px;
    transition: all 0.3s cubic-bezier(.71,.18,.33,1.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    border: none;
    margin: 0 auto;
}



.accreditation-item:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 32px rgba(60,80,170,0.11);
}

.accreditation-item img {
    width: 100%;
    max-width: 140px;
    height: auto;
    filter: grayscale(100%);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}



/* ====================================
   INFRASTRUCTURE SECTION - ENHANCED
   ==================================== */
.infrastructure-section { padding: 80px 0; background: linear-gradient(135deg, rgba(122, 80, 150, 0.1) 0%, var(--white) 100%); position: relative; overflow: hidden; }



.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    padding: 0 15px;
}

.infrastructure-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 14px rgba(60,80,170,0.11);
    padding: 0;
    width: 100%;
    max-width: 320px;
    min-height: 400px;
    transition: all 0.3s cubic-bezier(.71,.18,.33,1.12);
    display: block;
    cursor: pointer;
    border: none;
    margin: 0 auto;
}



.infrastructure-card:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 32px rgba(122, 80, 150, 0.4);
    background: var(--primary-purple);
}

.card-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    max-height: 50vw;
}





.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
    max-width: 100%;
}



.infrastructure-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 30px 30px 20px;
    transition: all 0.3s cubic-bezier(.71,.18,.33,1.12);
    position: relative;
    z-index: 3;
}

.infrastructure-card:hover h4 {
    color: var(--white);
}



.infrastructure-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0 30px 30px;
    transition: all 0.3s cubic-bezier(.71,.18,.33,1.12);
    position: relative;
    z-index: 3;
}

.infrastructure-card:hover p {
    color: var(--white);
}



/* ====================================
   SUSTAINABILITY SECTION - ENHANCED
   ==================================== */
.sustainability-section { padding: 64px 0; background: var(--white); position: relative; overflow: hidden; }

.sustainability-section .section-header {
    margin-bottom: 40px;
    text-align: center;
}

.sustainability-section .intro-text {
    max-width: 700px;
    margin-bottom: 30px;
    text-align: center;
}



.sustainability-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: nowrap;
}

.sustainability-badges img {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(60, 80, 170, 0.1);
    width: 100px;
    height: 100px;
    transition: all 0.3s cubic-bezier(.71,.18,.33,1.12);
    cursor: pointer;
    border: 2px solid var(--border-gray);
    margin: 0;
    object-fit: contain;
    padding: 15px;
}

.sustainability-badges img:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 6px 20px rgba(60, 80, 170, 0.2);
    border-color: var(--primary-purple);
}

.sustainability-badges i {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(60, 80, 170, 0.1);
    font-size: 40px;
    color: var(--primary-purple);
    transition: all 0.3s cubic-bezier(.71,.18,.33,1.12);
    cursor: pointer;
    padding: 15px;
    border: 2px solid var(--border-gray);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.sustainability-badges i:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 6px 20px rgba(60, 80, 170, 0.2);
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

/* ====================================
   TESTIMONIALS SECTION - ENHANCED
   ==================================== */
.testimonials { padding: 80px 0; background: linear-gradient(135deg, rgba(122, 80, 150, 0.1) 0%, var(--white) 100%); position: relative; overflow: hidden; }



.testimonials-slider {
    position: relative;
    margin: 48px 0;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial {
    display: none;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial.active {
    display: block;
}



.testimonial-content {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 14px rgba(60,80,170,0.11);
    padding: 40px 36px;
    min-width: 900px;
    max-width: 900px;
    min-height: 300px;
    transition: all 0.3s cubic-bezier(.71,.18,.33,1.12);
    display: block;
    border: none;
    margin: 0 auto;
}



.testimonial-content:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 32px rgba(60,80,170,0.11);
}

.quote-icon {
    font-size: 60px;
    color: var(--primary-purple);
    margin-bottom: 20px;
    transition: all 0.3s cubic-bezier(.71,.18,.33,1.12);
    display: inline-block;
}

.testimonial-content:hover .quote-icon {
    transform: scale(1.17);
}

.testimonial-content p {
    font-size: 20px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    transition: all 0.3s cubic-bezier(.71,.18,.33,1.12);
}



.testimonial-author {
    text-align: center;
    transition: all 0.3s cubic-bezier(.71,.18,.33,1.12);
}

.author-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 8px;
    transition: all 0.3s cubic-bezier(.71,.18,.33,1.12);
}



.author-info span {
    font-size: 16px;
    color: var(--text-gray);
    transition: all 0.3s cubic-bezier(.71,.18,.33,1.12);
}



.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 300px;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--border-gray);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.71,.18,.33,1.12);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}





.dot.active,
.dot:hover {
    border-color: var(--primary-purple);
    transform: scale(1.2);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 200px;
}

.testimonial-nav button {
    width: 60px;
    height: 60px;
    border: 3px solid var(--primary-purple);
    background: var(--white);
    color: var(--primary-purple);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.71,.18,.33,1.12);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}





.testimonial-nav button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(122, 80, 150, 0.3);
    border-color: var(--primary-purple);
}

.testimonial-nav button:hover i {
    color: var(--white);
    transform: scale(1.2);
}

.testimonial-nav i {
    font-size: 20px;
    transition: all 0.3s cubic-bezier(.71,.18,.33,1.12);
    position: relative;
    z-index: 2;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 36px;
    }
    
    .hero-content-text h1 {
        font-size: 48px;
    }
    
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        justify-items: center;
    }
    
    .workflow-timeline-wrapper::before {
        left: 30px;
    }
    
    .timeline-step {
        flex-direction: row !important;
        margin-left: 30px;
    }
    
    .step-content {
        padding-left: 60px;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        align-items: center;
    }
    
    .infrastructure-card {
        min-width: auto;
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .hero-content-text h1 {
        font-size: 42px;
    }
    
    .about-hero-section {
        height: 50vh;
        min-height: 450px;
    }
    
    .about-company-section,
    .product-options-section,
    .vision-mission-section,
    .core-values-section,
    .workflow-section,
    .accreditations-section,
    .infrastructure-section,
    .sustainability-section,
    .testimonials {
        padding: 80px 0;
    }
    
    .facts-grid-2 {
        gap: 15px;
        padding: 10px 0;
        justify-content: center;
    }
    
    .fact-card-2 {
        padding: 25px 15px;
        width: 180px;
        height: 160px;
    }
    
    .fact-number {
        font-size: 48px;
    }
    
    .fact-label {
        font-size: 14px;
        letter-spacing: 1.5px;
    }
    
    .value-card {
        padding: 40px 25px;
    }
    
    .value-icon {
        width: 80px;
        height: 80px;
    }
    
    .value-icon i {
        font-size: 32px;
    }
    
    .vision-card,
    .mission-card {
        padding: 30px 20px;
        min-width: auto;
        max-width: 100%;
    }
    
    .vision-icon,
    .mission-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .vision-icon i,
    .mission-icon i {
        font-size: 28px;
    }
    
    .accreditations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        justify-items: center;
    }
    
    .infrastructure-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
    }
    
    .sustainability-badges {
        gap: 20px;
        max-width: 600px;
        flex-wrap: wrap;
    }
    
    .sustainability-badges img,
    .sustainability-badges i {
        width: 90px;
        height: 90px;
    }
    
    .sustainability-section { padding: 48px 0; }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 28px;
    }
    
    .hero-content-text h1 {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .infrastructure-card {
        width: 100%;
        max-width: 100%;
    }
    
    .card-image-wrapper {
        height: auto;
    }
    
    .fact-number {
        font-size: 40px;
    }
    
    .fact-card-2 {
        padding: 20px 12px;
        width: 150px;
        height: 140px;
    }
    
    .facts-grid-2 {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .vision-card,
    .mission-card {
        padding: 25px 15px;
        min-width: auto;
        max-width: 100%;
    }
    
    .vision-icon,
    .mission-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .vision-icon i,
    .mission-icon i {
        font-size: 24px;
    }
    
    .value-card {
        padding: 25px 15px;
        min-width: 200px;
        max-width: 200px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .value-icon i {
        font-size: 24px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .step-icon-wrapper {
        width: 60px;
    }
    
    .infrastructure-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        justify-items: center;
    }
    
    .sustainability-badges {
        gap: 15px;
        max-width: 500px;
        flex-wrap: wrap;
    }
    
    .sustainability-badges img,
    .sustainability-badges i {
        width: 80px;
        height: 80px;
    }
    
    .sustainability-section { padding: 40px 0; }
    
    .icon-line-art {
        width: 40px;
        height: 40px;
    }
    
    .icon-line-art i {
        font-size: 20px;
    }
    
    .accreditations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        justify-items: center;
    }
}



/* ====================================
   RESPONSIVE STYLES
   ==================================== */

/* Global Responsive Styles */
html {
    font-size: 16px;
}

/* ====================================
   RESPONSIVE NAVBAR
   ==================================== */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--black);
    transition: all 0.3s ease;
    z-index: 1001;
    position: relative;
}

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

.mobile-menu-toggle .fa-bars {
    transition: transform 0.4s ease;
}

.mobile-menu-toggle.active .fa-bars {
    transform: rotate(90deg);
}

.mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    z-index: 999;
    padding-top: 80px;
    overflow-y: auto;
}

.mobile-nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

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

.mobile-nav.active::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav ul {
    padding: 20px;
    margin: 0;
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav.active li:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.active li:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav.active li:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.active li:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav.active li:nth-child(5) { transition-delay: 0.25s; }

.mobile-nav.active li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav a {
    color: var(--black);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    padding: 10px 0;
    text-decoration: none;
}

.mobile-nav a:hover {
    color: var(--primary-color);
}

.mobile-nav .dropdown-menu {
    display: none;
    padding-left: 20px;
    margin-top: 10px;
}

.mobile-nav .has-dropdown.active .dropdown-menu {
    display: block;
}

.mobile-nav .has-dropdown.active .fa-chevron-down {
    transform: rotate(180deg);
}

/* ====================================
   RESPONSIVE BREAKPOINTS
   ==================================== */

/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }
}

/* Desktop (1200px - 1439px) */
@media (max-width: 1439px) {
    .container {
        max-width: 1140px;
    }
}

/* Small Desktop/Large Tablet (992px - 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    html {
        font-size: 15px;
    }
    
    /* Hero section adjustments */
    .hero-content h1 {
        font-size: var(--h1-size-lg);
    }
    
    /* Section padding adjustments */
    section {
        padding: 70px 0;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    html {
        font-size: 14px;
    }
    
    /* Navigation changes */
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Header adjustments */
    #header .container {
        padding: 0 20px;
    }
    
    /* Hero section adjustments */
    .hero-content h1 {
        font-size: var(--h1-size-md);
    }
    
    /* Section padding adjustments */
    section {
        padding: 60px 0;
    }
    
    /* Two column layouts become single column */
    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Footer adjustments */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

/* Mobile (576px - 767px) */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    html {
        font-size: 14px;
    }
    
    /* Hero section adjustments */
    .hero-content h1 {
        font-size: var(--h1-size-sm);
    }
    
    .hero-content p {
        font-size: var(--body-size-md);
    }
    
    /* Section padding adjustments */
    section {
        padding: 50px 0;
    }
    
    /* Section headers */
    .section-header h2 {
        font-size: var(--h2-size-sm);
    }
    
    /* Card grids become single column */
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer adjustments */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Small Mobile (375px - 575px) */
@media (max-width: 575px) {
    .container {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    html {
        font-size: 13px;
    }
    
    /* Hero section adjustments */
    .hero-content h1 {
        font-size: var(--h1-size-xs);
    }
    
    .hero-content p {
        font-size: var(--body-size-sm);
    }
    
    /* Button adjustments */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Section padding adjustments */
    section {
        padding: 40px 0;
    }
    
    /* Section headers */
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: var(--h2-size-xs);
    }
}

/* Extra Small Mobile (320px - 374px) */
@media (max-width: 374px) {
    html {
        font-size: 12px;
    }
    
    /* Button adjustments */
    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* ====================================
   RESPONSIVE COMPONENTS
   ==================================== */

/* Forms */
@media (max-width: 767px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    input, textarea, select {
        padding: 10px;
    }
}

/* Cards */
@media (max-width: 767px) {
    .card {
        padding: 20px;
    }
}

/* Tabs */
@media (max-width: 767px) {
    .tab-nav {
        flex-wrap: wrap;
    }
    
    .tab-nav-item {
        flex: 1 1 auto;
        min-width: 120px;
        margin: 5px;
    }
}

/* Product Showcase */
@media (max-width: 991px) {
    .product-showcase {
        flex-direction: column;
    }
    
    .product-image {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .product-details {
        width: 100%;
    }
}

/* Who We Are Section */
@media (max-width: 991px) {
    .who-we-are-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .who-we-are-text-left {
        padding-left: 0;
        max-width: 100%;
    }
    
    .who-we-are-text-right {
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .image-cards-container {
        display: flex;
        flex-direction: column;
        gap: 70px;
        padding-bottom: 60px;
    }
    
    .image-card {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .card-image {
        width: 100%;
        height: auto;
    }
    
    .card-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        min-height: 300px;
        border-radius: 8px;
    }
    
    .card-button {
        bottom: -25px;
        width: 80%;
    }
}

@media (max-width: 767px) {
    .who-we-are-content {
        margin-top: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .image-cards-container {
        gap: 60px;
        padding-bottom: 50px;
        margin-top: 40px;
    }
    
    .image-card {
        width: 100%;
        max-width: 400px;
    }
    
    .card-image img {
        min-height: 250px;
    }
    
    .card-button {
        width: 90% !important;
        min-width: auto !important;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .who-we-are-content {
        margin-top: 30px;
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    .image-cards-container {
        gap: 70px;
        padding-bottom: 40px;
        margin-top: 30px;
    }
    
    .image-card {
        max-width: 100%;
    }
    
    .card-image img {
        min-height: 200px;
        border-radius: 6px;
    }
    
    .card-button {
        width: 95% !important;
        padding: 12px 15px !important;
        font-size: 0.9rem !important;
        bottom: -22px;
    }
}

@media (max-width: 375px) {
    .who-we-are-section {
        padding: 40px 0;
    }
    
    .image-cards-container {
        gap: 65px;
        padding-bottom: 30px;
    }
    
    .card-image img {
        min-height: 180px;
    }
    
    .card-button {
        padding: 10px 12px !important;
        font-size: 0.85rem !important;
        bottom: -20px;
    }
    
    .button-text {
        font-size: 0.85rem;
    }
    
    .discover-text {
        font-size: 0.8rem;
    }
}

/* Testimonials */
@media (max-width: 767px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Stats */
@media (max-width: 767px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Benefits Grid */
@media (max-width: 991px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Manufacturing Process */
@media (max-width: 991px) {
    .process-row {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}
/* ====================================
   ENHANCED MOBILE NAVBAR STYLES - MODERN AND RICH DESIGN
   ==================================== */

/* Mobile Navigation Core Styles */
.mobile-nav {
    display: block !important;
    position: fixed !important;
    top: 90px !important;
    left: 0 !important;
    width: 38% !important;
    height: calc(100vh - 90px) !important;
    background: linear-gradient(180deg, #8B4513 0%, #654321 50%, #3E2723 100%) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
    z-index: 9999 !important;
    transform: translateY(-100vh) !important;
    transition: transform 0.3s ease !important;
    overflow-y: auto !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Active state for mobile nav */
.mobile-nav.active {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Mobile Nav Container */
.mobile-nav-container {
    padding: 30px 20px !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Mobile Nav List */
.mobile-nav ul {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

/* Mobile Nav List Items */
.mobile-nav li {
    margin: 0 0 15px !important;
    opacity: 1 !important;
    transform: none !important;
    transition: all 0.3s ease !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-bottom: 15px !important;
}

.mobile-nav li:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

/* Mobile Nav Links */
.mobile-nav a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    color: white !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 15px 20px !important;
    border-radius: 25px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    text-decoration: none !important;
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateX(5px) !important;
}

.mobile-nav a.active {
    background: rgba(255, 255, 255, 0.2) !important;
    border-left: 4px solid white !important;
}

/* Dropdown styles */
.mobile-nav .has-dropdown {
    position: relative !important;
}

.mobile-nav .has-dropdown > a {
    padding-right: 50px !important;
}

.mobile-nav .has-dropdown .fa-chevron-down {
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    transition: transform 0.3s ease !important;
    color: white !important;
    font-size: 0.8rem !important;
}

.mobile-nav .has-dropdown.active .fa-chevron-down {
    transform: translateY(-50%) rotate(180deg) !important;
}

.mobile-nav .dropdown-menu {
    position: static !important;
    background: transparent !important;
    border: none !important;
    border-left: 2px solid rgba(255, 255, 255, 0.3) !important;
    margin: 5px 0 5px 20px !important;
    padding: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.5s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    transform: none !important;
}

.mobile-nav .has-dropdown.active .dropdown-menu {
    max-height: 300px !important;
}

.mobile-nav .dropdown-menu a {
    font-size: 0.9rem !important;
    padding: 10px 15px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    margin-bottom: 5px !important;
    border-radius: 8px !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.mobile-nav .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: white !important;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none !important;
    cursor: pointer !important;
    width: 40px !important;
    height: 40px !important;
    position: relative !important;
    z-index: 10000 !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    outline: none !important;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

.mobile-menu-toggle i {
    font-size: 1.8rem !important;
    color: var(--primary-purple) !important;
    transition: all 0.3s ease !important;
}

/* Default purple theme for toggle button */
body:has(.about-us-hero) .mobile-menu-toggle i {
    color: var(--primary-purple) !important;
}

.mobile-menu-toggle:hover i {
    transform: scale(1.1) !important;
}

/* Toggle button active state */
.mobile-menu-toggle.active i.fa-bars {
    display: none !important;
}

.mobile-menu-toggle:not(.active) i.fa-times {
    display: none !important;
}

/* Add both icons to the toggle button */
.mobile-menu-toggle i.fa-bars,
.mobile-menu-toggle i.fa-times {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    transition: all 0.3s ease !important;
}

.mobile-menu-toggle.active i.fa-times {
    transform: translate(-50%, -50%) rotate(180deg) !important;
    color: var(--primary-purple) !important;
}

/* Default purple theme for active toggle button */
body:has(.about-us-hero) .mobile-menu-toggle.active i.fa-times {
    color: var(--primary-purple) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mobile-nav {
        width: 55% !important;
    }
}

@media (max-width: 480px) {
    .mobile-nav {
        width: 65% !important;
    }
    
    .mobile-nav a {
        font-size: 1.1rem !important;
        padding: 12px 15px !important;
    }
    
    .mobile-nav .dropdown-menu a {
        font-size: 0.9rem !important;
        padding: 10px 15px !important;
    }
}

/* Ensure mobile nav is hidden on desktop */
@media (min-width: 769px) {
    .mobile-nav {
        display: none !important;
    }
}

.mobile-nav-social {
    margin-bottom: 40px !important;
    text-align: center !important;
}

.mobile-nav-social h4 {
    color: #D2B48C !important;
    font-size: 0.9rem !important;
    margin-bottom: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.mobile-nav-social-icons {
    display: flex !important;
    justify-content: center !important;
    gap: 15px !important;
}

.mobile-nav-social-icons a {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 1.2rem !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.mobile-nav-social-icons a:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.1) !important;
}

.mobile-nav-contact {
    margin-top: auto !important;
    text-align: center !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.mobile-nav-contact h4 {
    color: #D2B48C !important;
    font-size: 0.9rem !important;
    margin-bottom: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.mobile-nav-contact p {
    margin: 8px 0 !important;
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
}

.mobile-nav-contact a {
    color: white !important;
    text-decoration: none !important;
    font-weight: 500 !important;
}

.mobile-nav-contact a:hover {
    color: #D2B48C !important;
    text-decoration: none !important;
}

/* Ensure scrolling works on small screens */
@media (max-height: 600px) {
    .mobile-nav {
        overflow-y: auto !important;
    }
    
    .mobile-nav-container {
        padding: 20px !important;
    }
}

/* ====================================
   ABOUT-US PAGE MOBILE MENU THEME - PURPLE
   ==================================== */

/* Override the default brown theme with purple theme for about-us page */
body:has(.about-us-hero) .mobile-nav {
    background: linear-gradient(135deg, var(--primary-purple), #f39c12) !important;
}

body:has(.about-us-hero) .mobile-menu-toggle i {
    color: var(--primary-purple) !important;
}

body:has(.about-us-hero) .mobile-menu-toggle.active i.fa-times {
    color: var(--primary-purple) !important;
}

body:has(.about-us-hero) .mobile-nav a:hover,
body:has(.about-us-hero) .mobile-nav a:focus {
    background: rgba(255, 255, 255, 0.15) !important;
}

body:has(.about-us-hero) .mobile-nav a.active {
    background: rgba(255, 255, 255, 0.2) !important;
}

body:has(.about-us-hero) .mobile-nav-social a:hover {
    background: white !important;
    color: var(--primary-purple) !important;
}





/* Ensure scrolling works on small screens */
@media (max-height: 600px) {
    .mobile-nav {
        overflow-y: auto !important;
    }
    
    .mobile-nav-container {
        padding: 20px !important;
    }
}
