* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito Sans", sans-serif;
}

@media (min-width: 992px) {
    .container {
        max-width: 80% !important;
    }
}

.hero {
    background: url("../images/banner1.webp") center center/cover no-repeat;
    color: white;
    padding: 90px 0;
    position: relative;
    z-index: 1;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6); /* ← adjust darkness */
    z-index: -1; /* keeps overlay behind your content */
}

.hero-form {
    background: #fff;
    /* semi-transparent for glass effect */
    backdrop-filter: blur(10px);
    /* glassy blur */
    border: 1px solid rgba(61, 47, 47, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    color: #000;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-form:hover {
    /*transform: translateY(-5px);*/
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.hero-form label {
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    color: #222222;
    /* soft white */
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: normal;
    /* optional */
}

/* Prevent checkbox from stretching full width */
.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.hero-form input {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: rgb(37, 37, 37);
    transition: all 0.3s ease;
}

.hero-form input::placeholder {
    color: #3f3f3faa;
}

.hero-form input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: #000;
    outline: none;
}

.hero-form button {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-radius: 10px;
    background: #0052A2;
    color: #000;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.hero-form button:hover {
    background: #0052A2;
}

.hero-form p {
    margin-top: 15px;
    font-weight: bold;
    text-align: center;
}

#header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: white;
}

#header .navbar-brand h3 {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 900;
    font-size: 28px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;

    /* Gradient color */
    background: #0052A2;
    /* you can change colors */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: background 0.3s ease, text-shadow 0.3s ease;
}

#header .navbar-brand h3:hover {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    /* subtle shadow on hover */
}

#header .call-btn {
    background: #0052A2;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.call-btn:hover {
    background: #0052A2;
    color: #fff;
}

/* .hero-section {
    position: relative;
    background: url('../images/Rectangle.webp') center center / cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 65px;
} */

/* Transparent overlay on image */
/* .hero-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 1;
} */

/* front page banner section  */

.hero-section {
    height: 100vh;
    background: url("https://images.unsplash.com/photo-1729575846511-f499d2e17d79?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8YmFja2dyb3VuZCUyMGZvciUyMHdlYnNpdGV8ZW58MHx8MHx8fDA%3D") center center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 40px 0;
}


.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2.5px);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
}

.subtitle {
    font-size: 18px;
    margin-top: 20px;
    line-height: 1.6;
}

.form-card {
    width: 100%;
    max-width: 450px;
    background: #ffffff;
    padding: 28px;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.20) 0px 8px 20px;
    position: relative;
    z-index: 2;
}

.form-card h2 {
    font-weight: 600;
    color: #004aad;
}

/* Responsive text sizes */
@media (max-width: 992px) {
    .hero-title {
        font-size: 34px;
    }

    .subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 60px 0;
    }

    .form-card {
        margin-top: 40px;
    }

    .hero-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 26px;
    }

    .subtitle {
        font-size: 14px;
    }

    .form-card {
        padding: 22px;
    }
}


/* end front page banner section  */
/* .hero-form-container {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    /* white with slight transparency */
/*  border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hero-form-container h3 {
    font-weight: 600;
    color: #0052A2;
}

.hero-form-container .btn {
    background: #0052A2;
    border: none;
    font-weight: 500;
}

.hero-form-container .btn:hover {
    background-color: #0052A2;
} */

.logo-slider {
    margin: 20px 0;
}

.logo-slider .slider1 img {
    height: 60px;
    /* object-fit: contain; */
    border: 1px solid #5754549c;
}

.feature {
    margin: 30px 0;
}

.feature-image {
    width: 100%;
    border-radius: 0 200px 0 200px;
    /* rounded corners like your example */
    object-fit: cover;
}

.feature-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.feature-text h1 {
    font-weight: 600;
    letter-spacing: 2px;
}

.feature-text p {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
}

.carousel-item {
    padding: 20px 0;
}

.card img {
    height: 500px;
    object-fit: cover;
}

/* Slider 1 */
.slider1 img {
    margin-right: 10px;
}

/* SLider2 Style */
.slider2 .heading {
    color: #302e2e;
}

.slider2 .heading p {
    font-size: 1.5rem;
}

.slider2 .card {
    border: none;
    overflow: hidden;
    position: relative;
}

.slider2 .card img {
    width: 550px;
    height: 550px;
    display: block;
}

.slider2 .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: white;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    text-align: center;
    transition: 0.3s ease;
}

.slider2 .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.slider2 .read-more {
    font-size: 0.9rem;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid white;
    padding-bottom: 2px;
}

.slider2 .read-more:hover {
    color: #f1c40f;
    /* golden hover color */
    border-color: #f1c40f;
}

.card:hover .card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
}

/* Marque */
.marquee {
    overflow: hidden;
    margin-top: 20px;
    white-space: nowrap;
    width: 100%;
    background: rgb(219, 216, 216);
    padding: 20px 0;
}

.marquee-content {
    display: inline-flex;
    gap: 50px;
    animation: scroll 25s linear infinite;
}

.marquee-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 28px;
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.middle img {
    width: 100%;
    height: 600px;
}

/* Footer */

