/* --- Variables --- */
:root {
    /* Pastel Blue & Purple Scheme */
    --primary-color: #64B5F6; 
    --secondary-color: #90CAF9; 
    --accent-color: #42A5F5; 
    --dark-heading-color: #2C3E50; 
    --text-color: #5D6D7E; 
    --light-background: #E3F2FD; 
    --white-background: #FFFFFF; 
    --shadow-color: rgba(0, 0, 0, 0.08);
    
    /* Typography */
    --font-main: 'Montserrat', sans-serif;
    --font-special: 'Pacifico', cursive;
    --font-body: 'Open Sans', sans-serif;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000; 
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 60px; 
    height: auto;
    border-radius: 50%; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media(max-width:768px){
    .whatsapp-float img {
    width: 50px;
    }
    .whatsapp-float {
    right: 5px;
    }
}
/* Add Open Sans font */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

/* --- Base & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body), sans-serif; /* Use Open Sans for body */
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-background); /* Use new light background */
    overflow-x: hidden; /* Prevent horizontal scrollbars from animations */
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: var(--font-main), sans-serif; /* Use Montserrat for headings */
    font-weight: 600; /* Slightly lighter weight */
    color: var(--primary-color); /* Use primary color for headings */
    margin-bottom: 0.8em;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.package-card {
    position: relative;
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.package-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.package-card:hover .package-icon {
    transform: scale(1.2);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.package-card h4 {
    font-size: 1.7rem;
    margin-bottom: 5px;
    margin-top: 10px;
    color: #569ff7;
    transition: color 0.3s ease;
}

.package-card h5 {
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    color: #569ff7;
    margin-bottom: 5px;
}

p {
    margin-bottom: 1.2em;
    color: var(--text-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

/* --- Utility Classes --- */
.text-center {
    text-align: center;
}

/* --- Animation Base --- */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.fade-in {
    transform: translateY(20px); /* Start slightly down */
}

.animate-on-scroll.fade-in-up {
     transform: translateY(40px); /* Start further down */
}

.animate-on-scroll.slide-in-left {
    transform: translateX(-50px);
}

.animate-on-scroll.slide-in-right {
    transform: translateX(50px);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0, 0); /* Move to original position */
}


/* --- Header --- */
.site-header {
    background: rgba(255, 255, 255, 0.95); /* Slightly less opaque */
    padding: 0; /* Further reduced padding to shrink header height */
    box-shadow: 0 5px 15px var(--shadow-color); /* Softer shadow */
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensure header is on top */
    backdrop-filter: blur(5px); /* Frosted glass effect */
    -webkit-backdrop-filter: blur(5px);
}

.site-header .container {
    display: flex;
    display: flex;
    justify-content: space-between; /* Align logo to left and nav to right */
    align-items: center; /* Vertically align items */
}

.logo-placeholder {
    /* Removed position: fixed, top, and left */
    z-index: 1001; /* Ensure it's above the header */
    /* Remove font styles as it contains an image now */
    /* Styles for the logo image */
    /* Once the logo is uploaded, replace the text with an <img> tag in index.html */
    /* Example: <img src="path/to/your/logo.png" alt="Bubble Bliss Hire Logo"> */
    /* You might need to adjust max-height or width here */
}

.logo-placeholder img {
    display: block; /* Ensure it behaves as a block element */
    max-height: 260px; /* Increased max-height by another 20% */
    width: auto; /* Maintain aspect ratio */
    margin: -80px 0; /* Adjust negative margin to reduce header height */
    padding-top: 10px; /* Add some top padding for better alignment */
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav ul {
   list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

/* .main-nav li {
    margin-left: 2.2rem; 
} */

.main-nav a {
    color: #333;
    font-weight: 500;
    padding: 0.2rem 0.2rem; /* Reduced vertical padding */
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
}

/* Underline grow effect */
.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    display: block;
    margin-top: 5px; /* Space between text and underline */
    right: 0;
    background: var(--secondary-color); /* Use secondary color for underline */
    transition: width 0.3s ease;
    -webkit-transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
    left: 0;
    background: var(--secondary-color); /* Use secondary color for underline */
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--secondary-color); /* Use secondary color for active link */
    border-bottom-color: transparent; /* Hide static border on hover/active */
}


/* --- Hamburger Menu --- */
.hamburger-icon {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    z-index: 1002; /* Ensure it's above the header */
    color: var(--dark-heading-color); /* Match heading color */
}

.mobile-menu {
    /* Hidden by default on larger screens - this will be overridden by a rule below */
}

/* --- Hero Section --- */
.hero-section {
    /* background: linear-gradient(rgba(26, 37, 51, 0.75), rgba(26, 37, 51, 0.75)),
                url('images/hero-background.jpg'); */
    /* Use a more vibrant gradient fallback */
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); /* Vibrant gradient */
    /* background-size: cover; */
    /* background-position: center center; */
    /* background-attachment: fixed; */
    color: white;
    text-align: center;
    padding: 9rem 0; /* Even more padding */
    position: relative;
    overflow: hidden; /* Contain potential pseudo-elements */
}

/* Optional: Add subtle pattern or shapes */
.hero-section::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    opacity: 0.5;
}

.hero-section h2 {
    font-size: 4rem; /* Larger heading */
    color: white;
    margin-bottom: 0.4em;
    /* Removed font-weight: 700; to use default Pacifico weight */
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    animation: fadeInDown 1s ease-out; /* Simple entrance animation */
}

.hero-section p {
    font-size: 1.4rem; /* Larger paragraph */
    font-weight: 300;
    margin-bottom: 2.8em;
    color: rgba(255, 255, 255, 0.95);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.3s; /* Delayed entrance */
    animation-fill-mode: backwards; /* Start invisible before animation */
}

.cta-button, .button {
    display: inline-block;
    background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color)); /* Blue to blue gradient */
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(25, 118, 210, 0.4);
    background-size: 200% auto;
    animation: fadeInUp 1s ease-out 0.6s;
    animation-fill-mode: backwards;
}

.cta-button:hover, .button:hover {
    background-position: right center;
    box-shadow: 0 8px 20px rgba(25, 118, 210, 0.5); 
    color: white;
}

.package-card .button {
    margin-top: auto;
    align-self: center;
    font-size: 13px;
    padding: 0.8rem 15px;
}

/* --- Section Styling --- */
section {
    padding: 6rem 0;
    position: relative;
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: var(--primary-color); 
    color: white; 
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

section h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 3.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.8rem;
    font-weight: 700;
    text-align: left;
}

/* section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), var(--white-background));
    border-radius: 2px;
} */

.faq-section {
    background-color: var(--primary-color);
}

.faq-section h2 {
    color: white;
}


/* --- FAQ Section --- */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    overflow: hidden;
    /* Removed border, border-radius, background-color, and transition */
}

.faq-item:hover {
    /* Removed border-color and box-shadow */
}

.faq-question {
    padding: 15px 0; /* Adjusted padding */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align items to the left */
    font-weight: bold;
    color: var(--dark-heading-color);
    /* Removed background-color and transition */
}


.faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-right: 10px; /* Reduced margin */
    transition: transform 0.3s ease;
    color: var(--secondary-color);
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 15px 20px;
    background-color: var(--white-background);
    display: none; /* Hidden by default */
    border-top: 1px solid #ddd;
    color: var(--text-color);
}

.faq-answer p {
    margin-bottom: 0;
}

/* --- Contact Form Styling --- */
.contact-form-container {
    max-width: 600px; /* Limit form width */
    margin: 2rem auto; /* Center the form and add space */
    padding: 3rem; /* Increased padding */
    background: linear-gradient(135deg, var(--light-background) 0%, var(--white-background) 100%); /* Subtle gradient background */
    border-radius: 15px; /* More rounded corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Softer, more spread shadow */
    text-align: left; /* Align text within the form to the left */
    border: 1px solid rgba(0, 0, 0, 0.05); /* Very subtle border */
}

.contact-form-container .form-group {
    margin-bottom: 1.5rem; /* Space between form groups */
    /* Removed flexbox properties for block layout */
}

.contact-form-container label {
    display: block; /* Label on its own line */
    margin-bottom: 0.5rem; /* Space between label and input */
    /* Removed width and margin-right for block layout */
    font-weight: bold;
    color: var(--dark-heading-color);
    /* Removed padding-top */
}
.contact-form-container label[for="contact-message"] {
    text-align: left; /* Ensure label text is top-left */
    padding-top: 0.5rem; /* Align label text with textarea */
}

.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container input[type="tel"],
.contact-form-container textarea {
    width: 100%; /* Full width inputs */
    padding: 1rem; /* Consistent padding */
    background-color: var(--white-background); /* White background */
    border: 1px solid #ccc; /* Subtle border */
    border-radius: 5px; /* Slightly rounded corners */
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}

.contact-form-container input[type="text"]:focus,
.contact-form-container input[type="email"]:focus,
.contact-form-container input[type="tel"]:focus,
.contact-form-container textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(66, 165, 245, 0.3); /* More prominent focus shadow */
    outline: none; /* Remove default outline */
}

