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

:root {
    /* UI/UX Design Palette from Provided Reference */
    --primary: #E84E1B;    /* Vibrant Orange (Action/CTA) */
    --primary-dark: #C13D12;
    --secondary: #2B3990;  /* Royal Blue (Trust/Foundation) */
    --secondary-dark: #1B255E; /* Dark Navy (Depth) */
    --accent: #FBB03B;     /* Gold (Highlight/Icons) */
    --accent-dark: #A67C52;
    
    --text-main: #0F172A;
    --text-muted: #475569;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --success: #10B981;
    
    /* Patterns */
    --pattern-dots: radial-gradient(rgba(43, 57, 144, 0.1) 1px, transparent 0);
    
    /* Typography */
    --font-serif: 'Urbanist', sans-serif;
    --font-sans: 'Open Sans', sans-serif;
    
    /* Spacing Optimization for UX */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem; /* Reduced from 4rem */
    --space-xl: 5rem; /* Reduced from 8rem */
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary);
}

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

/* Layout Components */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: var(--space-lg) 0;
}


/* Header & Navigation */
header {
    background: var(--bg-white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
}

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

.logo img {
    height: 85px;
    width: auto;
    transition: var(--transition);
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 1px;
}

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

.nav-links li {
    margin: 0 1.2rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary);
    transition: 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--secondary);
    border-radius: 10px;
    transition: 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (min-width: 1025px) {
    .nav-links {
        display: flex;
        flex-direction: row;
        gap: 1.5rem; /* Reduced gap to prevent overflow */
        position: static;
        width: auto;
        padding: 0;
        box-shadow: none;
        background: transparent;
    }
    
    .nav-links li {
        margin: 0;
    }
    
    .nav-links a {
        white-space: nowrap; /* Prevent text wrapping */
    }
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2.5rem 1rem;
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        z-index: 999;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 1.2rem 0;
        width: 100%;
    }

    .header-call-btn {
        display: none !important;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

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

/* Swiper Slider */
.hero-slider {
    width: 100%;
    height: 100vh;
    margin-top: 0;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

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

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 20%, rgba(0,0,0,0.2) 80%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: var(--bg-white);
    text-align: left;
    padding: var(--space-md);
}

.slide-content .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.slide-content h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease;
}

.slide-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: var(--space-md);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.2s;
}

.swiper-slide-active .slide-content h2,
.swiper-slide-active .slide-content p {
    transform: translateY(0);
    opacity: 1;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary) !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

/* Feature Cards */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

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

.feature-horizontal {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: var(--space-md);
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-horizontal:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 3rem;
    color: var(--secondary); /* Dark Blue */
    min-width: 60px;
}

.feature-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1E293B;
}

.feature-text p {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.5;
}

/* Detailed About Section */
.about-home {
    background: #F8FAFC;
    overflow: hidden;
}

.about-image-area {
    position: relative;
    padding: 2rem;
}

