* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f4f4f4;
}

/* Header */
.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.logo img {
    height: 35px;
    width: auto;
    object-fit: contain;
    transform: scale(3.5);   /* Increase visible size */
    transform-origin: left center; /* Prevent shifting */
}

.nav {
    display: flex;
    list-style: none;
    gap: 30px;
    margin-left: auto;
}

.nav li {
    display: flex;
    align-items: center;
}

.nav a {
    text-decoration: none;
    font-size: 18px;
    color: white;
    transition: 0.3s;
    cursor: pointer;
    pointer-events: auto;
}

.nav a:hover,
.nav .active {
    color: red;
}

.quote-btn {
    background-color: #ff0000;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.quote-btn:hover {
    background-color: #cc0000;
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
            url("../assets/bg3.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-title .highlight {
    display: block;
    color: red;
    font-weight: 800;
}

.subtitle {
    margin-top: 20px;
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 35px;
}

.btn {
    display: flex;
    align-items: center;
    padding: 18px 30px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.primary-btn {
    background: #e70e0e;
    color: white;
    border: none;
}

.primary-btn:hover {
    background: #cc0c0c;
    transform: scale(1.05);
}

.outline-btn {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.outline-btn:hover {
    background: white;
    color: black;
    transform: scale(1.05);
}

.stats-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.stat-box {
    padding: 20px 30px;
    background: rgba(51, 49, 49, 0.5);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    width: 250px;
    text-align: center;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.stat-box h2 {
    font-size: 2rem;
    font-weight: 800;
    color: red;
}

.stat-box p {
    font-size: 1.1rem;
    opacity: 0.85;
}


/* Mobile Menu Toggle Button (Hidden by default) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 101;
    padding: 10px;
    background: transparent;
    border: none;
    pointer-events: auto !important;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 98;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

/* Tablet and Below (≤ 968px) */
@media (max-width: 968px) {
    /* Header - Keep Fixed at Top */
    .header {
        padding: 15px 30px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        z-index: 100;
    }

    .logo img {
        transform: scale(2.5);
    }

    /* Navigation - Hamburger Menu */
    .menu-toggle {
        display: flex !important;
        position: fixed !important;
        right: 30px !important;
        top: 20px !important;
        transform: none !important;
        z-index: 1000 !important;
        pointer-events: auto !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        padding: 10px !important;
        gap: 6px;
        flex-direction: column;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.4s ease;
        padding: 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        z-index: 99;
        pointer-events: auto;
    }

    .nav.active {
        right: 0;
    }

    .nav li {
        width: 100%;
        text-align: center;
    }

    .nav a {
        font-size: 22px;
        display: block;
        padding: 15px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
        cursor: pointer;
        pointer-events: auto;
        width: 100%;
        text-align: center;
    }

    .nav a:hover {
        background: rgba(255, 0, 0, 0.1);
    }

    .nav .quote-btn {
        background-color: #ff0000;
        color: white;
        padding: 15px 20px;
        border-radius: 8px;
        font-size: 22px;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .nav .quote-btn:hover {
        background-color: #cc0000;
        transform: scale(1.02);
    }
    .hero-section {
        background-attachment: scroll;
        padding: 80px 20px 40px;
        min-height: 100vh;
        height: auto;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .subtitle {
        font-size: 1rem;
        margin-top: 15px;
    }

    /* CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 25px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        font-size: 18px;
        padding: 16px 25px;
    }

    /* Stats Section */
    .stats-section {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 40px;
    }

    .stat-box {
        width: 100%;
        max-width: 280px;
    }
}

/* Mobile (≤ 480px) */
@media (max-width: 480px) {
    .header {
        padding: 12px 20px;
    }

    .logo img {
        transform: scale(2);
    }

    .nav {
        width: 80%;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    .btn {
        font-size: 16px;
        padding: 14px 20px;
    }

    .stat-box {
        padding: 18px 25px;
    }

    .stat-box h2 {
        font-size: 1.8rem;
    }

    .stat-box p {
        font-size: 1rem;
    }
}

/* Extra Small Mobile (≤ 360px) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .logo img {
        transform: scale(1.8);
    }
}

/* Services Section */
.services-section {
    min-height: 100vh;
    background: #000000;
}

.section-header {
    text-align: center;
    padding: 100px 50px 80px;
    background: linear-gradient(250deg, #090c11 0%, #0d1419 100%);
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, red, transparent);
}

.section-header h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.section-header h2 span {
    color: red;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 50px;
    background: #000000;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(20, 20, 20, 0.5);
    border-radius: 20px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item:nth-child(even) {
    direction: rtl;
}

.service-item:nth-child(even) > * {
    direction: ltr;
}

/* .service-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgb(8 8 8 / 50%);
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
} */

.service-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    max-height: 320px;                /* controls the overall height */
    box-shadow: 0 10px 30px rgb(8 8 8 / 50%);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.service-content h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.service-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    color: white;
    font-size: 1rem;
}

.feature-item::before {
    content: "●";
    color: red;
    font-size: 1.5rem;
    margin-right: 10px;
}

.quote-btn {
    background: red;
    color: white;
    padding: 10px 10px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: -12px;
}

.quote-btn:hover {
    background: #cc0c0c;
    transform: scale(1.05);
}

/* About Section */
.about-section {
    min-height: 100vh;
    background: #f4f4f4;
}

.about-section .section-header h2 {
    color: #1a1a2e;
}

.about-section .section-header p {
    color: rgba(0, 0, 0, 0.7);
}

/* Portfolio Section */
.portfolio-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

/* Responsive */
@media (max-width: 968px) {
    .service-item {
        grid-template-columns: 1fr;
    }

    .service-item:nth-child(even) {
        direction: ltr;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .stats-section {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .header {
        padding: 20px 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-content h3 {
        font-size: 2rem;
    }

    .price-box {
        flex-direction: column;
        gap: 15px;
    }
}

/* Portfolio Section */
.portfolio-section {
    min-height: 100vh;
    background: #000000;
}

.portfolio-header {
    text-align: center;
    padding: 100px 50px 60px;
    background: linear-gradient(250deg, #090c11 0%, #0d1419 100%);
    position: relative;
}

.portfolio-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, red, transparent);
}

.portfolio-header h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.portfolio-header h2 span {
    color: red;
}

.portfolio-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.portfolio-content {
    padding: 50px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-subtitle {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 60px;
}

.portfolio-subtitle span {
    color: red;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.portfolio-item {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
}

.portfolio-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-details {
    padding: 18px;
}

.portfolio-category {
    background: linear-gradient(90deg, #ff6a00, #ee0979);
    padding: 4px 12px;
    border-radius: 6px;
    color: #fff;
    font-weight: bold;
}


.portfolio-details h4 {
    font-size: 1.4rem;
    color: white;
    margin: 12px 0;
}

.portfolio-details > p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.portfolio-stats {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.stat-item {
    text-align: center;
}

.stat-item h5 {
    font-size: 1.5rem;
    color: red;
    margin-bottom: 3px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.tag {
    padding: 6px 12px;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background: red;
    color: white;
    border-color: red;
}

/* Responsive */
@media (min-width: 969px) {
    .portfolio-image {
        height: 300px;
    }
}

@media (max-width: 968px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-header h2 {
        font-size: 2rem;
    }

    .portfolio-subtitle {
        font-size: 1.8rem;
    }

    .portfolio-details h4 {
        font-size: 1.5rem;
        margin: 10px 0;
    }

    .portfolio-stats {
        flex-direction: column;
        gap: 15px;
    }

    .portfolio-image {
        height: 220px;
    }
}

/* About Section */
.about-section {
    background: #000000;
}

/* About Header */
.about-header {
    text-align: center;
    padding: 100px 50px 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url("../assets/aboutus-header.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.about-header h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 25px;
}

.about-header h2 span {
    color: red;
}

.about-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Our Story Section */
.our-story-section {
    padding: 80px 50px;
    background: #000000;
}

.story-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 30px;
}

.story-text h3 span {
    color: red;
}

.story-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgb(7 7 7 / 20%);
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 60px 50px;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.about-stat-item {
    text-align: center;
    padding: 30px 20px;
}

.about-stat-item h3 {
    font-size: 3rem;
    color: red;
    margin-bottom: 10px;
    font-weight: 800;
}

.about-stat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    letter-spacing: 1px;
    font-weight: 500;
}


/* Values Section */
.values-section {
    padding: 80px 50px;
    background: #000000;
}

.values-section h3 {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
}

.values-section h3 span {
    color: red;
}

.values-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.value-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

/* Heading */
.value-card h4 {
    color: white;
    transition: color 0.3s ease;
}

/* Icon Circle */
.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ea6d6d, #ea3c3c); /* normal red gradient */
    color: white; /* icon color */
    font-size: 2rem;
    margin-bottom: 20px;
    transition: all 0.3s ease; /* smooth background and color transition */
}

/* Hover Effects */
.value-card:hover {
    border-color: red;
}

.value-card:hover h4 {
    color: red;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, #b30000, #800000); /* slightly darker gradient on hover */
    color: red; /* icon turns red */
}


.value-card h4 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 15px;
}

.value-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.team-section {
    padding: 40px 20px;
    text-align: center;
}

.team-section h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 30px;
}

.team-section h3 span {
    color: red;
}

/* Slide Card */
.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Circle Image */
.team-card img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
}

/* Name */
.team-card h4 {
    color: white;
    margin-top: 8px;
    font-size: 0.9rem;
}

.team-card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}
.team-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 40px;  /* centers + spacing */
    margin-top: -10px;    /* slight pull-up for tighter layout */
}



/* About CTA Section */
.about-cta-section {
    padding: 80px 50px;
    background: #000000;
    text-align: center;
}

.about-cta-section h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.about-cta-section h3 span {
    color: red;
}

.about-cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.outline-btn-dark {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.outline-btn-dark:hover {
    background: white;
    color: black;
    transform: scale(1.05);
}
/* CTA Buttons Container */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: 0.3s ease;
}

/* MOBILE RESPONSIVE FIX */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .btn {
        width: 100%;        /* makes buttons full width */
        text-align: center; /* centers text */
        padding: 14px 0;
    }
}


/* Responsive */
@media (max-width: 1200px) {
    .values-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .story-content {
        grid-template-columns: 1fr;
    }

    .story-image img {
        height: 400px;
    }

    .values-grid,
    .team-grid,
    .about-stats-section {
        grid-template-columns: 1fr;
    }

    .about-header h2 {
        font-size: 2.5rem;
    }

    .team-image {
        height: 350px;
    }
}

/* Contact Section */
.contact-section {
    background: #000000;
    min-height: 100vh;
}

/* Contact Header */
.contact-header {
    text-align: center;
    padding: 100px 50px 60px;
    background: linear-gradient(250deg, #090c11 0%, #0d1419 100%);
    position: relative;
}

.contact-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, red, transparent);
}

.contact-header h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
}

.contact-header h2 span {
    color: red;
}

.contact-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 50px;
}

.contact-form-container h3,
.contact-info-container h3 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 40px;
}

.contact-form-container h3 span,
.contact-info-container h3 span {
    color: red;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 16px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: red;
    background: rgba(30, 41, 59, 1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: #1e293b;
    color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: Arial, sans-serif;
}

.char-count {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-top: 5px;
    text-align: right;
}

.submit-btn {
    background: red;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #cc0c0c;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Contact Information */
.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.email-icon {
    background: rgba(255, 0, 0, 0.1);
    color: red;
}

.phone-icon {
    background: rgba(255, 0, 0, 0.1);
    color: red;
}

.location-icon {
    background: rgba(255, 0, 0, 0.1);
    color: red;
}

.clock-icon {
    background: rgba(255, 0, 0, 0.1);
    color: red;
}

.info-content h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.5;
}

.info-link {
    color: red;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: #ff3333;
}

/* Map Section */
.map-section {
    margin-top: 30px;
}

.map-section h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Form Success/Error Messages */
.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    display: none;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    display: block;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-header h2 {
        font-size: 2.5rem;
    }

    .contact-form-container h3,
    .contact-info-container h3 {
        font-size: 1.8rem;
    }
}

/* Service Detail Pages Styling */
.service-detail-section {
    background: linear-gradient(#000000 0%, #000000 100%);
    color: white;
    margin-top: 60px;
    padding: 0;
}

.service-detail-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.service-detail-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.service-detail-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 50px;
}

.service-detail-image {
    width: 100%;
    height: 400px;
    margin-bottom: 60px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(231, 14, 14, 0.2);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-body {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-intro {
    margin-bottom: 60px;
}

.service-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.service-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.features-section {
    margin-bottom: 60px;
}

.features-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(231, 14, 14, 0.1);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(231, 14, 14, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(231, 14, 14, 0.15);
    border-color: rgba(231, 14, 14, 0.6);
    box-shadow: 0 15px 40px rgba(231, 14, 14, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.feature-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.benefits-section {
    margin-bottom: 60px;
}

.benefits-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: white;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    border-left: 4px solid #e70e0e;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(10px);
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.benefit-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.service-cta-section {
    margin-top: 60px;
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, rgba(231, 14, 14, 0.1) 0%, rgba(231, 14, 14, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid rgba(231, 14, 14, 0.3);
}

.service-cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: white;
}

.service-cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.service-footer-cta {
    padding: 60px 50px;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid rgba(231, 14, 14, 0.3);
}

.service-footer-cta h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 30px;
}

.other-services-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service-link {
    padding: 12px 25px;
    background: rgba(231, 14, 14, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(231, 14, 14, 0.5);
    font-weight: 500;
}

.service-link:hover {
    background: #e70e0e;
    border-color: #e70e0e;
    transform: scale(1.05);
}

/* Responsive Design for Service Detail Pages */
@media (max-width: 768px) {
    .service-detail-section {
        padding: 60px 15px 40px;
    }

    .service-detail-header h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .service-detail-header p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .service-detail-content {
        padding: 40px 20px;
    }

    .service-detail-body {
        padding: 25px 18px;
        background: rgba(255, 255, 255, 0.03);
    }

    .service-intro {
        margin-bottom: 40px;
    }

    .service-intro h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .service-intro p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .features-section {
        margin-bottom: 40px;
    }

    .features-section h2 {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .feature-card {
        padding: 22px;
        border-radius: 10px;
    }

    .feature-card:hover {
        transform: translateY(-5px);
    }

    .feature-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .benefits-section {
        margin-bottom: 40px;
    }

    .benefits-section h2 {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    .benefits-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .benefit-item {
        padding: 22px;
        border-left: 3px solid #e70e0e;
    }

    .benefit-item:hover {
        transform: translateX(5px);
    }

    .benefit-item h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .benefit-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .service-detail-image {
        height: 220px;
        margin-bottom: 35px;
        border-radius: 12px;
    }

    .service-cta-section {
        margin-top: 40px;
        padding: 35px 20px;
        border-radius: 12px;
    }

    .service-cta-section h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .service-cta-section p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .service-footer-cta {
        padding: 40px 20px;
    }

    .service-footer-cta h3 {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    .other-services-links {
        flex-direction: column;
        gap: 12px;
    }

    .service-link {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* Service Detail Pages with Section Header */
.service-detail-section .section-header {
    padding: 100px 50px 80px;
    background: linear-gradient(250deg, #090c11 0%, #0d1419 100%);
    margin: 0;
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: linear-gradient(135deg, #0a0e13 0%, #1a1f2e 100%);
    color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 0, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 60px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-section h4 {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* .footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 10px;
} */
.footer-logo img {
    height: 100px;
    width: 190px;
    /* margin-bottom: 0px; */
}
.footer-logo p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-social h4 {
    margin-bottom: 15px;
}

.footer-links,
.footer-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li,
.footer-info li {
    margin: 0;
}

.footer-links a,
.footer-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover,
.footer-info a:hover {
    color: #ff0000;
    padding-left: 5px;
}

.footer-info {
    font-size: 14px;
}

.footer-info li {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-info strong {
    color: white;
    font-size: 13px;
    font-weight: 600;
}

.footer-info span {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: inline-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 ease;
    text-decoration: none;
    font-size: 16px;
}

.social-icon:hover {
    background: #ff0000;
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 0, 0, 0.1);
    padding: 25px 80px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-content p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* WhatsApp Widget Styling */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 28px;
    color: white;
}

.whatsapp-float i {
    font-size: 28px;
    color: white;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 360px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.2);
    z-index: 999;
    overflow: hidden;
    display: none;
    flex-direction: column;
    animation: slideUp 0.3s ease;
}

.whatsapp-widget.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-header {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: white;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.whatsapp-close {
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
}

.whatsapp-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.whatsapp-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-message {
    background: #f0f0f0;
    padding: 15px;
    border-radius: 12px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    max-width: 80%;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    align-self: flex-end;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:active {
    transform: scale(0.95);
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-widget {
        bottom: 85px;
        right: 20px;
        left: 20px;
        width: auto;
    }

    .whatsapp-message {
        max-width: 100%;
    }
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: #ff0000;
}

/* Responsive Footer - Update these sections */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 50px 60px;
    }
    
    .footer-logo-section {
        grid-column: 1 / -1;
    }
    
    .footer-logo img {
        height: 70px; /* Slightly smaller for tablets */
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 30px;
    }

    .footer-bottom {
        padding: 20px 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-logo img {
        height: 60px; /* Smaller for mobile */
    }
    
    .footer-logo p {
        font-size: 13px; /* Smaller text on mobile */
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 30px 20px;
        gap: 25px;
    }

    .footer-bottom {
        padding: 20px;
    }

    .footer-bottom-content p,
    .footer-legal {
        font-size: 12px;
    }

    .social-links {
        justify-content: flex-start;
    }

    .footer-logo img {
        height: 50px; /* Even smaller for very small screens */
        max-width: 200px; /* Add max-width to prevent stretching */
    }
    
    .footer-logo p {
        font-size: 12px;
        line-height: 1.6;
    }
    
    .social-icon {
        width: 36px; /* Slightly smaller icons on mobile */
        height: 36px;
        font-size: 14px;
    }
}