.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container input[type="tel"] {
     height: 50px; /* Increased height for inputs */
}

.contact-form-container textarea {
    min-height: 200px; /* Increased min-height for message box */
    resize: vertical; /* Allow vertical resizing */
}

.contact-form-container input[type="text"]:focus,
.contact-form-container input[type="email"]:focus,
.contact-form-container input[type="tel"]:focus,
.contact-form-container textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(66, 165, 245, 0.3); /* More prominent focus shadow */
    outline: none; /* Remove default outline */
}

.contact-form-container input[type="text"]:focus,
.contact-form-container input[type="email"]:focus,
.contact-form-container input[type="tel"]:focus,
.contact-form-container textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(66, 165, 245, 0.2); /* Subtle focus shadow */
    outline: none; /* Remove default outline */
}

.contact-form-container textarea {
    resize: vertical; /* Allow vertical resizing */
}

.contact-form-container .button {
    display: block; /* Make button full width */
    width: 100%;
    margin-top: 2rem; /* Increased top margin */
    text-align: center;
    background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color)); /* Blue to blue gradient */
    color: white; /* White text */
    padding: 1rem 2.5rem; /* Match other buttons */
    border-radius: 30px; /* More rounded corners */
    font-weight: 700;
    font-size: 1rem; /* Slightly larger font */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4); /* Shadow matching new color */
    background-size: 200% auto; /* For hover effect */
}

.contact-form-container .button:hover {
    background-position: right center;
    box-shadow: 0 8px 20px rgba(25, 118, 210, 0.5); /* Shadow matching new color */
    color: white;
}

/* --- Responsive Design --- */
/* Show mobile menu on larger screens */
.mobile-menu {
    display: block;
}

@media (max-width: 768px) {
    body {
        padding-top: 0; /* Adjust padding for smaller header */
    }

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-background);
    padding: 6rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white-background);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-content {
    padding: 2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-text::before {
    content: "\201C";
    font-size: 5rem;
    position: absolute;
    top: -30px;
    left: -10px;
    color: var(--secondary-color);
    opacity: 0.2;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.testimonial-rating {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

    .container {
        padding: 0 15px; /* Reduce horizontal padding */
    }

    .site-header {
        height: 70px; /* Fixed height for mobile header */
        padding: 0 15px; /* Adjust padding for mobile header */
        display: flex; /* Use flexbox for alignment */
        align-items: center; /* Vertically center items */
        justify-content: space-between; /* Space between logo and hamburger */
        background-color: var(--white-background); /* Ensure a solid white background for clarity */
    }

    .site-header .container {
        width: 100%; /* Ensure container takes full width */
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0; /* Remove container padding as it's on the header now */
    }

    .logo-placeholder {
        display: flex;
        align-items: center;
        height: auto; /* Let height be determined by content */
    }

    .logo-placeholder img {
        max-height: 130px; /* Increased logo size for mobile to fill nav bar */
        width: auto; /* Maintain aspect ratio */
        margin: 0 !important; /* Force override of desktop styles */
        padding: 0 !important; /* Force override of desktop styles */
    }

    .hamburger-icon {
        display: block; /* Show hamburger on mobile */
    }

    .mobile-menu {
        display: none; /* Hide menu by default */
        width: 100%;
        position: absolute;
        top: 70px; /* Position below the header */
        left: 0;
        background-color: rgba(255, 255, 255, 0.95); /* Semi-transparent background */
        box-shadow: 0 5px 15px var(--shadow-color);
        overflow: hidden;
        transition: max-height 0.3s ease-out; /* Animation for sliding down */
        max-height: 0; /* Start hidden */
    }

    .mobile-menu.active {
        display: block; /* Show menu when active */
        max-height: 300px; /* Adjust based on content, or use a larger value */
    }

    .main-nav ul {
        flex-direction: column; /* Stack nav links vertically */
        align-items: center;
        padding: 20px 0; /* Add padding inside the mobile menu */
    }

    .main-nav li {
        margin: 10px 0; /* Adjust vertical margin */
    }

    .main-nav a {
        padding: 0.8rem 0.8rem; /* Adjust padding */
        font-size: 1.2rem; /* Larger font size for mobile links */
        color: var(--dark-heading-color); /* Darker link color */
    }

    .main-nav a::after {
        background: var(--primary-color); /* Use primary color for underline on mobile */
    }

    .main-nav a:hover::after,
    .main-nav a.active::after {
        background: var(--primary-color); /* Use primary color for underline on mobile */
    }

    .main-nav a:hover,
    .main-nav a.active {
        color: var(--primary-color); /* Use primary color for active link on mobile */
    }

    .hero-section {
        padding: 6rem 0; /* Adjust hero padding */
    }

    .hero-section h2 {
        font-size: 2.5rem; /* Reduce hero heading size */
    }

    .hero-section p {
        font-size: 1.1rem; /* Reduce hero paragraph size */
    }

    section {
        padding: 4rem 0; /* Reduce section padding */
    }

    section h3 {
        font-size: 2rem; /* Reduce section heading size */
        margin-bottom: 2.5rem;
    }

    .contact-form-container {
        padding: 2rem; /* Adjust contact form padding */
        margin: 1rem auto; /* Adjust margin */
    }

    .contact-form-container input[type="text"],
    .contact-form-container input[type="email"],
    .contact-form-container input[type="tel"],
    .contact-form-container textarea {
        padding: 0.8rem; /* Adjust input padding */
        font-size: 0.9rem;
    }

    .contact-form-container .button {
        padding: 0.8rem 2rem; /* Adjust button padding */
        font-size: 0.9rem;
    }

    .faq-list {
        max-width: 100%; /* Allow FAQ list to take full width */
        padding: 0 15px; /* Add horizontal padding */
    }

    .faq-question {
        padding: 10px 0; /* Adjust FAQ question padding */
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 10px 15px; /* Adjust FAQ answer padding */
        font-size: 0.9rem;
    }
}

.blog-adv-sec{
    padding:60px 20px;
    background:#64B5F6;
}
.blog-adv-sec:hover{
    transform:none;
    box-shadow:none;
}

.blog-adv-sec-container{
    max-width:1140px;
    margin:auto;
}

.blog-adv-sec-heading-wrap{
    text-align:center;
    max-width:850px;
    margin:auto;
}

.blog-adv-sec-heading{
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
    color:#ffffff;
}

.blog-adv-sec-description{
    font-size:18px;
    line-height:1.8;
    color:#6b7280;
}

.blog-adv-sec-content{
    display:flex;
    gap:40px;
    align-items:flex-start;
}

.blog-adv-sec-left{
    flex:1;
}

.blog-adv-sec-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr) !important;
    gap:25px;
}

.blog-adv-sec-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    display:flex;
    flex-direction:column;
    transition:.4s;
}

.blog-adv-sec-card:hover{
    transform:translateY(-8px);
}

.blog-adv-sec-card-image{
    overflow:hidden;
}

.blog-adv-sec-card-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.5s;
}

.blog-adv-sec-card:hover img{
    transform:scale(1.08);
}