.main-image-wrapper {
    border-radius: 50px 150px 50px 50px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.about-img-main {
    width: 100%;
    transition: transform 0.5s ease;
}

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

.experience-badge {
    position: absolute;
    top: -10px;
    right: 0;
    background: var(--secondary);
    color: white;
    padding: 2rem;
    border-radius: 30px;
    width: 200px;
    box-shadow: 0 20px 40px rgba(43, 57, 144, 0.3);
    z-index: 2;
}

.experience-badge .rating {
    color: var(--accent); /* Gold for stars */
}

.experience-badge p {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.experience-badge .years {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.experience-badge .years span {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .know-more-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.experience-badge .know-more-btn i {
    background: white;
    color: var(--secondary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
}

.decorative-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--accent); /* Gold for decorative badge */
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(251,176,59,0.3);
    animation: rotate 20s linear infinite;
    z-index: 2;
}

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

/* Section Title */
.section-title__tagline-box {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.section-title__tagline-border {
    width: 30px;
    height: 1px;
    background: var(--primary);
    display: block;
}

.section-title__shape-1, .section-title__shape-2 {
    color: var(--primary);
    font-size: 1.2rem;
}

.section-title__tagline {
    font-family: var(--font-serif);
    color: var(--primary);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title__title {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--secondary);
}

/* Process One Styles */
.process-one {
    position: relative;
    background: var(--bg-light);
    overflow: hidden;
    padding-top: 3rem; /* Specifically reduced top space */
}

.process-one__map {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
}

.process-one__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    list-style: none;
    padding: 0;
    counter-reset: process-counter;
}

.process-one__list li {
    position: relative;
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.process-one__list li:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--primary);
}

.process-one__icon {
    width: 90px;
    height: 90px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    position: relative;
}

.process-one__count {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.process-one__list li:nth-child(1) .process-one__count::before { content: "01"; }
.process-one__list li:nth-child(2) .process-one__count::before { content: "02"; }
.process-one__list li:nth-child(3) .process-one__count::before { content: "03"; }
.process-one__list li:nth-child(4) .process-one__count::before { content: "04"; }

.process-one__title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.process-one__text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.about-feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.feature-icon-circle {
    background: var(--accent);
    color: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

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

.checkmark-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.checkmark-list li i {
    color: var(--primary);
}

/* Premium Cards */
.premium-card {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.premium-card:hover {
    transform: translateY(-15px);
    background: var(--secondary);
    color: white;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

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

.premium-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.premium-card:hover h3 {
    color: white;
}

.premium-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.premium-card:hover p {
    color: rgba(255,255,255,0.8);
}

.card-link {
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Statistics Section */
.stats {
    position: relative;
    padding: 5rem 0;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-number::after {
    content: '+';
}

/* Unique Footer Styles */
.footer-unique {
    background: var(--secondary-dark);
    color: white;
    padding: 6rem 0 2rem;
    position: relative;
}

.footer-top-slant {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--secondary-dark);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
}

.footer-logo {
    height: 70px;
    background: white;
    padding: 0.8rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.footer-title {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
}

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

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: white;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(10px);
}


.footer-contact .contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 5px;
}

.footer-contact a, .footer-contact p {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: rotate(360deg);
}

.hours-list li {
    color: white;
    margin-bottom: 0.5rem;
}

.hours-list span {
    color: white;
    font-weight: 600;
}

.iso-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.05);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: white;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: white;
    font-size: 0.9rem;
}

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

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(43, 57, 144, 0.2);
}

.btn-blue:hover {
    background: #00158a;
    transform: translateX(10px);
}

/* Working Process Section */
.working-process {
    background-image: var(--pattern-dots);
    background-size: 30px 30px;
    position: relative;
}

.working-process::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(241, 245, 249, 0.8));
    pointer-events: none;
}

.working-process-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--space-md);
    position: relative;
}

.step-item {
    text-align: center;
    position: relative;
    padding: var(--space-sm);
}

.step-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 2;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    border: 3px solid white;
}

.step-icon {
    font-size: 2rem;
}

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Info Bar */
.info-bar {
    background: var(--secondary-dark);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-content h1 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }

/* Unique Architectural Testimonials Styles */
.testimonials-unique {
    background: #fdfdfd;
    padding-bottom: var(--space-xl);
}

