/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #dc3545;
    --secondary: #ffc107;
    --light: #f8f9fa;
    --dark: #2c3e50;
    --gray: #6c757d;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-title h2::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--primary);
    bottom: -12px;
    left: 50%;
    transform: translateX(-70%);
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--secondary);
    bottom: -12px;
    left: 50%;
    transform: translateX(20%);
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--primary), #a10f1f);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: linear-gradient(135deg, #a10f1f, #7a0c17);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220,53,69,0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), #e0a800);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #e0a800, #c99700);
    box-shadow: 0 10px 25px rgba(255,193,7,0.3);
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
    max-width: 350px;
    transition: height 0.3s ease;
}

.logo h1 {
    font-size: 3rem;
    color: var(--primary);
    margin: 0;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.logo span {
    color: var(--secondary);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--secondary);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    height: calc(100vh - 80px);
    min-height: 600px;
    margin-top: 0;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7));
}

.slide .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-content .btn {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: var(--secondary);
    transform: scale(1.2);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--secondary);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* Legacy hero support */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 0;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.project-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.project-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.project-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.project-image {
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 20px;
}

.project-content h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.project-content p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* About Section - Modern Advanced Design */
#about {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220,53,69,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

#about::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,193,7,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

#about .container {
    position: relative;
    z-index: 1;
}

/* Modern About Section Design */
.about-hero-section {
    text-align: center;
    margin-bottom: 70px;
    padding: 40px 0;
}

.hero-tagline {
    margin-bottom: 25px;
}

.tagline-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(220,53,69,0.08), rgba(255,193,7,0.08));
    border: 2px solid rgba(220,53,69,0.2);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(220,53,69,0.1);
}

.tagline-badge i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.hero-main-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    color: var(--dark);
}

.title-line-1 {
    display: block;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.title-line-2 {
    display: block;
}

.highlight-word {
    background: linear-gradient(135deg, #dc3545, #ff6b35, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.highlight-word::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, transparent, #dc3545, #ff6b35, #ffc107, transparent);
    border-radius: 3px;
    opacity: 0.4;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
}

.divider-line {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 2px;
}

.divider-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 5px 20px rgba(220,53,69,0.3);
}

.about-content-modern {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 50px;
}

.about-main-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.intro-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--secondary), var(--primary), var(--secondary));
}

.intro-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(220,53,69,0.25);
}

.intro-text .lead-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #2c3e50;
    margin: 0;
}

.intro-text .lead-text strong {
    color: var(--dark);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ========== PREMIUM TEXT SECTION DESIGN ========== */

/* Premium Brand Name - Clean & Bold */
.brand-name {
    display: inline;
    font-weight: 800;
    font-size: 1.1em;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #dc3545;
    position: relative;
}

.brand-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #dc3545, #ffc107);
    border-radius: 1px;
}

/* Service Highlights - Elegant Inline Style */
.service-highlight {
    font-weight: 700;
    color: #2c3e50;
    position: relative;
    padding-bottom: 2px;
    border-bottom: 2px solid #ffc107;
    transition: all 0.3s ease;
}

.service-highlight:hover {
    color: #dc3545;
    border-bottom-color: #dc3545;
}

/* Premium Quote Block - Clean Executive Style */
.premium-quote {
    position: relative;
    background: #fafbfc;
    border-radius: 16px;
    padding: 32px 35px 32px 55px;
    margin: 28px 0;
    border-left: 4px solid #dc3545;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: visible;
}

/* Quote Icon - Circular Badge */
.premium-quote .quote-icon {
    position: absolute;
    top: 50%;
    left: -18px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(220,53,69,0.35);
}

.premium-quote .quote-icon i {
    font-size: 0.9rem;
    color: white;
}

.premium-quote p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #555;
    font-style: italic;
}

.premium-quote strong {
    color: #2c3e50;
    font-weight: 700;
    font-style: normal;
}

/* Keyword Highlight - Subtle Yellow Marker */
.keyword-highlight {
    font-weight: 700;
    color: #2c3e50;
    font-style: normal;
    background: linear-gradient(to top, rgba(255,193,7,0.35) 40%, transparent 40%);
    padding: 0 3px;
    transition: background 0.3s ease;
}

.keyword-highlight:hover {
    background: linear-gradient(to top, rgba(255,193,7,0.5) 50%, transparent 50%);
}

/* Premium Card - Clean Design */
.premium-card {
    position: relative;
    background: #fff;
    border: none;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc3545, #ffc107);
    border-radius: 24px 24px 0 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .brand-name {
        letter-spacing: 2px;
    }

    .premium-quote {
        padding: 28px 25px 28px 45px;
        margin: 22px 0;
    }

    .premium-quote .quote-icon {
        width: 32px;
        height: 32px;
        left: -16px;
    }

    .premium-quote .quote-icon i {
        font-size: 0.8rem;
    }

    .premium-quote p {
        font-size: 0.98rem;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .brand-name {
        letter-spacing: 1.5px;
        font-size: 1em;
    }

    .premium-quote {
        padding: 24px 20px 24px 40px;
        margin: 18px 0;
        border-radius: 12px;
    }

    .premium-quote .quote-icon {
        width: 28px;
        height: 28px;
        left: -14px;
    }

    .premium-quote .quote-icon i {
        font-size: 0.7rem;
    }

    .premium-quote p {
        font-size: 0.92rem;
    }
}

.modern-info-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    gap: 25px;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.info-card:hover::before {
    transform: scaleY(1);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
    border-color: rgba(220,53,69,0.2);
}

.info-card.highlight-card {
    background: linear-gradient(135deg, rgba(220,53,69,0.03), rgba(255,193,7,0.03));
    border-color: rgba(220,53,69,0.15);
}

.info-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary), #a10f1f);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(220,53,69,0.25);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(220,53,69,0.35);
}

.info-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 12px 0;
}

.info-text p {
    margin: 0;
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.8;
}

.info-text strong {
    color: var(--dark);
    font-weight: 700;
}