.blog-adv-sec-card-content{
    padding:24px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.blog-adv-sec-card-title{
    font-size:22px;
    line-height:1.4;
    margin-bottom:12px;
    color:#569FF7;
}

.blog-adv-sec-card-meta{
   display: flex;
    gap: 8px;
    color: #57a0f8;
    font-size: 14px;
    margin-bottom: 15px;
    font-style: italic;
}

.blog-adv-sec-card-desc{
    color:#555;
    line-height:1.8;
    margin-bottom:25px;

    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;

    min-height:86px;
}

.blog-adv-sec-btn{
    margin-top:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    background:#57a0f8;
    color:#fff;
    height:50px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.blog-adv-sec-btn:hover{
    transform:scale(.96);
    color:#fff;
}

.blog-adv-sec-sidebar{
    width:340px;
    position:sticky;
    top:140px;
}

.blog-adv-sec-widget{
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    margin-bottom:25px;
}

.blog-adv-sec-widget-title{
    font-size:22px;
    margin-bottom:20px;
    color:#569FF7;
}

.blog-adv-sec-search{
    display:flex;
    gap:10px;
}

.blog-adv-sec-search input{
    flex:1;
    height:50px;
    border:1px solid #ddd;
    border-radius:12px;
    padding:0 15px;
    outline:none;
}

.blog-adv-sec-search button{
    border:none;
    padding:0 20px;
    border-radius:12px;
    background:#57a0f8;
    color:#fff;
    cursor:pointer;
}

.blog-adv-sec-category-list{
    list-style:none;
    padding:0;
    margin:0;
}

.blog-adv-sec-category-list li{
    border-bottom:1px solid #eee;
}

.blog-adv-sec-category-list li:last-child{
    border:none;
}

.blog-adv-sec-category-list a{
    display:block;
    padding:14px 0;
    color:#444;
    text-decoration:none;
    transition:.3s;
}

.blog-adv-sec-category-list a:hover{
    padding-left:10px;
    background: #c9dcf3;
    border-radius: 12px;

}

.blog-adv-sec-latest-wrap{
    display:flex;
    flex-direction:column;
    gap:18px;
    
}

.blog-adv-sec-latest-item{
    display:flex;
    gap:15px;
    text-decoration:none;
    align-items:center;
}

.blog-adv-sec-latest-img{
    width:95px;
    min-width:95px;
    height:75px;
    border-radius:10px;
    overflow:hidden;
}

.blog-adv-sec-latest-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.blog-adv-sec-latest-content h5{
    margin:0 0 8px;
    color:#111827;
    font-size:15px;
    line-height:1.4;
}
.blog-adv-sec-latest-content:hover h5  {
    color: #569FF7 !important;
}

.blog-adv-sec-latest-meta{
    font-size:12px;
    color:#8b8b8b;
}

/* Tablet */
@media(max-width:991px){

    .blog-adv-sec-content{
        flex-direction:column;
    }

    .blog-adv-sec-sidebar{
        width:100%;
        position:static;
    }

    .blog-adv-sec-grid{
        grid-template-columns:repeat(2,1fr) !important;
    }

    .blog-adv-sec-heading{
        font-size:40px;
    }
}

/* Mobile */
@media(max-width:767px){

    .blog-adv-sec{
        padding:30px 15px;
    }
    .blog-deta-content-heading{
           margin: 0 0 5px;
    }

    .blog-adv-sec-grid{
        grid-template-columns:1fr !important;
    }

    .blog-adv-sec-heading{
        font-size:32px;
    }

    .blog-adv-sec-description{
        font-size:16px;
    }

    .blog-adv-sec-search{
        flex-direction:column;
    }
    .blog-adv-sec-search input{
    border-radius: 30px;
    padding: 10px 15px;
    }

    .blog-adv-sec-search button{
        height: 40px;
        border-radius: 30px;
    }

    .blog-adv-sec-card-image img{
        height:220px;
    }
}

.blog-deta-hero-sec{
    position: relative;
    min-height: 530px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 40px;
}
.blog-deta-hero-sec1{
    position: relative;
    min-height: 530px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 40px;
}
.blog-deta-hero-sec:hover{
    transform: none;
    box-shadow: none;
}
.blog-deta-hero-sec1:hover{
    transform: none;
    box-shadow: none;
}

.blog-deta-hero-sec-bg{
    position:absolute;
    inset:0;
    z-index:1;
}

.blog-deta-hero-sec-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.blog-deta-hero-sec-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(rgb(0 0 0 / 16%), rgba(0, 0, 0, .65));
    z-index:2;
}

.blog-deta-hero-sec-container{
    position:relative;
    z-index:3;
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.blog-deta-hero-sec-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.blog-deta-hero-sec-title{
    font-size:48px;
    line-height:1.15;
    color:#fff;
    margin:0 0 25px;
    font-weight:700;
}

.blog-deta-hero-sec-desc{
    font-size:18px;
    line-height:1.8;
    color:rgba(255,255,255,.85);
    margin:0 auto 35px;
    max-width:800px;
}

.blog-deta-hero-sec-meta{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:30px;
}

.blog-deta-hero-sec-meta-item{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-size:16px;
    font-weight:500;
}

.blog-deta-hero-sec-meta-item i{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(8px);
    font-size:15px;
}
.blog-deta-content{
    max-width:900px;
}
.blog-deta-content p{
    color: #f5f5f5 ;
    margin-bottom: 10px !important;
    font-size: 18px !important;
    line-height: normal !important;
}
.blog-deta-content p,
.blog-deta-content p strong  span,
.blog-deta-content h1 strong span,
.blog-deta-content h2 strong span,
.blog-deta-content ul li{
    color: #fff !important;
}

/* .blog-deta-content p strong{
    color: #f5f5f5;
    margin-bottom: 10px !important;
    font-size: 48px !important;
    line-height: normal !important;
} */
.blog-deta-content h3{
    color: #ffffff;
    margin-bottom: 6px;
    margin-top: 15px;
}

.blog-deta-content-heading{
    font-size:40px;
    line-height:1.3;
    font-weight:700;
    color:#ffffff;
    margin:0 0 20px;
    text-align: left;
}
.blog-deta-content-heading::after {
    content: none;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), var(--white-background));
    border-radius: 2px;
}

.blog-deta-content-subheading{
    font-size:30px;
    line-height:1.4;
    font-weight:600;
    color:#f3f3f3;
    margin:40px 0 18px;
}

.blog-deta-content-text{
    font-size:18px;
    line-height:1.9;
    color:#f5f5f5;
    margin:0;
}

@media (max-width:991px){

    .blog-deta-content-heading{
        font-size:36px;
    }

    .blog-deta-content-subheading{
        font-size:26px;
    }

    .blog-deta-content-text{
        font-size:17px;
    }

}

@media (max-width:767px){

    .blog-deta-content-heading{
        font-size:28px;
        margin: 0 0 5px;
    }

    .blog-deta-content-subheading{
        font-size:22px;
        margin:30px 0 15px;
    }

    .blog-deta-content-text{
        font-size:16px;
        line-height:1.8;
    }

}

/* Tablet */

@media (max-width:991px){

    .blog-deta-hero-sec{
        min-height:520px;
        padding: 35px 10px;
    }
    .blog-deta-hero-sec1{
        min-height:400px;
        padding: 35px 10px;
    }

    .blog-deta-hero-sec-title{
        font-size:35px;
    }

    .blog-deta-hero-sec-desc{
        font-size:18px;
    }

    .blog-deta-hero-sec-meta{
        gap:20px;
    }
.blog-deta-hero-sec-container {

    padding: 0 10px;
}
}

/* Mobile */

@media (max-width:767px){

    .blog-deta-hero-sec{
        min-height:480px;
    }
    .blog-deta-hero-sec1{
        min-height:300px;
    }

    .blog-deta-hero-sec-title{
        font-size:28px;
        margin-bottom:18px;
    }

    .blog-deta-hero-sec-desc{
        font-size:16px;
        line-height:1.7;
        margin-bottom:15px;
    }

    .blog-deta-hero-sec-meta{
        flex-direction:row;
        gap:12px;
    }

    .blog-deta-hero-sec-meta-item{
        font-size:15px;
    }

    .blog-deta-hero-sec-meta-item i{
        width:38px;
        height:38px;
        font-size:14px;
    }

}

.blog-deta-related-sec{
    padding:100px 20px;
    background:#f8fbff;
}

.blog-deta-related-sec-container{
    max-width:1200px;
    margin:auto;
}

.blog-deta-related-sec-top{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:30px;
    margin-bottom:50px;
}

.blog-deta-related-sec-content h2{
    font-size:42px;
    line-height:1.2;
    margin-bottom:15px;
    color: #46a2ec;
    text-align: left;
}
.blog-deta-related-sec-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 6%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), var(--white-background));
    border-radius: 2px;
}

.blog-deta-related-sec-content p{
    max-width:650px;
    color:#6b7280;
    line-height:1.8;
}

.blog-deta-related-sec-nav{
    display:flex;
    gap:12px;
}

.blog-deta-related-sec-prev,
.blog-deta-related-sec-next{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#4f8ff7;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.3s;
}

.blog-deta-related-sec-prev:hover,
.blog-deta-related-sec-next:hover{
    transform:translateY(-3px);
}

.blog-deta-related-sec-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    height:100%;
    box-shadow:0 10px 35px rgba(0,0,0,.08);

    display:flex;
    flex-direction:column;
    width:100%;
}

.blog-deta-related-sec-img{
    overflow:hidden;
}

.blog-deta-related-sec-img img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.blog-deta-related-sec-card:hover img{
    transform:scale(1.08);
}

.blog-deta-related-sec-card-content{
    padding: 30px;
     display:flex;
    flex-direction:column;
    flex:1;
}

.blog-deta-related-sec-card-content h3{
    font-size:22px;
    line-height:1.3;
    margin-bottom:5px;
    color:#4f8ff7;

    height: calc(1.3em * 2);
     /* min-height:78px; */
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}
.blog-deta-related-sec-slider .swiper-slide{
    height:auto;
    display:flex;
}


.blog-deta-related-sec-meta{
    display:flex;
    gap:10px;
    color:#4f8ff7;
    font-style:italic;
    margin-bottom:22px;
    font-size:15px;
}

.blog-deta-related-sec-card-content p{
   color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 86px;
    flex:1;
}

.blog-deta-related-sec-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    background:#4f8ff7;
    color:#fff;
    height:56px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
     margin-top:auto;
}

.blog-deta-related-sec-btn:hover{
    background:#2f75ea;
     color:#fff;
}

@media(max-width:991px){

    .blog-deta-related-sec{
        padding:40px 15px;
    }

    .blog-deta-related-sec-top{
        flex-direction:column;
        align-items:flex-start;
    }

    .blog-deta-related-sec-content h2{
        font-size:34px;
    }

    .blog-deta-related-sec-card-content h3{
        font-size:24px;
    }
}

