@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #2C3E50;
    /* Industrial Blue-Gray */
    --primary-light: #3E556B;
    /* Softer Steel Blue */
    --primary-dark: #1A252F;
    /* Darker Shade */

    --secondary: #F39C12;
    /* Construction Orange */
    --accent: #D35400;
    /* Deep Industrial Orange */

    --dark: #1B1B1B;
    /* Neutral Dark */
    --light: #F9FAFB;
    /* Neutral Light */
    --white: #FFFFFF;

    --gray-100: #F5F5F5;
    --gray-200: #E0E0E0;
    --gray-600: #4B4B4B;

    --gradient-1: linear-gradient(135deg, #2C3E50 0%, #3E556B 100%);
    --gradient-2: linear-gradient(135deg, #F39C12 0%, #D35400 100%);
    --gradient-3: linear-gradient(135deg, #2C3E50 0%, #F39C12 100%);

    --shadow: 0 10px 25px rgba(44, 62, 80, 0.15);
    --shadow-hover: 0 20px 40px rgba(44, 62, 80, 0.25);
}


* {
    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 {
    height: 100vh;
    padding: 0 10rem;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1000px;
    z-index: 2;
    align-items: center;
    justify-items: center;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideUp 1s ease-out;
}

.hero-subtitle {
    padding-top: 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: slideUp 1s ease-out 0.3s both;
}

.hero-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.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: 2.5rem;
    }

    .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-title1 {
    font-size: 3vw;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.section-title {
    font-size: 3vw;
    font-weight: 800;
    color: white !important;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.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 {
        display: flex;
        flex-direction: column-reverse !important;
        gap: 5px;
    }

    .about-text {
        order: 2;
        /* text neeche */
    }

    .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;
    justify-items: center;
}

.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-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white !important;
    margin-top: 1rem;
}

.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 Hero Section - matching Services style */
.about-hero {
     height: 80vh;
    padding: 0 10rem;
    background: linear-gradient(rgba(0, 0, 0, 0.267)),
        url('../images/aboutus.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    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-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: 80vh;
    padding: 0 10rem;
    background: linear-gradient(rgba(0, 0, 0, 0.267)),
        url('../images/tinshed2.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    text-align: center;
}

.contact-hero-content h1 {
    font-size: clamp(3.5rem, 6vw, 5rem);
    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: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.services-hero {
    height: 80vh;
    padding: 0 10rem;
    background: linear-gradient(rgba(0, 0, 0, 0.267)),
        url('../images/services.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    text-align: center;
}
.services-hero-content h1 {
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.services-hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .services-hero {
        background-position: 80% center; /* 20% from left */
    }
}




/* 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);
}

/* Default Header */
header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: #fff;
    /* Default background */
}

/* Scroll hone par lagne wala effect */
header.scrolled {
    background: rgba(255, 255, 255, 0.322);
    /* Transparent white */
    backdrop-filter: blur(10px);
    /* Glass blur effect */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* halka shadow */
}

/* 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;
    }

    .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;
    }

    .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;
    }
}

.nav-links a.active {
    color: var(--secondary);
    font-weight: 600;
    position: relative;
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transition: background-image 1s ease-in-out;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.486);
    /* हल्का dark tint */
    backdrop-filter: blur(2px);
    /* blur effect */
    z-index: 0;
    /* content ke niche */
}

.hero-content {
    position: relative;
    z-index: 1;
}

.location-section {
    padding: 2rem 1rem;
    background: #f7f9fb;
    /* light neutral bg */
}

.location-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.map-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .map-wrapper iframe {
        height: 280px;
    }
}

/* Gallery grid items */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    /* adjust gap between images */
}

.gallery-item {
    position: relative;
    flex: 1 1 calc(33.333% - 10px);
    /* 3 images per row */
    height: 250px;
    /* fixed height for all images */
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* images fully fit container, crop if needed */
}

/* Gallery overlay */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-item {
        flex: 1 1 calc(50% - 10px);
        /* 2 per row on mobile */
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        flex: 1 1 100%;
        /* 1 per row on small devices */
        height: 180px;
    }
}

/* Carousel container height */
#aboutCarousel .carousel-inner {
    height: 400px;
    /* adjust as needed */
}

/* Carousel images fit container */
#aboutCarousel .carousel-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* maintain aspect ratio, crop if needed */
}

/* Trust Section */
.trust {
    padding: 80px 20px;
    background: #f8faff;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust .section-header {
    margin-bottom: 50px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.trust-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.trust-icon {
    font-size: 42px;
    color: #ff6600;
    margin-bottom: 18px;
}

.trust-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2d3e50;
}

.trust-description {
    font-size: 15px;
    color: #6b7a90;
    line-height: 1.6;
}

/* Sirf Mobile Fix */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .about-text,
    #aboutCarousel {
        flex: 1 1 100%;
        max-width: 100%;
    }

    /* Order set kiya */
    .about-text {
        order: 1;
        /* Text pehle */
    }

    #aboutCarousel {
        order: 2;
        /* Carousel baad me */
        margin-top: 20px;
    }

    .highlight-item {
        flex: 1 1 100%;
    }

    .image-gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-cta {
        text-align: center;
        margin-top: 15px;
    }

    .hero-cta a {
        display: inline-block;
        padding: 10px 18px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .image-gallery .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    #aboutCarousel .carousel-inner {
        height: auto;
        /* adjust as needed */
    }

    .about-text p {
        text-align: justify;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block !important;
    }
}

.about-text p {
    text-align: justify;
}

.mobile {
    display: none;
}


.gallery-title {
    text-align: center;
    margin: 20px 0;
    font-size: 2rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 15px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
}