.cta-section-modern {
    margin-top: 20px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--primary), #a10f1f);
    color: white;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(220,53,69,0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(220,53,69,0.4);
    background: linear-gradient(135deg, #a10f1f, #7a0c17);
}

.btn-hero i {
    transition: transform 0.3s ease;
}

.btn-hero:hover i {
    transform: translateX(5px);
}

.about-image-modern {
    position: relative;
    height: 100%;
}

.image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    aspect-ratio: 4/5;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    color: var(--secondary);
    font-size: 1.2rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design for Modern About Section */
@media (max-width: 1200px) {
    .about-content-modern {
        gap: 50px;
    }
    
    .hero-main-title {
        font-size: 3.8rem;
    }
}

@media (max-width: 992px) {
    .about-content-modern {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image-modern {
        order: -1;
    }
    
    .image-frame {
        aspect-ratio: 16/9;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-main-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        margin-bottom: 50px;
        padding: 30px 0;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .title-line-1,
    .title-line-2 {
        font-size: 2.5rem;
    }
    
    .divider-line {
        width: 60px;
    }
    
    .divider-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .intro-card {
        padding: 30px 25px;
    }
    
    .intro-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .intro-text .lead-text {
        font-size: 1.05rem;
    }
    
    .info-card {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin: 0 auto;
    }
    
    .info-text h3 {
        font-size: 1.2rem;
    }
    
    .btn-hero {
        padding: 16px 35px;
        font-size: 1rem;
    }
    
    .floating-badge {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .hero-main-title {
        font-size: 2rem;
    }
    
    .title-line-1,
    .title-line-2 {
        font-size: 2rem;
    }
    
    .tagline-badge {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .about-hero-section {
        padding: 20px 0;
        margin-bottom: 40px;
    }
    
    .hero-divider {
        margin-top: 25px;
    }
    
    .intro-card {
        padding: 25px 20px;
    }
    
    .intro-icon-wrapper {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .modern-info-grid {
        gap: 20px;
    }
    
    .info-card {
        padding: 20px 15px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .info-text h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .info-text p {
        font-size: 0.95rem;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 15px 30px;
    }
    
    .floating-badge {
        bottom: 15px;
        right: 15px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* Footer-specific owner name styling - no popup */
footer .owner-name {
    font-size: 0.95em;
    cursor: default;
}

footer .owner-name::before {
    bottom: -1px;
    height: 1.5px;
}

footer .owner-name::after {
    display: none;
}

footer .owner-name:hover::before {
    bottom: -1px;
    height: 1.5px;
    border: none;
    background: linear-gradient(90deg, transparent, #f59e0b, #fbbf24, #f59e0b, transparent);
}

/* ============================================
   PREMIUM HERO TEXT - Modern Construction Brand
   With Unique Animations
   ============================================ */

/* About Intro Box - Unique Premium Container with Enhanced Effects */
.about-intro-box {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 50%, #fafafa 100%);
    padding: 32px 36px;
    margin: 24px 0;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.04),
        0 1px 2px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animated gradient border on left */
.about-intro-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg,
        #b91c1c 0%,
        #dc2626 25%,
        #fbbf24 50%,
        #dc2626 75%,
        #b91c1c 100%
    );
    background-size: 100% 200%;
    animation: borderFlow 3s ease infinite;
    box-shadow: 2px 0 12px rgba(185, 28, 28, 0.15);
}

@keyframes borderFlow {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 0% 100%; }
}

/* Animated corner glow */
.about-intro-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
    animation: cornerGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cornerGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.about-intro-box:hover {
    transform: translateY(-4px) scale(1.005);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.1),
        0 6px 16px rgba(185, 28, 28, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(185, 28, 28, 0.12);
}

.about-intro-box:hover::before {
    width: 6px;
    box-shadow: 3px 0 16px rgba(185, 28, 28, 0.25);
}

/* First paragraph styling */
.about-intro-box p:first-child {
    position: relative;
    margin: 0 0 20px 0;
    line-height: 1.9;
    font-size: 1.08rem;
    color: #3d4852;
    padding-left: 16px;
    border-left: 3px solid transparent;
    background: linear-gradient(to right, rgba(251, 191, 36, 0.06), transparent 80%);
    padding: 12px 16px;
    border-radius: 8px;
    margin-left: -8px;
}

/* Second paragraph styling */
.about-intro-box p:last-child {
    position: relative;
    margin: 0;
    padding-top: 20px;
    line-height: 1.85;
    font-size: 1rem;
    color: #5a6672;
    font-style: italic;
    border-top: none;
}

.about-intro-box p:last-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(185, 28, 28, 0.15), rgba(251, 191, 36, 0.2), rgba(185, 28, 28, 0.15), transparent);
}

/* Quote icon for second paragraph */
.about-intro-box p:last-child::after {
    content: '\201C';
    position: absolute;
    top: 8px;
    left: -8px;
    font-size: 3rem;
    color: rgba(185, 28, 28, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-intro-box {
        padding: 26px 28px;
        margin: 20px 0;
        border-radius: 16px;
    }

    .about-intro-box p:first-child {
        font-size: 1.02rem;
        padding: 10px 14px;
    }

    .about-intro-box p:last-child {
        font-size: 0.95rem;
    }

    .about-intro-box p:last-child::after {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .about-intro-box {
        padding: 20px 22px;
        margin: 16px 0;
        border-radius: 14px;
    }

    .about-intro-box p:first-child {
        font-size: 0.95rem;
        line-height: 1.8;
        padding: 8px 12px;
        margin-left: -4px;
    }

    .about-intro-box p:last-child {
        font-size: 0.9rem;
        line-height: 1.75;
        padding-top: 16px;
    }

    .about-intro-box p:last-child::after {
        font-size: 2rem;
        left: -4px;
    }
}

/* Keyframe Animations */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(185, 28, 28, 0.4); }
    50% { box-shadow: 0 0 8px 2px rgba(185, 28, 28, 0.2); }
}

@keyframes subtleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* RV BUILDERS - Shimmer Text Animation */
.company-highlight {
    position: relative;
    display: inline;
    font-weight: 800;
    font-size: 1.05em;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(
        90deg,
        #b91c1c 0%,
        #dc2626 25%,
        #fbbf24 50%,
        #dc2626 75%,
        #b91c1c 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
    animation: shimmer 3s linear infinite;
}

.company-highlight::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #b91c1c 0%, #dc2626 50%, #fbbf24 100%);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.company-highlight:hover::before {
    animation: pulseGlow 1s ease infinite;
}

.company-highlight::after {
    content: 'Your Trusted Construction Partner Since 2010';
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px) scale(0.95);
    background: #1a1a2e;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: none;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    pointer-events: none;
}

.company-highlight:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

/* Engineer Name - Underline Reveal Animation */
.owner-name {
    position: relative;
    display: inline;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.2px;
    color: #1e3a5f;
    -webkit-text-fill-color: #1e3a5f;
    cursor: pointer;
    transition: color 0.3s ease;
}

.owner-name:hover {
    color: #2563eb;
    -webkit-text-fill-color: #2563eb;
    animation: subtleBounce 0.5s ease;
}

.owner-name::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1e3a5f 0%, #3b82f6 50%, #1e3a5f 100%);
    border-radius: 1px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.owner-name:hover::before {
    width: 100%;
    left: 0;
}

.owner-name::after {
    content: 'D.C.E. | B.E. Civil | 15+ Years Experience';
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #1e3a5f;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.3px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.2);
    z-index: 9999;
    pointer-events: none;
}

.owner-name:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Services - Gradient Flow Underline Animation */
.services-highlight {
    position: relative;
    display: inline;
    font-weight: 600;
    letter-spacing: 0.1px;
    color: #374151;
    -webkit-text-fill-color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-highlight:hover {
    color: #b45309;
    -webkit-text-fill-color: #b45309;
}

.services-highlight::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #d97706, #fbbf24, #f59e0b, #d97706);
    background-size: 300% 100%;
    border-radius: 1px;
    animation: gradientFlow 2s ease infinite;
}

.services-highlight::after {
    content: 'Architectural Plans | 3D Visualization | Full Construction';
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px) rotateX(-10deg);
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.2);
    z-index: 9999;
    pointer-events: none;
    transform-origin: bottom center;
}

.services-highlight:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) rotateX(0deg);
}