@media(max-width:767px){

    .blog-deta-related-sec-content h2{
        font-size:28px;
    }
    .blog-deta-related-sec-top { 
    gap: 10px;
}
    .blog-deta-related-sec-content h2::after {
    left: 10%;
    }
    .blog-deta-related-sec-content p {
    margin-bottom: 5px;
}

    .blog-deta-related-sec-card-content{
        padding:25px;
    }

    .blog-deta-related-sec-card-content h3{
        font-size:22px;
    }

    .blog-deta-related-sec-nav{
        margin-top:10px;
    }
}

/*=========================
    CONTACT HERO SECTION
==========================*/

.cont-hero-sec{
    position:relative;
    height:400px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}
.cont-hero-sec:hover {
    transform: none;
    box-shadow: none;
    z-index: 0;
}

.cont-hero-sec-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

.cont-hero-sec-overlay{
    position:absolute;
    inset:0;
    background:#0000003b;
    z-index:2;
}

.cont-hero-sec-container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
    position:relative;
    z-index:3;
}

.cont-hero-sec-content{
    max-width:800px;
    margin:auto;
    text-align:center;
    color:#fff;
}

.cont-hero-sec-tag{
    display:inline-block;
    padding:10px 22px;
    border:1px solid rgba(255,255,255,.3);
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:22px;
}

.cont-hero-sec-content h1{
    font-size:60px;
    line-height:1.15;
    font-weight:700;
    margin-bottom:22px;
    color: #ffffff;
    text-transform: uppercase;
}


.cont-hero-sec-content p{
    font-size:18px;
    line-height:1.8;
    color:rgba(255,255,255,.9);
    max-width:680px;
    margin:auto;
}

/*=========================
      TABLET
==========================*/

@media (max-width:991px){

.cont-hero-sec{
    height:400px;
}

.cont-hero-sec-content h1{
    font-size:46px;
}

.cont-hero-sec-content p{
    font-size:17px;
}

}

/*=========================
      MOBILE
==========================*/

@media (max-width:767px){

.cont-hero-sec{
    height:360px;
}

.cont-hero-sec-container{
    padding:0 18px;
}

.cont-hero-sec-tag{
    font-size:12px;
    padding:8px 18px;
    margin-bottom:18px;
}

.cont-hero-sec-content h1{
    font-size:32px;
    line-height:1.25;
    margin-bottom:15px;
}

.cont-hero-sec-content p{
    font-size:15px;
    line-height:1.7;
}

}

/*==============================
        CONTACT FORM
===============================*/

