body {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    background: #f9fafe;
    color: #222;
}
p{
    font-size: 16px;
    line-height: 1.6;
}
.section{
    padding: 60px 0;
}
.navbar-brand {
    letter-spacing: 1px;
}
.text-shadow {
    text-shadow: 1px 2px 4px rgba(0,0,0,0.3);
}
.hero-section {
    background: linear-gradient(90deg, #fff 60%, #dbeafe 100%);
    min-height: 400px;
}
.banner-section {
    background: linear-gradient(70deg, #6366f1 70%, #a7f3d0 100%);
}
.testimonials-section {
    background: #fff;
}
.contact-section {
    background: #f1f5f9;
}
.contact-details img {
    filter: grayscale(1) brightness(0.7);
    transition: filter 0.2s;
}
.contact-details img:hover {
    filter: none;
}
.whatsapp-popup {
    overflow: hidden;
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 320px;
    border-radius: 16px;
    background: #fff;
    display: none;
    z-index: 10;
    animation: popupIn 0.5s cubic-bezier(.47,1.64,.41,.8);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
@keyframes popupIn {
    from { transform: translateY(50px) scale(0.85); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 0 auto;
    padding: 16px 0 32px 0;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(50, 50, 50, 0.09);
    background: #fff;
    transition: transform .2s;
    position: relative;
    aspect-ratio: 1 / 1.2;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1.2;
    object-fit: cover;
    object-position: center;
    transition: transform .18s cubic-bezier(.4, 2, .6, 1);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.04);
    object-fit: contain;
}



@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-item {
        aspect-ratio: 1/1.2;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery-item {
        aspect-ratio: 1/1;
    }
}

.slick-slider-component {
    /* background: #232323; */
    padding: 32px 0;
}

.slick-slider {
    margin: 0 16px;
}

.slick-slide {
    padding: 0 8px;
}

.slick-slider-card {
    position: relative;
    margin-right: 5px;
    /* border-radius: 10px; */
    overflow: hidden;
    /* min-height: 440px; */
    aspect-ratio: 4/5.5;
    padding: 0 !important;
    /* background: #222; */
    /* box-shadow: 0 7px 40px rgba(0, 0, 0, 0.18); */
    transition: transform 0.2s;
    cursor: pointer;
}

.slick-slider-card img {
    width: 100%;
    /* height: 440px; */
    aspect-ratio: 4/5.5;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.slick-slider-card:hover img {
    transform: scale(1.03);
}

.slick-slider-card-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 24px 18px 24px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.30);
}

.slick-arrow {
    z-index: 2;
}

@media (max-width: 1024px) {
    .slick-slider-card img {
        /* height: 320px; */
    }

    .slick-slider-card-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .slick-slider-card img {
        /* height: 220px; */
    }

    .slick-slider-card-title {
        font-size: 1.1rem;
        padding: 18px 10px 8px 10px;
    }
}


.hero-component {
    margin-top: 100px;
    min-height: 90vh;
    position: relative;
    background: url('../img/hero1.jpg') left bottom/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-component .hero-content {
    background: rgba(255, 255, 255, 0.92);
    max-width: 540px;
    margin: 60px 0;

}

@media (max-width: 768px) {
    .hero-component {
        min-height: 420px;
    }

    .hero-component .hero-content {
        padding: 2rem;
        margin: 20px 0;
    }
}

.service-card {
    cursor: pointer;
    display: block;
    position: relative;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    border-radius: 10px;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.service-card h5 {
    display: block;
    position: absolute;
    font-weight: 600;
    color: #333;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: 0 20px;
    border-radius: 10px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 1.2rem;
}


/* Unique Popup Form Section */
.popup-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(25, 36, 55, 0.18);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    transition: background 0.2s;
}

.popup-form-overlay.active {
    display: flex;
}

.popup-form-section {
    width: 90vw;
    max-width: 860px;
    min-height: 480px;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 64px rgba(40, 40, 80, 0.16);
    display: flex;
    animation: popupFormIn 0.32s cubic-bezier(.47, 1.64, .41, .8);
    position: relative;
}

@keyframes popupFormIn {
    from {
        transform: translateY(60px) scale(.97);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}


.banner {
    /* background: url('img/banner.jpg') center center/cover no-repeat; */
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/banner.jpg');
    background-position: center;

    padding: 80px 0;
    color: #fff;
    min-height: 400px;
    display: flex;
    align-items: center;
}
.banner h2 {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    color: #fff;
}
.banner p {
    font-size: 1.1rem;
    color: #f8f9fa;
}
.banner .mybtn {
    background-color:rgb(28, 28, 28);
    color: #fff;
    font-size: 1.1rem;
    padding: 12px 24px;
    border-radius: 8px;
    transition: background-color 0.2s;
    text-decoration: none;
    cursor: pointer;
}
.banner .mybtn:hover {
    background-color:rgb(213, 213, 213);
    color: #111;
}

.popup-form-bg {
    flex: 1 1 43%;
    background: url('../img/back.jpg') center center/cover no-repeat;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 24px 22px 24px;
    color: #222;
}

.popup-form-bg .popup-form-brand {
    background: rgba(255, 255, 255, 0.87);
    border-radius: 10px;
    padding: 14px 10px 6px 10px;
}

.popup-form-bg .popup-form-brand-logo {
    width: 44px;
    margin-bottom: 8px;
}

.popup-form-bg .popup-form-socials a {
    display: inline-block;
    margin-right: 8px;
    margin-top: 8px;
    color: #212b36;
    font-size: 1.4rem;
    padding: 6px 10px;
    background: #f4f6fa;
    border-radius: 5px;
    transition: background 0.18s, color 0.18s;
}

.popup-form-bg .popup-form-socials a:hover {
    background: #2563eb;
    color: #fff;
}

.popup-form-content {
    flex: 1 1 57%;
    padding: 38px 32px 32px 32px;
    background: linear-gradient(90deg, #fff 80%, #f8faff 100%);
    position: relative;
}

.popup-form-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #8a94a6;
    transition: color 0.18s;
    z-index: 2;
}

.popup-form-close:hover {
    color: #111;
}

.popup-form-content h2 {
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 4px;
}

.popup-form-content p {
    font-size: 1.04rem;
    color: #7c8190;
    margin-bottom: 28px;
}

.popup-form .form-label {
    font-size: 0.98rem;
    color: #222;
    font-weight: 500;
    margin-bottom: 3px;
}

.popup-form .input-group-text {

    position: absolute;
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 1.2rem;
    padding-left: 0;
    z-index: 10;
    left: 10px;
    top: 5px;
}

.popup-form .form-control {
    border: 2px solid #e4e9ef;
    border-radius: 8px;
    background: #f9fbfc;
    font-size: 1.07rem;
    padding: 10px 12px 10px 38px;
    transition: border-color 0.15s;
    box-shadow: none;
}

.popup-form .form-control:focus {
    border-color: #2563eb;
    background: #fff;
}

.popup-form .input-group {
    margin-bottom: 18px;
}

.popup-form .row .input-group {
    margin-bottom: 0;
}

.popup-form .row>.col {
    padding-right: 8px;
    padding-left: 8px;
}

.popup-form textarea.form-control {
    min-height: 80px;
    resize: vertical;
}

.popup-form .btn-primary {
    background: #2563eb;
    border: none;
    border-radius: 8px;
    font-size: 1.13rem;
    font-weight: 600;
    width: 100%;
    padding: 12px 0;
    margin-top: 6px;
    transition: background 0.16s;
}

.popup-form .btn-primary:hover {
    background: #1e40af;
}

@media (max-width: 900px) {
    .popup-form-section {
        flex-direction: column;
        min-width: 0;
    }

    .popup-form-bg {
        min-height: 180px;
        order: 2;
        padding: 16px 12px 10px 12px;
    }

    .popup-form-content {
        padding: 24px 12px 20px 12px;
    }
}

@media (max-width: 520px) {
    .popup-form-section {
        max-width: 99vw;
    }

    .popup-form-content h2 {
        font-size: 1.3rem;
    }

    .popup-form-content p {
        font-size: 0.95rem;
    }

    .popup-form-bg .popup-form-brand {
        font-size: 0.98rem;
    }
}

.my-footer {
    background: #fff;
    color: #333;
    padding: 30px 40px;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    letter-spacing: 0;
    position: relative;
    z-index: 200;
    border-top: 1px solid #eaeaea;
}

.my-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px;
}

.my-footer .footer-col {
    min-width: 160px;
    flex: 1 1 160px;
}

.my-footer .footer-logo {
    font-weight: 700;
    font-size: 2rem;
    color: #2d4631;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.my-footer .footer-logo span {
    margin-left: 8px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d4631;
}

.my-footer .footer-section-title {
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
}

.my-footer ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.my-footer ul li {
    margin-bottom: 10px;
}

.my-footer ul li a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s;
}

.my-footer ul li a:hover {
    color: #2d4631;
}

.my-footer .footer-contact {
    margin-bottom: 20px;
    color: #676767;
    font-size: 15px;
}

.my-footer .footer-socials {
    display: flex;
    gap: 20px;
    margin-top: 8px;
    margin-bottom: 24px;
}

.my-footer .footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    color: #263C29;
    font-size: 1.6rem;
    transition: background 0.2s, color 0.2s;
}

.my-footer .footer-socials a:hover {
    background: #e8f5e9;
    color: #1e6b37;
}

.my-footer .footer-bottom {
    margin-top: 40px;
    padding: 16px 0;
    color: #888;
    font-size: 14px;
    border-top: 1px solid #eaeaea;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.my-footer .footer-bottom a {
    color: #888;
    margin-left: 10px;
    text-decoration: none;
    transition: color 0.2s;
}

.my-footer .footer-bottom a:hover {
    color: #2d4631;
}

@media (max-width: 900px) {
    .my-footer .footer-container {
        flex-direction: column;
        gap: 0;
    }

    .my-footer .footer-col {
        margin-bottom: 32px;
    }

    .my-footer .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

.tag{
    color: #222;
    background: #eaeaea;
    font-size: 1rem;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 12px;
    margin-bottom: 18px;
    display: inline-block;
}
.section-title{
    font-size: 2.17rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: #111;
    margin-bottom: 14px;
}

.mobile-hero{
    display: none;
}

@media (max-width:600px) {
    .my-footer {
        padding: 20px 20px;
    }
    .section{
        padding: 30px 0;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .my-nav .border-btn{
        display: none;
    }
    .mobile-hero{
        display: block;
        width: 100%;
        margin-top: 100px;
    }
    .hero-component{
        margin-top: 0;
        background: transparent;
    }
    .display-5{
        font-size: 32px;
    }
    .hero-content{
        padding: 20px !important;
    }
    .btn.btn-lg{
        font-size: 14px;
        padding: 5px 10px !important;
    }
    .border-btn.call-btn{
        font-size: 14px;
        padding: 5px 10px !important;
    }

    .service-card{
        margin-bottom: 20px;
    }
}