@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=GFS+Didot&display=swap');

@font-face {
    font-family: 'Letteria Pro';
    src: url('/front/assets/font/Letteria Pro Script Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/* Your existing styles */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    
}

/* Adding padding to the body to account for fixed header */

body {
    position: relative;
    overflow-x: auto;
    background-color: #fff;
}

a {
    text-decoration: none;
}




:root {
    --abril-font: "GFS Didot", sans-serif;
    --secondary-font: "GFS Didot", sans-serif;
}


::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: #F96430;
}

/* ///////  Header section start  ////////  */


header {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    transition: transform 0.9s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

header.sticky {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar {
    width: 100%;
    padding: 3px 0 0;
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-radius: 15px;
}

.navbar-brand {
    padding: 0;
    margin-right: 20px;
    display: flex;
    align-items: center;
    width: 100px;
}

.navbar-brand img {
    width: 100%;
    object-fit: contain;
}

.navbar .nav-item {
    margin: 0 15px;
}

.navbar .nav-item .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #F96430;
    transition: color 0.3s;
}

.navbar .nav-item .nav-link:hover {
    color: #000;
}

.toggle_button {
    display: inline-block;
    cursor: pointer;
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler {
    border: none;
}

.bar1,
.bar2,
.bar3 {
    width: 35px;
    height: 5px;
    background-color: #333;
    margin: 6px 0;
    transition: 0.4s;
}

.change .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
}

@media (max-width: 991px) {
    .navbar-brand img {
        height: 70px;
        margin-left: 15px;
    }
}

@media (max-width: 768px) {
    .navbar-brand img {
        height: 50px;
        margin-left: 15px;
    }
}

/*  ////////  Home Swiper slider  ////////  */
.home_section .swiper {
    width: 100%;
    height: 100vh;
    /* height: 100vh; */
}

.home_section .swiper-slide {
    position: relative;
    background: #000;
}

.slider-img-container img {
    width: 100%;
    height: 100vh;
    object-fit: cover;

    /* Smooth zoom */
}

.slider-container {
    transition: transform 5s ease;
}

.home_section .swiper-slide-active .slider-container {
    transform: scale(1.1);
    /* Zoom in on active slide */
}

.slider-text {
    position: absolute;
    top: 35%;
    inset-inline: 0;
    margin-inline: auto;
    text-align: center;
    z-index: 1;
    color: #ffff;
}

.slider-text h1 {
    font-size: 7rem;
    font-weight: 700;
    font-family: var(--secondary-font);
    letter-spacing: 5px;

}

.slider-text p {
    font-size: 3rem;
    font-weight: 500;
    font-family: var(--secondary-font);
}

.company {
    font-family: var(--secondary-font);
}

@media (max-width: 768px) {
    .slider-text {
        position: absolute;
        top: 40%;
        inset-inline: 0;
        margin-inline: auto;
        text-align: center;
        z-index: 1;
        color: #ffff;
    }

    .slider-text h1 {
        font-size: 3rem;
        font-weight: 700;
        font-family: var(--abril-font);
    }

    .slider-text p {
        font-size: 1rem;
        font-weight: 500;
        font-family: var(--secondary-font);
    }
}

footer-section {
    position: relative;
    width: 100%;
}

/* Contact Icons Container */
.contact-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

/* Individual Icon Styling */
.contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

/* Phone Icon */
.phone-icon {
    background-color: #8B5A2B;
    /* Brown color to match your icon */
    color: white;
}

/* WhatsApp Icon */
.whatsapp-icon {
    background-color: #25D366;
    /* WhatsApp green color */
    color: white;
}

/* Icon Size */
.contact-icon i {
    font-size: 24px;
}

/* Hover Effect */
.contact-icon:hover {
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-icons {
        bottom: 15px;
        right: 15px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-icon i {
        font-size: 20px;
    }
}



/*  ////////  about us section start  ////////  */

.about-section {
    padding: 100px 0 50px 0;
    /* increased desktop top-bottom padding */
    position: relative;
    overflow-x: hidden;
}

.about-section .container {
    padding: 40px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.15);
    /* transparent white */
    backdrop-filter: blur(15px);
    /* blur effect */
    -webkit-backdrop-filter: blur(15px);
    /* Safari support */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    /* enhanced shadow */
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* subtle border */
    max-width: 1140px;
    margin: auto;
}


.image-container {
    position: relative;
    border-radius: 10px;
    overflow: visible;
    /* added bottom space */
    padding: 10px;
    /* added padding around image */
}

.image-container img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    /* subtle image shadow */
}