.cont-form-sec{
    padding:70px 20px;
    background:linear-gradient(45deg, #64B5F6, #207ac2);
}

.cont-form-sec-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

/* LEFT */

.cont-form-sec-tag{
   display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    background:#ffffffe8;
    color:#2196F3;
    font-size:13px;
    font-weight:600;
    letter-spacing:.8px;
    margin-bottom:10px; 
}
.cont-form-sec-form-tag{
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    background:#2195f33a;
    color:#2196F3;
    font-size:13px;
    font-weight:600;
    letter-spacing:.8px;
    margin-bottom:10px;
}

.cont-form-sec-left h2{
    font-size:35px;
    line-height:1.2;
    margin-bottom:0px;
    color:#fdfdfd;
    text-align: left;
}

.cont-form-sec-desc{
    font-size:16px;
    color:#f0f0f0;
    line-height:1.8;
    margin-bottom:25px;
}

/* INFO */

.cont-form-sec-info-wrap{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.cont-form-sec-info-card{
    display:flex;
    align-items:center;
    gap:18px;
    background:#fff;
    padding:20px;
    border-radius:18px;
    transition:.35s;
    border:1px solid #ececec;
}

.cont-form-sec-info-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.cont-form-sec-icon{
    width:62px;
    height:62px;
    border-radius:16px;
    background:#2196F3;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.cont-form-sec-info h4{
    font-size:20px;
    margin-bottom:6px;
    color:#111;
}

.cont-form-sec-info p{
    color:#666;
    line-height:1.6;
    margin-bottom: 5px;
}

/* SOCIAL */

.cont-form-sec-social{
    margin-top:40px;
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.cont-form-sec-social a{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#111;
    text-decoration:none;
    font-size:18px;
    transition:.35s;
    border:1px solid #e9e9e9;
}

.cont-form-sec-social a:hover{
    background:#1e85d6;
    color:#fff;
    transform:translateY(-5px);
}

/* RIGHT */

.cont-form-sec-right{
    background:#fff;
    border-radius:28px;
    padding:45px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.cont-form-sec-right h3{
    font-size:36px;
    margin-bottom:25px;
    color:#111;
}

.cont-form-sec-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.cont-form-sec-field{
    margin-bottom:18px;
}

.cont-form-sec-field input,
.cont-form-sec-field textarea{
    width:100%;
    border:none;
    outline:none;
    background:#2196f32b;
    border:1px solid transparent;
    border-radius:14px;
    padding:17px 18px;
    font-size:15px;
    transition:.35s;
    resize:none;
}

.cont-form-sec-field input:focus,
.cont-form-sec-field textarea:focus{
    background:#fff;
    border-color:#0057ff;
    box-shadow:0 0 0 4px rgba(0,87,255,.08);
}

.cont-form-sec-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    border:none;
    padding:16px 34px;
    border-radius:50px;
    background:#2196F3;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.35s;
}

.cont-form-sec-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(0,87,255,.35);
}

/*==============================
        TABLET
===============================*/

@media(max-width:991px){

.cont-form-sec{
    padding:70px 20px;
}

.cont-form-sec-container{
    grid-template-columns:1fr;
    gap:45px;
}

.cont-form-sec-left h2{
    font-size:38px;
}

.cont-form-sec-right{
    padding:35px;
}

}

/*==============================
        MOBILE
===============================*/

@media(max-width:767px){

.cont-form-sec{
    padding:60px 16px;
}

.cont-form-sec-left h2{
    font-size:30px;
}

.cont-form-sec-right{
    padding:25px;
    border-radius:20px;
}

.cont-form-sec-right h3{
    font-size:28px;
}

.cont-form-sec-grid{
    grid-template-columns:1fr;
    gap:0;
}

.cont-form-sec-info-card{
    padding:16px;
    gap:14px;
}

.cont-form-sec-icon{
    width:55px;
    height:55px;
    font-size:20px;
}

.cont-form-sec-social{
    justify-content:center;
}

.cont-form-sec-btn{
    width:100%;
    justify-content:center;
}

}


.abot-sec-hero{
  position:relative;
  padding:120px 0;
  overflow:hidden;
  background:linear-gradient(
  135deg,
  #64B5F6 0%,
  #42A5F5 40%,
  #1E88E5 100%);
}

.abot-sec-hero::before{
  content:'';
  position:absolute;
  width:500px;
  height:500px;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  top:-200px;
  right:-150px;
}

.abot-sec-hero::after{
  content:'';
  position:absolute;
  width:400px;
  height:400px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  bottom:-150px;
  left:-150px;
}

.abot-sec-hero-container{
  max-width:1300px;
  margin:auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
  position:relative;
  z-index:2;
}

.abot-sec-hero-tag{
  display:inline-block;
  padding:10px 20px;
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(10px);
  border-radius:50px;
  color:#fff;
  font-size:14px;
  margin-bottom:25px;
}

.abot-sec-hero-content h1{
  font-size:48px;
  line-height:1.1;
  color:#fff;
  margin-bottom:25px;
  font-weight:700;
}

.abot-sec-hero-content p{
  color:#f4f8ff;
  font-size:18px;
  line-height:1.9;
  max-width:620px;
}

.abot-sec-hero-btns{
  display:flex;
  gap:15px;
  margin-top:35px;
  flex-wrap:wrap;
}

.abot-sec-hero-btn{
  background:#fff;
  color:#1976D2;
  text-decoration:none;
  padding:10px 30px;
  border-radius:50px;
  font-weight:600;
}
.abot-sec-hero-btn:hover{
  color:#1976D2;
}
.abot-sec-hero-btn,
.abot-sec-hero-btn-outline{
  transition:all .3s ease;
}
.abot-sec-hero-btn:hover,
.abot-sec-hero-btn-outline:hover{
  transform:scale(0.95);
}

.abot-sec-hero-btn-outline{
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 50px;
}
.abot-sec-hero-btn-outline:hover{ 
  color:#fff;
}

.abot-sec-hero-image{
  position:relative;
}

.abot-sec-hero-image img{
  width:100%;
  height:500px;
  object-fit:cover;
  border-radius:30px;
  box-shadow:0 30px 80px rgba(0,0,0,.2);
}

@media(max-width:991px){

  .abot-sec-hero-container{
    grid-template-columns:1fr;
  }

  .abot-sec-hero-content h1{
    font-size:35px;
  }

  .abot-sec-hero-image img{
    height:500px;
  }
}

@media(max-width:767px){

  .abot-sec-hero{
    padding:80px 0;
  }

  .abot-sec-hero-content h1{
    font-size:30px;
  }

  .abot-sec-hero-content p{
    font-size:16px;
  }

  .abot-sec-hero-image img{
    height:350px;
  }

  .abot-sec-hero-btns{
    flex-direction:column;
  }
}

.abot-sec-story{
  padding:60px 10px;
  background:linear-gradient(
  135deg,
  #64B5F6 0%,
  #42A5F5 50%,
  #2196F3 100%);
}

.abot-sec-story-container{
  max-width:1300px;
  margin:auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:80px;
  align-items:center;
}

.abot-sec-story-tag{
  display:inline-block;
  padding:10px 20px;
  background:rgba(255,255,255,.15);
  border:1px solid rgba(255,255,255,.2);
  border-radius:50px;
  color:#fff;
  font-size:14px;
  margin-bottom:20px;
}

.abot-sec-story-left h2{
    color: #fff;
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 20px;
    text-align: left;
}

.abot-sec-story-left p{
  color:#f4f8ff;
  font-size:17px;
  line-height:1.9;
  margin-bottom:20px;
}

.abot-sec-story-right{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
}

.abot-sec-story-card{
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(15px);
  border:1px solid rgba(255,255,255,.2);
  border-radius:25px;
  padding:40px 25px;
  text-align:center;
  transition:.4s ease;
}

.abot-sec-story-card:hover{
  transform:translateY(-10px);
  background:rgba(255,255,255,.22);
}

.abot-sec-story-card h3{
  font-size:52px;
  color:#fff;
  margin-bottom:10px;
  font-weight:700;
}

.abot-sec-story-card span{
  color:#eef7ff;
  font-size:16px;
}

@media(max-width:991px){

  .abot-sec-story-container{
    grid-template-columns:1fr;
    gap:50px;
  }

  .abot-sec-story-left h2{
    font-size:42px;
  }
}

@media(max-width:767px){

  .abot-sec-story{
    padding:80px 0;
  }

  .abot-sec-story-left h2{
    font-size:32px;
  }

  .abot-sec-story-right{
    grid-template-columns:1fr;
  }

  .abot-sec-story-card h3{
    font-size:42px;
  }
}

.abot-sec-choose{
  padding:60px 10px;
  background:linear-gradient(
  135deg,
  #64B5F6 0%,
  #4FA8F5 50%,
  #2196F3 100%);
  position:relative;
  overflow:hidden;
}

.abot-sec-choose::before{
  content:'';
  position:absolute;
  width:500px;
  height:500px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  top:-250px;
  left:-150px;
}

.abot-sec-choose-container{
  max-width:1300px;
  margin:auto;
  padding:0 20px;
  position:relative;
  z-index:2;
}

.abot-sec-choose-head{
  text-align:center;
  max-width:800px;
  margin:auto auto 70px;
}

.abot-sec-choose-head span{
  display:inline-block;
  padding:10px 22px;
  border-radius:50px;
  background:rgba(255,255,255,.15);
  color:#fff;
  margin-bottom:20px;
}

.abot-sec-choose-head h2{
  font-size:52px;
  color:#fff;
  margin-bottom:20px;
}

.abot-sec-choose-head p{
  color:#eef7ff;
  font-size:17px;
  line-height:1.8;
}

.abot-sec-choose-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.abot-sec-choose-card{
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(15px);
  border:1px solid rgba(255,255,255,.2);
  border-radius:30px;
  padding:40px 30px;
  transition:.4s ease;
}

.abot-sec-choose-card:hover{
  transform:translateY(-12px);
  background:rgba(255,255,255,.22);
}

.abot-sec-choose-icon{
  width:70px;
  height:70px;
  border-radius:18px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:25px;
}

.abot-sec-choose-icon i{
  font-size:28px;
  color:#2196F3;
}

.abot-sec-choose-card h3{
  color:#fff;
  font-size:24px;
  margin-bottom:15px;
}

.abot-sec-choose-card p{
  color:#eef7ff;
  line-height:1.8;
}

@media(max-width:1024px){

  .abot-sec-choose-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .abot-sec-choose-head h2{
    font-size:42px;
  }
}

@media(max-width:767px){

  .abot-sec-choose{
    padding:80px 0;
  }

  .abot-sec-choose-grid{
    grid-template-columns:1fr;
  }

  .abot-sec-choose-head h2{
    font-size:32px;
  }
}

.abot-sec-cta{
  position:relative;
  padding:60px 10px;
  overflow:hidden;
}

.abot-sec-cta-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.abot-sec-cta-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
  135deg,
  rgba(100,181,246,.92),
  rgba(33,150,243,.92));
}

.abot-sec-cta-container{
  position:relative;
  z-index:2;
  max-width:900px;
  margin:auto;
  padding:0 20px;
  text-align:center;
}

.abot-sec-cta-tag{
  display:inline-block;
  padding:10px 24px;
  border-radius:50px;
  background:rgba(255,255,255,.15);
  border:1px solid rgba(255,255,255,.2);
  color:#fff;
  margin-bottom:25px;
}

.abot-sec-cta-container h2{
  font-size:48px;
  line-height:1.1;
  color:#fff;
  margin-bottom:25px;
}

.abot-sec-cta-container p{
  color:#eef7ff;
  font-size:18px;
  line-height:1.9;
  max-width:700px;
  margin:auto;
}

.abot-sec-cta-btns{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  margin-top:40px;
}

.abot-sec-cta-btn,
.abot-sec-cta-btn-outline{
  padding:10px 30px;
  border-radius:60px;
  text-decoration:none;
  font-weight:600;
  transition:.35s;
}

.abot-sec-cta-btn{
  background:#fff;
  color:#2196F3;
}
.abot-sec-cta-btn:hover{
  color:#2196F3;
}


.abot-sec-cta-btn-outline{
  border:2px solid #fff;
  color:#fff;
}
.abot-sec-cta-btn-outline:hover{
  color:#fff;
}

.abot-sec-cta-btn:hover,
.abot-sec-cta-btn-outline:hover{
  transform:scale(.97);
}

@media(max-width:991px){

  .abot-sec-cta-container h2{
    font-size:46px;
  }

}

@media(max-width:767px){

  .abot-sec-cta{
    padding:90px 0;
  }

  .abot-sec-cta-container h2{
    font-size:34px;
  }

  .abot-sec-cta-container p{
    font-size:16px;
  }

  .abot-sec-cta-btns{
    flex-direction:column;
    align-items:center;
  }
}

.abt-pge-gallery-sec{
  padding:60px 10px;
  background:linear-gradient(
  135deg,
  #64B5F6 0%,
  #4FA8F5 50%,
  #2196F3 100%);
  overflow:hidden;
}

.abt-pge-gallery-container{
  max-width:1300px;
  margin:auto;
  padding:0 20px;
}

.abt-pge-gallery-head{
  text-align:center;
  max-width:800px;
  margin:0 auto 60px;
}

.abt-pge-gallery-head span{
  display:inline-block;
  padding:10px 22px;
  border-radius:50px;
  background:rgba(255,255,255,.15);
  border:1px solid rgba(255,255,255,.2);
  color:#fff;
  margin-bottom:20px;
}

.abt-pge-gallery-head h2{
  font-size:48px;
  color:#fff;
  margin-bottom:20px;
  line-height:1.2;
}

.abt-pge-gallery-head p{
  color:#eef7ff;
  line-height:1.9;
  font-size:17px;
}

.abt-pge-gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.abt-pge-gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:10px;
  background:#fff;
  box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.abt-pge-gallery-item img{
  width:100%;
  height:200px;
  object-fit:cover;
  display:block;
  transition:all .6s ease;
}

.abt-pge-gallery-item:hover img{
  transform:scale(1.08);
}

.abt-pge-gallery-item::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(
  to top,
  rgba(0,0,0,.25),
  transparent);
  opacity:0;
  transition:.4s;
  z-index:1;
}

.abt-pge-gallery-item:hover::before{
  opacity:1;
}

@media(max-width:1024px){

  .abt-pge-gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .abt-pge-gallery-head h2{
    font-size:35px;
  }

  .abt-pge-gallery-item img{
    height:280px;
  }

}

@media(max-width:767px){

  .abt-pge-gallery-sec{
    padding:40px 10px;
  }

  .abt-pge-gallery-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .abt-pge-gallery-head h2{
    font-size:30px;
  }

  .abt-pge-gallery-head p{
    font-size:15px;
  }

  .abt-pge-gallery-item img{
    height:260px;
  }

}

.home-hero-secc{
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
    background: linear-gradient(135deg,#64B5F6 0%,#79C1FA 50%,#93D0FF 100%);
}

.home-hero-secc-container{
    max-width: 1140px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.home-hero-secc-content{
    color:#fff;
}
.home-hero-secc-right{
    position: relative;
}

.home-hero-secc-img-wrap{
    position: relative;
    padding: 15px;
    border-radius: 30px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(12px);
    box-shadow: 0 25px 60px rgba(0,0,0,.18);
}

.home-hero-secc-img-wrap img{
    width:100%;
    height:600px;
    object-fit:cover;
    border-radius:20px;
    display:block;
}

.home-hero-secc-img-wrap::before{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    border-radius:50%;
    background:rgba(255,255,255,.2);
    top:-25px;
    right:-25px;
}

.home-hero-secc-img-wrap::after{
    content:"";
    position:absolute;
    width:80px;
    height:80px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    bottom:-20px;
    left:-20px;
}

.home-hero-secc-subtitle{
    display: inline-block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.home-hero-secc-title{
    color: #ffffff;
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 8px 25px rgba(0,0,0,.15);
}

.home-hero-secc-divider{
    width: 90px;
    height: 4px;
    border-radius: 30px;
    background: rgba(255,255,255,.9);
    margin: 0 auto 20px;
}

.home-hero-secc-text{
    max-width: 850px;
    margin: 0 auto 25px;
    color: rgba(255, 255, 255, .97);
    font-size: 22px;
    line-height: 1.8;
    font-weight: 400;
}

.home-hero-secc-bottom{
    color: #fff;
    font-size: 25px;
    line-height: 1.8;
    font-weight: 700;
    max-width: 900px;
    margin: auto;
}

.home-hero-secc-shape{
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
}

.home-hero-secc-shape-one{
    width: 350px;
    height: 350px;
    top: -120px;
    left: -100px;
}

.home-hero-secc-shape-two{
    width: 450px;
    height: 450px;
    bottom: -180px;
    right: -120px;
}

@media(max-width:991px){

    .home-hero-secc{
        padding: 70px 20px;
    }

    .home-hero-secc-title{
        font-size: 54px;
    }

    .home-hero-secc-text{
        font-size: 21px;
    }

    .home-hero-secc-bottom{
        font-size: 24px;
    }
      .home-hero-secc-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .home-hero-secc-right{
        max-width:650px;
        margin:auto;
        width:100%;
    }

    .home-hero-secc-img-wrap img{
        height:450px;
    }
}

@media(max-width:767px){

    .home-hero-secc{
        padding: 60px 15px;
    }

    .home-hero-secc-title{
        font-size: 38px;
    }

    .home-hero-secc-divider{
        margin-bottom: 30px;
    }

    .home-hero-secc-text{
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 25px;
    }

    .home-hero-secc-bottom{
        font-size: 20px;
    }
     .home-hero-secc-img-wrap img{
        height:320px;
    }
}

.home-cont-form-sec{
    padding:100px 20px;
    background:linear-gradient(135deg,#64B5F6 0%,#7BC1FA 100%);
}

.home-cont-form-sec-container{
    max-width:1140px;
    margin:auto;
    display:grid;
    grid-template-columns:450px 1fr;
    gap:40px;
    align-items:start;
}

/* Left Side */

.home-cont-form-sec-left{
    position:sticky;
    top:120px;
}

.home-cont-form-sec-left-inner{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.2);
    border-radius:24px;
    padding:40px;
}

.home-cont-form-sec-subtitle{
    display:inline-block;
    color:#fff;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.home-cont-form-sec-title{
    color:#fff;
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
    text-align: left;
}

.home-cont-form-sec-desc{
    color:#fff;
    line-height:1.8;
    margin-bottom:30px;
}

.home-cont-form-sec-info-card{
    display:flex;
    align-items:center;
    gap:18px;
    background:#fff;
    padding:20px;
    border-radius:18px;
    margin-bottom:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.home-cont-form-sec-icon-wrap{
    width:65px;
    height:65px;
    min-width:65px;
    border-radius:50%;
    background:#64B5F6;
    display:flex;
    align-items:center;
    justify-content:center;
}

.home-cont-form-sec-icon-wrap i{
    color:#fff;
    font-size:24px;
}

.home-cont-form-sec-info-content h4{
    margin:0 0 6px;
    color:#222;
    font-size:18px;
    font-weight:700;
}

.home-cont-form-sec-info-content p{
    margin:0;
    color:#666;
    line-height:1.6;
}

/* Right Side */

.home-cont-form-sec-form-box{
    background:#fff;
    border-radius:25px;
    padding:40px;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.home-cont-form-sec-form-title{
    font-size:30px;
    margin-bottom:20px;
    color:#52abf5;
}
.home-cont-form-sec-info-content a{
    color: #52abf5;
}
.home-cont-form-sec-field{
    margin-bottom:10px;
}

.home-cont-form-sec-field label{
    display:block;
    margin-bottom:5px;
    font-size:15px;
    font-weight:600;
    color:#333;
}

.home-cont-form-sec-field input,
.home-cont-form-sec-field textarea{
    width:100%;
    border:1px solid #dcdcdc;
    border-radius:12px;
    padding:14px 18px;
    font-size:15px;
    outline:none;
    transition:.3s;
}

.home-cont-form-sec-field textarea{
    height:160px;
    resize:none;
}

.home-cont-form-sec-field input:focus,
.home-cont-form-sec-field textarea:focus{
    border-color:#64B5F6;
}

.home-cont-form-sec-btn{
    width:100%;
    border:none;
    background:#64B5F6;
    color:#fff;
    padding:16px;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.home-cont-form-sec-btn:hover{
    transform:translateY(-3px);
}

/* Tablet */

@media(max-width:991px){

    .home-cont-form-sec-container{
        grid-template-columns:1fr;
        gap:40px;
    }

    .home-cont-form-sec-left{
        position:relative;
        top:auto;
    }

}

/* Mobile */

@media(max-width:767px){

    .home-cont-form-sec{
        padding:70px 15px;
    }

    .home-cont-form-sec-left-inner,
    .home-cont-form-sec-form-box{
        padding:25px;
    }

    .home-cont-form-sec-title{
        font-size:28px;
    }

    .home-cont-form-sec-form-title{
        font-size:24px;
    }

    .home-cont-form-sec-info-card{
        padding:15px;
    }

    .home-cont-form-sec-icon-wrap{
       width: 40px;
        height: 40px;
        min-width: 40px;
    }
    .home-cont-form-sec-field textarea{
            height: 120px;
    }
    .home-cont-form-sec-field input, .home-cont-form-sec-field textarea{
        padding: 10px 18px;
    }

    .home-cont-form-sec-icon-wrap i{
        font-size:16px;
    }
    .home-cont-form-sec-info-content h4 {
    margin:0px;
    font-size: 18px;
}
}

.home-faq-sec{
    padding:60px 20px;
    background:#64B5F6;
    position:relative;
}

/* .home-faq-sec::before{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    border-radius:50%;
    background:rgba(100,181,246,.08);
    top:-150px;
    right:-150px;
} */

.home-faq-sec-container{
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

.home-faq-sec-inner{
    display:flex;
    gap:50px;
    align-items:flex-start;
}

.home-faq-sec-head{
    width:35%;
    text-align:left;
    position:sticky;
    top:120px;
    margin-bottom:0;
}

.home-faq-sec-wrap{
    width:65%;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.home-faq-sec-subtitle{
    display:inline-block;
    color:#f2f9ff;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.home-faq-sec-title{
    font-size:48px;
    color:#ffffff;
    margin-bottom:18px;
    font-weight:700;
    text-align: left;
}

.home-faq-sec-desc{
    max-width:650px;
    margin:auto;
    color:#fcfcfc;
    line-height:1.8;
}


.home-faq-sec-item{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border:1px solid rgba(100,181,246,.12);
    transition:.3s;
}

.home-faq-sec-item:hover{
    transform:translateY(-4px);
}

.home-faq-sec-question{
    width:100%;
    border:none;
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 30px;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
    color:#222;
    text-align:left;
}

.home-faq-sec-question span{
    width:42px;
    height:42px;
    min-width:42px;
    border-radius:50%;
    background:#399ff0;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
}

.home-faq-sec-answer{
    display:none;
    padding:0 30px 25px;
}

.home-faq-sec-answer p{
    color:#666;
    line-height:1.8;
    margin:0;
}

.home-faq-sec-item.active .home-faq-sec-answer{
    display:block;
}

.home-faq-sec-item.active .home-faq-sec-question{
    color:#399ff0;
}

/* Tablet */

@media(max-width:991px){

    .home-faq-sec{
        padding:80px 20px;
    }

    .home-faq-sec-title{
        font-size:38px;
    }
     .home-faq-sec-inner{
        flex-direction:column;
        gap:35px;
    }

    .home-faq-sec-head,
    .home-faq-sec-wrap{
        width:100%;
    }

    .home-faq-sec-head{
        position:static;
        text-align:center;
    }

    .home-faq-sec-desc{
        max-width:100%;
    }
}

/* Mobile */

@media(max-width:767px){

    .home-faq-sec{
        padding:70px 15px;
    }

    .home-faq-sec-title{
        font-size:30px;
    }

    .home-faq-sec-question{
        padding:12px;
        font-size:16px;
        gap:15px;
    }
    .home-faq-sec-answer p{
            font-size: 14px;
    }

    .home-faq-sec-answer{
        padding:0 20px 20px;
    }

    .home-faq-sec-question span{
        width:36px;
        height:36px;
        min-width:36px;
    }
    
}



 .adv-hero-new-sec {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #081d1f;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 24px 180px;
    /* font-family: 'Manrope', sans-serif; */
  }
  .adv-hero-new-sec:hover {
    transform: none;
    box-shadow: none;
     z-index: 0;
}
.choose-tub-section:hover{
     transform: none;
    box-shadow: none;
    z-index: 0;
}
.choose-tub-section{
    padding: 1rem 0 !important;
}


  /* Actual <img> tag used for the background photo */
  .adv-hero-new-sec-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
  }

  /* Overlay gradients sit above the img, below the content */
  .adv-hero-new-sec-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
     radial-gradient(ellipse 80% 60% at 50% 15%, rgb(100 181 246 / 0%) 0%, rgb(12 43 46 / 50%) 55%), linear-gradient(180deg, rgb(6 20 22 / 31%) 0%, #64b5f600 45%, #64b5f600 100%);
    pointer-events: none;
  }

  /* Ambient glow behind headline, mimicking warm hot-tub water light */
  .adv-hero-new-sec-glow {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 640px;
    height: 640px;
    /* background: radial-gradient(circle, rgba(100,181,246,0.28) 0%, rgba(100,181,246,0.08) 45%, rgba(100,181,246,0) 70%); */
    filter: blur(10px);
    pointer-events: none;
    z-index: 2;
  }

  /* Rising bubble particles */
  .adv-hero-new-sec-bubbles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
  }

  .adv-hero-new-sec-bubble {
    position: absolute;
    bottom: -40px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.55), rgba(100,181,246,0.12) 60%, rgba(100,181,246,0) 75%);
    border: 1px solid rgba(100,181,246,0.25);
    animation: adv-hero-new-sec-rise linear infinite;
  }

  .adv-hero-new-sec-bubble:nth-child(1) { left: 8%;  width: 14px; height: 14px; animation-duration: 9s;  animation-delay: 0s; }
  .adv-hero-new-sec-bubble:nth-child(2) { left: 18%; width: 8px;  height: 8px;  animation-duration: 7s;  animation-delay: 1.5s; }
  .adv-hero-new-sec-bubble:nth-child(3) { left: 28%; width: 20px; height: 20px; animation-duration: 11s; animation-delay: 3s; }
  .adv-hero-new-sec-bubble:nth-child(4) { left: 68%; width: 10px; height: 10px; animation-duration: 8s;  animation-delay: 0.5s; }
  .adv-hero-new-sec-bubble:nth-child(5) { left: 80%; width: 16px; height: 16px; animation-duration: 10s; animation-delay: 2.2s; }
  .adv-hero-new-sec-bubble:nth-child(6) { left: 90%; width: 9px;  height: 9px;  animation-duration: 6.5s;animation-delay: 4s; }
  .adv-hero-new-sec-bubble:nth-child(7) { left: 50%; width: 12px; height: 12px; animation-duration: 9.5s;animation-delay: 2.8s; }
  .adv-hero-new-sec-bubble:nth-child(8) { left: 38%; width: 7px;  height: 7px;  animation-duration: 7.5s;animation-delay: 1s; }

  @keyframes adv-hero-new-sec-rise {
    0%   { transform: translateY(0) translateX(0); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.7; }
    100% { transform: translateY(-100vh) translateX(20px); opacity: 0; }
  }

  .adv-hero-new-sec-container {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    width: 100%;
    text-align: center;
  }

  .adv-hero-new-sec-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 28px;
  }

  .adv-hero-new-sec-eyebrow::before,
  .adv-hero-new-sec-eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: rgb(255, 255, 255);
  }

  .adv-hero-new-sec-title {
    /* font-family: 'Fraunces', serif; */
    font-optical-sizing: auto;
    font-weight: 800;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.08;
    color: #FDFBF7;
    letter-spacing: -0.5px;
    margin-bottom: 28px;
  }

  .adv-hero-new-sec-title em {
    font-style: italic;
    color: #64B5F6;
  }

  .adv-hero-new-sec-desc {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 18px;
  }

  .adv-hero-new-sec-desc-secondary {
    margin-bottom: 40px;
  }

  .adv-hero-new-sec-cta-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 15px 34px;
    border: 1px solid rgb(255 255 255 / 72%);
    border-radius: 100px;
    background: #569FF7;
    backdrop-filter: blur(6px);
  }

  .adv-hero-new-sec-cta-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #FDFBF7;
    letter-spacing: 0.2px;
  }

  .adv-hero-new-sec-cta-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 12px 3px rgb(255 255 255 / 69%);
    flex-shrink: 0;
    animation: adv-hero-new-sec-pulse 2s ease-in-out infinite;
  }

  @keyframes adv-hero-new-sec-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.75); }
  }

  /* Water ripple divider at base of section */
  .adv-hero-new-sec-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 140px;
    z-index: 3;
    line-height: 0;
  }

  .adv-hero-new-sec-wave svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  /* ===== Tablet ===== */
  @media (max-width: 991px) {
    .adv-hero-new-sec {
      padding: 120px 24px 150px;
      min-height: 90vh;
    }
    .adv-hero-new-sec-title {
      font-size: clamp(34px, 6vw, 54px);
    }
    .adv-hero-new-sec-desc {
      font-size: 17px;
    }
    .adv-hero-new-sec-glow {
      width: 480px;
      height: 480px;
    }
    .choose-tub-section div h2{
    font-size:35px
}
.choose-tub-section{
    padding: 30px 5px;
}
  }

  /* ===== Mobile ===== */
  @media (max-width: 600px) {
    .adv-hero-new-sec {
      padding: 60px 18px 120px;
      min-height: auto;
    }
    .adv-hero-new-sec-eyebrow {
      font-size: 11px;
      letter-spacing: 2px;
      margin-bottom: 20px;
    }
    .adv-hero-new-sec-eyebrow::before,
    .adv-hero-new-sec-eyebrow::after {
      width: 18px;
    }
    .adv-hero-new-sec-title {
      font-size: 32px;
      line-height: 1.14;
      margin-bottom: 20px;
    }
    .adv-hero-new-sec-desc {
      font-size: 15.5px;
      line-height: 1.65;
      margin-bottom: 14px;
    }
    .adv-hero-new-sec-desc-secondary {
      margin-bottom: 30px;
    }
    .adv-hero-new-sec-cta-wrap {
      flex-direction: column;
      gap: 10px;
      padding: 20px 24px;
      border-radius: 24px;
    }
    .adv-hero-new-sec-cta-text {
      font-size: 14.5px;
      text-align: center;
    }
    .adv-hero-new-sec-glow {
      width: 320px;
      height: 320px;
      top: 4%;
    }
    .adv-hero-new-sec-wave {
      height: 80px;
    }
  }



  .mobile-menu-call-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #569FF7;
    color: #fff !important;
    text-decoration: none;
    padding: 10px 20px !important;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    /* margin-top: 25px; */
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(86, 159, 247, 0.35);
        border-bottom: 0px !important;
}

