
:root {
    --accent:#5dbb7c;
    --greenish:#515a48;
    --display-ff:font-family: 'Rampart One';
}

@import url('https://fonts.googleapis.com/css?family=Rampart%20One:700|Rampart%20One:400');
/* Reset and Base Styles */
/* Style the date picker icon and text for webkit browsers (Chrome, Edge, Safari) */
            input[type="date"]::-webkit-calendar-picker-indicator {
                filter: invert(1);
                cursor: pointer;
            }
            input[type="date"]::-webkit-datetime-edit {
                color: white;
            }
            input[type="date"]::-webkit-datetime-edit-month-field {
                color: white;
            }
            input[type="date"]::-webkit-datetime-edit-day-field {
                color: white;
            }
            input[type="date"]::-webkit-datetime-edit-year-field {
                color: white;
            }
            input[type="date"]::-webkit-datetime-edit-text {
                color: white;
            }
            /* For Firefox */
            input[type="date"] {
                color-scheme: dark;
            }
       

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e8e8f0;
    background: #0b0b0c;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    color: #a8acb8;
    margin-bottom: 1em;
    font-size: clamp(1rem, 1.2vw, 1.125rem);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    /* background: linear-gradient(135deg, #78a6ff, #69f0ae); */
    background-color: var(--accent);
    color: #000;
    box-shadow: 0 4px 15px rgba(105, 240, 174, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(105, 240, 174, 0.4);
}

.btn-outline {
    border: 1px solid #1f2230;
    background: rgba(255, 255, 255, 0.05);
    color: #e8e8f0;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(11, 11, 12, 0.85);
    border-bottom: 1px solid #1f2230;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.brand:hover {
    transform: scale(1.05);
}

.logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* If using inline SVG */
.logo svg {
    width: 35px;
    height: 35px;
    color: #0b0b0c;
}

/* If using img tag - choose ONE, not both */
.logo img {
    width: 70px;
    height: auto;
}

/* Brand text styling */
.brand-text {
    font-weight: 700;
    font-size: 1.2rem;
    color: #e8e8f0;
}

.brand-subtext {
    display: block;
    font-size: 0.8rem;
    color: #a8acb8;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Fix spacing - move margin to brand container */
.brand-text,
.brand-subtext {
    margin-left: 12px;
}

/* Make brand container flex */
.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Navigation */
.nav-links {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 500;
    color: #e8e8f0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    /* color: #78a6ff; */
    color: var(--accent);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #e8e8f0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* begin */

/* Complete Mobile Menu Fix */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}
/* @media (max-width: 768px) { */
@media (max-width: 994px) {
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .nav-links {
        position: fixed;
        top: 81px !important;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #0a0a0f !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 20px;
    }

    .nav-links.active {
        right: 0;
        top:81px
    }

    .nav-link {
        padding: 16px 32px;
        font-size: 20px;
        font-weight: 600;
        text-align: center;
        width: auto;
        min-width: 160px;
        color: #e8e8f0;
        text-decoration: none;
        border-radius: 12px;
        transition: all 0.2s ease;
        /* Better touch target */
        touch-action: manipulation;
    }

    .nav-link:hover {
        background: rgba(120, 166, 255, 0.1);
        color: #78a6ff;
        transform: scale(1.05);
    }

    /* Make the X button more visible and clickable */
    .mobile-menu-btn {
        padding: 12px;
        gap: 6px;
    }
    
    .hamburger-line {
        width: 28px;
        height: 3px;
    }

    /* copied to. be deleted if it is not working */
   .contact-grid {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 2rem; /* Keep spacing between stacked elements */
    }
}

/* new */

/* Complete Mobile Menu Fix - Scrollable menu, no background scroll */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}
/* @media (max-width: 768px) { */
@media (max-width: 994px) {
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #0a0a0f;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start; /* Changed from center to flex-start */
        overflow-y: auto; /* Allow scrolling within menu */
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 100px 20px 40px 20px; /* Added top padding for space */
        gap: 20px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        padding: 16px 32px;
        font-size: 20px;
        font-weight: 600;
        text-align: center;
        width: auto;
        min-width: 200px;
        color: #e8e8f0;
        text-decoration: none;
        border-radius: 12px;
        transition: all 0.2s ease;
        touch-action: manipulation;
    }

    .nav-link:hover {
        background: rgba(120, 166, 255, 0.1);
        color: #78a6ff;
        transform: scale(1.05);
    }

    /* Make the X button more visible */
    .mobile-menu-btn {
        padding: 12px;
        gap: 6px;
    }
    
    .hamburger-line {
        width: 28px;
        height: 3px;
    }
}

/* cocpi */

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(11, 11, 12, 0.8) 0%,
        rgba(11, 11, 12, 0.6) 50%,
        rgba(11, 11, 12, 0.8) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(120, 166, 255, 0.1);
    border: 1px solid rgba(120, 166, 255, 0.2);
    border-radius: 50px;
    color: #69f0ae;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    margin-bottom: 24px;
    line-height: 1.1;
}

.gradient-text {
    background-color: var(--accent);
    /* background: linear-gradient(135deg, #78a6ff, #69f0ae); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-dark {
    background: #111216;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 32px;
}

.section-title {
    margin-bottom: 16px;
}

.section-description {
    max-width: 600px;
    font-size: 1.125rem;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.portfolio-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4/5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* overlay fix */
.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* Show overlay always on mobile/small screens */
/* @media (max-width: 768px) { */
@media (max-width: 770px) {
    .portfolio-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.6));
        padding: 16px;
    }
    
    /* Optional: Make text more readable on mobile */
    .portfolio-overlay h3,
    .portfolio-overlay p {
        color: white;
        margin: 4px 0;
    }
    
    .portfolio-overlay h3 {
        font-size: 18px;
    }
    
    .portfolio-overlay p {
        font-size: 14px;
    }
}

