/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #e74c3c;
    color: white;
}

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

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

.btn-secondary:hover {
    background-color: #e74c3c;
    color: white;
}

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

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

.nav-item {
    display: flex;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #e74c3c;
}

/* Notification Bell Styles */
.notification-bell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.notification-bell:hover {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.notification-bell i {
    font-size: 1.2rem;
}

.notification-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10000;
}

.hamburger:hover {
    background-color: rgba(231, 76, 60, 0.1);
}

.bar {
    width: 28px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
    transform-origin: center;
}

.hamburger:hover .bar {
    background-color: #e74c3c;
}

.hamburger.active {
    background-color: rgba(231, 76, 60, 0.15);
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: #e74c3c;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: #e74c3c;
}

/* Home Page Navbar Overlay Style */
body.home-page .navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

body.home-page .navbar .nav-container {
    background: transparent;
}

body.home-page .navbar .nav-logo a {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

body.home-page .navbar .nav-menu a {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

body.home-page .navbar .nav-menu a:hover {
    color: #e74c3c;
    text-shadow: none;
}

body.home-page .navbar .hamburger .bar {
    background-color: white;
}

/* Mobile navbar overlay adjustments */
@media (max-width: 768px) {
    body.home-page .navbar .nav-menu {
        background: transparent;
    }
    
    body.home-page .navbar .nav-menu a {
        color: white;
    }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-container {
    text-align: center;
    color: white;
}

.loading-logo {
    margin-bottom: 2rem;
    animation: logoFloat 2s ease-in-out infinite;
}

.logo-loader {
    width: 120px;
    height: 120px;
    filter: brightness(0) invert(1);
    animation: logoPulse 1.5s ease-in-out infinite;
}

.loading-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #e74c3c;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: textFadeIn 1s ease-in-out;
}

.loading-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: textFadeIn 1s ease-in-out 0.5s both;
}

.loading-spinner {
    margin-top: 2rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(231, 76, 60, 0.3);
    border-top: 4px solid #e74c3c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

/* Loading Animations */
@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Loading Screen */
@media (max-width: 768px) {
    .logo-loader {
        width: 80px;
        height: 80px;
    }
    
    .loading-text h2 {
        font-size: 1.8rem;
    }
    
    .loading-text p {
        font-size: 1rem;
    }
    
    .spinner {
        width: 40px;
        height: 40px;
        border-width: 3px;
    }
}

/* Hero Carousel Section */
.hero-carousel {
    position: relative;
    min-height: 100vh; /* Full viewport height by default */
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Tablet and Medium Screens */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-carousel {
        min-height: 90vh;
    }
    
    .hero-slide {
        height: 90vh;
    }
    
    .hero-carousel .hero-content {
        max-width: 700px;
        padding: 50px 35px;
    }
    
    .hero-carousel .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-carousel .hero-content p {
        font-size: 1.2rem;
    }
}

/* Large Desktop Screens */
@media (min-width: 1025px) {
    .hero-carousel {
        min-height: 100vh !important;
    }
    
    .hero-slide {
        height: 100vh !important;
    }
    
    .hero-carousel .hero-content {
        max-width: 800px;
        padding: 60px 40px;
    }
    
    .hero-carousel .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-carousel .hero-content p {
        font-size: 1.3rem;
    }
}

.hero-carousel-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

/* Remove background when there's a background image */
.hero-slide:has(.hero-background-image) {
    background: none;
}

/* Fallback for browsers that don't support :has() */
.hero-slide .hero-background-image {
    background: none;
}

.hero-slide .hero-background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Hero Carousel Specific Content Styles */
.hero-carousel .hero-content {
    max-width: 800px;
    padding: 0 40px;
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 60px 40px;
    color: white;
}

.hero-carousel .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    color: white;
}

.hero-carousel .hero-content p {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
    color: white !important;
}

.hero-carousel .hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.hero-carousel .hero-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.hero-carousel .hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.hero-carousel .hero-buttons .btn-primary {
    background: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
    position: relative;
    overflow: hidden;
}

.hero-carousel .hero-buttons .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.1), transparent);
    transition: left 0.5s;
}

.hero-carousel .hero-buttons .btn-primary:hover::before {
    left: 100%;
}

.hero-carousel .hero-buttons .btn-primary:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
}

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

.hero-carousel .hero-buttons .btn-secondary:hover {
    background: white;
    color: #333;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Hero Carousel Specific Overlay */
.hero-carousel .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
}