/* ============================================
   RESPONSIVE - Mobile Adjustments
   ============================================ */
@media (max-width: 768px) {
    .company-highlight {
        letter-spacing: 2px;
        font-size: 1em;
    }

    .owner-name {
        white-space: normal;
    }

    /* Adjust tooltip for mobile */
    .company-highlight::after,
    .owner-name::after,
    .services-highlight::after {
        font-size: 0.7rem;
        padding: 8px 12px;
        max-width: 260px;
        white-space: normal;
        text-align: center;
        left: 0;
        transform: translateX(0) translateY(8px);
    }

    .company-highlight:hover::after,
    .owner-name:hover::after,
    .services-highlight:hover::after {
        transform: translateX(0) translateY(0);
    }
}

@media (max-width: 480px) {
    .company-highlight {
        letter-spacing: 1.5px;
    }

    .company-highlight::after,
    .owner-name::after,
    .services-highlight::after {
        font-size: 0.65rem;
        padding: 8px 10px;
        max-width: 220px;
    }
}

.about-cta {
    margin-top: 30px;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.btn-modern i {
    transition: transform 0.3s ease;
}

.btn-modern:hover i {
    transform: translateX(5px);
}

.btn-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-modern:hover::after {
    left: 100%;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-feature i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), #a10f1f);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-feature span {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220,53,69,0.1), rgba(255,193,7,0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.about-image:hover::before {
    opacity: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Why Choose Us Section - Modern Design */
.why-choose-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.feature-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #a10f1f);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(220,53,69,0.3);
}

.feature-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(220,53,69,0.1), rgba(255,193,7,0.1));
    border-radius: 50%;
    z-index: 1;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(220,53,69,0.4);
}

.feature-card:hover .feature-icon-bg {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.6;
}

.feature-content h3 {
    color: var(--dark);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-content h3 {
    color: var(--primary);
}

.feature-content p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Video Player Styles - Advanced */
.about-video {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    position: relative;
}

.about-video::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-video:hover::before {
    opacity: 1;
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.video-container:hover .video-overlay:not(.hidden) {
    background: rgba(0, 0, 0, 0.5);
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #a10f1f);
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.4);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(220, 53, 69, 0.5);
}

.play-btn i {
    margin-left: 5px;
}

/* Sound Toggle Button */
.sound-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
}

.sound-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.sound-btn.unmuted {
    background: linear-gradient(135deg, var(--primary), #a10f1f);
    border-color: var(--primary);
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, rgba(220,53,69,0.08), rgba(255,193,7,0.08));
}

.contact-wrapper {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.contact-wrapper::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(220,53,69,0.08);
    border-radius: 50%;
    top: -60px;
    right: -80px;
}

.contact-wrapper::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    background: rgba(255,193,7,0.15);
    border-radius: 50%;
    bottom: -60px;
    left: -40px;
}

.contact-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 20px;
    border-radius: 12px;
    background: rgba(248,249,250,0.7);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.08);
    background: white;
}

.contact-icon {
    background: linear-gradient(135deg, var(--primary), #a10f1f);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
    box-shadow: 0 10px 20px rgba(220,53,69,0.3);
}

.contact-details h3 {
    margin-bottom: 6px;
    color: var(--dark);
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--gray);
}

.contact-form {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.04);
}

.contact-form h3 {
    margin-bottom: 20px;
    color: var(--dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Map Section - Modern Design */
#map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

#map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.05);
}

.map-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary), var(--secondary));
    z-index: 2;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(0%) brightness(1.02);
    transition: filter 0.3s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%) brightness(1.05);
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    pointer-events: none;
}

.map-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    animation: fadeInUp 0.5s ease;
}

.map-info-card i {
    font-size: 2rem;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(220,53,69,0.1), rgba(255,193,7,0.1));
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(220,53,69,0.2);
}

.map-info-card h4 {
    margin: 0;
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 700;
}

.map-info-card p {
    margin: 0;
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 600;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    #map-section {
        padding: 60px 0;
    }
    
    .map-wrapper {
        height: 400px;
        border-radius: 20px;
    }
    
    .map-info-card {
        padding: 15px 20px;
        min-width: 150px;
    }
    
    .map-info-card i {
        font-size: 1.5rem;
        width: 50px;
        height: 50px;
    }
    
    .map-info-card h4 {
        font-size: 1rem;
    }
    
    .map-info-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    #map-section {
        padding: 50px 0;
    }
    
    .map-wrapper {
        height: 350px;
        border-radius: 16px;
    }
    
    .map-overlay {
        top: 15px;
        right: 15px;
    }
    
    .map-info-card {
        padding: 12px 16px;
        min-width: 130px;
        gap: 8px;
    }
    
    .map-info-card i {
        font-size: 1.3rem;
        width: 45px;
        height: 45px;
    }
    
    .map-info-card h4 {
        font-size: 0.9rem;
    }
    
    .map-info-card p {
        font-size: 0.8rem;
    }
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--secondary);
    bottom: 0;
    left: 0;
}

