:root {
            --primary-color: #1a1a1a;
            --secondary-color: #f8f9fa;
            --accent-color: #ffc107;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            color: var(--primary-color);
        }

        /* Navbar */
        .navbar {
            background: #fff;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color) !important;
        }

        .nav-link {
            color: var(--primary-color) !important;
            font-weight: 500;
            margin: 0 1rem;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--accent-color) !important;
        }

        /* Hero Section */
         .hero-section {
            position: relative;
            height: 100vh;
            background: url('img/slider.avif') center / cover no-repeat;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
        }

        /* OVERLAY */
        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.55);
        }

        /* CONTENT */
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 1000px;
            padding: 20px;
            margin-top: 250px;
            /*margin-top: 100px;*/
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        /* BUTTON */
        .btn-primary-custom {
            color: #fff;
            padding: 14px 50px;
            border-radius: 25px;
            border: 1px solid #fff;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
            background-color: #00a504 !important;
        }

        .btn-primary-custom:hover {
            background: #fff;
            color: #000;
            transform: scale(1.05);
        }

        /* SERVICES */
        .hero-services {
            display: flex;
            gap: 30px;
            margin-top:100px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .service-box {
            background: rgb(195 189 189 / 12%);
            padding: 25px 20px;
            width: 300px;
            border-radius: 5px;
            text-align: center;
            backdrop-filter: blur(3px);
        }

        .service-box h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .service-box p {
            font-size: 0.95rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        /* MOBILE */
        @media (max-width: 768px) {
            .hero-section {
                background-attachment: scroll;
                height: unset;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

            .hero-content p {
                font-size: 1.05rem;
            }

            .hero-services {
                margin-top: 40px;
                gap: 20px;
            }

            .service-box {
                width: 100%;
                max-width: 350px;
            }
        }

        /* Features Section */
        

        /* About Section */
        .btn-primary-custom-2{
    color: #000000;
    padding: 14px 50px;
    border-radius: 25px;
    border: 1px solid #080707;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
        margin-bottom: 40px;
        }
        .about-section {
            padding: 5rem 0;
        }

        .about-img {
            border-radius: 15px;
            width: 100%;
            height: auto;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        /* Services Section */
        .services-section {
            padding: 5rem 0;
            background: #1A1A2E;
        }

        .service-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
            transition: transform 0.3s;
        }
        

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .service-card-body {
            padding: 2rem;
        }

        /* Testimonial Section */
        .testimonial-section {
            padding: 5rem 0;
            background-color: #3A4750;

        }

        .testimonial-card {
            /* background: var(--secondary-color); */
            padding: 3rem;
            border-radius: 15px;
            text-align: center;
        }

        .testimonial-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 1rem;
        }

        .stars {
            color: var(--accent-color);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 5rem 0;
            background: var(--secondary-color);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Contact Section */
        .contact-section {
            padding: 5rem 0;
            background: url('img/back-gall.avif') center/cover no-repeat;
            position: relative;
            color: #fff;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgb(1 0 35 / 46%);
        }

        .contact-content {
            position: relative;
            z-index: 1;
        }
      
       
        .contact-form {
            background: #fff;
            padding:24px;
            border-radius: 15px;
            color: var(--primary-color);
        }

        .form-control {
            padding: 0.75rem;
            border-radius: 5px;
            border: 1px solid #ddd;
            margin-bottom: 1rem;
        }

        .btn-submit {
           background: #3A4750;
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    /* width: 50%; */
    text-align: center;
        }
        

        /* Footer */
        .footer {
            background:#1A1A2E;
            color: #fff;
            padding: 3rem 0 1rem;
        }

        .footer h5 {
            margin-bottom: 1.5rem;
        }

        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer a:hover {
            color: var(--accent-color);
        }

        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 1rem;
            margin-top: 2rem;
            text-align: center;
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }

          .main-fom{
            text-align: center !important;
            margin-bottom: 50px;
       }

       /* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 6px;
}
.gall{
        position: relative;
}

/* CLOSE ICON */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* LEFT RIGHT BUTTON */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    transform: translateY(-50%);
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        font-size: 35px;
    }
}

/* ===== KEYMAKER SERVICES ===== */

.keymaker-services-section {
    background: #EFF1F4;
    padding: 70px 0;
}

.keymaker-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.keymaker-services-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: #1f3c88;
    margin-bottom: 60px;
}

/* 👉 DESKTOP: 3 COLUMN */
.keymaker-services-list {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD */
.keymaker-service-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* ICON */
.keymaker-service-icon {
    font-size: 40px;
    color: #1f3c88;
    margin-bottom: 18px;
}

.keymaker-service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f3c88;
    margin-bottom: 12px;
}

.keymaker-service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

/* 👉 TABLET: 2 COLUMN */
@media (max-width: 992px) {
    .keymaker-services-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 👉 MOBILE: 1 COLUMN */
@media (max-width: 576px) {
    .keymaker-services-list {
        grid-template-columns: 1fr;
    }

    .keymaker-services-title {
        font-size: 2rem;
    }
}

