/* top bar and header */

        :root {
            --brand-teal: #118fa6;
            --brand-dark-teal: #0e7a8e;
            --top-bar-bg: #0b6b7a;
        }

        body {
            font-family: 'Poppins', sans-serif;
        }

        /* Top Header Strip */
        .top-bar {
            background-color: var(--top-bar-bg);
            color: white;
            font-size: 13px;
            padding: 8px 0;
        }

        /* Navigation */
        .navbar-brand {
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1.2rem;
            color: #fff !important;
        }

        /* Hero Section */
        .hero-section {
           background-color: #000;
               
            background-size: cover;
            background-position: center;
            min-height: 85vh;
            display: flex;
            align-items: center;
            padding: 60px 0;
        }

        .hero-title {
            font-weight: 600;
            font-size: 62px;
            line-height:68px;
            letter-spacing: -1px;
             font-family: 'Poppins', sans-serif;
        }

        .sub-text {
            color: #f8f9fa;
            font-size: 18px;
            line-height: 1.6;
            opacity: 0.9;
             font-family: Poppins, sans-serif;
            }

        /* Form Card */
       /* Container Wrapper (Ensures gap between book and form) */
.cta-container {
    display: flex;
    justify-content: space-between; /* Pushes form to the right */
    align-items: center;
    gap: 80px;                      /* The horizontal gap between image and form */
    max-width: 1140px;
    margin: 0 auto;
}

/* Form Card Styles */
.lead-form-card {
    background: #ffffff;            /* The brand teal background */
    border-radius: 20px;
    padding: 40px 30px;
    width: 420px;                   /* Matches the screenshot width */
    text-align: center;
    color: #fff;                    /* Makes heading and text white */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.lead-form-card h3 {
    font-weight: 800;
    font-size: 26px;
    margin-bottom: 25px;
}

/* Form Inputs Styling */
.lead-form-card .form-control {
    background-color: #fff;         /* White background for inputs */
    border: 1px solid #6b6060 ;         /* Border color to match input */
    border-radius: 10px;
    padding: 14px 20px;
    margin-bottom: 15px;
    width: 100%;
    outline: none;
    font-size: 15px;
    color: #333;
}

.lead-form-card .form-control::placeholder {
    color: #999;
}

/* Submit Button */
.btn-submit-white {
    background-color: #fff;
    color: #000;
    border-radius: 50px;
    padding: 12px 40px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
    width: 160px;
    margin-top: 10px;
}

.btn-submit-white:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-3px);
}

/* Logic for the Image (Left Side) */
.cta-books {
    flex: 1;
}

.cta-books img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

   @media (max-width: 768px) {
    /* 1. Reset Hero Layout */
    .hero-section {
        min-height: auto;
        padding: 40px 0;
        text-align: center;
        display: block; /* Ensures natural stacking */
    }

    /* 2. Scale down the Headline */
    .hero-title { 
        font-size: 32px !important; 
        line-height: 1.2;
        letter-spacing: 0;
        margin-bottom: 20px;
    }

    /* 3. Stack the Book and Form */
    .cta-container {
        flex-direction: column; 
        gap: 30px;
        width: 100%;
        padding: 0 15px; /* Adds side breathing room on mobile */
    }

    /* 4. FIX: Prevent the Form Card from going off-screen */
    .lead-form-card, .discount-card {
        width: 100% !important; /* Forces it to match phone width */
        max-width: 420px;        /* Keeps it from getting too wide on tablets */
        margin: 0 auto;         /* Centers the card */
        padding: 30px 20px;     /* Slightly tighter padding */
    }

    /* 5. Adjust Images */
    .cta-books {
        width: 100%;
        max-width: 300px; /* Prevents the book from being giant on mobile */
        margin: 0 auto;
    }

    .cta-books img {
        width: 100%;
        height: auto;
    }

    /* 6. Button full-width (Optional but recommended for mobile) */
    .btn-submit-white, .submit-btn {
        width: 100% !important; 
        max-width: 250px;
    }
}
/* end too bar  */