.about-content {
    padding: 20px 0 20px 50px;
    /* increased left padding */
}

.about-content h1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 25px;
    /* increased space after title */
    color: #000;
    font-family: var(--abril-font);
    /* added for better contrast */
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.5;
    /* increased line height */
    margin-bottom: 25px;
    /* increased paragraph spacing */
    color: #000;
    font-family: var(--secondary-font);
    /* softer text color */
}

/* Mobile responsiveness refined */
@media (max-width: 991px) {
    .about-section {
        padding: 40px 15px;
        /* added horizontal padding to show shadows */
    }

    .about-section .container {
        padding: 30px 25px;
        /* better padding for smaller screens */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        /* enhanced shadow for visibility */
        margin: 0 5px;
        /* prevent edge contact */
    }

    .image-container {
        margin-bottom: 40px;
        /* increased for button clearance */
        position: relative;
    }

    .about-content {
        padding: 10px 10px 0 10px;
        /* reduced top padding */
    }

    .about-content h1 {
        font-size: 2.2rem;
        margin-top: 10px;
        /* reduced top margin */
    }
}

@media (max-width: 768px) {

    .about-section .container {
        padding: 20px 15px;
        /* reduced padding */
        border-radius: 10px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        /* visible shadow on mobile */
        /* prevent edge contact */
        width: calc(100% - 10px);
        /* ensure margins work */
    }

    .image-container {
        margin-bottom: 0px;
        /* adjusted for button */
        padding: 5px;
    }

    .about-content {
        padding: 5px 5px 0 5px;
        /* further reduced top padding */
    }

    .about-content h1 {
        font-size: 1.8rem;
        margin-top: 5px;
        /* reduced top margin */
        margin-bottom: 15px;
    }

    .about-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
}

/*  ///////  about us section end  ////////  */




/* ////////  why choose us section start  ////////  */

.choose_section {
    padding-top: 50px;
    padding-bottom: 50px;
    /* Added bottom padding */
    overflow-x: hidden;
    overflow-y: visible;
    /* Allow shadow to show */
}

.choose_section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 90px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
    /* Increased Y-offset */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.choose_section .content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
}

.choose_section h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #000;
    text-align: start;
    font-weight: 500;
    font-family: var(--abril-font);
}

.choose_section .image-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.choose_section .image-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.choose_section .text-section {
    flex: 2;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    order: 1;
    font-family: var(--secondary-font);
}

.choose_section .text-box {
    padding: 10px;
}

.choose_section .text-box span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #F96430;
    display: block;
}

