@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Primary Colors - Premium Deep Navy */
    --primary: #1A1F3A;
    --primary-light: #2D3561;
    --primary-dark: #0F1426;

    /* Secondary Colors - Royal Purple */
    --secondary: #6C5CE7;
    --secondary-light: #A29BFE;
    --secondary-dark: #5B4FCF;

    /* Accent Colors - Luxury Rose Gold */
    --accent: #E74C3C;
    --accent-light: #FF6B6B;
    --accent-dark: #C0392B;

    /* Premium Colors - Luxury Teal */
    --teal: #00C9A7;
    --teal-light: #4ECDC4;
    --teal-dark: #00B894;

    /* Premium Colors - Golden Amber */
    --amber: #FFB800;
    --amber-light: #FFCE47;
    --amber-dark: #FF9500;

    /* Premium Colors - Deep Crimson */
    --crimson: #DC143C;
    --crimson-light: #E91E63;
    --crimson-dark: #B71C1C;

    /* Base Colors */
    --dark: #0D0D0D;
    --light: #FDFDFD;
    --white: #FFFFFF;

    /* Neutral Grays - Premium Tones */
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;

    /* Premium Gradients */
    --gradient-1: linear-gradient(135deg, #1A1F3A 0%, #2D3561 100%);
    --gradient-2: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%);
    --gradient-3: linear-gradient(135deg, #E74C3C 0%, #FF6B6B 100%);
    --gradient-luxury: linear-gradient(135deg, #00C9A7 0%, #4ECDC4 100%);
    --gradient-premium: linear-gradient(135deg, #FFB800 0%, #FFCE47 100%);
    --gradient-royal: linear-gradient(135deg, #1A1F3A 0%, #6C5CE7 100%);
    --gradient-fire: linear-gradient(135deg, #DC143C 0%, #E74C3C 100%);

    /* Premium Shadows */
    --shadow: 0 10px 25px rgba(26, 31, 58, 0.15);
    --shadow-hover: 0 20px 40px rgba(26, 31, 58, 0.25);
    --shadow-lg: 0 20px 50px rgba(26, 31, 58, 0.18);
    --shadow-xl: 0 30px 70px rgba(26, 31, 58, 0.22);

    /* Luxury Color Shadows */
    --shadow-purple: 0 15px 35px rgba(108, 92, 231, 0.15);
    --shadow-teal: 0 15px 35px rgba(0, 201, 167, 0.15);
    --shadow-amber: 0 15px 35px rgba(255, 184, 0, 0.15);
    --shadow-crimson: 0 15px 35px rgba(220, 20, 60, 0.15);

    /* Text Colors */
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-muted: var(--gray-500);
    --text-inverse: var(--white);

    /* Border Colors */
    --border-light: var(--gray-200);
    --border-medium: var(--gray-300);
    --border-dark: var(--gray-400);

    /* Background Colors */
    --bg-primary: var(--white);
    --bg-secondary: var(--gray-50);
    --bg-dark: var(--gray-900);
    --bg-overlay: rgba(15, 23, 42, 0.8);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
}



/* Hero Section */
.hero {
    width: 100%;
    height: 100vh;
    padding: 0 10rem;
    background: linear-gradient(#ffffff43, #ffffff43),
        url('../images/hero-bg.webp') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

}

.hero-heading {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    border-radius: 30px;
    background-color: var(--secondary-light);
    padding: 0.5rem 1rem;
}


.hero h1 {
    font-size: 5vw;
    font-weight: 800;
    margin: 1.5rem 0;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #fafafa;
    text-transform: uppercase;

}

.hero h1>span {
    color: var(--secondary-dark);
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
}

.hero-cta {
    text-align: center;
    margin-top: 2rem;

}

.cta-primary,
.cta-secondary {
    padding: 0.8rem 2.3rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-primary {
    background: var(--gradient-2);
    color: white;
    box-shadow: var(--shadow);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite linear;
}

.shape:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-duration: 15s;
}

.shape:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-duration: 20s;
    animation-direction: reverse;
}

.shape:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-duration: 18s;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 4rem 2rem;
        justify-content: center;
        text-align: center;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .cta-primary {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
}

/* About Section */
.about {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--light) 0%, rgba(152, 135, 112, 0.03) 100%);
    position: relative;
    overflow: hidden;
}


.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.8s ease-out;
}



.section-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 6rem;
}