.footer-column p {
    margin-bottom: 20px;
    color: #bdc3c7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Project Popup */
/* Popup Modal Styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 2000;
    overflow-y: auto;
    padding: 30px 15px;
    backdrop-filter: blur(5px);
}

.popup-content {
    background: white;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    animation: popupSlideIn 0.3s ease-out;
    width: 100%;
    box-sizing: border-box;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-header {
    background: linear-gradient(135deg, var(--primary), #a10f1f);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: white;
}

.popup-header p {
    color: rgba(255,255,255,0.85);
    margin: 0;
    font-size: 0.95rem;
}

.popup-title {
    margin-bottom: 5px;
    color: white;
    font-size: 1.6rem;
}

.popup-close {
    background: rgba(255,255,255,0.2);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.popup-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.popup-body {
    padding: 25px 30px 30px;
    overflow-x: hidden;
    word-wrap: break-word;
}

.popup-body img {
    max-width: 100%;
    height: auto;
}

.popup-body > p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.popup-body h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--secondary);
    display: inline-block;
    font-weight: 700;
    width: 100%;
}

.popup-body h3:first-of-type {
    margin-top: 20px;
}

.popup-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popup-body ul li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: var(--dark);
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.6;
    font-size: 0.95rem;
    transition: padding-left 0.3s ease;
}

.popup-body ul li:hover {
    padding-left: 40px;
    color: var(--primary);
}

.popup-body ul li:last-child {
    border-bottom: none;
}

.popup-body ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 0.9rem;
}

.popup-image {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    display: block;
    background: transparent;
}

.popup-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
    max-width: 100%;
    border-radius: 12px;
}

.popup-image:hover img {
    transform: scale(1.01);
}

.project-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0 25px;
}

.detail-item {
    background: linear-gradient(135deg, #f8f9fa, #fff);
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: var(--secondary);
}

.detail-item h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-item p {
    color: var(--dark);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3') center/cover no-repeat;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
}

/* Desktop Large Screen Styles (1200px and above) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }

    /* Enhanced Header for Desktop */
    .header-container {
        padding: 25px 0;
    }
    
    .logo {
        gap: 18px;
    }

    .logo img {
        height: 110px;
        max-width: 380px;
    }

    .logo h1 {
        font-size: 3.2rem;
        font-weight: 900;
        letter-spacing: 0.5px;
    }

    nav ul li {
        margin-left: 40px;
    }

    nav ul li a {
        font-size: 1.1rem;
        position: relative;
        padding-bottom: 5px;
    }

    nav ul li a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background: var(--secondary);
        transition: width 0.3s ease;
    }

    nav ul li a:hover::after,
    nav ul li a.active::after {
        width: 100%;
    }

    /* Enhanced Hero Slider for Desktop */
    .hero-content h1 {
        font-size: 4.5rem;
        letter-spacing: 2px;
    }

    .hero-content p {
        font-size: 1.4rem;
        max-width: 900px;
    }

    .slider-arrow {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .slider-arrow.prev {
        left: 50px;
    }

    .slider-arrow.next {
        right: 50px;
    }

    /* Enhanced Section Titles */
    .section-title h2 {
        font-size: 3rem;
    }

    .section-title p {
        font-size: 1.1rem;
        max-width: 800px;
    }

    /* Enhanced Services Grid for Desktop */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .service-card {
        border-radius: 12px;
    }

    .service-image {
        height: 250px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .service-content {
        padding: 30px;
    }

    .service-content h3 {
        font-size: 1.4rem;
    }

    .service-content p {
        font-size: 1rem;
    }

    /* Enhanced Projects Grid for Desktop */
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .project-card {
        border-radius: 12px;
    }

    .project-image {
        height: 280px;
    }

    .project-content {
        padding: 25px;
    }

    .project-content h3 {
        font-size: 1.3rem;
    }

    /* Enhanced About Section for Desktop */
    #about::before {
        width: 500px;
        height: 500px;
        top: -150px;
        right: -150px;
    }

    #about::after {
        width: 600px;
        height: 600px;
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 100px;
        align-items: center;
    }

    .about-text::before {
        left: -30px;
        height: 100px;
        width: 5px;
    }

    .about-text h2 {
        font-size: 3rem;
    }

    .about-text p {
        font-size: 1.15rem;
        line-height: 1.9;
    }

    .about-features {
        gap: 25px;
        margin: 40px 0;
    }

    .about-feature {
        padding: 20px;
    }

    .about-feature i {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    .about-feature span {
        font-size: 1rem;
    }

    .about-video {
        border-radius: 24px;
    }

    .video-container {
        border-radius: 24px;
    }

    .video-container video {
        border-radius: 24px;
    }

    /* Enhanced Contact Section for Desktop */
    .contact-wrapper {
        padding: 60px;
        border-radius: 20px;
    }

    .contact-container {
        gap: 60px;
    }

    .contact-item {
        padding: 25px;
        border-radius: 16px;
    }

    .contact-icon {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 45px;
        border-radius: 20px;
    }

    /* Enhanced Footer for Desktop */
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 60px;
    }

    .footer-column h3 {
        font-size: 1.5rem;
    }

    .footer-column p {
        font-size: 1rem;
    }

    /* Enhanced Popup for Desktop */
    .popup-content {
        max-width: 800px;
        border-radius: 20px;
    }

    .popup-header {
        padding: 30px 40px;
    }

    .popup-title {
        font-size: 1.8rem;
    }

    .popup-body {
        padding: 30px 40px 40px;
    }

    .popup-image {
        height: auto;
        border-radius: 16px;
    }

    .project-details {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .detail-item {
        padding: 25px 20px;
    }

    /* Enhanced Floating Buttons for Desktop */
    .floating-buttons {
        bottom: 40px;
        right: 40px;
        gap: 18px;
    }

    .fab-btn {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
    }
}

