/* ======================================================
   Table of Contents
==========================================================
1. General Style                          (line 34)
    1.1 Root Style                        (line 47)
    1.2 Header Style                      (line 75)
    1.3 Link and Image Style              (line 116)
    1.4 Text Style                        (line 126)
    1.5 Icon Circle Style                 (line 165)
    1.6 Color Utility Class               (line 248)
    1.7 Background Utility Class          (line 258)
    1.8 Font Size Utility Class           (line 265)
    1.9 Width Utility Class               (line 278)
    1.10 Button Style                     (line 290)
        1.10.1 Navbar Button              (line 312)
    1.11 Default Width                    (line 332)
2. Navbar Style                           (line 342)
3. Hero Style                             (line 420)
4. About Style                            (line 481)
5. CEO Quote Style                        (line 507)
6. Choose Us Style                        (line 539)
7. Service Style                          (line 557)
8. Showcase Style                         (line 599)
9. FAQs Style                             (line 627)
10. Blog Post Style                       (line 675)
11. Video Style                           (line 730)
12. Team Style                            (line 744)
13. Contact Style                         (line 791)
14. Packages Style                        (line 920)
15. 404 Style                             (line 932)
16. Transition Style                      (line 941)
17. Footer Style                          (line 951)
18. Other Style                           (line 1022)
19. Media Queries                         (line 1031)
===========================================================
*/