/* Hero Section (fallback) */
.hero {
    margin-top: 70px;
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    min-height: 60vh; /* Default: 60% height */
}

.hero-content {
    flex: 1;
    padding: 0 20px;
    max-width: 600px;
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Hero Carousel Navigation Controls */
.hero-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    border: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.hero-carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

/* Hero Carousel Dots */
.hero-carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.hero-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
}

.hero-dot.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Section Headers - Modern Design */
.section-header h2,
.services-section h2,
.projects-section h2,
.process-section h2,
.values-section h2,
.team-section h2,
.map-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #e74c3c;
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-left: 1.5rem;
}

.section-header h2::before,
.services-section h2::before,
.projects-section h2::before,
.process-section h2::before,
.values-section h2::before,
.team-section h2::before,
.map-section h2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -1rem;
    transform: translateY(-50%);
    width: 6px;
    height: 60px;
    background: #e74c3c;
    border-radius: 3px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}


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

.services-section .text-center {
    margin-top: 2rem;
}

.services-section .btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.services-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #e04a1a, #d63e18);
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Projects Section */
.projects-section {
    padding: 80px 0;
}


.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #f15a2c;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1rem;
}

.testimonial-rating i.filled {
    color: #ffc107;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.author-info {
    flex: 1;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.author-info .company {
    font-weight: 500;
    color: #f15a2c;
}

.project-type {
    display: inline-block;
    background: linear-gradient(135deg, #f15a2c, #e04a1a);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 4rem 0;
    background-color: white;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.achievement-card {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
}

.achievement-icon {
    margin-bottom: 1.5rem;
}

.achievement-icon i {
    font-size: 3rem;
    background: linear-gradient(135deg, #f15a2c, #e04a1a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.achievement-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.achievement-content p {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image {
    margin-bottom: 1.5rem;
}

.team-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f15a2c;
}

.team-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.team-info .position {
    font-size: 1rem;
    color: #f15a2c;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-info .bio {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f15a2c, #e04a1a);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.team-social .social-link:hover {
    transform: scale(1.1);
}

.team-social .social-link i {
    font-size: 1rem;
}

.project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(231, 76, 60, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.project-category {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: #2c3e50;
    color: white;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    margin-bottom: 2rem;
    color: #bdc3c7;
}

/* Footer */
/* Footer Styles - Mobile First */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 30px 0 15px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e74c3c 50%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Footer Brand Section - Mobile Simplified */
.footer-brand {
    text-align: center;
}

.footer-logo {
    margin-bottom: 0.75rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    max-width: 150px;
    filter: brightness(0) invert(1);
}

.footer-brand h3 {
    color: #e74c3c;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.footer-brand p {
    color: #bdc3c7;
    line-height: 1.5;
    margin-bottom: 1rem;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
}

/* Social Links - Mobile Simplified */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 50%;
    color: #e74c3c;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

/* Footer Sections - Mobile Simplified */
.footer-section {
    text-align: center;
}

.footer-section h4 {
    color: #e74c3c;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.2rem 0;
    font-size: 0.9rem;
}

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

/* Contact Section - Mobile Simplified */
.footer-contact {
    text-align: center;
}

.contact-item {
    display: block;
    margin-bottom: 0.75rem;
    text-align: left;
}

.contact-item i {
    color: #e74c3c;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.contact-item div {
    display: inline;
    text-align: left;
}

.contact-label {
    display: inline;
    color: #e74c3c;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 0.5rem;
}

.contact-item a,
.contact-item span {
    color: #bdc3c7;
    text-decoration: none;
    line-height: 1.3;
    font-size: 0.85rem;
}

.contact-item a:hover {
    color: #e74c3c;
}

/* Footer Bottom - Mobile Simplified */
.footer-bottom {
    border-top: 1px solid rgba(231, 76, 60, 0.2);
    padding-top: 1rem;
    margin-top: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.footer-bottom p {
    color: #bdc3c7;
    margin: 0;
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bottom-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.page-header p {
    font-size: 1.2rem;
    color: #bdc3c7;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.process-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Project Filter */
.project-filter {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #e74c3c;
    background-color: transparent;
    color: #e74c3c;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #e74c3c;
    color: white;
}

/* About Story */
.about-story {
    padding: 80px 0;
}

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

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.team-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.team-member {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
}

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

.member-role {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background-color: #2c3e50;
    color: white;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #bdc3c7;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-container h2,
.contact-info h2 {
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e8ed;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

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

/* Alert Styles */
.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Info - Contact Page */
.contact-page .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

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

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Project Detail */
.project-detail {
    padding: 120px 0 80px;
}

.project-header {
    margin-bottom: 3rem;
}

.breadcrumb {
    margin-bottom: 1rem;
    color: #666;
}

.breadcrumb a {
    color: #e74c3c;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.project-meta {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    color: #666;
}

.project-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.project-media {
    margin-bottom: 2rem;
}

.project-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 2rem;
}

.project-video {
    margin-top: 2rem;
}

.project-video video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.project-description h2 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.project-description p {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.project-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.related-projects {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.related-projects h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    min-width: 200px;
    z-index: 1000;
    display: none;
    margin-top: 0.25rem;
    border: 1px solid #e1e8ed;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu:hover {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #2c3e50;
    text-decoration: none;
    transition: background-color 0.3s ease;
    position: relative;
}

.dropdown-item:hover,
.dropdown-item.active {
    background-color: #f8f9fa;
    color: #e74c3c;
}

.dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 8px 8px;
}

/* User Dropdown Specific Styles */
.user-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.user-dropdown-trigger:hover {
    background-color: rgba(52, 152, 219, 0.1);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #3498db;
}

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

.user-name {
    font-weight: 500;
    color: #2c3e50;
}

.user-dropdown {
    min-width: 320px;
    padding: 0;
}

.dropdown-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

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

.user-details h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.user-details p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.verified-badge-small {
    width: 16px;
    height: 16px;
    margin-top: 0.25rem;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.dropdown-divider {
    height: 1px;
    background-color: #e1e8ed;
    margin: 0;
}

.user-dropdown .dropdown-item {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f8f9fa;
}

.user-dropdown .dropdown-item:last-child {
    border-bottom: none;
}

.user-dropdown .dropdown-item i {
    width: 20px;
    color: #666;
    font-size: 1.1rem;
}

.user-dropdown .dropdown-item span {
    flex: 1;
    font-weight: 500;
}

.user-dropdown .dropdown-item .badge {
    background-color: #e74c3c;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.user-dropdown .dropdown-item.logout {
    color: #e74c3c;
}

.user-dropdown .dropdown-item.logout:hover {
    background-color: #fdf2f2;
}

.user-dropdown .dropdown-item.logout i {
    color: #e74c3c;
}

/* Profile Page Styles */
.profile-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 3rem 0;
}

.profile-welcome {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position: relative;
}

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

.profile-info h1 {
    margin: 0 0 0.5rem 0;
    font-size: 2.5rem;
    font-weight: 700;
}

.profile-info p {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.verification-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    width: fit-content;
}

.verification-status .verified-badge {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.profile-content {
    padding: 3rem 0;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.profile-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.profile-card .card-header {
    background: #f8f9fa;
    padding: 1.5rem;
    border-bottom: 1px solid #e1e8ed;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-card .card-header h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.3rem;
}

.profile-card .card-content {
    padding: 1.5rem;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    margin-bottom: 0.5rem;
}

.action-item:hover {
    background-color: #f8f9fa;
}

.action-item i {
    color: #3498db;
    font-size: 1.2rem;
}

.account-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
}

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

.info-item label {
    font-weight: 600;
    color: #666;
}

.info-item span {
    color: #2c3e50;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 3rem; }

/* Responsive Design */

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
.footer-brand {
    /* Natural order */
}
    
    .footer-contact {
        /* Natural order */
    }
    
    .footer-section {
        text-align: left;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .footer-bottom-links {
        justify-content: flex-end;
    }
}

/* Medium Screens - Hero Height */
@media (min-width: 769px) and (max-width: 1199px) {
    .hero {
        min-height: 80vh; /* Medium screens: 80% height */
    }
}

/* Desktop Styles */
@media (min-width: 1025px) {
    .footer {
        padding: 60px 0 30px;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        align-items: start;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-section {
        min-width: 0;
        overflow: hidden;
    }
    
    .footer-brand {
        text-align: left;
    }
    
    .footer-brand p {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .footer-section {
        text-align: left;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-bottom-links {
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .logo-img {
        height: 35px;
        max-width: 150px;
    }
    
    .notification-bell {
        width: 35px;
        height: 35px;
    }
    
    .notification-bell i {
        font-size: 1rem;
    }
    
    .notification-badge {
        width: 16px;
        height: 16px;
        font-size: 0.6rem;
        top: 3px;
        right: 3px;
    }
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    visibility: hidden;
}

.mobile-menu.active {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0 30px 0;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 1px solid rgba(231, 76, 60, 0.1);
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-nav-links,
.mobile-user-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li,
.mobile-user-links li {
    margin: 0;
    position: relative;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 18px 30px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(231, 76, 60, 0.05) 100%);
    transition: width 0.3s ease;
    z-index: -1;
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before {
    width: 100%;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #e74c3c;
    border-left-color: #e74c3c;
    transform: translateX(5px);
}

.mobile-nav-link i {
    margin-right: 15px;
    width: 22px;
    text-align: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover i,
.mobile-nav-link.active i {
    transform: scale(1.1);
    color: #e74c3c;
}

.mobile-badge {
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: auto;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-notification-badge {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 0.75rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    animation: pulse 2s infinite;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
    border: 2px solid white;
}

.mobile-menu-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(231, 76, 60, 0.2) 50%, transparent 100%);
    margin: 25px 30px;
    border-radius: 1px;
    position: relative;
}

.mobile-menu-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background-color: #e74c3c;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
}

.mobile-user-links .mobile-nav-link {
    padding: 15px 30px;
    font-size: 0.95rem;
    color: #34495e;
}

.mobile-user-links .mobile-nav-link i {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.mobile-user-links .mobile-nav-link:hover i,
.mobile-user-links .mobile-nav-link.active i {
    color: #e74c3c;
}

/* Mobile Menu Header */
.mobile-menu-header {
    padding: 20px 30px;
    border-bottom: 1px solid rgba(231, 76, 60, 0.1);
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-header h3 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-menu-close {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.mobile-menu-close::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(231, 76, 60, 0.05) 100%);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.mobile-menu-close:hover::before {
    transform: scale(1);
}

.mobile-menu-close i {
    font-size: 1.2rem;
    color: #7f8c8d;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover i {
    color: #e74c3c;
    transform: rotate(90deg) scale(1.1);
}

.mobile-menu-close:active {
    transform: scale(0.95);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 30px;
    border-top: 1px solid rgba(231, 76, 60, 0.1);
    background: rgba(248, 249, 250, 0.8);
    backdrop-filter: blur(10px);
}

.mobile-menu-footer p {
    color: #7f8c8d;
    font-size: 0.85rem;
    margin: 0;
    text-align: center;
}

/* Enhanced animations */
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

.mobile-nav-links li {
    animation: fadeInUp 0.4s ease forwards;
}

.mobile-nav-links li:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-links li:nth-child(2) { animation-delay: 0.15s; }
.mobile-nav-links li:nth-child(3) { animation-delay: 0.2s; }
.mobile-nav-links li:nth-child(4) { animation-delay: 0.25s; }
.mobile-nav-links li:nth-child(5) { animation-delay: 0.3s; }
.mobile-nav-links li:nth-child(6) { animation-delay: 0.35s; }

.mobile-user-links li {
    animation: fadeInUp 0.4s ease forwards;
}

.mobile-user-links li:nth-child(1) { animation-delay: 0.4s; }
.mobile-user-links li:nth-child(2) { animation-delay: 0.45s; }
.mobile-user-links li:nth-child(3) { animation-delay: 0.5s; }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 0;
        min-height: 40vh; /* Mobile: 40% height */
    }
    
    /* Hero Carousel Mobile */
    .hero-carousel {
        min-height: 40vh; /* Mobile: 40% height */
    }
    
    .hero-slide {
        height: 40vh;
    }
    
    .hero-carousel .hero-content {
        max-width: 95%;
        padding: 20px 15px;
        margin: 0 10px;
    }
    
    .hero-carousel .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }
    
    .hero-carousel .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
        opacity: 0.9;
    }
    
    .hero-carousel .hero-buttons {
        flex-direction: row;
        align-items: center;
        gap: 0.8rem;
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .hero-carousel .hero-buttons .btn {
        flex: 1;
        max-width: 150px;
        padding: 10px 15px;
        font-size: 0.9rem;
        border-radius: 25px;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }
    
    /* Ensure content fits within 40vh on mobile */
    .hero-slide {
        padding: 10px 0;
        align-items: center;
        justify-content: center;
    }
    
    /* Hide navigation buttons on very small screens */
    @media (max-width: 480px) {
        .hero-carousel-btn {
            display: none;
        }
        
        .hero-carousel .hero-content h1 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .hero-carousel .hero-content p {
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }
        
        .hero-carousel .hero-content {
            padding: 15px 10px;
        }
    }
    
    .hero-carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        display: none; /* Hide on mobile, use swipe instead */
    }
    
    .hero-prev {
        left: 15px;
    }
    
    .hero-next {
        right: 15px;
    }
    
    .hero-carousel-dots {
        bottom: 20px;
        gap: 0.5rem;
    }
    
    .hero-dot {
        width: 12px;
        height: 12px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer responsive adjustments - Mobile Simplified */
    .footer {
        padding: 25px 0 12px;
    }
    
    .footer-content {
        gap: 1.2rem;
    }
    
    /* All sections visible on mobile */
    
    /* All contact items visible on mobile */
    
    .footer-brand h3 {
        font-size: 1.2rem;
    }
    
    .footer-brand p {
        font-size: 0.85rem;
        max-width: 260px;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .footer-section h4 {
        font-size: 0.95rem;
    }
    
    .footer .contact-item {
        gap: 0.4rem;
        margin-bottom: 0.6rem;
        justify-content: center;
    }
    
    .footer .contact-item div {
        text-align: center;
    }
    
    .footer .contact-item i {
        font-size: 0.9rem;
    }
    
    .contact-label {
        font-size: 0.75rem;
    }
    
    .footer-bottom-links {
        gap: 0.8rem;
    }
    
    .footer-bottom-links a {
        font-size: 0.75rem;
    }
    
    /* All footer bottom links are now visible on mobile */
    
    .story-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-steps,
    .values-grid,
    .team-grid,
    .achievements-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Mobile styles for new sections */
    .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .section-header h2,
    .services-section h2,
    .projects-section h2,
    .process-section h2,
    .values-section h2,
    .team-section h2,
    .map-section h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
        padding-left: 1rem;
    }
    
    .section-header h2::before,
    .services-section h2::before,
    .projects-section h2::before,
    .process-section h2::before,
    .values-section h2::before,
    .team-section h2::before,
    .map-section h2::before {
        left: -0.8rem;
        width: 4px;
        height: 40px;
    }
    
    .section-header p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Why Choose Us Section Mobile */
    .why-choose-us-section {
        padding: 3rem 0;
    }
    
    .achievement-card {
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .achievement-icon {
        margin-bottom: 1rem;
    }
    
    .achievement-icon i {
        font-size: 2rem;
    }
    
    .achievement-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .achievement-content p {
        font-size: 0.9rem;
    }
    
    /* Testimonials Section Mobile */
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-rating {
        margin-bottom: 1rem;
        justify-content: center;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .author-image {
        margin: 0 auto;
    }
    
    .author-info h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .author-info p {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }
    
    .project-type {
        font-size: 0.8rem;
        padding: 0.25rem 0.75rem;
    }
    
    /* Team Section Mobile */
    .team-section {
        padding: 3rem 0;
    }
    
    .team-card {
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .team-image {
        margin-bottom: 1rem;
    }
    
    .team-image img {
        width: 120px;
        height: 120px;
    }
    
    .team-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .team-info .position {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .team-info .bio {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .team-social {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .team-social .social-link {
        width: 35px;
        height: 35px;
    }
    
    .team-social .social-link i {
        font-size: 0.9rem;
    }
    
    /* Additional mobile optimizations for 768px */
    .services-section .text-center {
        margin-top: 2rem;
    }
    
    .projects-section .text-center {
        margin-top: 2rem;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .project-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-actions {
        flex-direction: column;
    }

    /* Mobile User Dropdown */
    .user-dropdown-trigger {
        padding: 0.5rem;
        border-radius: 50%;
    }

    .user-name {
        display: none;
    }

    .user-dropdown {
        min-width: 280px;
        right: -50px;
    }

    .dropdown-header {
        padding: 1rem;
    }

    .user-info {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .user-avatar-large {
        width: 50px;
        height: 50px;
    }

    .user-details h4 {
        font-size: 1rem;
    }

    .user-details p {
        font-size: 0.8rem;
    }

    /* Profile Page Mobile */
    .profile-welcome {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .profile-avatar {
        width: 100px;
        height: 100px;
    }

    .profile-info h1 {
        font-size: 2rem;
    }

    .profile-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .profile-card .card-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 200px;
    }
    
    /* Extra small mobile styles for new sections */
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.85rem;
    }
    
    .achievement-card {
        padding: 1rem 0.5rem;
    }
    
    .achievement-icon i {
        font-size: 1.8rem;
    }
    
    .achievement-content h3 {
        font-size: 1.3rem;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
    }
    
    .team-image img {
        width: 100px;
        height: 100px;
    }
    
    .team-info h3 {
        font-size: 1rem;
    }
    
    .team-info .position {
        font-size: 0.85rem;
    }
    
    .team-info .bio {
        font-size: 0.8rem;
    }
    
    /* Mobile optimizations for existing sections */
    .services-section .text-center {
        margin-top: 2rem;
    }
    
    .services-section .btn {
        width: 100%;
        max-width: 250px;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .projects-section .text-center {
        margin-top: 2rem;
    }
    
    .projects-section .btn {
        width: 100%;
        max-width: 250px;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .cta-section {
        padding: 3rem 0;
        text-align: center;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .cta-section p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-section .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Large Screen Responsive Design (1200px and above) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    .nav-container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    /* Hero Section - Large Screens */
    .hero {
        padding: 120px 0;
        min-height: 80vh; /* Large screens: 80% height */
        display: flex;
        align-items: center;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    }
    
    .hero-content {
        max-width: 700px;
        padding: 0 40px;
        flex: 1;
    }
    
    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 2rem;
        color: #2c3e50;
        font-weight: 700;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
        color: #666;
        line-height: 1.6;
    }
    
    .hero-buttons {
        gap: 1.5rem;
        display: flex;
        flex-wrap: wrap;
    }
    
    .hero-buttons .btn {
        padding: 15px 30px;
        font-size: 1.1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .hero-image {
        flex: 1;
        text-align: center;
        padding: 0 40px;
    }
    
    .hero-image img {
        max-width: 100%;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    
    /* Services Grid - Large Screens */
    .services-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        max-width: 1200px;
        margin: 0 auto 3rem;
    }
    
    .services-section .text-center {
        margin-top: 3rem;
    }
    
    .services-section .btn {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 2.5rem;
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        text-align: center;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    
    .service-card .service-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #ff6b35, #f7931e);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
    }
    
    .service-card .service-icon i {
        font-size: 2rem;
        color: white;
    }
    
    .service-card h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }
    
    .service-card p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #666;
    }
    
    /* Projects Grid - Large Screens */
    .projects-section {
        padding: 100px 0;
        background: white;
    }
    
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        max-width: 1200px;
        margin: 0 auto 3rem;
    }
    
    .project-card {
        transition: all 0.3s ease;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .project-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    
    .project-image {
        height: 280px;
        overflow: hidden;
    }
    
    .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .project-card:hover .project-image img {
        transform: scale(1.05);
    }
    
    .project-info {
        padding: 2rem;
    }
    
    .project-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }
    
    .project-info p {
        font-size: 1rem;
        line-height: 1.6;
        color: #666;
        margin-bottom: 1.5rem;
    }
    
    /* Section Headers - Large Screens */
    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: #2c3e50;
        font-weight: 700;
    }
    
    .section-header p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto;
        color: #666;
        line-height: 1.6;
    }
    
    /* CTA Section - Large Screens */
    .cta-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        color: white;
        text-align: center;
    }
    
    .cta-section h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: white;
    }
    
    .cta-section p {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
        color: rgba(255,255,255,0.9);
    }
    
    .cta-section .btn {
        padding: 18px 40px;
        font-size: 1.2rem;
        background: linear-gradient(135deg, #ff6b35, #f7931e);
        border: none;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .cta-section .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(255,107,53,0.3);
    }
}

/* Extra Large Screens (1400px and above) */
@media (min-width: 1400px) {
    .container {
        max-width: 1600px;
        padding: 0 60px;
    }
    
    .nav-container {
        max-width: 1600px;
        padding: 0 60px;
    }
    
    /* Hero Section - Extra Large */
    .hero {
        padding: 150px 0;
        min-height: 100vh; /* Extra large screens: 100% height */
    }
    
    .hero-content {
        max-width: 800px;
        padding: 0 60px;
    }
    
    .hero h1 {
        font-size: 4rem;
        margin-bottom: 2.5rem;
    }
    
    .hero p {
        font-size: 1.4rem;
        margin-bottom: 3rem;
    }
    
    .hero-buttons .btn {
        padding: 18px 35px;
        font-size: 1.2rem;
    }
    
    /* Services Grid - Extra Large */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem;
        max-width: 1400px;
    }
    
    .service-card {
        padding: 3rem;
    }
    
    /* Projects Grid - Extra Large */
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem;
        max-width: 1400px;
    }
    
    /* Section Headers - Extra Large */
    .section-header h2 {
        font-size: 3rem;
        margin-bottom: 2rem;
    }
    
    .section-header p {
        font-size: 1.3rem;
        max-width: 800px;
    }
}