/* Medium Desktop Styles (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .about-content {
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 3.8rem;
    }

    .hero-content p {
        font-size: 1.3rem;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content, .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        padding: 30px;
    }

    .about-image, .about-video {
        order: -1;
    }

    .about-text::before {
        display: none;
    }

    .about-text h2 {
        text-align: center;
    }

    .about-text p {
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr 1fr;
    }

    .about-text .btn {
        display: block;
        text-align: center;
        margin: 0 auto;
        width: fit-content;
    }

    #about::before,
    #about::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px 0;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .logo {
        gap: 12px;
    }
    
    .logo img {
        height: 85px;
        max-width: 280px;
    }
    
    .logo h1 {
        font-size: 2.4rem;
        font-weight: 900;
    }
    
    .mobile-menu {
        display: block;
        margin-left: auto;
        font-size: 2rem;
        color: var(--dark);
    }
    
    nav {
        width: 100%;
        margin-top: 10px;
    }
    
    nav ul {
        display: none;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 15px 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        border-radius: 8px;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 8px 0;
    }
    
    nav ul li a {
        font-size: 1rem;
    }
    
    .hero-content h1, .page-header h1 {
        font-size: 2.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1500;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    position: relative;
    overflow: visible;
}

.fab-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    transform: scale(1.5);
    animation: ripple 2s infinite;
}

.fab-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.fab-btn:hover::before {
    animation: ripple 0.6s infinite;
}

.fab-btn i {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.fab-label {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.fab-label::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid rgba(0, 0, 0, 0.8);
}

.fab-btn:hover .fab-label {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

.fab-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.fab-btn.whatsapp:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
}

.fab-btn.call {
    background: linear-gradient(135deg, var(--primary), #a10f1f);
}

.fab-btn.call:hover {
    background: linear-gradient(135deg, #a10f1f, #7a0c17);
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 576px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .fab-btn {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .fab-label {
        font-size: 0.75rem;
        padding: 6px 10px;
        right: 65px;
    }
    
    .fab-btn:hover .fab-label {
        right: 70px;
    }
}

@media (max-width: 576px) {
    header {
        padding: 0;
    }
    
    .header-container {
        padding: 5px 0;
    }
    
    .contact-wrapper {
        padding: 25px 20px;
    }
    
    .contact-item {
        flex-direction: column;
    }
    
    .logo {
        gap: 10px;
    }
    
    .logo img {
        height: 55px;
        max-width: 180px;
    }
    
    .logo h1 {
        font-size: 1.7rem;
        font-weight: 900;
    }
    
    .mobile-menu {
        font-size: 1.3rem;
    }
    
    .hero-slider {
        height: calc(100vh - 50px);
        margin-top: 0;
    }
    
    .services-grid, .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1, .page-header h1 {
        font-size: 2rem;
    }

    /* Mobile Popup Fixes */
    .popup {
        padding: 5px;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .popup-content {
        max-width: calc(100% - 10px);
        width: calc(100% - 10px);
        margin: 0 auto;
        border-radius: 12px;
    }

    .popup-body {
        padding: 15px;
        overflow-x: hidden;
        word-wrap: break-word;
    }

    .popup-body img,
    .popup-image img {
        max-width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }

    .popup-gallery img {
        max-width: 100%;
        height: 260px;
        display: block;
        object-fit: contain;
    }

    .popup-image {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        height: auto;
        display: block;
    }

    .popup-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }

    .popup {
        padding: 10px;
        overflow-x: hidden;
    }

    .popup-content {
        border-radius: 12px;
        max-width: 100%;
        width: 100%;
        margin: 0;
        overflow: hidden;
    }

    .popup-header {
        padding: 15px 20px;
    }

    .popup-title {
        font-size: 1.3rem;
    }

    .popup-body {
        padding: 15px 20px;
        overflow-x: hidden;
    }

    .popup-body * {
        max-width: 100%;
    }

    .project-details {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .detail-item {
        padding: 15px;
    }

    .popup-body ul li {
        padding: 8px 0 8px 25px;
        font-size: 0.9rem;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }

    .slider-dots {
        bottom: 20px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
    
    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        padding: 30px 20px;
    }
    
    .about-badge {
        font-size: 0.85rem;
        padding: 8px 16px;
        margin-bottom: 20px;
    }
    
    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }
    
    .about-text h2::after {
        width: 60px;
    }
    
    .description-block {
        padding: 15px;
        margin-bottom: 20px;
        gap: 15px;
    }
    
    .desc-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.1rem;
    }
    
    .desc-content p {
        font-size: 0.95rem;
    }
    
    .about-cta {
        margin-top: 25px;
    }
    
    .btn-modern {
        padding: 14px 30px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    /* Why Choose Us Mobile */
    .why-choose-section {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .feature-icon-bg {
        width: 85px;
        height: 85px;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   DESKTOP-ONLY PREMIUM ENHANCEMENTS (min-width: 1024px)
   These styles only apply to desktop views and do not affect mobile/tablet
   ========================================================================== */

@media (min-width: 1024px) {
    /* ===== ENHANCED HEADER ===== */
    header {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
    }

    .header-container {
        padding: 20px 0;
        max-width: 1320px;
    }

    .logo {
        gap: 16px;
    }

    .logo img {
        height: 90px;
        max-width: 320px;
    }

    .logo h1 {
        font-size: 2.8rem;
        letter-spacing: 1px;
        font-weight: 800;
    }

    nav ul {
        gap: 8px;
    }

    nav ul li {
        margin-left: 35px;
    }

    nav ul li a {
        font-size: 1.05rem;
        font-weight: 600;
        padding: 10px 16px;
        border-radius: 8px;
        position: relative;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    nav ul li a:hover {
        background: rgba(220, 53, 69, 0.06);
        color: var(--primary);
    }

    nav ul li a.active {
        background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(255, 193, 7, 0.1));
        color: var(--primary);
    }

    nav ul li a::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 16px;
        right: 16px;
        height: 2px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        transform: scaleX(0);
        transition: transform 0.3s ease;
        border-radius: 1px;
    }

    nav ul li a:hover::after,
    nav ul li a.active::after {
        transform: scaleX(1);
    }

    /* ===== ENHANCED HERO SLIDER ===== */
    .hero-slider {
        margin-top: 0;
    }

    .slide-overlay {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65));
    }

    .hero-content {
        max-width: 1000px;
        padding: 0 60px;
    }

    .hero-content h1 {
        font-size: 4rem;
        font-weight: 800;
        letter-spacing: 3px;
        text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        margin-bottom: 24px;
        line-height: 1.15;
    }

    .hero-content p {
        font-size: 1.25rem;
        line-height: 1.8;
        max-width: 750px;
        opacity: 0.95;
        margin-bottom: 40px;
        letter-spacing: 0.3px;
    }

    .hero-content .btn {
        padding: 18px 45px;
        font-size: 1rem;
        letter-spacing: 1.5px;
        border-radius: 10px;
        box-shadow: 0 8px 30px rgba(220, 53, 69, 0.35);
    }

    .hero-content .btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(220, 53, 69, 0.45);
    }

    .slider-arrow {
        width: 56px;
        height: 56px;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        font-size: 1.3rem;
    }

    .slider-arrow:hover {
        background: var(--secondary);
        border-color: var(--secondary);
        transform: translateY(-50%) scale(1.08);
    }

    .slider-arrow.prev {
        left: 45px;
    }

    .slider-arrow.next {
        right: 45px;
    }

    .slider-dots {
        bottom: 40px;
        gap: 14px;
    }

    .dot {
        width: 14px;
        height: 14px;
        border: 2px solid rgba(255, 255, 255, 0.4);
        background: transparent;
    }

    .dot:hover {
        background: rgba(255, 255, 255, 0.5);
        border-color: rgba(255, 255, 255, 0.6);
    }

    .dot.active {
        background: var(--secondary);
        border-color: var(--secondary);
        transform: scale(1.15);
    }

    /* ===== ENHANCED SECTION STYLING ===== */
    section {
        padding: 100px 0;
    }

    .section-title {
        margin-bottom: 70px;
    }

    .section-title h2 {
        font-size: 2.8rem;
        font-weight: 800;
        letter-spacing: 0.5px;
        margin-bottom: 24px;
    }

    .section-title h2::before,
    .section-title h2::after {
        height: 4px;
        bottom: -14px;
    }

    .section-title p {
        font-size: 1.1rem;
        line-height: 1.8;
        max-width: 700px;
        color: #5a6678;
    }

    /* ===== ENHANCED ABOUT SECTION ===== */
    #about {
        padding: 110px 0;
    }

    .about-content {
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .about-text {
        position: relative;
        padding-left: 30px;
    }

    .about-text::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 80px;
        background: linear-gradient(180deg, var(--primary), var(--secondary));
        border-radius: 2px;
    }

    .about-text h2 {
        font-size: 2.6rem;
        font-weight: 800;
        line-height: 1.25;
        margin-bottom: 28px;
        text-align: left;
    }

    .about-text p {
        font-size: 1.1rem;
        line-height: 1.9;
        color: #4a5568;
        margin-bottom: 20px;
        text-align: left;
    }

    .about-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 35px 0;
    }

    .about-feature {
        padding: 18px 20px;
        border-radius: 14px;
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.04);
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .about-feature:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
        border-color: rgba(220, 53, 69, 0.15);
    }

    .about-feature i {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        font-size: 1.25rem;
    }

    .about-feature span {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--dark);
    }

    .about-text .btn {
        display: inline-block;
        margin: 0;
        text-align: left;
    }

    .about-video {
        border-radius: 20px;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    }

    .video-container {
        border-radius: 20px;
    }

    .video-container video {
        border-radius: 20px;
    }

    .sound-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }

    /* ===== ENHANCED SERVICES SECTION ===== */
    #services {
        padding: 110px 0;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }

    .service-card {
        border-radius: 16px;
        background: white;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        border: 1px solid rgba(0, 0, 0, 0.03);
    }

    .service-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    }

    .service-card::before {
        height: 5px;
        border-radius: 16px 16px 0 0;
    }

    .service-image {
        height: 220px;
    }

    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 1.9rem;
        top: 18px;
        right: 18px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }

    .service-content {
        padding: 28px;
    }

    .service-content h3 {
        font-size: 1.35rem;
        font-weight: 700;
        margin-bottom: 14px;
        color: var(--dark);
    }

    .service-content p {
        font-size: 1rem;
        line-height: 1.7;
        color: #5a6678;
    }

    /* ===== ENHANCED PROJECTS SECTION ===== */
    #projects {
        padding: 110px 0;
    }

    .projects-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }

    .project-card {
        border-radius: 16px;
        background: white;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        border: 1px solid rgba(0, 0, 0, 0.03);
    }

    .project-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    }

    .project-card::after {
        height: 5px;
        border-radius: 0 0 16px 16px;
    }

    .project-image {
        height: 260px;
    }

    .project-content {
        padding: 24px 26px;
    }

    .project-content h3 {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 12px;
        color: var(--dark);
    }

    .project-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        color: #5a6678;
    }

    /* ===== ENHANCED BUTTONS ===== */
    .btn {
        padding: 16px 38px;
        font-size: 0.95rem;
        border-radius: 10px;
        font-weight: 600;
        letter-spacing: 1px;
        box-shadow: 0 6px 25px rgba(220, 53, 69, 0.25);
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 35px rgba(220, 53, 69, 0.35);
    }

    /* ===== ENHANCED FOOTER ===== */
    footer {
        padding: 80px 0 40px;
        background: linear-gradient(180deg, #2c3e50 0%, #1a252f 100%);
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
        gap: 50px;
        margin-bottom: 50px;
    }

    .footer-column h3 {
        font-size: 1.35rem;
        font-weight: 700;
        margin-bottom: 25px;
        padding-bottom: 12px;
    }

    .footer-column h3::after {
        width: 45px;
        height: 3px;
    }

    .footer-column p {
        font-size: 0.98rem;
        line-height: 1.8;
        color: #a8b5c4;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        font-size: 0.95rem;
        color: #a8b5c4;
        transition: all 0.3s ease;
        padding-left: 0;
    }

    .footer-links a:hover {
        color: var(--secondary);
        padding-left: 8px;
    }

    .social-links {
        gap: 12px;
    }

    .social-links a {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .social-links a:hover {
        background: var(--secondary);
        border-color: var(--secondary);
        transform: translateY(-4px);
    }

    .copyright {
        padding-top: 35px;
        font-size: 0.92rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* ===== ENHANCED POPUP/MODAL ===== */
    .popup-content {
        max-width: 750px;
        border-radius: 20px;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    }

    .popup-header {
        padding: 28px 35px;
    }

    .popup-title {
        font-size: 1.7rem;
        font-weight: 700;
    }

    .popup-close {
        width: 44px;
        height: 44px;
        font-size: 1.6rem;
    }

    .popup-body {
        padding: 28px 35px 35px;
    }

    .popup-body > p {
        font-size: 1.05rem;
        line-height: 1.8;
    }

    .popup-image {
        height: auto;
        border-radius: 14px;
    }

    .project-details {
        gap: 18px;
        margin: 25px 0 30px;
    }

    .detail-item {
        padding: 22px 18px;
        border-radius: 14px;
    }

    .detail-item h4 {
        font-size: 0.85rem;
        letter-spacing: 0.8px;
    }

    .detail-item p {
        font-size: 0.95rem;
    }

    .popup-body h3 {
        font-size: 1.35rem;
        margin: 35px 0 22px;
    }

    .popup-body ul li {
        padding: 14px 0 14px 38px;
        font-size: 0.98rem;
    }

    /* ===== ENHANCED FLOATING BUTTONS ===== */
    .floating-buttons {
        bottom: 35px;
        right: 35px;
        gap: 16px;
    }

    .fab-btn {
        width: 62px;
        height: 62px;
        font-size: 1.7rem;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
    }

    .fab-btn:hover {
        transform: scale(1.12);
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
    }

    .fab-label {
        padding: 10px 16px;
        font-size: 0.9rem;
        border-radius: 8px;
        right: 75px;
    }

    .fab-btn:hover .fab-label {
        right: 80px;
    }

    /* ===== IMPROVED WHITE SPACE & CONTAINERS ===== */
    .container {
        max-width: 1280px;
        padding: 0 30px;
    }

    /* ===== SUBTLE VISUAL REFINEMENTS ===== */
    /* Consistent border-radius across elements */
    .service-card,
    .project-card,
    .about-feature,
    .contact-item,
    .contact-form,
    .detail-item {
        border-radius: 16px;
    }

    /* Improved shadow consistency */
    .service-card,
    .project-card {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    }

    .service-card:hover,
    .project-card:hover {
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    }

    /* Typography refinements */
    body {
        font-size: 16px;
        line-height: 1.7;
    }

    h1, h2, h3, h4, h5, h6 {
        line-height: 1.3;
    }

    /* Smooth transitions for all interactive elements */
    a, button, .btn, .service-card, .project-card, .about-feature {
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* ===== ADDITIONAL PREMIUM REFINEMENTS ===== */

    /* Refined header with better visual hierarchy */
    header {
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .logo h1 {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }

    /* Navigation active state indicator */
    nav ul li a.active {
        font-weight: 700;
    }

    /* Hero section refinements */
    .hero-slider {
        min-height: 650px;
    }

    .slide {
        background-attachment: fixed;
    }

    .hero-content h1 {
        text-transform: uppercase;
        font-style: italic;
    }

    .hero-content p {
        font-weight: 400;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    /* Improved section backgrounds */
    #services {
        background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    }

    #projects {
        background: #ffffff;
    }

    /* Service card refinements */
    .service-card {
        overflow: hidden;
    }

    .service-image::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
        pointer-events: none;
    }

    .service-content h3 {
        position: relative;
        padding-bottom: 12px;
    }

    .service-content h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        border-radius: 2px;
    }

    /* Project card enhancements */
    .project-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.15) 100%);
        z-index: 1;
        pointer-events: none;
    }

    .project-content h3 {
        position: relative;
        padding-bottom: 10px;
    }

    .project-content h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 35px;
        height: 2px;
        background: var(--secondary);
        border-radius: 1px;
        transition: width 0.3s ease;
    }

    .project-card:hover .project-content h3::after {
        width: 60px;
    }

    /* View All buttons styling */
    #services + div .btn,
    #projects + div .btn,
    div[style*="text-align: center"] .btn {
        background: linear-gradient(135deg, var(--primary), #b91c2c);
        border: 2px solid transparent;
    }

    div[style*="text-align: center"] .btn:hover {
        background: transparent;
        border-color: var(--primary);
        color: var(--primary);
    }

    /* About section video premium styling */
    .about-video::after {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary));
        border-radius: 23px;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .about-video:hover::after {
        opacity: 0.6;
    }

    /* Footer premium touches */
    footer .footer-column:first-child p {
        border-left: 3px solid var(--secondary);
        padding-left: 15px;
        margin-top: 10px;
    }

    .footer-links a {
        display: inline-block;
        position: relative;
    }

    .footer-links a::before {
        content: '';
        position: absolute;
        left: -12px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        border-left: 5px solid var(--secondary);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .footer-links a:hover::before {
        opacity: 1;
        left: -15px;
    }

    .footer-links a:hover {
        padding-left: 5px;
    }

    /* Copyright section enhancement */
    .copyright {
        background: rgba(0, 0, 0, 0.15);
        margin: 0 -30px;
        padding: 25px 30px;
        border-radius: 0;
        margin-top: 40px;
    }

    .copyright p {
        margin: 0;
        letter-spacing: 0.5px;
    }

    /* Floating buttons premium styling */
    .fab-btn {
        border: 2px solid rgba(255, 255, 255, 0.2);
    }

    .fab-btn.whatsapp {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    }

    .fab-btn.call {
        box-shadow: 0 6px 25px rgba(220, 53, 69, 0.4);
    }

    /* Slider dots premium styling */
    .slider-dots {
        background: rgba(0, 0, 0, 0.2);
        padding: 12px 20px;
        border-radius: 30px;
        backdrop-filter: blur(5px);
    }

    /* Section title decorative enhancement */
    .section-title {
        position: relative;
    }

    .section-title h2 {
        position: relative;
        display: inline-block;
    }

    /* Improved spacing for CTA buttons in sections */
    #services > .container > div[style*="text-align"],
    #projects > .container > div[style*="text-align"] {
        margin-top: 50px;
    }

    /* ===== FINAL PREMIUM POLISH ===== */

    /* Header - Perfect alignment and balance */
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 0;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .logo img {
        height: 75px;
        width: auto;
        object-fit: contain;
    }

    .logo h1 {
        font-size: 2.4rem;
        margin: 0;
        line-height: 1;
        letter-spacing: 0.5px;
    }

    .logo h1 span {
        font-weight: 800;
    }

    /* Navigation - Better spacing and hover states */
    nav ul {
        display: flex;
        align-items: center;
        gap: 5px;
        margin: 0;
        padding: 0;
    }

    nav ul li {
        margin-left: 8px;
    }

    nav ul li a {
        font-size: 1rem;
        font-weight: 500;
        padding: 12px 20px;
        border-radius: 6px;
        color: var(--dark);
        letter-spacing: 0.3px;
    }

    nav ul li a:hover {
        background: rgba(220, 53, 69, 0.08);
        color: var(--primary);
    }

    nav ul li a.active {
        background: rgba(220, 53, 69, 0.1);
        color: var(--primary);
        font-weight: 600;
    }

    /* Hero Section - Premium Typography */
    .hero-slider {
        height: calc(100vh - 120px);
        min-height: 600px;
        max-height: 800px;
    }

    .slide-overlay {
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.55) 100%
        );
    }

    .hero-content {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 40px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3.8rem;
        font-weight: 700;
        letter-spacing: 4px;
        margin-bottom: 28px;
        line-height: 1.1;
        text-transform: uppercase;
        font-style: italic;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }

    .hero-content p {
        font-size: 1.2rem;
        line-height: 1.9;
        max-width: 700px;
        margin: 0 auto 35px auto;
        font-weight: 400;
        opacity: 0.92;
        letter-spacing: 0.4px;
    }

    /* Hero CTA Button - Premium styling */
    .hero-content .btn {
        padding: 18px 50px;
        font-size: 0.95rem;
        font-weight: 700;
        letter-spacing: 2px;
        border-radius: 8px;
        background: linear-gradient(135deg, var(--primary) 0%, #b91c2c 100%);
        border: none;
        box-shadow: 0 8px 30px rgba(220, 53, 69, 0.4);
        text-transform: uppercase;
    }

    .hero-content .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(220, 53, 69, 0.5);
        background: linear-gradient(135deg, #c82333 0%, #a71d2a 100%);
    }

    /* Slider Arrows - Refined */
    .slider-arrow {
        width: 54px;
        height: 54px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        color: white;
        font-size: 1.2rem;
    }

    .slider-arrow:hover {
        background: var(--secondary);
        border-color: var(--secondary);
        color: var(--dark);
    }

    .slider-arrow.prev {
        left: 40px;
    }

    .slider-arrow.next {
        right: 40px;
    }

    /* Slider Dots - Clean look */
    .slider-dots {
        bottom: 35px;
        gap: 12px;
        background: rgba(0, 0, 0, 0.25);
        padding: 14px 24px;
        border-radius: 50px;
    }

    .dot {
        width: 12px;
        height: 12px;
        border: 2px solid rgba(255, 255, 255, 0.5);
        background: transparent;
        border-radius: 50%;
    }

    .dot:hover {
        background: rgba(255, 255, 255, 0.4);
        border-color: rgba(255, 255, 255, 0.7);
    }

    .dot.active {
        background: var(--secondary);
        border-color: var(--secondary);
        transform: scale(1.1);
    }

    /* Section Titles - Better hierarchy */
    .section-title {
        margin-bottom: 60px;
        text-align: center;
    }

    .section-title h2 {
        font-size: 2.6rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 20px;
        letter-spacing: 0.5px;
    }

    .section-title p {
        font-size: 1.05rem;
        color: #5a6678;
        max-width: 650px;
        margin: 0 auto;
        line-height: 1.8;
    }

    /* About Section - Balanced layout */
    #about {
        padding: 100px 0;
        background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    }

    .about-content {
        gap: 70px;
    }

    .about-text h2 {
        font-size: 2.4rem;
        margin-bottom: 24px;
    }

    .about-text h2 span {
        color: var(--secondary);
    }

    .about-text p {
        font-size: 1.05rem;
        line-height: 1.85;
        color: #4a5568;
        margin-bottom: 18px;
    }

    /* About Features - Cleaner cards */
    .about-features {
        gap: 16px;
        margin: 30px 0;
    }

    .about-feature {
        padding: 16px 18px;
        border-radius: 12px;
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    }

    .about-feature:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        border-color: rgba(220, 53, 69, 0.12);
    }

    .about-feature i {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    .about-feature span {
        font-size: 0.9rem;
        font-weight: 600;
    }

    /* Services Section - Clean cards */
    #services {
        padding: 100px 0;
    }

    .services-grid {
        gap: 30px;
    }

    .service-card {
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
        border-color: rgba(220, 53, 69, 0.1);
    }

    .service-image {
        height: 200px;
    }

    .service-icon {
        width: 58px;
        height: 58px;
        font-size: 1.6rem;
        top: 15px;
        right: 15px;
    }

    .service-content {
        padding: 24px;
    }

    .service-content h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .service-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        color: #5a6678;
    }

    /* Projects Section - Consistent styling */
    #projects {
        padding: 100px 0;
        background: #f9fafb;
    }

    .projects-grid {
        gap: 30px;
    }

    .project-card {
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    }

    .project-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    }

    .project-image {
        height: 240px;
    }

    .project-content {
        padding: 22px 24px;
    }

    .project-content h3 {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .project-content p {
        font-size: 0.92rem;
        line-height: 1.65;
    }

    /* Buttons - Consistent styling */
    .btn {
        padding: 15px 35px;
        font-size: 0.9rem;
        font-weight: 600;
        letter-spacing: 1.2px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(220, 53, 69, 0.25);
    }

    .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(220, 53, 69, 0.35);
    }

    /* Floating Action Buttons - Polished */
    .floating-buttons {
        bottom: 30px;
        right: 30px;
        gap: 14px;
    }

    .fab-btn {
        width: 58px;
        height: 58px;
        font-size: 1.5rem;
        border: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .fab-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    }

    .fab-btn::before {
        display: none;
    }

    /* Footer - Clean and professional */
    footer {
        padding: 70px 0 0 0;
        background: #1e2a38;
    }

    .footer-content {
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 22px;
        color: #ffffff;
    }

    .footer-column p {
        font-size: 0.92rem;
        line-height: 1.75;
        color: #9aa5b1;
    }

    .footer-links a {
        font-size: 0.9rem;
        color: #9aa5b1;
    }

    .footer-links a:hover {
        color: var(--secondary);
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .social-links a:hover {
        background: var(--secondary);
        border-color: var(--secondary);
        color: var(--dark);
    }

    .copyright {
        background: rgba(0, 0, 0, 0.2);
        padding: 20px 0;
        margin-top: 0;
        text-align: center;
    }

    .copyright p {
        font-size: 0.88rem;
        color: #7a8694;
        margin: 0;
    }
}