.mobile-menu-call-btn i{
    font-size: 14px;
}

.mobile-menu-call-btn:hover{
        transform: scale(0.95) !important;
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(86, 159, 247, 0.25) !important;
    border-bottom: 0px;
}
.mobile-menu-call-btn::after{
    content: none !important;
    display: none !important;
}

/* Mobile me hide */
@media (max-width: 767px){
    .mobile-menu-call-btn{
        display: none;
    }
}


.site-footer{
    padding: 20px  10px;
        background: #F7FBFF;
    /* align-items: center; */
}
.site-footer div p{
   margin-bottom: 0px;
   text-align:center;
   font-weight: 600;
   color:#64B5F6;
}


.tub-deta-abt-sec{
    padding:100px 20px;
    background:#64B5F6;
    position:relative;
    overflow:hidden;
}

.tub-deta-abt-sec::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    top:-180px;
    right:-180px;
}

.tub-deta-abt-sec-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
    position:relative;
    z-index:2;
}

.tub-deta-abt-sec-content{
    flex:1;
}

.tub-deta-abt-sec-tag{
    display:inline-block;
    padding:10px 18px;
    background:rgba(255,255,255,0.15);
    border:1px solid rgba(255,255,255,0.2);
    border-radius:50px;
    color:#fff;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.tub-deta-abt-sec-title{
        font-size: 48px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 800;
    text-align: left;
}