/* fix end */

.portfolio-category {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(105, 240, 174, 0.2);
    border: 1px solid rgba(105, 240, 174, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 12px;
    backdrop-filter: blur(10px);
    color: #69f0ae;
    font-weight: 500;
}

.portfolio-title {
    margin-bottom: 8px;
    color: white;
    font-size: 1.25rem;
}

.portfolio-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #a8acb8;
    background: rgba(17, 18, 22, 0.8);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.meta-item svg {
    width: 14px;
    height: 14px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.service-card {
    background: #111216;
    border-radius: 18px;
    padding: 32px;
    border: 1px solid #1f2230;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #78a6ff, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: #78a6ff;
}

.service-card.featured {
    border-color: #69f0ae;
    background: linear-gradient(135deg, rgba(105, 240, 174, 0.05), rgba(120, 166, 255, 0.05));
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 16px;
}

.service-info {
    flex: 1;
}

.service-title {
    margin-bottom: 8px;
    color: #e8e8f0;
}

.service-description {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.service-delivery {
    font-size: 0.85rem;
    color: #78a6ff;
    font-weight: 500;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #69f0ae;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #a8acb8;
    font-size: 0.9rem;
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #69f0ae;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Additional Services */
.additional-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.service-extra {
    background: #111216;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid #1f2230;
    text-align: center;
    transition: all 0.3s ease;
}

.service-extra:hover {
    border-color: #78a6ff;
    transform: translateY(-4px);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(120, 166, 255, 0.1);
    border-radius: 16px;
    margin: 0 auto 16px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: #78a6ff;
}

.service-extra h3 {
    margin-bottom: 12px;
    color: #e8e8f0;
}

.service-extra p {
    font-size: 0.9rem;
}

/* About Section */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.about-text h3 {
    margin-bottom: 24px;
    color: #e8e8f0;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-image {
    border-radius: 18px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.about-card {
    background: #111216;
    border-radius: 18px;
    padding: 32px;
    border: 1px solid #1f2230;
    text-align: center;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: #78a6ff;
}

.about-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(120, 166, 255, 0.1);
    border-radius: 16px;
    margin: 0 auto 20px;
}

.about-icon svg {
    width: 28px;
    height: 28px;
    color: #78a6ff;
}

.about-card h3 {
    margin-bottom: 16px;
    color: #e8e8f0;
}

.about-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    text-align: center;
}

.stat {
    padding: 24px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #69f0ae;
    margin-bottom: 8px;
}

.stat-label {
    color: #a8acb8;
    font-weight: 500;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-form-container,
.contact-info-container {
    background: #111216;
    border-radius: 18px;
    padding: 32px;
    border: 1px solid #1f2230;
}

.contact-form-container h3,
.contact-info-container h3 {
    margin-bottom: 24px;
    color: #e8e8f0;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}


.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: #e8e8f0;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #1f2230;
    border-radius: 8px;
    color: #e8e8f0;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #78a6ff;
    box-shadow: 0 0 0 3px rgba(120, 166, 255, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* copied */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-group select option {
    background-color: #1f2230;
    color: #e8e8f0;
}

/* end */
/* Contact Info */
.contact-items {
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px dashed #1f2230;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(120, 166, 255, 0.1);
    border-radius: 12px;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: #78a6ff;
}

/* custom icon */
.custom-icon {
    font-size: 1.4rem; /* try 1.2, 1.4, etc */
}

.contact-label {
    font-size: 0.85rem;
    color: #a8acb8;
    margin-bottom: 4px;
}

.contact-item a {
    color: #e8e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #78a6ff;
}

/* FAQ Section */
.faq-section {
    margin-top: 32px;
}

.faq-list {
    margin-top: 20px;
}

.faq-item {
    border-bottom: 1px solid #1f2230;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    color: #e8e8f0;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #78a6ff;
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 20px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #111216;
    padding: 32px 0;
    text-align: center;
    border-top: 1px solid #1f2230;
}

.footer p {
    color: #a8acb8;
    font-size: 0.9rem;
}

/* Responsive Design */
/* @media (max-width: 768px) { */
    @media (max-width: 770px) {
    .mobile-menu-btn {
        display: flex;
    }
    .about-stats {
    
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    
}

    .nav-links {
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        background: rgba(17, 18, 22, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 70px;
        border-bottom: 1px solid #1f2230;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-link {
        padding: 16px;
        border-bottom: 1px solid #1f2230;
        text-align: center;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .hero {
        padding: 100px 0 80px;
        min-height: 90vh;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section {
        padding: 60px 0;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-story {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    } */

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .additional-services {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-card,
    .contact-form-container,
    .contact-info-container,
    .about-card {
        padding: 24px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid #78a6ff;
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-outline {
        border-color: #e8e8f0;
    }
    
    .service-card,
    .contact-form-container,
    .contact-info-container {
        border-color: #e8e8f0;
    }
}




/* me */

.hero-video {
    position: relative;
     /* width: 100%; */
     height: 100vh;  
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* 0.5 = 50% darkness */
    pointer-events: none; /* So it doesn’t block clicks */
}




/* test */


@media screen and (max-width: 994px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem; /* Adds padding on smaller screens */
    }
    
    /* Optional: Make form rows stack vertically on mobile */
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
}