/* ========================================
   PROJECT CARD - Enhanced with Details
   ======================================== */

/* Project details row - Clean grid layout */
.project-details-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 15px 0 12px 0;
    padding: 0;
    border-top: none;
    border-bottom: none;
}

/* Individual detail item */
.project-detail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #555;
    padding: 0;
    margin-right: 16px;
    background: transparent;
    border-radius: 0;
}

/* Last item no margin */
.project-detail:last-child {
    margin-right: 0;
}

/* Icon styling - consistent size */
.project-detail i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
}

/* Text styling */
.project-detail span,
.project-detail {
    font-size: 0.875rem;
    font-weight: 500;
    color: #4a5568;
    line-height: 1.4;
}

/* Description */
.project-desc {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========================================
   Modern Project Details - Card Style
   ======================================== */
.project-details-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 18px 0 15px 0;
    padding: 16px 18px;
    background: linear-gradient(145deg, #f8fafc 0%, #eef2f7 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.project-details-grid .detail-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.project-details-grid .detail-box:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.project-details-grid .detail-box:first-child {
    padding-top: 0;
}

.project-details-grid .detail-box i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #c82333 100%);
    color: white;
    border-radius: 10px;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(220, 53, 69, 0.3);
}

.project-details-grid .detail-box span {
    font-size: 0.95rem;
    color: #1a1a2e;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* Desktop - horizontal layout */
@media (min-width: 768px) {
    .project-details-grid {
        flex-direction: row;
        justify-content: space-between;
        padding: 14px 20px;
        border-left: none;
        border-bottom: 4px solid var(--primary);
    }

    .project-details-grid .detail-box {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 0;
        border-bottom: none;
        flex: 1;
    }

    .project-details-grid .detail-box i {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .project-details-grid .detail-box span {
        font-size: 0.85rem;
    }
}

/* Project popup gallery */
.popup-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 5px;
}

/* Gallery image wrapper for contained zoom effect */
.popup-gallery .gallery-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: #f8f9fa;
}