.footer {
    background: linear-gradient(90deg, #413c6e 0%, #402c46 50%, #523224 100%);
    color: #fff;
    padding: 40px 20px 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-logo h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 28px;
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.footer-links {
    display: flex;
    flex: 1;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-section {
    min-width: 150px;
}

.footer-section h4 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 8px;
}

.footer-section h4::after {
    content: "";
    width: 30px;
    height: 2px;
    background-color: white;
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #feb47b;
}

.contact-section p {
    font-size: 14px;
    line-height: 1.5;
    margin: 6px 0;
}

.contact-section a {
    color: #fff;
    text-decoration: none;
}

.contact-section a:hover {
    color: #feb47b;
}

.social-icons {
    margin-top: 12px;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
    margin-right: 12px;
    font-size: 18px;
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    background-color: #feb47b;
    color: #000;
}

hr {
    border-color: #444;
    margin: 20px 0;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #bbb;
    font-weight: 400;
}

/*-------------------------------------------------------------------------------------
    contact area
---------------------------------------------------------------------------------------*/
#contact-area {
    margin: 50px 0;
}

.contact-form input,
.contact-form textarea {
    font-size: 15px;
    border-color: #daecfd;
}

.contact-form input {
    height: 55px
}

.contact-form input,
.contact-form textarea {
    height: 200px
}

.contact-form input {
    height: 50px;
}

.contact-form label {
    font-weight: 500;
    margin: 5px;
}

.add34ew p {
    margin: 0;

}

.add34ew {
    padding-top: 30px;
    text-decoration: none;
}

.add34ew a {
    text-decoration: none !important;
    color: inherit !important;
}

/* Start collection  */

.product-card {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2); */
}

.product-card img {
    height: 299px;
    /* set desired height */
    width: 100%;
    /* make it fill the card width */
    object-fit: fill;
    /* maintain aspect ratio and crop if necessary */
    display: block;

}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 17px 12px;
    color: #000000;
    font-weight: 600;
    font-size: 2rem;
    text-align: left;

    /* Nice dark-to-transparent gradient */
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0)); */
}

/* End Collection  */

/* services area  start */


.service-box h5 {
    background: #e5e5e5;
    padding: 12px 0;
    font-weight: 800;
    margin: 15px 0 0 0;
    /* <-- gap added */
    border-radius: 0 0 8px 8px;
}

.service-box img {
    width: 100%;
    height: 361px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.service-box {
    border-radius: 1px;
    overflow: hidden;
    /* background: #fff; */
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    transition: .3s;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}



/* End Services area */

/* .testimonial  */

h5.text-danger {
    letter-spacing: 0.3em;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

h2 {
    font-weight: 700;
    font-family: "Nunito Sans", sans-serif;
    margin-bottom: 3rem;
    color: #222;
}

.testimonial-slider {
    /* to avoid slick default margin issues */
    margin: 0 -0.75rem;
}

.testimonial-box {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 2rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    font-weight: 400;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.4;
    box-sizing: border-box;
    margin: 0 0.75rem;
}

.google-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 25px;
    height: 25px;
    opacity: 0.85;
}

.star-rating {
    margin-bottom: 1rem;
}

.star-rating span {
    color: #f0c419;
    font-size: 1.1rem;
    margin-right: 3px;
    user-select: none;
}

.testimonial-box p {
    flex-grow: 1;
    text-align: justify;
    margin-bottom: 1.5rem;
    user-select: text;
}

.author {
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    color: #222;
    text-transform: uppercase;
}

.avatar {
    width: 40px;
    height: 40px;
    background: #1596A5;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.author-name {
    margin-left: 0.5rem;
}

/* Override slick default dots style (optional) */
.slick-dots li button:before {
    font-size: 10px;
    color: #999;
    opacity: 0.7;
}

.slick-dots li.slick-active button:before {
    color: #0052A2;
    opacity: 1;
}

Arrows color .slick-prev:before,
.slick-next:before {
    color: #ffffff;
    font-size: 0px;
}

/* end testimonial */

.contact-form button {
    background: #0052A2;
    padding: 15px 30px;
    color: #fff;
    border-radius: 4px;
    font-weight: 400;
    border: 1px solid transparent;
    margin-top: 10px;
}

.contact-form button:hover {
    background-color: #0052A2;
    color: #fff;
    border: 1px solid #000;
}

.contact-form .call-btn {
    background: #000000;
    color: rgb(255, 255, 255);
    border: none;
    padding: 12px 100px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    /* transition: 0.3s; */
}

.contact-form .call-btn:hover {
    background: #000;
    color: #fff;
}

/* Responsive */

@media (max-width: 768px) {
    .hero-section {
        height: 90vh;
    }

    .hero-section img {
        height: 500px;
        padding-top: 100px;
    }

    .feature-image {
        width: 100%;
        border-radius: 0 200px 0 200px;
        object-fit: cover;
        height: 400px;
    }

    .slider2 .card {
        border: none;
        overflow: hidden;
        position: relative;
    }

    .slider2 .card img {
        height: 200px;
        display: block;
        object-fit: fill;
    }

    .slider2 .card-title {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 2px;
    }

    .slider2 .read-more {
        font-size: 10px;
        color: white;
        text-decoration: none;
        border-bottom: 1px solid white;
        padding-bottom: 2px;
    }

    .middle img {
        width: 100%;
        height: 400px;
    }
}

/* 
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        gap: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    .footer-section {
        min-width: 100%;
    }
} */