.choose_section .text-box h3 {
    font-size: 1.2rem;
    margin: 5px 0;
    color: #000;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .choose_section {
        padding: 0 15px;
    }

    .choose_section .container {
        margin: 20px auto;
        padding: 20px 25px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
        border-radius: 10px;
    }

    .choose_section .text-section {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .choose_section {
        padding: 20px 10px;
    }

    .choose_section .container {
        padding: 20px 15px;
        margin: 20px auto;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
        border-radius: 10px;
    }

    .choose_section h1 {
        font-size: 2rem;
    }

    .choose_section .content {
        flex-direction: column-reverse;
    }

    .choose_section .image-section,
    .choose_section .text-section {
        width: 100%;
    }

    .choose_section .image-section {
        order: 1;
    }

    .choose_section .text-section {
        gap: 10px;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .choose_section h1 {
        font-size: 1.5rem;
    }

    .choose_section .text-box span {
        font-size: 1.2rem;
    }

    .choose_section .text-box h3 {
        font-size: 1rem;
    }

    .choose_section .image-section img {
        height: auto;
    }
}

/* ////////  why choose us section end  ////////  */




/* ///////// services section start //////// */

/* Services Section */
.services_section {
    overflow-x: hidden;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
    /* Increased Y-offset */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

/* Header Container */
.services_section .header-container {
    text-align: center;
}

/* Services Heading */
.services_section .services-heading {
    color: #fff;
    font-family: var(--secondary-font);
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 5px;
    background: linear-gradient(135deg, #F96430 0%, #FF6A45 25%, #579EFF 75%, #007BFF 100%);
    text-align: center;

}

/* Main Section Title (Category Heading) */
.services_section .main-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: black;
    font-family: var(--abril-font);
}

/* New Section Container */
[class*="new-section-"] {
    margin: 20px auto;
    padding: 0 10px 10px 10px;
    border-radius: 10px;
    box-sizing: border-box;
}

/* Swiper-specific styles */
[class*="new-swiper-"] {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 0;
}

/* Grid-specific styles */
[class*="new-grid-"] {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Card styles (for both Swiper slides and grid items) */
.new-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.8s ease-in-out, box-shadow 0.5s ease-in-out;
    height: 350px;
    width: 100%;
    max-width: 450px;
    display: block;
    box-sizing: border-box;
    margin: 15px;
}

/* Swiper slide adjustments */
[class*="new-swiper-"] .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 350px;
    width: 450px;
}

/* Active Swiper slide */
[class*="new-swiper-"] .swiper-slide-active .new-card {
    transform: scale(1.05);
    z-index: 2;
    opacity: 1;
}

/* Card image */
.new-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Card heading */
.new-card-heading {
    position: absolute;
    bottom: 0;
    inset-inline: 0;
    margin-inline: auto;
    border-radius: 0 0 20px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 600;
    transition: bottom 0.4s ease, opacity 0.3s ease;
    font-family: var(--secondary-font);
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Ensure heading is visible on hover */
.new-card:hover .new-card-heading {
    bottom: 0;
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .services_section .new-card {
        height: 300px;
        max-width: 400px;
    }

    [class*="new-swiper-"] .swiper-slide {
        height: 300px;
        width: 400px;
    }

    .services_section .swiper-slide-active .new-card {
        transform: scale(1.02);
    }

    .services_section .new-card-heading {
        font-size: 1rem;
    }

    .services_section .container {
        width: 95%;
        margin: 30px auto;
        padding: 0 15px 20px 15px;
    }

    [class*="new-swiper-"] {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .services_section .services-heading {
        font-size: 1.8rem;
    }

    .services_section .new-card {
        height: 250px;
        max-width: 350px;
    }

    [class*="new-swiper-"] .swiper-slide {
        height: 250px;
        width: 350px;
    }

    .services_section .swiper-slide-active .new-card {
        transform: scale(1);
    }

    .services_section .new-card-heading {
        font-size: 0.9rem;
    }

    .services_section .container {
        width: 95%;
        margin: 20px auto;
        padding: 0 10px 20px 10px;
    }
}

/* ///////// services section end //////// */

@media (max-width: 768px) { /* Adjust the breakpoint as needed */
        .artists-list {
            gap: 0 !important; /* Remove the gap on mobile */
        }
    }

/* //////// brand section start  ////////  */

.brand-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0 100px 0;
    overflow-x: hidden;
}

.brand-container {
    background: rgba(255, 255, 255, 0.15);
    /* transparent white */
    backdrop-filter: blur(15px);
    /* blur effect */
    -webkit-backdrop-filter: blur(15px);
    /* Safari support */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    /* enhanced shadow */
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* subtle border */
    border-radius: 20px;
    padding: 40px 20px;
    max-width: 1100px;
    width: 100%;
    text-align: center;
}

.brand-container h2 {
    color: #023e8a;
    font-size: 28px;
    margin-bottom: 30px;
}

.brand-section .swiper {
    width: 100%;
}

.brand-section .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-section .swiper-slide img {
    max-height: 60px;
    max-width: 100px;
    object-fit: contain;
    transition: transform 0.3s;
}

.brand-section .swiper-slide img:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 991px) {
    .brand-section {
        padding: 70px 15px 100px 15px;
    }
}

@media (max-width: 768px) {
    .brand-section {
        padding: 50px 10px 100px 10px;
    }

    .brand-section .brand-container h2 {
        font-size: 22px;
    }

    .brand-section .swiper-slide img {
        max-height: 50px;
        max-width: 80px;
    }
}

/* //////// brand section end  ////////  */



/* ////////  Footer section start  ////////  */

.footer_container {
    max-width: 1140px;
    /* Similar to Bootstrap's .container on large screens */
    margin: 0 auto;
    /* Center horizontally */
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow-x: hidden;
    padding: 0 15px;
    /* Padding to avoid content touching edges */
}


footer {
    color: #023e8a;
    padding: 40px 0;
    font-family: Arial, sans-serif;
    text-align: center;
}

footer .social-icons {
    margin-bottom: 15px;
}

footer .social-icons a {
    color: #F96430;
    font-size: 20px;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s ease;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    padding: 10px;
    text-align: center;
    background-color: #fff;
    transition: all 0.3s ease-in;
}

footer .social-icons a:hover {
    color: #fff;
    background-color: #F96430;
}

footer .nav-links {
    padding: 20px 0;
}

footer .nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    margin: 0 10px;
    font-size: 16px;
    transition: color 0.3s ease;
}