.tub-deta-abt-sec-text{
    color:#f7fbff;
    line-height:1.8;
    margin-bottom:18px;
    font-size:16px;
}

.tub-deta-abt-sec-btn-wrap{
    margin-top:35px;
}

.tub-deta-abt-sec-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    background:#fff;
    color:#64B5F6;
    text-decoration:none;
    border-radius:60px;
    font-weight:700;
    transition:all .3s ease;
}

.tub-deta-abt-sec-btn:hover{
    transform:scale(.95);
}

.tub-deta-abt-sec-image-wrap{
    flex:1;
    position:relative;
    min-height:650px;
}

.tub-deta-abt-sec-main-img{
    width:100%;
    height:650px;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.tub-deta-abt-sec-main-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.tub-deta-abt-sec-small-img{
    position:absolute;
    left:-40px;
    bottom:40px;
    width:250px;
    height:300px;
    border-radius:24px;
    overflow:hidden;
    border:8px solid #fff;
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}

.tub-deta-abt-sec-small-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Tablet */

@media(max-width:991px){

    .tub-deta-abt-sec{
        padding:80px 20px;
    }

    .tub-deta-abt-sec-container{
        flex-direction:column;
        gap:50px;
    }

    .tub-deta-abt-sec-content{
        text-align:center;
    }

    .tub-deta-abt-sec-title{
        font-size:35px;
    }

    .tub-deta-abt-sec-image-wrap{
        width:100%;
        min-height:auto;
    }

    .tub-deta-abt-sec-main-img{
        height:550px;
    }

    .tub-deta-abt-sec-small-img{
        left:20px;
        bottom:20px;
        width:200px;
        height:250px;
    }
}

/* Mobile */

@media(max-width:767px){

    .tub-deta-abt-sec{
        padding:70px 15px;
    }

    .tub-deta-abt-sec-title{
        font-size:30px;
        text-align: center;
    }
    .tub-deta-abt-sec-btn{
        padding: 12px 30px;
    }

    .tub-deta-abt-sec-text{
        font-size:15px;
    }

    .tub-deta-abt-sec-main-img{
        height:400px;
        border-radius:20px;
    }

    .tub-deta-abt-sec-small-img{
        width:140px;
        height:180px;
        left:10px;
        bottom:10px;
        border-width:5px;
    }

    .tub-deta-abt-sec-btn{
        width:100%;
    }
}

.read-btn-new{
        margin-top: 10px !important;
    padding: 10px 20px !important;
}
.read-btn-new i{
    margin-left: 5px;
    color: #ffffff;
}

 .adv-header-sec {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #ececec;
    z-index: 1000;
    transition: box-shadow 0.25s ease;
  }
  .adv-header-sec.adv-header-sec--scrolled {
    box-shadow: 0 4px 16px rgba(20, 20, 20, 0.08);
  }

  .adv-header-sec-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
  }

  /* ---------- logo ---------- */
  .adv-header-sec-logo-link,
  .adv-header-sec-logo-link:hover,
  .adv-header-sec-logo-link:focus,
  .adv-header-sec-logo-link:active,
  .adv-header-sec-logo-link:visited {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    outline: none;
    line-height: 0;
  }
  .adv-header-sec-logo {
    height: 140px;
    width: auto;
    display: block;
    vertical-align: middle;
    border: none;
  }

  /* ---------- desktop nav ---------- */
  .adv-header-sec-nav {
    display: flex;
  }
  .adv-header-sec-nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 0;
    padding: 0;
  }
  .adv-header-sec-nav-item {
    position: relative;
  }
  .adv-header-sec-nav-link {
    position: relative;
    display: inline-block;
    padding: 8px 2px;
    color: #333333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.1px;
    white-space: nowrap;
  }
  .adv-header-sec-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #569FF7;
    transition: width 0.25s ease;
  }
  .adv-header-sec-nav-link:hover {
    color: #569FF7;
  }
  .adv-header-sec-nav-link:hover::after {
    width: 100%;
  }
  .adv-header-sec-nav-link.is-active {
    color: #569FF7;
  }
  .adv-header-sec-nav-link.is-active::after {
    width: 100%;
  }

  /* ---------- right side (desktop CTA) ---------- */
  .adv-header-sec-right {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .adv-header-sec-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #569FF7;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 999px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
  }
  .adv-header-sec-cta:hover {
    background-color: #3f88f2;
    transform: scale(0.94);
    color: #ffffff;
  }
  .adv-header-sec-cta-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
  }

  /* ---------- mobile bar (hidden on desktop) ---------- */
  .adv-header-sec-mobile-bar {
    display: none;
  }

  /* ---------- hamburger ---------- */
  .adv-header-sec-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .adv-header-sec-hamburger-bar {
    display: block;
    height: 2px;
    background-color: #333333;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
  }
  .adv-header-sec-hamburger-bar:nth-child(1) { width: 26px; }
  .adv-header-sec-hamburger-bar:nth-child(2) { width: 20px; }
  .adv-header-sec-hamburger-bar:nth-child(3) { width: 26px; }
  .adv-header-sec-hamburger:hover .adv-header-sec-hamburger-bar {
    width: 26px;
  }

  .adv-header-sec-hamburger.adv-header-sec--active .adv-header-sec-hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    width: 26px;
  }
  .adv-header-sec-hamburger.adv-header-sec--active .adv-header-sec-hamburger-bar:nth-child(2) {
    opacity: 0;
  }
  .adv-header-sec-hamburger.adv-header-sec--active .adv-header-sec-hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    width: 26px;
  }

  /* ============================================================
     ADV-HEADER-SEC — overlay + drawer
  ============================================================ */
  .adv-header-sec-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(20, 20, 20, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1100;
  }
  .adv-header-sec-overlay.adv-header-sec--open {
    opacity: 1;
    visibility: visible;
  }

  .adv-header-sec-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(360px, 86vw);
    background-color: #ffffff;
    z-index: 1200;
    transform: translateX(100%);
    transition: transform 0.32s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 30px rgba(20, 20, 20, 0.15);
  }
  .adv-header-sec-drawer.adv-header-sec--open {
    transform: translateX(0);
  }

  .adv-header-sec-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px;
    flex-shrink: 0;
  }
  .adv-header-sec-drawer-logo {
    height: 125px;
    width: auto;
    display: block;
  }
  .adv-header-sec-drawer-close {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
  }
  .adv-header-sec-drawer-close:hover {
    background-color: #f1f4f9;
  }
  .adv-header-sec-drawer-close svg {
    width: 18px;
    height: 18px;
  }

  .adv-header-sec-drawer-divider {
    height: 1px;
    background-color: #e7e7e7;
    margin: 0 20px;
    flex-shrink: 0;
  }

  .adv-header-sec-drawer-body {
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 8px 0 20px;
    -webkit-overflow-scrolling: touch;
  }

  .adv-header-sec-drawer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .adv-header-sec-drawer-menu-item {
    border-bottom: 1px solid #f1f1f1;
  }
  .adv-header-sec-drawer-menu-row {
    display: flex;
    align-items: center;
  }
  .adv-header-sec-drawer-menu-link {
    flex: 1 1 auto;
    display: block;
    padding: 15px 20px;
    color: #333333;
    text-decoration: none;
    font-size: 15.5px;
    font-weight: 500;
  }
  .adv-header-sec-drawer-menu-link.is-active {
    color: #569FF7;
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .adv-header-sec-drawer-menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b6b6b;
  }
  .adv-header-sec-drawer-menu-toggle svg {
    width: 13px;
    height: 13px;
    transition: transform 0.25s ease;
  }
  .adv-header-sec-drawer-menu-item.adv-header-sec--expanded .adv-header-sec-drawer-menu-toggle svg {
    transform: rotate(180deg);
  }

  .adv-header-sec-drawer-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    background-color: #fafbfd;
    transition: max-height 0.3s ease;
  }
  .adv-header-sec-drawer-menu-item.adv-header-sec--expanded .adv-header-sec-drawer-submenu {
    max-height: 260px;
  }
  .adv-header-sec-drawer-submenu-item a {
    display: block;
    padding: 12px 20px 12px 36px;
    color: #666666;
    text-decoration: none;
    font-size: 14px;
  }
  .adv-header-sec-drawer-submenu-item a:hover {
    color: #569FF7;
  }

  .adv-header-sec-drawer-social {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 20px 6px;
    flex-shrink: 0;
  }
  .adv-header-sec-drawer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f1f4f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  .adv-header-sec-drawer-social-link:hover {
    background-color: #569FF7;
    color: #ffffff;
  }
  .adv-header-sec-drawer-social-link svg {
    width: 16px;
    height: 16px;
  }

  body.adv-header-sec-lock {
    overflow: hidden;
  }

  /* ============================================================
     RESPONSIVE
  ============================================================ */
  @media (max-width: 991px) {
    .adv-header-sec-nav,
    .adv-header-sec-right,
    .adv-header-sec-container > .adv-header-sec-logo-link {
      display: none;
    }
    .adv-header-sec-mobile-bar {
      display: grid;
      grid-template-columns: 1fr auto 0.5fr;
      align-items: center;
      width: 100%;
    }
    .adv-header-sec-mobile-bar .adv-header-sec-logo-link {
      justify-self: start;
    }
    .adv-header-sec-mobile-cta {
      justify-self: center;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background-color: #569FF7;
      color: #ffffff;
      text-decoration: none;
      font-size: 13.5px;
      font-weight: 600;
      padding: 10px 18px;
      border-radius: 999px;
      white-space: nowrap;
      transition: background-color 0.2s ease, transform 0.2s ease;
    }
    .adv-header-sec-mobile-cta:hover {
      background-color: #3f88f2;
      transform: scale(0.94);
      color: #ffffff;
    }
    .adv-header-sec-mobile-cta-icon {
      width: 13px;
      height: 13px;
    }
    .adv-header-sec-hamburger {
      display: flex;
      justify-self: end;
    }
    .adv-header-sec-container {
      height: 72px;
    }
    .adv-header-sec-logo {
      height: 110px;
    }
  }

  @media (max-width: 480px) {
   .adv-header-sec-container {
      padding: 0 16px;
    }
    .adv-header-sec-mobile-cta {
      padding: 8px 14px;
      font-size: 12.5px;
      gap: 5px;
    }
  }