/* General Style */
@font-face {
    font-family: 'Philosopher';
    src: url(../font/philosopher.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Lato';
    src: url(../font/lato.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}
    /* Root Style */
    :root {
        /* Main heading color */
        --heading-color: #112015;
        /* Primary color for the site, often used for buttons, links, etc. */
        --color-main: #5c9269;
        /* Darker shade of the primary color, used for hover states or dark background elements */
        --color-darker: #1D4026;
        /* Lighter shade of the primary color, for lighter elements or backgrounds */
        --color-lighter: #99c7a3;
        /* Subtle background color, used for subtle backgrounds or areas with less emphasis */
        --color-subtle: #FFFBE9;
        /* Border color, used for borders and dividers */
        --color-border: #fdfdfd;
        /* Error color, usually red, used for form validation or error messages */
        --color-error: #E22D2D;
        /* Warning color, yellow, used for warning messages or indicators */
        --color-warning: #E2D52D;
        /* Information color, blue, used for info messages or alert indicators */
        --color-info: #2663cf;
        /* Success color, green, used for success messages or successful actions */
        --color-success: #20bd3c;
        /* Text color 1 for headers*/
        --text-color-1: #696969;
        /* Text color 2 for body text */
        --text-color-2: #c7c7c7;
        /* Font family for main headers */
        --font-1: "Philosopher";
        /* Font family for body text or secondary headers */
        --font-2: "Lato";
    }

    /* Header Styles */
    h1 {
        font-size: 80px; /* Large font size for main headers */
        font-weight: 500; /* Medium font weight */
        line-height: 1.1em; /* Slightly compact line height */
        letter-spacing: -1.3px; /* Tight letter spacing for a cleaner look */
        font-family: var(--font-1); /* Applying the main header font */
    }

    h2, h3, h4, h5, h6 {
        /* Standard header styles with decreasing font sizes */
        font-weight: 500;
        line-height: 1.2em;
        font-family: var(--font-1); /* Using the same font for all header tags */
    }

    h2 {
        font-size: 56px; /* Slightly smaller than h1 */
        letter-spacing: -1.3px;
    }

    h3 {
        font-size: 40px;
        letter-spacing: -1.1px;
    }

    h4 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    h5 {
        font-size: 24px;
        letter-spacing: -0.8px;
    }

    h6 {
        font-size: 16px;
        letter-spacing: -0.6px;
    }

    /* Link and Image Styling */
    a {
        text-decoration: none; /* Remove underline from links */
        cursor: pointer; /* Change cursor to pointer on hover */
    }

    img {
        object-fit: cover; /* Ensures images cover their container without distortion */
    }

    /* Text Style */
    .heading {
        color: var(--heading-color); /* Main heading color */
    }

    .sub-heading {
        color: var(--color-main); /* Sub-heading color */
    }
    .text-subtitle {
        font-family: 'Philosopher';
        font-size: 24px;
        font-weight: 500;
        line-height: 1,2;
        letter-spacing: -0.8px;
    }
    .text-grey {
        font-family: 'Lato';
        font-size: 16px;
        color: var(--text-color-1);
    }
    .text-white {
        font-family: 'Lato';
        font-size: 16px;
        color: white;
    }
    .text-silver {
        font-family: 'Lato';
        font-size: 16px;
        color: var(--text-color-2);
    }
    .text-color-1 {
        color: var(--text-color-1);
    }
    .text-color-2 {
        color: var(--text-color-2);
    }

    .font-1, .philosopher {
        font-family: var(--font-1); /* Font family for headers */
    }

    .font-2, .lato {
        font-family: var(--font-2); /* Font family for body text */
    }

    /* Icon Circle Styles */
    .icon-circle-37-main, .icon-circle-32, .icon-circle-32-main, .icon-circle-17, .icon-circle-17-main, .icon-circle-15-main {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background-color: transparent;
        font-size: 16px;
        cursor: pointer;
    }
  .icon-circle-37-main, .icon-circle-33, .icon-circle-32-main, .icon-circle-17, .icon-circle-17-main, .icon-circle-15-main {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background-color: transparent;
        font-size: 16px;
        cursor: pointer;
    }
    .icon-circle-37-main {
        width: 32px;
        height: 32px;
        border: 1px solid var(--color-main);
        color: var(--color-main);
    }

    .icon-circle-32 {
        width: 32px;
        height: 32px;
        border: 1px solid #1d6b32;
        color: #1d6b32;
        transition: background-color 0.3s ease, color 0.3s ease;
    }
    .icon-circle-33 {
        width: 32px;
        height: 32px;
        border: 1px solid #ffffff;
        color: #fff;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .icon-circle-32:hover {
        color: var(--color-darker);
        background-color: var(--color-subtle);
        border: 1px solid #1d6b32;
    }

    .icon-circle-33:hover {
        color: var(--color-darker);
        background-color: var(--color-subtle);
        border: 1px solid #1d6b32;
    }
    .icon-circle-32-main {
        width: 32px;
        height: 32px;
        border: 1px solid var(--color-main);
        color: var(--color-main);
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .icon-circle-32-main:hover {
        color: white;
        background-color: var(--color-main);
        border: 1px solid var(--color-main);
    }

    .icon-circle-17 {
        width: 17px;
        height: 17px;
        border: 1px solid white;
        font-size: 15px;
        color: white;
    }

    .icon-circle-17-main {
        width: 17px;
        height: 17px;
        border: 1px solid var(--color-main);
        font-size: 15px;
    }

    .icon-circle-15-main {
        width: 15px;
        height: 15px;
        border: 1px solid var(--color-main);
        font-size: 13px;
    }

    /* Testimonial Circle Styles */
    .testimonial-circle {
        width: 45px;
        height: 45px;
        background-color: grey;
        border-radius: 50%;
        margin-left: -7px;
    }

    .testimonial-circle-first {
        width: 45px;
        height: 45px;
        background-color: grey;
        border-radius: 50%;
    }

    /* Color Utility Classes */
    .c-white { color: white; }
    .c-silver { color: var(--text-color-2); }
    .c-main { color: var(--color-main); }
    .c-black { color: black; }
    .c-text { color: rgb(255, 254, 250, 0.6); }
    .c-semi-black { color: var(--heading-color); }
    .c-semi-transparent { color: #00000080; }
    .c-grey { color: var(--text-color-1); }

    /* Background Utility Classes */
    .bg-subtle { background-color: var(--color-subtle); }
    .bg-semi-white { background-color: var(--color-border) !important; }
    .bg-darker { background-color: var(--color-darker) !important; }
    .bg-grey { background-color: var(--text-color-1); }
    .bg-main { background-color: var(--color-main); }

    /* Font Size Utility Classes */
    .fs-12 { font-size: 12px; }
    .fs-13 { font-size: 13px; }
    .fs-14 { font-size: 14px; }
    .fs-15 { font-size: 15px; }
    .fs-16 { font-size: 16px; }
    .fs-17 { font-size: 17px; }
    .fs-18 { font-size: 18px; }
    .fs-22 { font-size: 22px; }
    .fs-24 { font-size: 24px; }
    .fs-26 { font-size: 26px; }
    .fs-48 { font-size: 48px; }

    /* Width Utility Classes */
    .w-10 { width: 10%; }
    .w-20 { width: 20%; }
    .w-30 { width: 30%; }
    .w-40 { width: 40%; }
    .w-50 { width: 50%; }
    .w-60 { width: 60%; }
    .w-70 { width: 70%; }
    .w-80 { width: 80%; }
    .w-90 { width: 90%; }
    .w-100 { width: 100%; }

    /* Button Styles */
    .btn-light, .btn-dark {
        background-color: var(--color-main);
        color: white;
        border: none;
        border-radius: 50px;
        padding: 12px 24px;
        font-size: 14px;
        max-width: fit-content;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .btn-light:hover {
        background-color: white;
        color: var(--text-color-1);
    }

    .btn-dark:hover {
        background-color: var(--color-darker);
        color: white;
    }

        /* Navbar Styles */
        button.nav-link {
            box-shadow: none !important;
            outline: none !important;
            border: none !important;
        }

        button.nav-link:hover {
            box-shadow: none !important;
            outline: none !important;
            border: none !important;
        }

        button.nav-link:focus {
            box-shadow: none !important;
            outline: none !important;
            border: none !important;
        }


    /* Default Width */
    .width-base {
        width: 1220px;
        padding-top: 100px;
        padding-bottom: 10px;
        margin-left: auto;
        margin-right: auto;
    }

    
/* Navbar Style */
.navbar-toggler {
    width: 30px;
    height: 30px;
    border: none; 
    background: none; 
    box-shadow: none;
    outline: none; 
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 0;
}
.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none; 
    box-shadow: none; 
    border: none; 
}
.navbar-toggler-icon {
    display: block;
    height: 1px;
    width: 30px;
    background-color: white;
    border-radius: 2px;
    transition: none;
}
.navbar-toggler-icon:nth-child(3) {
    width: 22px;
    height: 2px; 
    margin-left: 8px;
}
.offcanvas.show .nav-link {
    color: var(--text-color-1);  
    font-size: 18px;
}
.offcanvas.show .nav-link:hover {
    color: var(--color-main); 
}
.nav-link {
    color: var(--text-color-2);
    font-size: 15px;
}
.nav-link:hover {
    color: white; 
}
.dropdown {
    border-radius: 10px;
}
.dropdown-toggle {
    box-shadow: none !important;
}
.dropdown-menu {
    padding: 10px;
    color: var(--text-color-2);
    min-width: 200px;
}
.dropdown-menu a {
    padding-top: 10px;
    padding-bottom: 10px;
}
.dropdown-menu:hover a:hover {
    color: #fff; 
    background-color: var(--color-main); 
}
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}
.dropdown-menu {
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
}


/* Hero Style */
.content-m {
    margin-top: 6rem;
}
.section-m {
    margin-top: 9rem; 
    width: 1220px;
}
.hero-title {
    width: 73%;
}
.banner-title {
    width: 100%;
    font-size: 80px;
    font-weight: 500;
    line-height: 1,1px;
    letter-spacing: -1.3px;
}
.hero-subtitle {
    width: 60%;
}
.hero-subtext {
    width: 70%;
}
.bg-hero {
    /* background-image: url('../img/bg-1.jpg');
    background-size: cover; */
    background-color: #f7f6f0;
}
.bg-hero-1{
   background-image: url('../img/bg-1.jpg');
    background-size: cover; 
}
.overlay-hero {
    /* background-color: rgba(17, 32, 21, 0.6);  */
    padding-bottom: 0px;
}
.border-hero {
    border-bottom: 1px solid #c4c4c4;
}
.form-container {
    background: rgba(255, 255, 255, 0.0);
    border-radius: 10px;
    padding: 20px;
    max-width: 1000px;
    width: 100%;
    border: 1px solid white;
}
.form-control, .form-control:focus, .form-control::placeholder{
    background: rgba(255, 255, 255, 0.0);
    color: rgb(0, 0, 0);
    box-shadow: none;
    outline: none;
    border-color: rgb(0, 0, 0);
    font-family: 'Philosopher';
    padding: 10px;
}
.form-control:focus {
    background-color: white;
    color: black;
}
.date {
    color-scheme: dark;
}


/* About Style */
.about-bg {
    background-image: linear-gradient(rgba(17, 32, 21, 0.6), rgba(17, 32, 21, 0.6)), url('../img/about-overlay.jpg');
    background-size: cover;
    background-position: center;
    height: 512px;
}
.img-about {
    border-radius: 10px;
    width: 100%;
}
.img-about-last {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.title-about{
    font-family: 'Philosopher';
    font-size: 56px;
    font-weight: 500;
    line-height: 1,2;
    letter-spacing: -1.3px;
}


/* CEO Quote Style */
.bg-ceo {
    background-image: linear-gradient(rgba(17, 32, 21, 0.6), rgba(17, 32, 21, 0.6)), url('../img/images-ZV8482W.jpg'); 
    width: 100%;
    background-size: cover;
    background-position: center;
}
.ceo-quote {
    margin: auto;
    width: 60%;
    padding-left: 0;
    padding-right: 0;
}
.signature {
    width: 160px;
    height: 34px;
}
.card {
    border: 1px solid #c4c4c4;
    border-radius: 10px;
    overflow: hidden;
}
.card:hover {
    border: 1px solid var(--color-main);
}
.card-body {
    background-color: #d8e6ce;
    border-radius: 10px;
    padding: 30px;
}


/* Choose Us Style */
.bg-choose-us {
    background-image: linear-gradient(rgba(17, 32, 21, 0.6), rgba(17, 32, 21, 0.6)), url('../img/images-PZE6K9S.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}
.bg-darker {
    background-color: var(--color-darker);
}
.choose-position {
    top: -200px;
    left: 0;
    right: 0;
    margin: auto;
}


/* Services Style */
.bg-service-1 {
    background-image: url('../img/service-1.jpg');
    min-height: 455px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.bg-service-2 {
    background-image: url('../img/service-2.jpg');
    min-height: 455px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.bg-service-3 {
    background-image: url('../img/service-3.jpg');
    min-height: 455px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.bg-service-4 {
    background-image: url('../img/service-4.jpg');
    min-height: 455px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.custom-card {
    max-width: 35%;
    width: max-content;
    background: var(--color-border); 
    border: 1px solid #c4c4c4;
    border-radius: 10px; 
    overflow: hidden;
    position: absolute;
    left: 5%;
    bottom: 10%;
}


/* Showcase Style */
.custom-card-1 {
    background: var(--color-border); 
    border: 1px solid #c4c4c4;
    border-radius: 10px; 
    overflow: hidden;
}
.subtext-showcase {
    width: 550px;
    font-family: 'Lato';
    font-size: 16px;
    color: var(--text-color-1);
    text-align: center;
}
.img-showcase {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.last-img-showcase{
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* FAQS Style */
.img-faqs {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.accordion,
.accordion-button,
.accordion-item,
.accordion-header,
.accordion-body {
    border: none !important;
    box-shadow: none !important;
}
.accordion-button {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.6px;
    color: var(--text-color-1); 
    background-color: var(--color-border); 
}
.accordion-button:focus {
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    color: var(--heading-color);
    background-color: transparent !important;
}
.accordion-button:hover {
    background-color: #e9ecef; 
}
.accordion-button:active {
    background-color: transparent !important;
}
.accordion-item {
    margin-bottom: 10px;
}
.accordion-item {
    border: 1px solid #c4c4c4 !important;
    border-radius: 10px;
}
.accordion-header, .accordion-body, .accordion-button {
    border-radius: 10px !important;
}


/* Blog Post Style */
.img-blog-post {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    transform-origin: center;
}
.img-wrapper {
    overflow: hidden;
}
.img-blog-post-2 {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    transform-origin: center;
}
.img-blog-post-2:hover {
    transform: scale(1.1); 
}
.img-blog-post-3 {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.custom-card-2 {
    background: var(--color-border); 
    border: 1px solid #c4c4c4;
    border-radius: 10px; 
    overflow: hidden; 
    transition: box-shadow 0.3s ease-in-out;
}
.custom-card-2:hover .img-blog-post {
    transform: scale(1.1) rotate(3deg); 
}
.learn-link{
    transition: color 0.3s ease;
}
.learn-link:hover {
    color: var(--text-color-1);
}
.blog-link {
    color: var(--color-main);
    font-size: 16px;
    font-family: var(--font-2);
}
.blog-link:hover {
    color: var(--heading-color);
}


/* Video Style */
.video-wrapper {
    position: relative;
    padding-top: 56.25%; /* Aspect ratio 16:9 */
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* Team Style */
.img-team {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.team-member {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.img-team {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}
.team-member .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}
.team-member .team-name {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 11;
}
.team-member:hover .overlay {
    opacity: 1;
}
.team-member:hover .team-name {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}


/* Contact Style */
.form-container-2 {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    font-family: var(--font-2);
}
.form {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    border: 1px solid var(--text-color-2);
}
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 20px;
}
.form-row.full-width {
    flex-direction: column;
}
.form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.form-label {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--text-color-1);
}
.form-input, .form-textarea {
    border: none;
    border-bottom: 1px solid var(--text-color-2);
    padding: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}
.form-input:focus, .form-textarea:focus {
    border-bottom-color: var(--color-border);
    outline: none;
}
.form-textarea {
    resize: none;
}
.form-button {
    width: 100%;
    align-self: center;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: var(--color-main);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.form-button:hover {
    background-color: var(--color-darker);
}
.form-select {
    border: none;
    border-radius: 0px;
    border-bottom: 1px solid var(--text-color-2);
    padding: 8px;
    font-size: 14px;
    background-color: transparent;
    transition: border-color 0.3s;
    appearance: none; 
}
.form-select:focus {
    border-bottom-color: var(--color-border);
    outline: none;
    box-shadow: none;
}
.form-select::-ms-expand {
    display: none; 
}
.form-select-wrapper {
    position: relative;
}
.form-select-wrapper::after {
    font-size: 12px;
    color: var(--text-color-2);
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.popup-message {
    display: none;
    background-color: var(--color-border);
    color: var(--heading-color);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}
.border-radius-10 {
    border-radius: 10px;
}
.contact-image {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.contact-card {
    width: 65%;
    width: max-content;
    background: var(--color-border); 
    border: 1px solid #c4c4c4;
    border-radius: 10px; 
    overflow: hidden;
    position: absolute;
    right: 10%;
    bottom: 8%;
}
.maps {
    width: 100%;
    height: 420px;
    transition: filter 0.5s;
    display: block;
}


/* Packages Style */
.package-card {
    border: 1px solid var(--text-color-2);
    border-radius: 10px;
    padding: 32px;
    position: relative;
}
.package-card:hover {
    border: 1px solid var(--text-color-1);
}


/* 404 Style */
.bg-404{
    background-image: linear-gradient(rgba(17, 32, 21, 0.6), rgba(17, 32, 21, 0.6)), url('../img/about-overlay.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
}


/* Transition Style */
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-in, transform 0.8s ease-in;
}
.fade-in.visible {
    opacity: 1;
}


/* Footer Style */
.email-input {
    flex: 1;
    background-color: transparent;
    color: white;
    border: none;
    outline: none;
}
.email-input::placeholder {
    color: white;
    opacity: 0.8; 
}
.email-input:focus {
    outline: none; 
}
.newsletter-container {
    border-bottom: #c9c9c9 1px solid;
    width: 60%;
}
.newsletter-container:hover {
    border-bottom: white 1px solid;
}
.btn-newsletter {
    background: transparent; 
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.newsletter-form {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    border-radius: 5px;
    overflow: hidden;
}
.btn-newsletter i {
    color: #c9c9c9;
}
.btn-newsletter:hover i {
    color: white; 
}
.footer-link:hover {
    color: white;
}
.footer-links {
    list-style-type: none; 
    padding: 0; 
    margin: 0; 
    margin-top: 24px;
}
.footer-links li {
    margin: 10px 0; 
}
.footer-logo {
    width: 124px;
    height: auto;
    object-fit: cover;
}
.subtext-footer {
    width: 60%;
}
.footer-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}


/* Other Style */
.large-padding {
    padding-bottom: 200px;
}
.partner-margin {
    margin-top: -200px;
}


/* Media Query */
@media screen and (max-width: 1220px) {
    .section-m {
        margin-top: 8rem; 
        width: 100%;
    }
    .width-base {
        width: 100%;
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
@media  screen and (max-width: 992px) {
    h1 {
        font-size: 60px;
        line-height: 1.1em;
        font-family: var(--font-1);
    }
    h2 {
        font-size: 40px;
        line-height: 1.2em;
        font-family: var(--font-1);
    }
    h3{
        font-size: 28px;
        line-height: 1.2em;
        font-family: var(--font-1);
    }
    h4 {
        font-size: 24px;
        line-height: 1.2em;
        font-family: var(--font-1);
    }
    h5 {
        font-size: 22px;
        line-height: 1,1em;
        font-family: var(--font-1);
    }
    h6 {
        font-size: 16px;
        line-height: 1,2em;
        font-family: var(--font-1);
    }
    .border-hero{
   
    }
    .hero-title {
        margin-top: 24px;
        width: 95%;
        line-height: normal;
    }
    .hero-subtitle {
        width: 80%;
    }
    .section-m {
        margin-top: 3rem; 
        width: 100%;
        padding-left: 32px;
        padding-right: 32px;
    }
    .width-base {
        width: 100%;
        padding-top: 50px;
        padding-bottom: 50px;
        padding-left: 32px;
        padding-right: 32px;
    }
    .img-about {
        border-radius: 10px;
        width: 100%;
    }
    .img-about-last {
        border-radius: 10px;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .ceo-quote {
        width: 90%;
        padding-left: 0;
        padding-right: 0;
    }
    .signature {
        width: 148px;
        height: 32px;
    }
    .custom-card {
        max-width: 60%;
        position: absolute;
        left: 5%;
        bottom: 10%;
    }
    .img-faqs {
        width: 100%;
        height: 100%;
        max-height: 512px;
    }
    .newsletter-container {
        width: 100%;
    }
    .contact-image {
        max-height: 512px;
        border-radius: 10px;
    }
    .dropdown-menu{
        border: none;
    }
    .dropdown-item {
        background-color: white !important;
        font-size: 12px;
        color: var(--text-color-1) !important;
    }
    .dropdown-item:hover {
        color: var(--color-main) !important;
    }
}
@media screen and (max-width: 450px) {
    h1 {
        font-size: 40px;
        font-family: var(--font-1);
    }
    h2 {
        font-size: 32px;
        font-family: var(--font-1);
    }
    h3{
        font-size: 24px;
        font-family: var(--font-1);
    }
    h4 {
        font-size: 22px;
        font-family: var(--font-1);
    }
    h5 {
        font-size: 18px;
        font-family: var(--font-1);
    }
    h6 {
        font-size: 16px;
        font-weight: 500;
        font-family: var(--font-1);
    }
    .hero-title {
        margin-top: 24px;
        width: 100%;
        line-height: normal;
    }
    .banner-title {
        margin-top: 24px;
        line-height: normal;
        font-size: 24px;
    }
    .hero-subtitle {
        width: 100%;
    }
    .hero-subtext {
        width: 100%;
    }
    .section-m {
        margin-top: 3rem; 
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    .width-base {
        width: 100%;
        padding-top: 50px;
        padding-bottom: 50px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .img-about {
        border-radius: 10px;
        width: 100%;
        height: 100%;
    }
    .img-about-last {
        border-radius: 10px;
        width: 100%;
        height: 256px;
    }
    .title-about{
        font-size: 32px;
    }
    .text-subtitle {
        font-size: 18px;
    }
    .ceo-quote {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .signature {
        width: 70px;
        height: 15px;
    }
    .bg-service-1 {
        background-image: none;
        min-height: 10px;
    }
    .bg-service-2 {
        background-image: none;
        min-height: 10px;
    }
    .bg-service-3 {
        background-image: none;
        min-height: 10px;
    }
    .bg-service-4 {
        background-image: none;
        min-height: 10px;
    }
    .custom-card {
        max-width: 100%;
        position: static;
    }
    .subtext-showcase {
        width: 100%;
    }
    .last-img-showcase{
        border-radius: 10px;
        width: 100%;
        height: 100%;
        max-height: 256px;
        object-fit: cover;
    }
    .img-faqs {
        width: 100%;
        height: 100%;
        max-height: 256px;
    }
    .subtext-footer {
        width: 100%;
    }
    .newsletter-container {
        width: 100%;
    }
    .about-bg {
        background-image: linear-gradient(rgba(17, 32, 21, 0.6), rgba(17, 32, 21, 0.6)), url('img/about-overlay.html');
        background-size: cover;
        background-position: center;
        height: 400px;
    }
    .contact-image {
        border-radius: 10px;
    }
    .contact-card {
        width: 90%;
        left: 0;
        right: 0;
        margin: auto;
    }
    .dropdown-menu{
        border: none;
    }
    .dropdown-item {
        background-color: white !important;
        font-size: 12px;
        color: var(--text-color-1) !important;
    }
    .dropdown-item:hover {
        color: var(--color-main) !important;
    }
    .quote-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 0px !important;
}
.profile-img {
    width: 100%;
    max-width: 420px !important;
    height: 278px !important;
    border: 8px solid #ffffff;
}
.btn-outline-main {
    border: 2px solid #1d6b32;
    padding: 12px 25px;
    border-radius: 8px;
    color: #1d6b32;
    background: transparent;
    font-size: 18px;
    margin-top: 10px !important;
}
}

body {
    font-family: sans-serif;
    background: #fff;
}

/* LEFT BIG HEADING */
.left-title {
    font-size: 60px;
    font-weight: 700;
    color: #1d6b32;
    line-height: 1.1;
}

.left-title span {
    display: block;
}

/* RIGHT CARD */
.form-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.1);
}

/* FORM INPUT HEIGHT */
input {
    height: 55px;
}

.btn-main {
    background: #1d6b32 !important;
    color: #fff !important;
    font-size: 20px;
    padding: 12px;
    border-radius: 8px;
}

.btn-main:hover {
    background: #165526;
    color: white;
}

/* ✅ SECTION BG SAME LIKE IMAGE */
.section-bg {
    background: linear-gradient(
        90deg,
        rgba(250, 252, 253, 1) 0%,
        rgba(245, 248, 252, 1) 40%,
        rgba(240, 245, 251, 1) 100%
    ),
    url('https://images.unsplash.com/photo-1580281658629-13aea9b8bbe0?auto=format&fit=crop&w=800&q=60');

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 60px 0;
    border-radius: 30px;
}

@media (max-width: 768px) {
    .left-title {
        font-size: 38px;
    }
}


/* FEATURE CARDS */
.feature-card {
    background: #fff;
    font-size: 14px;
    padding: 18px 15px;
    border-radius: 15px;
    border: 1px solid #ddd;
    font-weight: 500;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.06);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.feature-card span {
    font-size: 24px;
}

/* BACKGROUND SECTION */
.info-section {
    background: #dec59c;
    color: #262424;
}

.info-section h2 {
    font-size: 45px;
}

.info-section p,
.info-section ul {
    font-size: 20px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .info-section h2 {
        font-size: 30px;
    }

    .info-section p,
    .info-section ul {
        font-size: 18px;
    }

    .feature-card {
        font-size: 16px;
    }
}


.quote-section {
    background: #dec59c;
}

.quote-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 40px;
}

.quote-text {
    font-size: 28px;
    line-height: 1.6;
    font-weight: 600;
    color: #1b1b1b;
}

.profile-img {
    width: 100%;
    max-width: 420px;
    height:420px;
    border: 8px solid #ffffff;
}

.btn-main {
    background: #1d6b32;
    color: #fff;
    font-size: 22px;
    padding: 12px 20px;
    border-radius: 8px;
}

.btn-main:hover {
    background: #175528;
}

@media(max-width: 768px) {
    .quote-text {
        font-size: 20px;
    }
}



.pancreas-section {
    background: #ffffff;
}

.main-title {
    font-size: 38px;
    font-weight: 700;
    color: #1d1d1d;
}

.sub-text {
    color: #6b7d92;
    font-size: 18px;
    max-width: 900px;
    margin: auto;
    line-height: 1.6;
}

.scroll-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-color: #888 #ddd;
    scrollbar-width: thin;
}

.scroll-wrapper::-webkit-scrollbar {
    height: 8px;
}

.scroll-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.pancreas-card {
    background: #eef7ef;
    min-width: 350px;
    padding: 25px;
    border-radius: 15px;
    white-space: normal;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
height: 240px;
}

.pancreas-card h5 {
    color: #1d6b32;
    font-weight: 700;
    margin-bottom: 12px;
}

.pancreas-card p {
    font-size: 16px;
    color: #1d1d1d;
    line-height: 1.6;
}

.btn-main {
    background: #1d6b32;
    color: #fff;
    padding: 12px 25px;
    margin-right: 10px;
    border-radius: 8px;
    font-size: 18px;
}

.btn-outline-main {
    border: 2px solid #1d6b32;
    padding: 12px 25px;
    border-radius: 8px;
    color: #1d6b32;
    background: transparent;
    font-size: 18px;
}

.btn-main:hover {
    background: #165526;
}

.btn-outline-main:hover {
    background: #e8f5e9;
}



.padaav-approach {
    background: #f5f3e8;
}

.main-title {
    font-size: 38px;
    font-weight: 700;
    color: #1d1d1d;
}

.sub-text {
    color: #6b7d92;
    font-size: 17px;
    max-width: 900px;
    margin: auto;
    line-height: 1.6;
}

/* LEFT TAB STYLES */
.step-tab {
    background: #ffffff;
    border-radius: 80px;
    padding: 18px 25px;
    margin-bottom: 15px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #777;
    transition: 0.3s;
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

.step-tab.active {
    background: #d8e6ce;
    color: #1d6b32;
    font-weight: 700;
}

.step-tab:hover {
    transform: translateX(3px);
}

/* RIGHT CONTENT */
.step-content {
    height: 100%;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    display: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.step-content.active {
    display: block;
}

.step-content h5 {
    color: #1d6b32;
    margin-top: 10px;
    font-weight: 700;
}


.video-section {
  display: flex;
  gap: 20px;
  padding: 40px 20px;
  justify-content: center;
  align-items: center;
}

.video-card {
  position: relative;
  width: 31%;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
}

.video-card img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.7);
  color: white;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  text-align: center;
  line-height: 65px;
  font-size: 32px;
  font-weight: bold;
  transition: .3s;
}

.video-card:hover .play-btn {
  background: red;
}







.three-card-section {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 50px 30px;
  flex-wrap: wrap;
}

.card-box {
    border: solid 1px #595858;
  width: 31%;
  background: #f3f9f6;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0px 6px 25px rgba(0,0,0,0.1);
  transition: .3s;
}

.card-box:hover {
  transform: translateY(-8px);
}

.card-top {
  display: flex;
  align-items: center;
  gap: 15px;
}

.card-top img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}

.card-content h3 {
  font-size: 22px;
  margin: 0;
  font-weight: 700;
}

.card-content p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

.card-desc {
    background: #fff;
    font-size: 15px;
    margin: 28px 0;
    color: #444;
    padding: 20px;
    border-radius: 8px;
}

.card-btn {
  background: #1d6b32;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  transition: .3s;
}

.card-btn:hover {
  background: #155424;
}

/* Responsive */
@media(max-width: 768px) {
  .card-box {
    width: 100%;
  }
}






.overlay-card-slider {
  width: 100%;
  margin: auto;
  padding: 40px 0;
  position: relative;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: 0.5s;
}

.overlay-card {
  min-width: 31.3333%;
 margin: 15px;
  box-sizing: border-box;
  border-radius: 10px;
  border: solid 1px #000;
}

.overlay-card .img-box {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
   border-top-right-radius: 10px;
}

.overlay-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.overlay-content {
  position: absolute;
  bottom: 10px;
  color: #fff;
  left: 15px;
}

.desc { padding: 15px;
  margin-top: 10px;
  font-size: 14px;
}

.main-btn {
  margin: 15px;
  background: #1d6b32;
  color: #fff;
  padding: 8px 15px;
  border: none;
  border-radius: 6px;
}

.slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}

.slide-btn {
  background: #1d6b32;
  border: none;
  color: #fff;
  padding: 8px 15px;
  font-size: 18px;
  border-radius: 6px;
  cursor: pointer;
}

@media(max-width: 768px) {
  .overlay-card {
    min-width: 50%;
  }
}

@media(max-width: 500px) {
  .overlay-card {
    min-width: 100%;
  }
}






.triple-overlay-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  width: 90%;
  margin: auto;
}

.overlay-box {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.img-layer {
  position: relative;
}

.img-layer img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

/* DOUBLE OVERLAY */
.double-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.263), rgba(0,0,0,0.8)),
    linear-gradient(to top, rgba(0, 0, 0, 0.279), rgba(0, 0, 0, 0.311));
  border-radius: 14px;
}

.text-layer {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
}

.text-layer h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.text-layer p {
  font-size: 14px;
  margin-top: 2px;
  opacity: .9;
}

/* Responsive */
@media(max-width: 992px) {
  .triple-overlay-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .triple-overlay-section {
    grid-template-columns: repeat(1, 1fr);
  }
}


.custom-section {
  width: 90%;
  margin: auto;
  padding: 40px 0;
  font-family: sans-serif;
}

/* TOP GREEN BAR */
.top-bar {
  background: #1d6b32;
  
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.left-content{
    padding: 20px 30px;
}
.left-content h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.left-content p {
  margin: 3px 0 0;
  opacity: 0.9;
}

/* BUTTONS */
.right-btns {
    padding: 20px 30px;
  display: flex;
  gap: 10px;
}

.btn-main {
  background: #1d6b32;
  color: #fff;
  padding: 18px 18px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.btn-main:hover {
  background: #e8e8e8;
}

.btn-outline {
 
  border: 2px solid #1d6b32 !important;
  color: #1d6b32 !important;
  padding: 7px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline:hover {
  background: #1d6b32;
  color: #fff !important;
}

/* 3 BOXES */
.three-box-wrap {
  margin-top: 35px;
  display: flex;
  gap: 18px;
}

.box {
 
  
  padding: 14px;
 
}
p {
    margin-top: 0;
    margin-bottom: 0rem;
}
/* WIDTH CONTROL */
.small-box {
  flex: 1;
  margin-bottom: 0px !important;
}

.big-box {
  flex: 2;
}

/* Responsive */
@media(max-width: 768px) {
  .top-bar {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .three-box-wrap {
    flex-direction: column;
  }

  .small-box, .big-box {
    flex: 100%;
  }
}

.three-box-wrap{
    border-top:solid 1px #ffff;
}


.phase-box {
  background: #2c7a2f;
}

.cost-table thead {
  background: #226b26;
}

.cost-table th {
  font-weight: 600;
  font-size: 15px;
}

.cost-table td {
  font-size: 15px;
}

.table tbody tr:nth-child(odd) {
  background: #f9fef7;
}

.table tbody tr:nth-child(even) {
  background: #ffffff;
}
.table>:not(caption)>*>* {
    padding: .5rem .5rem;
    color: var(--bs-table-color-state,var(--bs-table-color-type,var(--bs-table-color)));
  background-color:inherit; 
    border-bottom-width: var(--bs-border-width);
    box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state,var(--bs-table-bg-type,var(--bs-table-accent-bg)));
}

.story-card {
  height: 380px;
}

.story-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.story-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: #fff;
}


.patient-section {
  background: #f7f6ef;
}

.story-card {
  height: 380px;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
}

.story-card img {
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
}

.info {
  position: absolute;
  bottom: 0;
  color: #fff;
  padding: 22px;
}

.play-bubble {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.20);
  height: 80px;
  width: 80px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.play-bubble i {
  font-size: 35px;
  color: #fff;
}

.slider-btn {
  border: 2px solid rgba(25,135,84,0.45);
  border-radius: 50%;
  background: transparent;
  padding: 10px 14px;
  transition: .3s;
  font-size: 20px;
}

.slider-btn:hover {
  background: #198754;
  color: white;
  border-color:#198754;
}

.all-btn {
  border: 2px solid #198754;
  color:#198754;
}

.all-btn:hover {
  background:#198754;
  color:#fff;
}

.health-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0,0,0,0.08);
    overflow: hidden;
    height: 100%;
}

.health-card img {
    height: 250px;
    object-fit: cover;
}

.desc {
    height: 90px;
    overflow: hidden;
}

body {
  background: #fff;
  font-family: system-ui;
}

.special-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e7e7e7;
  transition: 0.3s;
  cursor: pointer;
}

.special-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}

.special-card img {
  
}

.know-more-btn {
  border: 1px solid #2e8b57 !important;
  padding: 6px 20px;
  border-radius: 8px;
  color: #2e8b57 !important;
  transition: 0.3s;
  margin-top: 16px;
}

.know-more-btn:hover {
  background: #2e8b57 !important;
  color: white !important;
}


/* Responsive Table Styling */
.cost-table thead {
  background-color: #1d6b32;
  color: #fff;
}

.cost-table tbody tr {
  border-bottom: 1px solid #eee;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cost-table thead {
    display: none;
  }

  .cost-table tbody tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 10px;
  }

  .cost-table tbody td {
    display: flex;
    justify-content: space-between;
    padding: 8px 10px;
    text-align: left;
    position: relative;
    font-size: 14px;
  }

  .cost-table tbody td::before {
 
  }
}


.slider-container {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: 0.4s ease;
}

.overlay-card {
  flex: 0 0 calc(96% / 3);
  margin: 0 8px; /* card spacing */
}

/* Remove gap cut on mobile */
@media(max-width: 768px) {
  .overlay-card {
    flex: 0 0 100%;
    margin: 0; /* remove margin */
    padding: 0 10px; /* inner breathing space */
  }
}




.bg-hero-1 {
  position: relative;
}

.bg-hero-1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

.bg-hero-1 > * {
  position: relative;
  z-index: 2;
}



.team-card {
  text-align: start;
  border: solid 1px #545454;
  border-radius: 10px;
}

.team-img-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;

  color: #fff;
}

.team-desc {
  font-size: 14px;
  color: #555;
}


.treatment-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}

.treatment-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.treatment-list li {
  font-size: 15px;
  color: #2f5222;
  margin-bottom: 12px;
  display: flex;
  align-items: start;
  gap: 8px;
}

.treatment-list i {
  font-size: 18px;
  color: #2f7c26;
}


.slider-wrapper-2 {
  overflow: hidden;
  position: relative;
}

.slider-track-2 {
  display: flex;
  transition: 0.5s ease;
}

.story-slide-2 {
  min-width: calc(100% / 3);
}

.arrow {
  width: 40px;
  height: 40px;
  border: none;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 40%;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.prev2 {
  left: -15px;
}

.next2 {
  right: -15px;
}

.story-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.card-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 60%;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  z-index: 1;
}

.story-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  color: #fff;
}

.story-content h3,
.story-content p,
.story-content span {
  color: #fff !important;
}


.slider-wrapper-2 {
  overflow: hidden;
  position: relative;
}

.slider-track-2 {
  display: flex;
  transition: 0.5s ease;
}

.story-slide-2 {
  min-width: calc(100% / 3);
}

/* Card Styles */
.story-card {
  border: 1px solid #ddd;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  text-align: left;
  transition: 0.3s;
  padding-bottom: 15px;
  height: 100%;
}

.story-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transform: translateY(-4px);
}

.img-box {
  position: relative;
}

.card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 60%;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  z-index: 1;
}

.story-overlay {
    height: 60px;
    position: absolute;
    bottom: 1px;
    left: 0px;
    z-index: 2;
    padding: 20px;
}

.story-para {
  font-size: 14px;
  color: #555;
  padding: 0 15px;
  min-height: 70px;
}

/* Arrows */
.arrow {
  width: 40px;
  height: 40px;
  border: none;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 40%;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.prev2 { left: -15px; }
.next2 { right: -15px; }


.featured-slider-wrapper {
  overflow: hidden;
  position: relative;
}

.featured-slider-track {
  display: flex;
  transition: 0.5s ease;
}

.featured-story-slide {
  min-width: calc(100% / 3);
}

.story-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.story-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.arrow {
  width: 40px;
  height: 40px;
  border: none;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 40%;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.featured-prev {
  left: -20px;
}

.featured-next {
  right: -20px;
}



.featured-article-card {
  height: 420px;
}

.article-img {
  object-fit: cover;
  height: 100%;
}

.featured-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65%;
  background: linear-gradient(
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.7) 80%
  );
}

.featured-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}
@media (max-width: 576px) {
  .featured-article-card {
    height: 380px;
  }

  .featured-content h2 {
    font-size: 1.2rem;
  }
}
.articles-section {
    max-width: 1150px;
    margin: auto;
    padding: 30px 20px;
    font-family: sans-serif;
}

.all-articles {
    color: #2c7a2c;
    font-size: 24px;
    margin-bottom: 5px;
}

.heading {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
}
li a{
    text-decoration: none;
}
.subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.articles-container {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.article-card {
    width: calc(32.33% - 16px);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.article-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.article-content {
    padding: 16px;
}

.category {
    color: #2c7a2c;
    font-weight: 600;
    font-size: 14px;
}

.article-content h3 {
    font-size: 18px;
    margin: 8px 0;
    color: #222;
}

.article-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-btn {
    background: #2c7a2c;
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.article-btn:hover {
    opacity: 0.9;
}

/* Responsive */
@media(max-width: 900px){
    .article-card {
        width: calc(50% - 16px);
    }
}

@media(max-width: 600px){
    .article-card {
        width: 100%;
    }
}




.research-section {
    background: #f8f6eb;
    font-family: 'Inter', sans-serif;
}

.research-card {
    border: 1px solid #e7e7e7;
    transition: 0.3s;
}

.research-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.research-top {
    height: 160px;
    font-size: 18px;
    line-height: 1.4;
    display: flex;
    align-items: center;
}

/* Green patterned BG (dummy, replace image if needed) */
.bg-green-pattern {
    background: #0d7142;
    background-image: url('pattern.png'); /* optional */
    background-size: cover;
}

/* Brown */
.bg-brown-pattern {
    background: #7a3e1b;
    background-image: url('pattern.png');
    background-size: cover;
}

.btn-outline-success {
    border-width: 2px;
    padding: 8px 24px;
}

/* Responsive tuning */
@media(max-width: 767px){
    .research-top {
        height: auto;
        padding: 20px !important;
    }
}
.btn-success{
    display: flex;
    justify-content: center;
    align-items: center;
}


.feature-section {
  position: relative;

  color: #fff;
}
.feature-section {
  position: relative;
  background: #000;
  overflow: hidden;
   border-radius: 20px;
   padding: 30px;
}

.feature-section .img-overlay {
  position: absolute;
  inset: 0;
  background: url('../img/service-4.jpg') no-repeat center/cover;
  border-radius: 20px;
  padding: 30px;
}

.feature-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.feature-section .container {
  position: relative;
  z-index: 3;
  color: #fff;
}

/* vertical lines */
.center-box {
  position: relative;
}

.vline {
  position: absolute;
  width: 2px;
  height: 100%;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
}

.vline.left {
  left: 0px;
}

.vline.right {
  right: 0px;
}

@media(max-width: 768px) {
  .vline { display: none; }
}

@media (max-width:500px) {
    .large-padding {
    padding-bottom: 0px;
}
.featured-story-slide {
    min-width: calc(100% / 1);
}
.story-slide-2 {
    min-width: calc(100% / 1);
}
.overlay-card {
    flex: 0 0 100%;
    margin: 0;
   padding: 0 0px;
}
}





.custom-section h3,
.custom-section h4 {
  font-weight: 700;
}

.custom-section p {
  color: #555;
}

.circle-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  
}