footer .nav-links a:hover {
    color: #F96430;
}

footer .copyright {
    font-size: 14px;
    color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 600px) {
    .footer_container {
        margin: 0 15px;
        /* Already added — this is good */
        padding: 20px 15px;
    }

    footer .social-icons a {
        font-size: 20px;
        margin: 0 10px;
    }

    footer .nav-links a {
        display: block;
        margin: 8px 0;
        font-size: 14px;
    }

    footer .copyright {
        font-size: 12px;
    }
}

/* ////////  Footer section end  ////////  */



/* ////////  About Us section start //////// */

.full-viewport-banner {
    position: relative;
    width: 100vw;
    height: 80vh;
    overflow: hidden;
    /* padding-top: 120px; */
    box-sizing: border-box;
    object-fit: 100%;

}

@media (max-width: 768px) {
    .full-viewport-banner {
        padding-top: 70px !important;
        width: 100vw;
        height: 40vh;
    }
}

@media (max-width: 991px) {
    .full-viewport-banner {
        padding-top: 90px;
    }
}

.full-viewport-banner img {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    /* Send image to background */
}

.hero-section-title {
    position: absolute;
    top: 40%;
    inset-inline: 0;
    margin-inline: auto;
    text-align: center;
    color: #fff;
    font-family: var(--secondary-font);

}

.hero-section-title h1 {
    font-size: 5rem !important;
}

@media (max-width: 768px) {
    .hero-section-title {
        top: 50%;
    }
    .hero-section-title h1 {
        font-size: 40px !important;
    }
}

/* ////////  About Us section end //////// */



/* ////////  Services details section start  /////// */


.services_details_section {
    overflow-x: hidden;
    padding: 0 15px;
    /* Space on left & right on all screens */
}

.services_details_section .container {
    box-sizing: border-box;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0px 15px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
}

.services_details_section .content {
    flex: 1;
    min-width: 300px;
}

.services_details_section h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    padding-top: 30px;
    padding-left: 30px;
    font-family: var(--abril-font);
}

.services_details_section .artists-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-left: 30px;
}

