@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

@font-face {
    font-family: PrimaryFont;
    src: url("../fonts/DMSerifDisplay-Regular.ttf");
}

@font-face {
    font-family: MontserratLight;
    src: url("../fonts/Montserrat-Light.ttf");
}

@font-face {
    font-family: MontserratRegular;
    src: url("../fonts/Montserrat-Regular.ttf");
}


@font-face {
    font-family: MontserratMedium;
    src: url("../fonts/Montserrat-Medium.ttf");
}


@font-face {
    font-family: MontserratBold;
    src: url("../fonts/Montserrat-Bold.ttf");
}


@font-face {
    font-family: MontserratkExtraBold;
    src: url("../fonts/Montserrat-ExtraBold.ttf");
}



:root {


    --Primary-font: PrimaryFont;
    --font-300: MontserratLight;
    --font-400: MontserratRegular;
    --font-500: MontserratMedium;
    --font-600: MontserratBold;
    --font-700: MontserratkExtraBold;

    --primary: #1B2A4E;
    --secondary: #EAE9E4;




    --primary-gradient: linear-gradient(82.98deg, #61067B 0%, #DF567F 123.52%);

}


* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: var(--font-400);
}




html,
body {
    font-family: var(--font-400);
}

section {
    padding: 50px 0;
    overflow: hidden;
}
footer{
    overflow: hidden;
}

a {
    text-decoration: none;
    /* transition: 0.3s ease 0s; */
    color: var(--bs-black);
}

a:hover {
    color: var(--primary);
}

input,
button,
textarea {
    outline: none;
    border: 0px;
    background: none;
}

p {
    margin-bottom: 0;
}

.heading {
    position: relative;
    text-align: center;
    width: 70%;
    margin: auto;
}

.heading::after {
    position: absolute;
    content: "";
    width: 40%;
    height: 4px;
    background: var(--primary-gradient);
    left: 50%;
    transform: translateX(-50%);
    bottom: -16px;
}

.heading h2 {
    font-family: var(--font-600);
    font-size: 3rem;
    color: var(--primary);
    text-transform: uppercase;
}

.heading span {
    font-family: var(--font-600);
}

.heading p {
    font-family: var(--font-500);
    font-size: 1rem;
}


