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

:root {
    --primary-color: #D32F2F;
    --secondary-color: #1976D2;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --text-color: #333;
    --border-color: #ddd;
    --success-color: #4caf50;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ Navigation Bar ============ */
.navbar {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a2a2a 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.logo i {
    color: var(--primary-color);
    font-size: 2rem;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.btn-contact {
    background: var(--primary-color) !important;
    padding: 8px 16px !important;
    border-radius: 5px;
    color: white !important;
}

.btn-contact:hover,
.btn-contact.active {
    color: white !important;
    background: #c41c1c !important;
}

.btn-contact::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: var(--transition);
}

/* ============ Hero Section ============ */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a2a2a 100%);
    color: white;
    padding: 150px 20px;
    text-align: center;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-delay {
    animation: fadeIn 0.8s ease forwards 0.2s;
    opacity: 0;
}

.slide-up {
    animation: slideUp 0.8s ease forwards;
}

/* ============ Buttons ============ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

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

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

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

.btn-light:hover {
    background: var(--light-color);
}

/* ============ Stats Section ============ */
.stats {
    background: var(--light-color);
    padding: 60px 20px;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 1.1rem;
    color: #666;
}

/* ============ Section Headers ============ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* ============ About Preview ============ */
.about-preview {
    padding: 80px 20px;
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.feature span {
    font-weight: 600;
    color: var(--text-color);
}

.about-image {
    text-align: center;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    width: 100%;
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: white;
}

/* ============ Services Grid ============ */
.services-preview {
    padding: 80px 20px;
    background: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border-top: 5px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.service-cta {
    text-align: center;
}

.hover-lift {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* ============ Why Choose Us ============ */
.why-choose-us {
    padding: 80px 20px;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    transition: var(--transition);
}

.why-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.why-number {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 10px;
}

.why-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.why-card p {
    color: #666;
    line-height: 1.6;
}

/* ============ Portfolio Preview ============ */
.portfolio-preview {
    padding: 80px 20px;
    background: var(--light-color);
}

.portfolio-carousel {
    margin-bottom: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 5;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(211, 47, 47, 0.8);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
    z-index: 10;
    border: 2px solid white;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.portfolio-item {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
    transition: var(--transition);
    z-index: 2;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.portfolio-item:hover::before {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.3), rgba(211, 47, 47, 0.6));
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    color: white;
    transform: translateY(50px);
    transition: var(--transition);
    z-index: 5;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    margin-bottom: 8px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    margin: 0;
}

.portfolio-cta {
    text-align: center;
    padding: 20px 0;
}

/* ============ CTA Section ============ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ============ Footer ============ */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

.footer-bottom a {
    color: var(--primary-color);
}

/* ============ Page Header ============ */
.page-header {
    background: linear-gradient(135deg, var(--dark-color), #2a2a2a);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
}

/* ============ About Page ============ */
.our-story {
    padding: 80px 20px;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-text p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.story-stat {
    background: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border-left: 5px solid var(--primary-color);
}

.story-stat h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.story-stat p {
    color: #666;
    margin: 0;
}

/* ============ Goals Section ============ */
.goals-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.goal-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.goal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.goal-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.goal-card p {
    color: #666;
    line-height: 1.6;
}

/* ============ Company Details ============ */
.company-details {
    padding: 80px 20px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.detail-item {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

.detail-item h4 {
    color: var(--dark-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-item h4 i {
    color: var(--primary-color);
}

.detail-item p {
    color: #666;
    margin: 5px 0;
}

/* ============ Operating Areas ============ */
.operating-areas {
    padding: 80px 20px;
    background: var(--light-color);
}

.areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.area-badge {
    background: white;
    padding: 15px 20px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.area-badge:hover {
    background: var(--primary-color);
    color: white;
}

/* ============ Why Section ============ */
.why-section {
    padding: 80px 20px;
}

.why-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.why-item-content h4 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.why-item-content p {
    color: #666;
    line-height: 1.6;
}

/* ============ Services Full Page ============ */
.services-full {
    padding: 60px 20px;
}

.service-detail {
    background: var(--light-color);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.service-detail-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.service-detail-header h2 {
    color: var(--dark-color);
    margin: 0;
}

.service-detail-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    margin: 20px 0;
}

.service-list li {
    padding: 10px 0;
    padding-left: 25px;
    color: #555;
    position: relative;
}

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

/* ============ Equipment Section ============ */
.equipment-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.equipment-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.equipment-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.equipment-item ul {
    list-style: none;
}

.equipment-item li {
    color: #666;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

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

/* ============ Capacity Section ============ */
.capacity-section {
    padding: 80px 20px;
}

.capacity-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.capacity-item {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.capacity-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.capacity-item p {
    color: #666;
}

/* ============ Service Process ============ */
.service-process {
    padding: 80px 20px;
    background: var(--light-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.process-step {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 10px;
}

.process-step h4 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.process-step p {
    color: #666;
    font-size: 0.95rem;
}

/* ============ Projects List ============ */
.projects-intro {
    padding: 40px 20px;
    text-align: center;
    background: var(--light-color);
}

.projects-intro p {
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.projects-list {
    padding: 80px 20px;
    background: white;
}

.projects-grid {
    display: grid;
    gap: 40px;
}

.project-category {
    background: var(--light-color);
    padding: 40px;
    border-radius: 10px;
}

.project-category h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 30px;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 15px;
}

.projects-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.project-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.project-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.project-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.project-item h4 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 1rem;
}

.project-item p {
    color: #666;
    font-size: 0.9rem;
}

.projects-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    transition: var(--transition);
    z-index: 2;
}

.gallery-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.gallery-item:hover::before {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.4), rgba(211, 47, 47, 0.7));
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
    color: white;
    transform: translateY(60px);
    transition: var(--transition);
    z-index: 5;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin: 0;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
}

/* ============ Projects Gallery Section ============ */
.projects-gallery-section {
    padding: 80px 20px;
    background: var(--light-color);
}

/* ============ Project Highlights ============ */
.project-highlights {
    padding: 80px 20px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    border-top: 5px solid var(--primary-color);
}

.highlight-card h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.highlight-card p {
    color: #666;
    line-height: 1.6;
}

/* ============ Team Members ============ */
.team-intro {
    padding: 40px 20px;
    text-align: center;
    background: var(--light-color);
}

.team-intro p {
    color: #666;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.team-members {
    padding: 80px 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.team-member {
    background: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.member-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: white;
}

.member-info {
    padding: 25px;
}

.member-info h3 {
    color: var(--dark-color);
    margin-bottom: 8px;
}

.designation {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px !important;
}

.experience {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px !important;
}

.experience i {
    margin-right: 5px;
}

.bio {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============ Team Stats ============ */
.team-stats {
    padding: 80px 20px;
    background: var(--light-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-box {
    background: white;
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-box p {
    color: #666;
    font-size: 1.1rem;
}

/* ============ Expertise Grid ============ */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.expertise-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.expertise-item h4 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.expertise-item p {
    color: #666;
    line-height: 1.6;
}

/* ============ Join Team Section ============ */
.join-team {
    padding: 60px 20px;
    background: var(--light-color);
    text-align: center;
}

.join-team p {
    color: #666;
    font-size: 1.05rem;
    margin: 15px 0;
}

.join-team a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.join-team a:hover {
    text-decoration: underline;
}

/* ============ Contact Section ============ */
.contact-section {
    padding: 80px 20px;
}

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

.contact-info {
    background: var(--light-color);
    padding: 40px;
    border-radius: 10px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

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

.contact-details h4 {
    color: var(--dark-color);
    margin-bottom: 8px;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-hours {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-hours h4 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.contact-hours p {
    color: #666;
    margin: 0;
}

/* ============ Contact Form ============ */
.contact-form-container {
    background: white;
}

.contact-form-container h2 {
    color: var(--dark-color);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(211, 47, 47, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    color: #d32f2f;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-error.show {
    display: block;
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.form-group.checkbox input {
    width: auto;
    margin: 0;
}

.form-group.checkbox label {
    margin: 0;
}

.form-message {
    padding: 15px;
    border-radius: 5px;
    display: none;
    margin-top: 10px;
}

.form-message.success {
    display: block;
    background: #c8e6c9;
    color: #2e7d32;
    border: 1px solid #66bb6a;
}

.form-message.error {
    display: block;
    background: #ffcdd2;
    color: #c62828;
    border: 1px solid #ef5350;
}

/* ============ Map Section ============ */
.map-section {
    padding: 80px 20px;
    background: var(--light-color);
}

/* ============ Service Areas Contact ============ */
.service-areas-contact {
    padding: 80px 20px;
}

.areas-coverage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.area-item {
    background: var(--light-color);
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    color: var(--text-color);
    transition: var(--transition);
}

.area-item i {
    color: var(--primary-color);
    margin-right: 8px;
}

.area-item:hover {
    background: var(--primary-color);
    color: white;
}

.area-item:hover i {
    color: white;
}

/* ============ FAQ Section ============ */
.faq-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.faq-items {
    display: grid;
    gap: 20px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.faq-item h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h4 i {
    color: var(--primary-color);
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    display: none;
}

.faq-item.active p {
    display: block;
}

/* ============ Lightbox Modal ============ */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomIn 0.3s ease-in-out;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

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

#lightboxImage {
    max-width: 85vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
    color: white;
    text-align: center;
    font-size: 1.1rem;
    margin-top: 20px;
    padding: 0 20px;
    max-width: 85vw;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: 0.3s;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(211, 47, 47, 0.8);
    color: white;
    border: none;
    padding: 15px 18px;
    font-size: 1.8rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

/* ============ Legal Pages (Privacy & Terms) ============ */
.legal-section {
    padding: 60px 20px;
    background: white;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--light-color);
    padding: 40px;
    border-radius: 10px;
}

.legal-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 15px;
}

.last-updated {
    color: #888;
    font-style: italic;
    margin-bottom: 30px;
}

.legal-block {
    margin: 30px 0;
    line-height: 1.8;
}

.legal-block h3 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-top: 25px;
}

.legal-block p {
    color: #555;
    margin-bottom: 15px;
}

.legal-block ul {
    list-style: none;
    padding: 0 0 0 20px;
}

.legal-block li {
    color: #555;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.legal-block li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.contact-info {
    background: white;
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
    margin-top: 15px;
}

.contact-info p {
    margin: 8px 0;
}

/* ============ Responsive Design ============ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-color);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        z-index: 100;
    }

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

    .nav-links a {
        padding: 12px 0;
        border-bottom: 1px solid #333;
        position: relative;
        display: block;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 3px;
        background: var(--primary-color);
        transition: var(--transition);
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
        width: 100%;
    }

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

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .content-grid,
    .story-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .services-grid,
    .why-grid,
    .portfolio-grid,
    .goals-grid,
    .projects-gallery {
        grid-template-columns: 1fr;
    }

    .why-list,
    .projects-items,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .why-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .stat-card,
    .why-card,
    .goal-card {
        padding: 20px;
    }

    .story-stats {
        grid-template-columns: 1fr;
    }

    .faq-items {
        grid-template-columns: 1fr;
    }
}

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

    .hero p {
        font-size: 1rem;
    }

    .page-header {
        padding: 50px 20px;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .stats .container {
        grid-template-columns: 1fr;
    }

    .stat-card h3 {
        font-size: 2rem;
    }

    .service-card,
    .goal-card,
    .why-card {
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .details-grid,
    .equipment-grid,
    .expertise-grid,
    .highlights-grid {
        grid-template-columns: 1fr;
    }
}