.services_details_section .artists-column {
    flex: 1;
    min-width: 200px;
}

.services_details_section .artists-column ul {
    list-style: none;
    padding: 0;
}

.services_details_section .artists-column ul li {
    margin-bottom: 10px;
    font-size: 1em;
    color: #555;
}

.services_details_section .artists-column ul li::before {
    content: "• ";
    color: black;
}

.services_details_section .image-section {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    align-self: stretch;
}

.services_details_section .image-section img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

/* Tablet View */
@media (min-width: 768px) and (max-width: 991px) {
    .services_details_section .container {
        flex-direction: column;
        margin: 30px auto;
        padding: 20px;
    }

    .services_details_section .artists-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .services_details_section .artists-column {
        flex: 1;
        min-width: 45%;
    }

    .services_details_section .image-section {
        justify-content: center;
        margin-top: 20px;
    }

    .services_details_section .image-section img {
        width: 100%;
        max-width: 100%;
    }
}

/* Mobile View */
@media (max-width: 767px) {
    .services_details_section .container {
        flex-direction: column;
        margin: 20px auto;
        padding: 20px;
    }

    .services_details_section h1 {
        font-size: 2em;
    }

    .services_details_section .image-section {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .services_details_section .image-section img {
        width: 100%;
        height: auto;
        max-height: 300px;
    }
}

/* ////////  Services details section end  /////// */



/* ////////  contact page section start  ////////  */

.contact_section {
    overflow-x: hidden;
}

.contact_section .btn {
    color: #000;
}

.contact_section h2 {
    font-family: var(--abril-font);
}

.contact_section .btn:hover {
    color: #F96430;
}

/* Glassmorphism Background */
.contact-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Glass effect for form inputs and button */
.custom-form .form-control,
.custom-form textarea,
.custom-form button {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #000;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Optional: Make input text more visible */
.custom-form .form-control::placeholder {
    color: #666;
}

/* Glass effect for icon-box */
.icon-box {
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Floating Label */
.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
    opacity: 1;
    transform: scale(0.85) translateY(-1.5rem) translateX(0.15rem);
}

/* Placeholder transparent */
.form-floating .form-control::placeholder {
    color: transparent;
}

/* Responsive padding for mobile */
@media (max-width: 576px) {
    .contact_section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}



/* ////////  contact page section end  ////////  */



/* ////////  Services page card start //////// */

.product-wrapper {
    max-width: 1200px;
    margin: 50px auto;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    overflow-x: hidden;
}

.grid-container {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.product-card {
    position: relative;
    height: 400px;
    /* kam height */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* .product-card:hover img {
     transform: scale(1.05);
 } */

.product-title {
    position: absolute;
    bottom: 0px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 600;
    transition: bottom 0.4s ease, opacity 0.3s ease;
    font-weight: 600;
}



@media (max-width: 991px) {
    .product-wrapper {
        margin: 50px 20px;
    }

    .product-card {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-title {
        font-size: 14px;
    }

    .product-wrapper {
        margin: 50px 20px;
    }

    .product-card {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .grid-container {
        grid-template-columns: 1fr;
    }

    .product-title {
        font-size: 13px;
    }

    .product-wrapper {
        margin: 30px 15px;
    }

    .product-card {
        height: 250px;
    }
}


/* ////////  Services page card end //////// */


.home_section {
    position: relative;
    overflow-x: hidden;
}







.mission-vision-section {
    padding: 40px 10px;
}

.container-box {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: white;
    border-radius: 10px;
    overflow: hidden;
    padding: 40px;
}

.container-box .content {
    flex: 1 1 60%;
    font-family: var(--secondary-font);
}

.container-box .image {
    flex: 1 1 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-box .image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.container-box h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #111;
    font-family: var(--abril-font);
}

.container-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .container-box {
        flex-direction: column;
        padding: 30px 20px;
    }

    .container-box .image {
        order: -1;
        margin-bottom: 20px;
    }
}