.gradient-hero {
   background: linear-gradient(276deg, #ffffffd4 0%, gray 123.52%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    /* display: inline-block; */
}
.gradient-text {
    background: linear-gradient(82.98deg, #61067B 0%, #DF567F 123.52%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    /* display: inline-block; */
}

.mybtn {
    position: relative;
    background: transparent;
    padding: 12px 20px;
    border-radius: 0;
    font-family: var(--font-500);
    border: 1px solid transparent;
    transition: all 0.5s ease-in;
    outline: none;
    overflow: hidden;
    display: inline-block;
}

.mybtn span {
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: var(--font-500);
}




.mybtn-primary::after {
    content: "";
    background: var(--primary-gradient);
    position: absolute;
    inset: 0;
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.mybtn-primary:hover::after {
    width: 0;
}

.mybtn-primary:hover {
    border-color: #fff;
    background-color: var(--primary);
}








.mybtn-secondary::after {
    content: "";
    inset: 0;
    position: absolute;
    width: 100%;
    /* color: var(--primary); */
    background: var(--primary);
    transition: all 0.3s ease-in-out;
}

.mybtn-secondary:hover::after {
    width: 0;
}

.mybtn-secondary:hover {
    border-color: var(--primary);
    background-color: #fff;
}

.mybtn-secondary:hover span {
    color: var(--primary);
}




.btn-white {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-white::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 0;
    transition: all 0.5s ease-in-out;
}

.btn-white:hover::after {
    background: var(--primary);
    width: 100%;
}

.btn-white:hover {
    background: var(--primary);
    border-color: var(--primary);

}

/* Header start */
.header-top {
    background: var(--primary);
    color: var(--secondary);
    padding: 10px 0;
    font-family: var(--font-500);
    text-align: center;
    font-size: 1rem;
}

nav {

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 
                0 2px 4px -1px rgba(0, 0, 0, 0.06);
}



.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    animation: slideDown 0.3s ease-in-out; 
    background:#fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 
                0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* Header end */


/* hero Section Start */
.hero {
    background-size: cover;
    padding: 100px 0;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/hero.webp') no-repeat center/cover;
    opacity: 0.8;
    z-index: -1;
}

.hero-right h1 {
    font-size: 3.8rem;
    font-family: var(--font-600);
    color: #fff;
    text-transform: capitalize;
}

.hero-right h1 span {
    font-family: var(--font-600);

}

.hero-right p {
    font-family: var(--font-400);
    color: #fff;
    font-size: 1rem;
}

.hero-btn {

    display: flex;
    gap: 20px;
    margin-top: 20px;
}



/* Hero Form */
.hero-form {
  max-width: 545px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 10px;
    padding: 20px;
}

.hero-form-header {
    position: relative;
    background: var(--primary-gradient);
    text-align: center;
    padding: 10px 12px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.hero-form-header::after {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    height: 4px;
    bottom: 38px;
    background: var(--primary-gradient);

}

.hero-form-header h2 {
    font-family: var(--font-600);
    color: var(--secondary);
    font-size: 1.5rem;
    text-transform: uppercase;
}

.hero-form-counter {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-form-counter-box {
    text-align: center;
    display: flex;
    gap: 4px;
    justify-content: center;
}

.hero-form-counter-box span {
    background: #fff;
    font-family: "poppins";
    font-weight: 600;
    font-size: 2.4rem;
    border-radius: 12px;
    padding: 2px 10px;
    color: var(--primary);
}


.hero-form-center {
    background: #fff;
    padding: 16px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.hero-form-center h3 {
    font-family: var(--font-600);
    color: var(--primary);
    font-size: 1.8rem;
    text-align: center;
}


/* --- Hero Form Base Card --- */



/* --- Form Fields & Labels --- */
.hero-form .form-group {
    margin-bottom: 20px;
}

.hero-form .form-label {
    display: flex;
    align-items: center;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.hero-form .form-label i {
    margin-right: 8px;
    font-size: 1.2rem;
}

/* --- Inputs & Select Styling --- */
.hero-form .custom-input {
    width: 100%;
    height: 45px;
    border: 1.5px solid #a3b899;
    /* Smooth placeholder variant tint of primary */
    border-radius: 12px;
    background-color: #ffffff;
    padding: 0 16px;
    font-size: 1rem;
    color: #000000;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.hero-form .custom-input:focus {
    border-color: var(--primary);
}

/* Custom dropdown arrow setup matching primary color */
.hero-form .select-wrapper {
    position: relative;
    width: 100%;
}

.hero-form .custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%230f4c3a' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 1.15rem;
    padding-right: 40px;
}

/* --- Form Submit Button --- */
.hero-form .submit-btn {
    position: relative;
    width: 100%;
    height: 52px;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    border: 1px solid var(--primary);
    display: inline-block;
    gap: 8px;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 24px;
    transition: all 0.5s ease-in-out;
    margin-bottom: 0;
    overflow: hidden;
}

.submit-btn span {
    position: relative;
    z-index: 1;
    transition: all 0.5s ease-in-out;
}

.hero-form .submit-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    background: var(--primary-gradient);
    transition: all 0.5s ease-in-out;
}

.hero-form .submit-btn:hover:after {
    width: 0;
}

.hero-form .submit-btn:hover span {
    color: var(--primary);
}



/* Section  1 */
.sec1 {
    position: relative;
}

.sec1::after {
    content: url("../images/dots.webp");
    position: absolute;
    top: 60px;
    left: 0;
    width: 100px;
    height: 100px;
}

.sec1-left h2 {
    font-family: var(--font-600);
    font-size: 3.5rem;
    color: var(--primary);
    text-transform: capitalize;
}

.sec1-left h2 span {
    font-family: var(--font-600);
}

.sec1-list li {
    margin-bottom: 14px;
}

.sec1-list li::marker {
    font-size: 1.5rem;
    color: var(--primary);
}

.sec1-list h3 {
    font-family: var(--font-600);
    color: var(--primary);
    font-size: 1.5rem;
}

.sec1-btn {
    margin-top: 30px;
}

/* .sec1-btn .mybtn {
    border-radius: 12px;
} */



/* Section  2 */
.sec2 .row {
    margin-top: 80px;
}

.sec2-box {
    margin-bottom: 40px;
}

.sec2-box span {
    background: var(--primary-gradient);
    color: var(--secondary);
    padding: 4px 10px;
    border-radius: 8px;
}

.sec2-box h3 {
    font-family: var(--font-600);
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 20px;
}

.sec2-box p {
    font-family: var(--font-400);
    color: var(--primary);
    margin-top: 10px;
    font-size: 1rem;
}



/* Banner Section */
.banner {
    position: relative;
    background: url("../images/banner-bg.webp") no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    background-attachment: fixed;
}

.banner::after {
    content: url("../images/banner-book.webp");
    position: absolute;
    width: fit-content;
    height: 100%;
    left: -250px;
    top: 122px;
}

.banner .row {
    justify-content: center;
    text-align: center;
    color: #fff;
}

.banner-top {
    margin-bottom: 16px;
}

.banner-top p {
    font-family: var(--font-500);
    font-size: 1.2rem;
}

.banner h2 {
    font-family: var(--font-600);
    font-size: 3rem;
}

.banner p {
    font-family: var(--font-400);
    font-size: 1rem;
}

.banner-btn {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.banner-btn .btn-white:hover::after {
    background: #fff;
}

.banner-btn .btn-white:hover span {
    color: var(--primary);
}

/* Section 3 */
.sec3 {
    background: var(--secondary)
}

.sec3 .row {
    margin-top: 80px;
}

.sec3-box {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sec3-box h3 {
    font-family: var(--font-600);
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 20px;
}

.sec3-box p {
    font-family: var(--font-500);
    color: var(--primary);
    margin-top: 10px;
    font-size: 1rem;
}

.sec3-box-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.sec3-box-bottom-img {
    width: 56px;
}


/* Section 4 */
.sec4 {
    background: var(--secondary);
}


.sec4-gallery {
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 60px;
    justify-content: center;
}

.sec4-gallery-img {
    width: 279px;
}

/* Testimonial */
.testimonial-slider {
    /* background: url("../images/test-bg.webp") no-repeat center center; */
    /* Deep Navy Background */
    /* background-size: cover; */
    /* background-attachment: fixed; */
    /* color: #ffffff; */

    padding: 50px 40px;
    font-family: 'Arial', sans-serif;
    /* Replace with your actual font family */
    position: relative;
}

.slide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Content Styles */
.testimonial-text {
    flex: 1;
    max-width: 55%;
}

.subtitle {
    font-size: 1rem;
    color: var(--primary);
    display: block;
    margin-bottom: 20px;
}

.quote {
    font-size: 2.2rem;
    line-height: 1.3;
    font-family: var(--font-600);
    color: var(--primary);
    margin: 0 0 25px 0;
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--primary);
    font-family: var(--font-500);
    margin-bottom: 20px;
}

.author {
    font-family: var(--font-600);
    font-size: 1.1rem;
}

/* Right Media/Video Styles */
.testimonial-media {
    flex: 1;
    max-width: 40%;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.testimonial-media img {
    width: 100%;
    display: block;
    /* Slightly dimmed like the design */
}


/* Navigation Buttons Styling */
.navigation-wrapper {
    display: flex;
    justify-content: center;
    width: fit-content;
    margin: auto;
    padding: 6px 8px;
    background: var(--primary);
    margin-top: 40px;
    gap: 6px;
}

.custom-nav-btn {
    position: relative;
    inset: 0;
    padding: 26px;
    margin: 0 !important;
    color: #1a2649;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
}

.custom-nav-btn i {
    z-index: 99;
}

.custom-nav-btn::after {
    display: none;
    /* Removes Swiper's default font arrow icons */
}

/* Applying your requested linear gradient to the Next button */
.swiper-button-next {
    transition: all 0.5s ease-in-out;
}

.swiper-button-next i {
    color: var(--primary);
}
.swiper-button-next:hover i {
    color: #fff;
}

.swiper-button-next::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    background: #fff;
    transition: all 0.5s ease-in-out;
    z-index: 1;
    border: 1px solid transparent;
}


.swiper-button-next:hover:before {
    width: 0;
    opacity: 0.3;
}

.swiper-button-next:hover {
    background: var(--primary-gradient);
}


.swiper-button-prev {
    overflow: hidden;
    transition: all 0.5s ease-in-out;

}

.swiper-button-prev::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    background-color: #fff;
    transition: all 0.5s ease-in-out;
    z-index: 1;
    border: 1px solid transparent;
}

.swiper-button-prev:hover:before {
    width: 0;
    background: var(--primary);
    border-color: var(--primary);
}

.swiper-button-prev:hover {
    background: var(--primary-gradient);
}
.swiper-button-prev:hover i {
    color: #fff;
}


/* FAQS Start */
.faq .row {
    margin-top: 80px;
    justify-content: space-between;
}

.faq-left h3 {
    font-size: 3rem;
    font-family: var(--Primary-font);
    color: var(--primary);
}

.faq-btn {
    margin-top: 28px;
}

/* Base Accordion Item Styling */
.custom-faq .accordion-item {
    background-color: #f3f1ee;
    /* Off-white background for closed tabs */
    transition: all 0.3s ease;
}

/* Styling the Header Buttons */
.custom-faq .accordion-button {
    background-color: #f3f1ee;
    color: #1c2434;
    font-weight: 600;
    padding: 1.5rem;
    box-shadow: none !important;
    /* Removes Bootstrap blue glow focus */
}

/* Custom styling for the OPEN/ACTIVE state */
.custom-faq .accordion-item:has(.accordion-button:not(.collapsed)) {
    background-color: #1a2649;
    /* Dark Navy Blue */
}

.custom-faq .accordion-button:not(.collapsed) {
    background-color: #1a2649;
    color: #ffffff;
}

/* Body description text colors */
.custom-faq .accordion-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #a5b1c9;
    /* Light slate blue for open text readability */
}

/* Replaying Bootstrap's Chevron Icon with clean text indicators (+ / ×) */
.custom-faq .accordion-button::after {
    content: '+';
    background-image: none !important;
    /* Removes bootstrap chevron */
    font-size: 1.7rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none !important;
    /* Stops rotation animation */
    color: #1c2434;
}

/* Changing icon appearance when active */
.custom-faq .accordion-button:not(.collapsed)::after {
    content: '×';
    color: #ffffff;
    font-size: 2rem;
}
























/* Footer */
footer {
    background: var(--primary);
    color: var(--secondary);
    padding: 60px 180px;
    padding-bottom: 0;
}

.footer-logo img{
    width: 200px;
    filter: brightness(0) invert(1);
}

.footer .footer-top {
    /* Footer top styles */
    text-align: center;
}

.footer-top-center {
    text-align: left;
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 60px 0;
    padding-bottom: 80px;
}

.footer-top-center-box {
    display: flex;
    align-items: center;

}

.footer-top-center-box.address {
    width: 400px;

}

.footer-top-center-box a {
    color: var(--secondary);
    font-family: var(--font-600);
}

.footer-top-center-box a:hover {
    color: #F7A707;
}


.footer-top-center-box i {
    background: #F7A707;
    color: #fff;
    padding: 3px 8px;
    font-size: 20px;
    border-radius: 50%;
    margin-right: 10px;
}

/* Footer Center */
.footer .footer-center {
    border-top: 1px solid #EAE9E4;
    border-bottom: 1px solid #EAE9E4;
    padding: 20px 0;
}

.footer .footer-center p {

    font-size: 1rem;
    font-family: var(--font-300);
    color: var(--secondary);

}

.footer .footer-center span {
    font-family: var(--font-600);
}

/* Footer Bottom */
.footer .footer-bottom {
    padding: 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .footer-bottom p {
    font-family: var(--font-400);
    font-size: 1rem;
    color: var(--secondary);
}

.footer .footer-bottom p span {
    font-family: var(--font-600);
}

.footer-bottom-right {
    display: flex;
    gap: 20px;
}

.footer-bottom-right a:hover {
    color: #F7A707;
}






































.modal-body.p-0 {
    background: white;
    border-radius: 20px;
}

button.btn-close-custom {
    left: auto !important;
    right: 20px;
    background: var(--primary) !important;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

button.btn-close-custom i {
    color: white !important;
    font-size: 18px !important;
}

.form-header-tag {
    margin-bottom: 20px;
}

.form-header-tag span {
    font-size: 2rem;
    font-family: var(--font-600);
    color: var(--primary);
}









.thank-you {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 0;
}

.thank-you-content h1 {
    font-size: 3rem;
    font-family: var(--bs-black);
    font-weight: 700;
}

.thank-you-content p {
    font-size: 1.2rem;
    font-family: var(--font-500);
}

.thank-you-content .mybtn {
    margin-top: 20px;
    cursor: pointer;
}


/* Term and policy page */
.term_condition h1 {
    text-align: center;
    font-size: 4rem;
    font-weight:600;
    margin-bottom: 20px;
}

.term_condition h2 {
    font-size: 1.8rem;
    font-family: var(--font-500);
}

.term_condition p {
    font-size: 1rem;
    font-family: var(--font-400);
    margin-bottom: 26px;
}