.popup-gallery img {
    width: 100%;
    max-width: 100%;
    height: 320px;
    object-fit: contain;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.4s ease;
    display: block;
    background: #f8f9fa;
}

.popup-gallery img:hover {
    transform: scale(1.03);
}

/* Tablet: 2 columns in gallery */
@media (max-width: 768px) {
    .popup-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .popup-gallery img {
        height: 260px;
        object-fit: contain;
    }
}

/* Mobile: Full width images in gallery */
@media (max-width: 480px) {
    .popup-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .popup-gallery img {
        height: 280px;
        object-fit: contain;
    }
}

/* Image Lightbox/Zoom Overlay */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: zoom-out;
}

.image-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.image-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.image-lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    padding: 20px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    background: rgba(0,0,0,0.5);
    padding: 8px 16px;
    border-radius: 20px;
}

/* Zoom hint on gallery images */
.popup-gallery img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zoom-hint {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.popup-gallery img:hover + .zoom-hint,
.popup-gallery .gallery-item:hover .zoom-hint {
    opacity: 1;
}

/* Enhanced project details in popup */
.project-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.project-details .detail-item {
    text-align: center;
    padding: 15px 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.project-details .detail-item h4 {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 8px;
    font-weight: 500;
}

.project-details .detail-item h4 i {
    color: var(--primary);
    margin-right: 5px;
}

.project-details .detail-item p {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 600;
    margin: 0;
}

/* Responsive adjustments for project details */
@media (max-width: 768px) {
    .project-details-row {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .project-detail {
        font-size: 0.8rem;
        margin-right: 0;
        margin-bottom: 4px;
    }

    .project-detail:last-child {
        margin-bottom: 0;
    }

    .project-details-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 10px;
        gap: 6px;
    }

    .project-details-grid .detail-box i {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .project-details-grid .detail-box span {
        font-size: 0.7rem;
    }

    .project-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .project-details-row {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px 12px;
    }

    .project-detail {
        font-size: 0.75rem;
        margin-right: 0;
        margin-bottom: 0;
    }

    .project-details {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Lightbox mobile styles */
    .lightbox-nav {
        font-size: 30px;
        padding: 15px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }

    .image-lightbox img {
        max-width: 95vw;
        max-height: 80vh;
    }

    .zoom-hint {
        display: none;
    }
}

/* ========================================
   Skeleton Loading Animation
   ======================================== */
.skeleton-card {
    pointer-events: none;
}

.skeleton-card .skeleton-image {
    height: 220px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.2s ease-in-out infinite;
}

.skeleton-card .skeleton-content {
    padding: 20px;
}

.skeleton-card .skeleton-title {
    height: 24px;
    width: 70%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.2s ease-in-out infinite;
    border-radius: 4px;
    margin-bottom: 12px;
}

.skeleton-card .skeleton-text {
    height: 16px;
    width: 90%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.2s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