.section-header-unique {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.google-rating-pill {
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
    border: 1px solid #f1f5f9;
}

.google-rating-pill i {
    color: #4285F4;
    font-size: 1.2rem;
}

.testimonials-grid-unique {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid-unique {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid-unique {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card-unique {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 4px; /* Architectural sharp corners or very slight round */
    position: relative;
    border-bottom: 4px solid #eee;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card-unique.featured {
    background: var(--secondary);
    color: white;
    border-bottom-color: var(--primary);
}

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

.quote-mark {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 8rem;
    font-family: serif;
    line-height: 1;
    opacity: 0.1;
    color: white;
    user-select: none;
}

.quote-mark.accent {
    color: var(--primary);
    opacity: 0.05;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    flex: 1;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    position: relative;
    z-index: 1;
}

.reviewer-avatar {
    width: 55px;
    height: 55px;
    border-radius: 4px; /* Square architectural avatar */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.3rem;
}

.reviewer-meta h5 {
    font-size: 1.1rem;
    margin-bottom: 2px;
    color: inherit;
}

.testimonial-card-unique:not(.featured) .reviewer-meta h5 {
    color: var(--secondary);
}

.reviewer-meta span {
    font-size: 0.85rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Advanced About Page Styles */
.page-header {
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, rgba(27, 37, 94, 0.95), rgba(232, 78, 27, 0.1));
    z-index: 1;
}

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

.about-stats-grid {
    margin-top: -80px;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .about-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.about-stat-box {
    text-align: center;
    border-right: 1px solid #f1f5f9;
}

.about-stat-box:last-child {
    border-right: none;
}

@media (max-width: 767px) {
    .about-stat-box {
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 1.5rem;
    }
}

.about-stat-box .stat-number {
    font-size: 2.5rem;
    color: var(--secondary);
    display: block;
    font-family: var(--font-serif);
    font-weight: 800;
}

.about-stat-box .stat-number::after {
    content: '+';
}

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

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

@media (min-width: 992px) {
    .vision-mission-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 3.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.glass-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
}

.leadership-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

@media (min-width: 992px) {
    .leadership-card {
        grid-template-columns: 450px 1fr;
    }
}

.leadership-img {
    height: 100%;
    min-height: 400px;
}

.leadership-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leadership-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.leadership-content h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.leadership-tag {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    display: block;
}

.brands-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.brands-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.brands-marquee::before,
.brands-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 50px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light) 0%, transparent 100%);
}

.brands-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light) 0%, transparent 100%);
}

@media (min-width: 768px) {
    .brands-marquee::before,
    .brands-marquee::after {
        width: 150px;
    }
}

.brands-track {
    display: flex;
    width: max-content;
    animation: scrollBrands 25s linear infinite;
}

.brands-track:hover {
    animation-play-state: paused;
}

@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 1.5rem;
    width: 180px;
    flex-shrink: 0;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .brand-item {
        width: 250px;
        padding: 1rem 2rem;
    }
}

.brand-item img {
    max-width: 100%;
    height: auto;
    filter: none;
    opacity: 1;
    transition: var(--transition);
}

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

/* Heritage Flex Section */
.heritage-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.heritage-content {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.heritage-image {
    flex: 1;
    min-width: 300px;
    min-height: 450px;
}

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

@media (max-width: 991px) {
    .heritage-flex {
        flex-direction: column;
    }
    .heritage-content {
        padding: 3rem 2rem;
    }
    .heritage-image {
        min-height: 350px;
    }
}
/* Journey Section Unique Style */
.journey-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .journey-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.journey-card {
    background: white;
    padding: 3.5rem 2rem;
    border-radius: 20px;
    position: relative;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
    height: 100%;
}

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

.journey-num {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(43, 57, 144, 0.3);
    transition: var(--transition);
}

.journey-card:hover .journey-num {
    background: var(--secondary);
    transform: translateX(-50%) scale(1.1);
}

.journey-icon {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    opacity: 0.8;
    transition: var(--transition);
}

.journey-card:hover .journey-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--secondary);
    opacity: 1;
}

.journey-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.journey-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
}
/* Unified Solutions Grid Styles */
.unified-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .unified-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.unified-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.unified-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: var(--primary);
}

.unified-icon {
    font-size: 3rem;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    width: 90px;
    height: 90px;
    min-width: 90px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.unified-card:hover .unified-icon {
    background: var(--primary);
    color: white;
    transform: rotate(-10deg);
}

.unified-info h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.unified-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.6;
}

.unified-num {
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    transition: var(--transition);
}

.unified-card:hover .unified-num {
    color: rgba(255, 255, 255, 0.07);
    transform: scale(1.1);
}

@media (max-width: 576px) {
    .unified-card {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
    }
    .unified-icon {
        margin-bottom: 1rem;
    }
}
/* Premium Contact Page Styles */
.contact-sidebar {
    position: sticky;
    top: 120px;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f8fafc;
}

.contact-detail-item:last-child {
    border-bottom: none;
}

.detail-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--bg-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
    transition: var(--transition);
}