.about-text {
    animation: fadeInLeft 1s ease-out 0.6s both;
}

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-2);
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(152, 135, 112, 0.08);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.highlight-text {
    flex: 1;
}

.highlight-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.highlight-text span {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.about-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.8s both;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    transform: rotate(2deg);
    transition: all 0.3s ease;
}

.image-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(152, 135, 112, 0.8));
    padding: 2rem;
    color: white;
}

.image-overlay h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.image-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}



/* Responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image img {
        height: 300px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }
}

/* Image Gallery */
.image-gallery {
    margin-top: 6rem;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.gallery-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-overlay span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, rgba(152, 135, 112, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
}



.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Responsive Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    animation: fadeInUp 0.8s ease-out both;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-2);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.feature-highlight {
    display: inline-block;
    background: rgba(152, 135, 112, 0.1);
    color: var(--primary);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* MEDIA QUERIES FOR RESPONSIVENESS */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .features {
        padding: 4rem 1rem;
    }

    .feature-card {
        padding: 2rem 1.2rem;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .feature-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .feature-card {
        padding: 1.8rem 1rem;
    }
}



/* About page Hero Section - matching Services style */
.about-hero {
    height: 60vh;
    padding: 0 10rem;
    background: linear-gradient(#6c5ce769, #6c5ce769),
        url('../images/3301.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.about-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Company Overview Card - matching Services detail cards */
.company-detail-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary);
}

.company-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.company-detail-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.company-detail-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.company-detail-title {
    flex: 1;
}

.company-detail-title h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.company-detail-title p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

.company-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.company-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.company-feature:hover {
    background: rgba(152, 135, 112, 0.1);
    transform: translateX(10px);
}

.company-feature i {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.company-feature span {
    font-weight: 500;
    color: var(--dark);
}

/* Statistics Section */
.stats-section {
    background: var(--gradient-1);
    color: white;
    padding: 6rem 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.stat-item {
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Team Section */
.team-section {
    padding: 6rem 2rem;
    background: var(--light);
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--primary);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    font-weight: 800;
}

.member-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.member-description {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 6rem 2rem;
    background: var(--light);
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.value-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.value-description {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* CTA Section - matching Services style */
.cta-section {
    background: var(--gradient-1);
    padding: 6rem 2rem;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn-primary {
    background: white;
    color: var(--primary);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================= */
/* RESPONSIVE MEDIA QUERIES */
/* ============================================= */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .about-hero {
        padding: 0 5rem;
    }

    .company-detail-card {
        padding: 2.5rem;
    }

    .stats-section,
    .team-section,
    .values-section {
        padding: 4rem 2rem;
    }

    .cta-section {
        padding: 4rem 2rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
        padding: 0 2rem;
    }

    .about-hero-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .about-hero-content p {
        font-size: 1.1rem;
    }

    /* Company Detail Cards */
    .company-detail-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .company-detail-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .company-detail-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .company-detail-title h3 {
        font-size: 1.8rem;
    }

    .company-detail-title p {
        font-size: 1rem;
    }

    /* Company Features Grid */
    .company-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .company-feature {
        padding: 0.8rem;
        justify-content: center;
    }

    .company-feature:hover {
        transform: translateY(-3px);
    }

    /* Statistics Grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    /* Team Grid */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-member {
        padding: 2.5rem 1.5rem;
    }

    .member-photo {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .member-name {
        font-size: 1.6rem;
    }

    .member-role {
        font-size: 1rem;
    }

    /* Values Grid */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-item {
        padding: 2rem 1.5rem;
    }

    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .value-title {
        font-size: 1.3rem;
    }

    /* CTA Section */
    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .about-hero {
        height: 40vh;
        padding: 0 1rem;
    }

    .about-hero-content h1 {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        margin-bottom: 0.8rem;
    }

    .about-hero-content p {
        font-size: 1rem;
    }

    /* Sections Padding */
    .stats-section,
    .team-section,
    .values-section,
    .cta-section {
        padding: 3rem 1rem;
    }

    /* Company Detail Cards */
    .company-detail-card {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .company-detail-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        border-radius: 15px;
    }

    .company-detail-title h3 {
        font-size: 1.5rem;
    }

    .company-detail-title p {
        font-size: 0.95rem;
    }

    /* Company Features */
    .company-feature {
        padding: 0.7rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    /* Statistics */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    /* Team Members */
    .team-member {
        padding: 2rem 1rem;
        border-radius: 15px;
    }

    .member-photo {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .member-name {
        font-size: 1.4rem;
    }

    .member-role {
        font-size: 0.95rem;
    }

    .member-description {
        font-size: 0.9rem;
    }

    /* Values */
    .value-item {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }

    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .value-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .value-description {
        font-size: 0.9rem;
    }

    /* CTA Section */
    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Extra Small Mobile Phones */
@media (max-width: 360px) {
    .about-hero {
        height: 35vh;
    }

    .about-hero-content h1 {
        font-size: 1.6rem;
    }

    .about-hero-content p {
        font-size: 0.9rem;
    }

    .company-detail-card {
        padding: 1.2rem;
    }

    .company-detail-title h3 {
        font-size: 1.3rem;
    }

    .stats-section,
    .team-section,
    .values-section,
    .cta-section {
        padding: 2.5rem 0.8rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .member-name {
        font-size: 1.3rem;
    }

    .value-title {
        font-size: 1.1rem;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }
}

/* Touch Device Hover Adjustments */
@media (hover: none) and (pointer: coarse) {

    .company-detail-card:hover,
    .stat-item:hover,
    .team-member:hover,
    .value-item:hover,
    .cta-btn:hover {
        transform: none;
    }

    .company-feature:hover {
        transform: none;
        background: rgba(152, 135, 112, 0.1);
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .about-hero {
        height: 70vh;
    }

    .stats-section,
    .team-section,
    .values-section {
        padding: 3rem 2rem;
    }
}




/* Additional styles for services page - Responsive */

/* Services Hero Section */
.services-hero {
     height: 60vh;
    padding: 0 10rem;
    background: linear-gradient(#6c5ce769, #6c5ce769),
        url('../images/4724.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.services-hero-content h1 {
    font-size: clamp(1.8rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.services-hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
}

/* Service Detail Cards */
.service-detail-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.service-detail-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.service-detail-title {
    flex: 1;
    min-width: 200px;
}

.service-detail-title h3 {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.service-detail-title p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--gray-600);
    line-height: 1.4;
}

.service-detail-card>p {
    font-size: clamp(0.95rem, 2vw, 1rem);
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

/* Service Features Grid */
.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-feature:hover {
    background: rgba(152, 135, 112, 0.1);
    transform: translateX(5px);
}

.service-feature i {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.service-feature span {
    font-weight: 500;
    color: var(--dark);
    font-size: clamp(0.85rem, 2vw, 1rem);
}

/* Process Section */
.process-section {
    background: var(--light);
    padding: 3rem 1rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 1rem;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: var(--primary);
    opacity: 0.3;
    display: none;
    /* Hide on mobile by default */
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
}

.process-step h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.process-step p {
    color: var(--gray-600);
    line-height: 1.5;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-1);
    padding: 3rem 1rem;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 150px;
    justify-content: center;
}

.cta-btn-primary {
    background: white;
    color: var(--primary);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Tablet Styles */
@media (min-width: 768px) {
    .services-hero {
        padding: 2rem 4rem;
        height: 65vh;
    }

    .service-detail-card {
        padding: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .service-detail-header {
        gap: 1.5rem;
    }

    .service-detail-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .service-features {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.25rem;
    }

    .process-section {
        padding: 4rem 2rem;
    }

    .process-steps {
        margin-top: 3.5rem;
    }

    .process-number {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .cta-section {
        padding: 4rem 2rem;
    }

    .cta-buttons {
        gap: 1.25rem;
    }

    .cta-btn {
        padding: 1rem 2.25rem;
        min-width: 160px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .services-hero {
        padding: 0 6rem;
        height: 70vh;
    }

    .service-detail-card {
        padding: 3rem;
        margin-bottom: 3rem;
    }

    .service-detail-header {
        gap: 2rem;
    }

    .service-detail-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        border-radius: 20px;
    }

    .service-features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .service-feature:hover {
        transform: translateX(10px);
    }

    .process-section {
        padding: 5rem 2rem;
    }

    .process-steps {
        margin-top: 4rem;
        grid-template-columns: repeat(5, 1fr);
    }

    .process-step::after {
        display: block;
    }

    .process-step:last-child::after {
        display: none;
    }

    .process-number {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .cta-section {
        padding: 6rem 2rem;
    }

    .cta-btn {
        padding: 1rem 2.5rem;
        min-width: 180px;
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .services-hero {
        padding: 0 8rem;
    }

    .process-steps {
        grid-template-columns: repeat(5, 1fr);
        gap: 3rem;
    }
}

/* Extra Large Desktop Styles */
@media (min-width: 1400px) {
    .services-hero {
        padding: 0 10rem;
    }
}

/* Mobile-specific adjustments */
@media (max-width: 480px) {
    .services-hero {
        height: 50vh;
        min-height: 350px;
        padding: 1rem 0.5rem;
    }

    .service-detail-card {
        padding: 1.25rem;
        border-radius: 15px;
        margin-bottom: 1.5rem;
    }

    .service-detail-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .service-detail-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        border-radius: 12px;
    }

    .service-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .service-feature {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .process-section {
        padding: 2rem 1rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .cta-section {
        padding: 2.5rem 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
    }
}

/* Ultra-wide screen adjustments */
@media (min-width: 1600px) {
    .services-hero-content {
        max-width: 1200px;
    }

    .about-container {
        max-width: 1400px;
        margin: 0 auto;
    }
}

/* Contact Hero Section - matching About style */
.contact-hero {
    height: 60vh;
    padding: 0 10rem;
    background: linear-gradient(#6c5ce769, #6c5ce769),
        url('../images/1760.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}





/* CTA Section - matching About style */
.cta-section {
    background: var(--gradient-1);
    padding: 6rem 2rem;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn-primary {
    background: white;
    color: var(--primary);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE DESIGN */

/* Tablet and smaller desktop screens */
@media (max-width: 1024px) {
    .contact-container {
        max-width: 90%;
        padding: 0 2rem;
    }

    .contact-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-card,
    .contact-form {
        padding: 2.5rem;
    }

    .contact-detail-header {
        gap: 1.5rem;
    }

    .contact-detail-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .contact-detail-title h3 {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }
}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
    .contact-hero {
        padding: 4rem 1rem;
        text-align: center;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

    .contact {
        padding-top: 4rem !important;
    }

    .contact-container {
        padding: 0 1rem;
    }

    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .contact-info-card,
    .contact-form {
        padding: 2rem;
        border-radius: 15px;
    }

    .contact-detail-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-detail-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto;
    }

    .contact-detail-title h3 {
        font-size: 1.5rem;
    }

    .contact-detail-title p {
        font-size: 1rem;
    }

    .info-item:hover {
        transform: none;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1.5rem 1rem;
    }

    .info-item i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .form-header h3 {
        font-size: 1.8rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
        border: 1px solid #000000;
    }

    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .cta-section {
        padding: 4rem 1rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .cta-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .contact-hero {
        padding: 3rem 1rem;
    }

    .contact-hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact {
        padding-top: 3rem !important;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .contact-info-card,
    .contact-form {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 12px;
    }

    .contact-detail-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .contact-detail-title h3 {
        font-size: 1.3rem;
    }

    .contact-detail-title p {
        font-size: 0.9rem;
    }

    .info-item {
        padding: 1rem;
    }

    .info-label {
        font-size: 0.8rem;
    }

    .info-value {
        font-size: 1rem;
    }

    .form-header {
        margin-bottom: 2rem;
    }

    .form-header h3 {
        font-size: 1.5rem;
    }

    .form-header p {
        font-size: 0.9rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
        border-radius: 8px;
        border: 1px solid #000000;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .submit-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        border-radius: 25px;
    }

    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .cta-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        max-width: 100%;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .contact-hero h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .contact-info-card,
    .contact-form {
        padding: 1rem;
    }

    .contact-detail-title h3 {
        font-size: 1.2rem;
    }

    .form-header h3 {
        font-size: 1.3rem;
    }

    .cta-content h2 {
        font-size: 1.3rem;
    }
}