/* second section */

    /* Section General Styles */
    .publishing-section {
        padding: 80px 0;
        background-color: #fff;
        font-family: 'Poppins', sans-serif;
    }

    .section-title {
        font-weight: 700;
        font-size: 42px;
        color: #000;
        margin-bottom: 20px;
        line-height: 40px;
        padding: 10px 0;
        letter-spacing: -2px;

    }

    .section-desc {
        color: #666;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    /* List Styling */
    .feature-list h5 {
        color: black;
        font-weight: 700;
        font-size: 23px;
        margin-bottom: 5px;
        display: flex;
        align-items: center;
    }
    .feature-list h5::before {
        content: "•";
        margin-right: 8px;
        font-size: 1.5rem;
    }
    .feature-list p {
        font-size: 13.5px;
        color: #777;
        margin-bottom: 20px;
        padding: 15px 0;
    }

    /* Book Mockup Animations/Positioning */
    .book-container {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .book-mockup {
        width: 100%;
        transition: transform 0.3s ease;
    }

    

    /* Responsive adjustments */
    @media (max-width: 991px) {
        .section-title { font-size: 2rem; }
        .book-container { margin-bottom: 40px; }
        .row-reverse-mobile { flex-direction: column-reverse; }
    }

/* end second section  */


/* third section  */
    .cta-banner-wrapper {
        padding: 60px 0;
        font-family: 'Poppins', sans-serif;
    }

    .cta-card {
        background-color: #118fa6; /* The brand teal */
        border-radius: 60px; /* Large rounded corners from screenshot */
        position: relative;
        overflow: hidden; /* Keeps the blob/image clipped if needed */
        padding: 60px 80px;
        min-height: 350px;
        display: flex;
        align-items: center;
    }

    .cta-content {
        position: relative;
        z-index: 2;
        max-width: 550px;
    }

    .cta-title {
        font-size: 42px;
        font-weight: 800;
        color: #000;
        line-height: 1.1;
        margin-bottom: 30px;
    }

    /* Buttons */
    .cta-btns .btn {
        border-radius: 50px;
        padding: 14px 35px;
        font-weight: 600;
        font-size: 15px;
        transition: 0.3s;
        border: 2px solid transparent;
    }
/* Base Button Styles - Shared */
.btn-black, .btn-outline-dark-custom {
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    cursor: pointer; /* Added for better UX */
}

/* Solid Black Button */
.btn-black {
    background-color: #0c0c0c;
    color: #ffffff !important;
    border: 1px solid #0c0c0c;
}

.btn-black:hover {
    background-color: #333333;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Outline Custom Button (Fully Rounded) */
.btn-outline-dark-custom {
    padding: 12px 35px; 
    border-radius: 50px !important; 
    border: 1.5px solid #000 !important;
    background: transparent;
    color: #000 !important;
}

.btn-outline-dark-custom:hover {
    background: #000;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .mobile-stack {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn-black, .btn-outline-dark-custom {
        width: 100%;
        max-width: 320px; 
    }
}
    /* Image & Blob Area */
    .cta-image-container {
        position: absolute;
        right: 50px;
        bottom: 0;
        height: 110%; /* Makes the image pop out the top slightly */
        display: flex;
        align-items: flex-end;
    }

  .model-img {
    max-width: 400px;
    display: block;      /* Required for margin auto to work */
margin-right: 70px;
    object-fit: cover;
    width: 100%;         /* Ensures it stays responsive within the max-width */
}

    /* The Yellow Blob (recreated with CSS/SVG) */
 @media (max-width: 991px) {
    .cta-card {
        padding: 30px;
        border-radius: 30px;
        text-align: center;
        /* Ensure the container stacks children vertically */
        display: flex;
        flex-direction: column; 
        align-items: center;
    }

    .cta-image-container {
        /* This forces the image to the bottom of the stack */
        order: 2; 
        position: relative !important;
        right: 0;
        margin: 20px auto 0;
        height: auto;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .cta-text-content {
        /* This ensures text stays on top */
        order: 1;
        width: 100%;
    }

    .model-img {
        margin-right: 0;
        max-width: 250px;
        height: auto;
        display: block;
    }
}
/* end thrid section */


/* fouth section */

    /* fourth section */

    /* five section */

    

    .process-section {
        padding: 80px 0;
        background-color: #fff;
        font-family: 'Poppins', sans-serif;
    }

    .process-title {
        text-align: center;
        font-weight: 800;
        font-size: 40px;
        margin-bottom: 50px;
        padding: 10px 0 ;
        line-height: 40px;
    }

    /* --- THE EXACT CARD DESIGN --- */
    .process-card {
        background: #fff;
        /* Matches the 'Leaf' shape: Top-Left & Bottom-Right are rounded */
        border-radius: 20px 20px 0; 
        border: 1px solid #138b9c;
        text-align: center;
        position: relative;
        box-shadow: 0 0 20px 0 #00000017, inset 0 0 8px 0 #138b9c52;
        height: 100%;
        transition: all 0.3s ease-in-out;
        padding: 40px 20px;
    }

    /* The Thin Inner Border */
    .process-card::after {
        content: "";
        position: absolute;
        top: 6px;
        left: 6px;
        right: 6px;
        bottom: 6px;
        border: 1px solid rgba(17, 143, 166, 0.4);
        border-radius: 35px 2px 35px 2px;
        pointer-events: none;
    }

    .process-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(17, 143, 166, 0.15);
    }

    /* Typography inside Card */
    .step-num {
        font-size: 52px;
        font-weight: 800;
        color: var(--brand-teal);
        line-height: 1;
        margin-bottom: 20px;
    }

    .process-card h4 {
        font-weight: 700;
        font-size: 19px;
        color: #000;
        margin-bottom: 15px;
    }

    .process-card p {
        font-size: 13.5px;
        color: #444;
        line-height: 1.5;
        margin-bottom: 0;
    }

    /* Custom 5-column grid for the 5 steps */
    @media (max-width: 991px) {
    .col-custom-5 {
        width: 100%; /* Stacks cards vertically */
        margin-bottom: 20px;
    }
    .process-card {
        padding: 30px 15px;
    }
}
/* end section five */

/* sixth section */

      

        
        .ebook-services-section {
            padding: 80px 0;
            font-family: var(--main-font);
            background-color: #fff;
            overflow: hidden;
        }

        /* Standard Container to center content on wide screens */
        .service-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .service-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .service-header h2 {
            font-weight: 800;
            font-size: 46px;
            margin-bottom: 15px;
            color: #000;
        }

        .service-header p {
            color: #666;
            font-size: 15px;
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* --- THE NEW 2-COLUMN FLEX LAYOUT --- */
        .service-flex-wrapper {
            display: flex;
            align-items: flex-start; /* Keeps columns at their natural height */
            gap: 30px; /* Space between sidebar and content */
        }

        /* 1. THE SIDEBAR (Fixed Small Width) */
        .service-sidebar {
            flex: 0 0 32%; /* The sidebar always takes up exactly 32% */
            background: #fff;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0px 0px 10px #ccc;
            border: 1px solid #eee;
            position: relative;
            z-index: 2;
        }

        /* 2. THE CONTENT AREA (Fills Remaining Space) */
        .service-content-area {
            flex: 1; /* Automatically takes remaining width */
            padding-left: 20px;
            z-index: 1;
        }

        /* --- SIDEBAR TAB BUTTONS STYLING --- */
        .nav-link {
            display: block;
            width: 100%;
            text-align: left;
            padding: 14px 22px;
            margin-bottom: 10px;
            color: #444;
            background: #fff;
            font-weight: 600;
            font-size: 15px;
            border-radius: 10px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
            cursor: pointer;
        }

        /* Active/Hover State */
        .nav-link.active, 
        .nav-link:hover {
            background-color: var(--brand-teal) !important;
            color: #fff !important;
        }

        /* --- CONTENT AREA STYLING --- */
.tab-pane {
    display: none !important;
    opacity: 0;
}

/* 2. Show only the active pane */
.tab-pane.active {
    display: flex !important; /* Changed to flex to support your image/text side-by-side */
    opacity: 1;
    flex-direction: column;   /* Stacks the image and text vertically inside the pane */
    animation: fadeIn 0.5s ease forwards;
}


/* --- Image Container Styling --- */
.service-img-container {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    justify-content: flex-start; /* Aligns the 70% width image to the left */
}

.service-img-container img {
    width: 70%;
    border-radius: 30px;
    height: 380px; 
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-img-container img:hover {
    transform: scale(1.02);
}

/* --- Text & Info --- */
.service-info h3 {
    font-weight: 800;
    font-size: 30px;
    margin-bottom: 15px;
    color: #000;
}

.service-info p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* --- Buttons --- */
.btn-flex-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* Prevents buttons from overlapping on narrow screens */
}

.btn-rounded {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-black {
    background-color: #0c0c0c;
    color: #fff;
}

.btn-black:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.btn-teal {
    background-color: #118fa6; /* Brand Teal */
    color: #fff;
}

.btn-teal:hover {
    background-color: #0e7a8e;
    transform: translateY(-2px);
}

/* --- Active Button State --- */
/* 3. Ensure the active button is visible */
.nav-link.active {
    background-color: #008080 !important; 
    color: white !important;
}

/* --- Animations --- */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* --- Mobile Specific Overrides --- */
@media (max-width: 768px) {
    .service-img-container img {
        width: 100%; /* Image takes full width on mobile */
        height: 250px; /* Reduced height for smaller screens */
    }
    
    .service-info h3 {
        font-size: 24px;
    }
    
    .btn-rounded {
        width: 100%; /* Stack buttons on mobile for easier tapping */
        text-align: center;
    }
}
        /* --- RESPONSIVE DESIGN --- */
        @media (max-width: 1024px) {
            .service-flex-wrapper { flex-wrap: wrap; }
            .service-sidebar, .service-content-area { flex: 0 0 100%; width: 100%; }
            .service-content-area { padding-left: 0; margin-top: 40px; }
            .service-img-container img { height: 280px; }
        }
/* end sixth section */

/* seven section */


    
    .falcon-bottom-section {
        padding: 100px 0;
        font-family: 'Poppins', sans-serif;
        background-color: #fff;
    }

    /* --- SAME-TO-SAME FAQ --- */
    .faq-title {
        text-align: center;
        font-weight: 800;
        font-size: 42px;
        margin-bottom: 50px;
        color: #000000;
    }

    .faq-wrapper {
        max-width: 1140px;
        margin: 0 auto 100px;
    }

    .faq-box {
        background: #fff;
        border: 1px solid #e1e8f0;
        border-radius: 10px;
        margin-bottom: 12px;
        /* The specific soft blue shadow from the image */
        box-shadow: 0 10px 25px rgba(17, 143, 166, 0.08); 
        transition: all 0.3s ease;
    }

    .faq-trigger {
        padding: 22px 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        box-shadow: -1.216px 6.894px 15px 0 rgba(37, 117, 252, .2);
    }

    .faq-trigger span:first-child {
        font-size: 16px;
        font-weight: 600;
        color: #333;
    }

    .faq-plus {
        font-size: 24px;
        color: var(--brand-teal);
        font-weight: 300;
        transition: transform 0.4s ease;
    }

    .faq-content {
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0, 1, 0, 1);
        background: #fff;
        padding: 0 30px;
    }

    .faq-box.open .faq-content {
        max-height: 1000px;
        padding: 0 30px 25px;
        transition: all 0.4s ease-in;
    }

    .faq-box.open .faq-plus {
        transform: rotate(45deg);
        color: #ff4d4d; /* Changes to red-ish or stays teal based on preference */
    }

    /* --- SAME-TO-SAME DISCOUNT SECTION --- */
    .cta-container {
        display: flex;
        align-items: center;
        gap: 60px;
        max-width: 1140px;
        margin: 0 auto;
    }

 /* Book Wrapper */
.cta-books {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr; /* Single column */
    gap: 20px;
    position: relative;
    max-width: 600px; /* Limits size so a single book isn't huge */
    margin: 0 auto;   /* Centers it if the parent is wider */
}

/* Image Handling */
.cta-books img {
    width: 100%;
    height: auto;     /* Maintains aspect ratio */
    display: block;   /* Removes bottom whitespace */
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.cta-books img:hover {
    transform: translateY(-10px); /* Lifts the book on hover */
}
    /* Manual offsets to match the "scattered" look in the image */
  

    /* The Teal Discount Form */
    .discount-card {
        background-color: var(--brand-teal);
        border-radius: 20px;
        padding: 45px 35px;
        width: 420px;
        text-align: center;
        color: #fff;
    }

    .discount-card h3 {
        font-weight: 800;
        font-size: 26px;
        margin-bottom: 30px;
    }

    .discount-card h3 span {
        font-size: 34px;
    }

    .discount-card input {
        width: 100%;
        height: 55px;
        border-radius: 12px;
        border: none;
        margin-bottom: 15px;
        padding: 0 20px;
        font-size: 15px;
        outline: none;
    }

    .discount-card input::placeholder { color: #999; }

    .submit-btn {
        background: #fff;
        color: #000;
        font-weight: 800;
        border: none;
        width: 160px;
        height: 50px;
        border-radius: 50px;
        margin-top: 15px;
        cursor: pointer;
        transition: 0.3s;
    }

    .submit-btn:hover {
        background: #000;
        color: #fff;
    }

  /* Media Query for Mobile and Tablets */
@media (max-width: 991px) {
    .cta-container { 
        flex-direction: column; 
        align-items: center; /* Ensures children are centered */
        text-align: center; 
        gap: 30px; /* Adds space between image and form */
    }

    .cta-books { 
        width: 100%; 
        display: flex; 
        justify-content: center; /* Centers the image */
        margin-bottom: 20px;
    }

    .cta-books img {
        /* Control the size on mobile here */
        width: 80%;           /* "Big" but leaves breathing room */
        max-width: 350px;     /* Prevents it from getting too huge on tablets */
        margin: 0 auto; 
        height: auto;
    }

    .discount-card { 
        width: 100%; 
        max-width: 480px;      /* Keeps the form from stretching too wide */
        padding: 30px 20px;    /* Slightly less padding on mobile */
    }
}
/* end seven sectin */


/* eight section */

  
    .features-grid-section {
        padding: 80px 0;
        background-color: #fff;
        font-family: 'Poppins', sans-serif;
    }

    .feature-card {
        background:#F1F1F1;
        padding: 45px 25px;
        border-radius: 20px;
        text-align: center;
        position: relative;
        overflow: hidden;
        z-index: 1;
        height: 100%;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid #eee;
        box-shadow: 0px 0px 10px #ccc;
    }

    /* The Diagonal Fill Effect */
    .feature-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--brand-teal);
        z-index: -1;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        /* Start from top-left corner */
        transform: scale(0);
        transform-origin: top left;
        border-radius: inherit;
    }

    .feature-card:hover::before {
        transform: scale(1.5); /* Covers the card diagonally */
    }

    /* Icon Container */
    .icon-box {
        width: 75px;
        height: 75px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 32px;
        color: var(--brand-teal);
        box-shadow: 0 8px 15px rgba(0,0,0,0.05);
        transition: 0.4s ease;
    }

    .feature-card:hover .icon-box {
        background: rgba(255, 255, 255, 0.15);
        color: #fff;
    }

    /* Text Transitions */
    .feature-card h4 {
        font-weight: 700;
        font-size: 19px;
        color: #000;
        margin-bottom: 15px;
        transition: 0.4s ease;
    }

    .feature-card p {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 0;
        transition: 0.4s ease;
    }

    .feature-card:hover h4, 
    .feature-card:hover p {
        color: #fff !important;
    }


/* end eigth section */

/* footer */

    :root {
        --footer-bg: #0c0c0c;
        
    }

    .henry-holt-footer {
        background-color: var(--footer-bg);
        color: #fff;
        padding: 80px 0 30px;
        font-family: 'Poppins', sans-serif;
    }

    .footer-container {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .footer-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 50px;
    }

    /* Left Side: Brand & Description */
    .footer-brand-section {
        max-width: 500px;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 25px;
        text-decoration: none;
    }

    
    .logo-text {
        line-height: 1.1;
    }

    .logo-text h2 {
        font-size: 24px;
        font-weight: 800;
        margin: 0;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .logo-text span {
        font-size: 18px;
        font-weight: 600;
        color: var(--brand-teal);
        text-transform: uppercase;
    }

    .footer-desc {
        color: var(--text-gray);
        font-size: 15px;
        line-height: 1.6;
        margin: 0;
    }

    /* Right Side: Contact */
    .footer-contact-section h4 {
        font-weight: 700;
        font-size: 24px;
        margin-bottom: 25px;
        margin-left: 20px;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
        color: var(--text-gray);
        text-decoration: none;
        font-size: 15px;
        transition: 0.3s;
    }

    .contact-item i {
        color: white;
        font-size: 18px;
    }

    .contact-item:hover {
        color: #fff;
    }

    .social-links {
        display: flex;
        gap: 20px;
        margin-top: 25px;
    }

    .social-links a {
        color: #fff;
        font-size: 18px;
        transition: color 0.3s;
    }

    .social-links a:hover {
        color: var(--brand-teal);
    }

    /* Bottom: Disclaimer & Copyright */
    .footer-bottom {
        border-top: 1px solid #222;
        padding-top: 40px;
        text-align: center;
    }

    .disclaimer {
        color: var(--text-gray);
        font-size: 13px;
        margin-bottom: 25px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .copyright {
        color: var(--text-gray);
        font-size: 14px;
        margin: 0;
    }

    @media (max-width: 768px) {
        .footer-top { flex-direction: column; gap: 40px; }
        .footer-brand-section { max-width: 100%; }
    }
/* end footer */
/* section fourth */
.ebook-section {
        padding: 80px 0;
        background-color: #fff;
        font-family: 'Poppins', sans-serif;
    }

    .ebook-title {
        font-weight: 800;
        font-size: 42px;
        text-align: center;
        margin-bottom: 10px;
           font-family: 'Poppins', sans-serif;
    }

    .ebook-title span { color: var(--brand-teal); }

    .ebook-subtitle {
        text-align: center;
        color: #666;
        max-width: 800px;
        margin: 0 auto 50px;
        font-size: 15px;
    }

    /* Scroll Container */
    .scroll-container {
        max-height: 650px;
        overflow-y: auto;
        padding: 20px 10px;
        scrollbar-width: none; /* Firefox */
    }
    .scroll-container::-webkit-scrollbar { display: none; }

    /* Leaf Shaped Card */
    .service-card {
        background:#F1F1F1 ;
        border-radius:16px; /* Leaf Shape */
        padding: 40px 30px;
        margin-bottom: 20px;
        position: relative;
        overflow: hidden;
        z-index: 1;
        box-shadow: 0px 0px 10px #ccc;
        border: 1px solid #eee;
        transition: all 0.4s ease;
    }

    /* Dual Corner Fill */
    .service-card::before, .service-card::after {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        background: var(--brand-teal);
        z-index: -1;
        transition: all 0.6s ease;
    }
    .service-card::before { top: 0; left: 0; border-bottom-right-radius: 100%; }
    .service-card::after { bottom: 0; right: 0; border-top-left-radius: 100%; }

    .service-card:hover::before, .service-card:hover::after {
        width: 150%;
        height: 150%;
    }

    /* Card Content Hover */
    .service-card h4 { font-weight: 700; font-size: 22px; transition: 0.3s; height: 70px; padding: 10px 0; }
    .card-divider { width: 40px; height: 3px; background: var(--brand-teal); margin: 15px 0; transition: 0.3s; }
    .service-card p { font-size: 14px; color: #555; transition: 0.3s; margin: 0; }

    .service-card:hover h4, .service-card:hover p { color: #fff !important; }
    .service-card:hover .card-divider { background: #fff; width: 60px; }

    /* Bottom Button Style */
    .btn-wrap { text-align: center; margin-top: 40px; }
    
    .btn-teal-outline {
        padding: 14px 35px;
        border: 2px solid var(--brand-teal);
        color: var(--brand-teal);
        border-radius: 50px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-decoration: none;
        display: inline-block;
        transition: all 0.4s ease;
    }

    .btn-teal-outline:hover {
        background: var(--brand-teal);
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(17, 143, 166, 0.2);
    }

    .btn-teal.btn-rounded {
    display: inline-block; /* Ensures it only takes up as much space as the text */
    margin-right: auto;    /* Pushes away from the right */
    text-align: left;
}
/* fouth section */

/* noine section */
/* --- SECTION: POSITIVE ADVANTAGES --- */


.advantages-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px; /* Large gap between text and the image */

}

/* --- Left Side: Content --- */
.advantages-content {
    flex: 1;
}

.advantages-content h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 40px;
    color: #000;
    margin-bottom: 20px;
    padding: 10px 0;
    letter-spacing: -2px;
}

.advantages-content h2 span {
    color: #1a94a4; /* The teal dot */
}

.advantages-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* List Styling */
.advantages-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.advantages-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #444;
}

/* Custom Teal Bullet */
.advantages-list li::before {
    content: "•";
    color: #1a94a4;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -4px;
}

/* Buttons */
.advantages-btns {
    display: flex;
    gap: 15px;
}

.btn-black {
    background: #000;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-teal {
    background: #1a94a4;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-black:hover, .btn-teal:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- Right Side: Single Image --- */
.advantages-image {
    flex: 1;
    display: flex;
    justify-content: flex-end; /* Pushes image to the far right */
}

.advantages-image img {
    width: 100%;
    max-width: 750px; /* Prevents the single image from getting too huge */
    height: auto;
    border-radius: 8px;
    /* This tilt replicates the "3D" feel of your screenshot */
    transition: transform 0.5s ease;
}

.advantages-image img:hover {
    transform: rotate(0deg) scale(1.02); /* Straightens on hover */
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .advantages-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .advantages-list li {
        text-align: left;
    }

    .advantages-btns {
        justify-content: center;
    }

    .advantages-image {
        justify-content: center;
    }
    
    .advantages-image img {
        transform: rotate(0deg); /* Remove tilt on mobile for better fit */
    }
}


/* modal  */
/* --- MODAL CUSTOM STYLES --- */
.quote-modal-content {
    border-radius: 20px !important;
    border: none !important;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.modal-title-custom {
    font-weight: 800;
    font-size: 32px;
    color: #000;
}

.modal-title-custom span {
    color: #1a94a4; /* Teal color for the percentage */
}

/* Custom Close Button Position */
.custom-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 10;
    opacity: 0.5;
}

/* Input Styling */
.modal-input {
    border: 2px solid #ddd !important;
    border-radius: 12px !important;
    padding: 12px 20px !important;
    font-size: 15px;
    color: #333;
}

.modal-input:focus {
    border-color: #1a94a4 !important;
    box-shadow: none !important;
}

/* Submit Button */
.btn-modal-submit {
    background-color: #1a94a4;
    color: #fff;
    border: none;
    padding: 12px 60px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s ease;
}

.btn-modal-submit:hover {
    background-color: #000;
    transform: translateY(-2px);
}

/* Mobile Adjustments */
@media (max-width: 576px) {
    .modal-title-custom { font-size: 26px; }
    .modal-body { padding: 30px 20px !important; }
}