.contact-detail-item:hover .detail-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.contact-detail-item h5 {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.contact-detail-item p, .contact-detail-item a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.5;
}

/* Premium Form Styles */
.premium-form .form-group {
    margin-bottom: 1.5rem;
}

.premium-form label {
    display: block;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.premium-form input, 
.premium-form select, 
.premium-form textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: #fcfcfc;
}

.premium-form input:focus, 
.premium-form select:focus, 
.premium-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 10px 20px rgba(43, 57, 144, 0.05);
}

@media (max-width: 991px) {
    .contact-sidebar {
        position: static;
        margin-bottom: 3rem;
    }
    .contact-form-wrapper {
        padding: 2.5rem 1.5rem !important;
    }
}
/* Ultimate Footer Fix - UI/UX Refined */
.footer-unique {
    background: var(--secondary);
    color: white;
    padding: 80px 0 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.footer-top-slant {
    display: none;
}

.footer-grid {
    display: grid !important; /* Force override */
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 3rem !important;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

.footer-logo {
    height: 65px;
    margin-bottom: 1.5rem;
    background: white;
    padding: 12px 15px;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-title {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 2rem;
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 35px;
    height: 3px;
    background: var(--primary);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 20px;
}

.footer-links li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s ease;
    display: block;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact .contact-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 4px;
}

.footer-contact p, .footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: space-between;
}

.hours-list span {
    color: white;
    font-weight: 600;
}

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

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: white;
    transition: 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
    color: white;
}

.iso-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1.5rem;
    width: 100%;
}

.iso-badge i {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .footer-unique {
        padding: 60px 0 40px;
    }
}

@media (max-width: 767px) {
    .footer-unique {
        text-align: left;
    }
    .footer-title::after {
        left: 0;
        transform: none;
    }
    .footer-contact .contact-item {
        justify-content: flex-start;
        text-align: left;
        flex-direction: row;
        align-items: flex-start;
        gap: 1.2rem;
    }
    .social-links {
        justify-content: flex-start;
    }
    .footer-logo {
        margin: 0 0 1.5rem;
    }
    .hours-list li {
        flex-direction: row;
        justify-content: space-between;
        gap: 0.5rem;
    }
    .iso-badge {
        justify-content: flex-start;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }
}

/* Header Call Button CTA */
.header-call-btn {
    background: var(--primary);
    color: white !important;
    padding: 10px 22px !important;
    border-radius: 50px;
    font-weight: 700 !important;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease !important;
    margin-left: 15px;
    box-shadow: 0 4px 15px rgba(232, 78, 27, 0.3);
}

.header-call-btn:hover {
    background: var(--secondary) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 57, 144, 0.3);
    color: white !important;
}

.header-call-btn i {
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .header-call-btn {
        display: none !important; /* Force hide on mobile as per request */
    }
}

/* ==========================================================================
   Premium About Page Styles
   ========================================================================== */
.about-hero {
    position: relative;
    overflow: hidden;
}

.hero-content-premium h1 {
    animation: fadeInUp 1s ease forwards;
}

.hero-content-premium p {
    animation: fadeInUp 1.2s ease forwards;
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.vm-card {
    transition: var(--transition);
}

.vm-card:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--primary) !important;
}

.expertise-item i {
    transition: transform 0.3s ease;
}

.expertise-item:hover i {
    transform: scale(1.2);
    color: var(--primary) !important;
}

.feature-box i {
    transition: transform 0.3s ease;
}

.feature-box:hover i {
    transform: rotate(10deg) scale(1.1);
}

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

/* Responsive Adjustments for About Page */
@media (max-width: 991px) {
    .welcome-grid, .features-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .welcome-badge-area {
        order: -1;
    }
    
    .about-hero {
        height: auto !important;
        padding: 100px 0;
    }
    
    .hero-content-premium h1 {
        font-size: 2.8rem !important;
    }
    
    .story-flex {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .expertise-list {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .hero-content-premium h1 {
        font-size: 2.2rem !important;
    }
    
    .vm-card {
        padding: 30px !important;
    }
    
    .section {
        padding: 60px 0 !important;
    }
}

