/* Madelyn Regular */
@font-face {
    font-family: 'Madelyn';
    src: url('../fonts/Madelyn.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Madelyn Doodles */
@font-face {
    font-family: 'MadelynDoodles';
    src: url('../fonts/MadelynDoodles.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Madelyn Fill */
@font-face {
    font-family: 'MadelynFill';
    src: url('../fonts/MadelynFill.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}




body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* ================= NAVBAR ================= */

.custom-navbar {
    background-color: #e7c8a8;
    padding: 3px 0;
}

.logo-circle {
    width: 40px;
    height: 40px;
    background: #d29a52;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Mobile (default) */
.brand-text {
    font-family: 'MadelynFill';
    font-size: 43px;
    font-weight: 500;
    color: #5b2c06;
}

/* Desktop */
@media (min-width: 768px) {
    .brand-text {
        font-size: 45px;
    }
}

.navbar-nav .nav-link {
    color: #5b2c06;
    font-weight: 500;
    margin: 0 10px;
}

.navbar-nav .nav-link:hover {
    color: #000;
}

.mobile-number {
    color: #5b2c06;
    font-weight: 500;
}

/* ================= HERO SECTION ================= */

.hero-section {
    background: url('../images/background-1.png') no-repeat center center;
    background-size: cover;
    padding-top:30px;
    position: relative;
}

@media (max-width:768px){

.hero-section{
    padding: 30px 0;
}

}

/* Optional: Light overlay for better text readability */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(255 199 129 / 12%); /* adjust opacity */
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-image {
    max-width: 80%;
    height: auto;
}




/* Mobile (default) */
.hero-content h1 {
    font-family: 'MadelynFill';
    font-size: 45px;   /* smaller for mobile */
    color: #6b3a0f;
    margin-bottom: 15px;
    padding-top: 15px;
}

/* Desktop */
@media (min-width: 768px) {
.hero-content h1 {
   font-family: 'MadelynFill';
    font-size: 73px;
    color: #6b3a0f;
    margin-bottom: 20px;
}
}



/* Mobile (default) */
.hero-content p {
    font-size: 14px;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 20px;
}

/* Desktop */
@media (min-width: 768px) {
.hero-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}
}





.read-more-btn {
    background: #d29a52;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
}

.read-more-btn:hover {
    background: #b67f3d;
    color: #fff;
}



/* ================= POPULAR PROGRAM ================= */

/* Desktop (default) */
.popular-program {
    background: url('../images/background-2.png') no-repeat center;
    background-size: cover;
    padding: 100px 0;
    position: relative;
}

/* Mobile */
@media (max-width:768px){

.popular-program {
    padding: 30px 0;
}

}


.popular-program::before{
content:"";
position:absolute;
inset:0;
background:rgba(255,255,255,0.85);
}

.popular-program .container{
position:relative;
z-index:2;
}

.section-title{
font-family:'MadelynFill';
font-size:73px;
color:#d29a52;
margin-bottom:30px;
line-height:57px;
}

.program-list{
list-style:none;
padding:0;
}

.program-list li{
font-size:20px;
margin-bottom:15px;
cursor:pointer;
transition:.3s;
}

.program-list li a{
text-decoration:none;
color:#5b2c06;
}

.program-list li:hover{
transform:translateX(8px);
}

.program-image-wrapper{
border-radius:30px;
overflow:hidden;
box-shadow:0 20px 40px rgba(0,0,0,0.1);
display:inline-block;
}

/* Desktop (default) */
#programImage{
max-width:450px;
border-radius:30px;
transition:opacity .4s ease;
}

/* Mobile */
@media (max-width:768px){

#programImage{
max-width:370px;
border-radius:30px;
transition:opacity .4s ease;
}

}




/* ================= TRUSTED SECTION ================= */



.trusted-section{
background:url('/images/programme/trusted-by.png') center/cover no-repeat;
padding:60px 0;
position:relative;
}

.trusted-section::before{
content:"";
position:absolute;
inset:0;
background: rgb(255 255 255 / 32%);
}

.trusted-section .container{
position:relative;
z-index:2;
}

.trusted-title{
font-size:48px;
font-weight:700;
color:#6b2c0a;
margin-bottom:10px;
}

.trusted-subtitle{
font-size:18px;
color:#7a5b48;
margin-bottom:60px;
}

/* video cards */

.trusted-videos{
gap:30px;
}

.video-card{
position:relative;
}

.video-card img{
width:100%;
display:block;
}

/* center card bigger */

.main-card{
transform:scale(1.1);
z-index:2;
}

/* hover */

.video-card:hover{
transform:translateY(-10px);
}

/* video time */

.time{
position:absolute;
bottom:10px;
right:10px;
background:rgba(0,0,0,0.8);
color:#fff;
font-size:14px;
padding:3px 8px;
border-radius:5px;
}

/* mobile */

@media (max-width:768px){

.main-card{
transform:scale(1);
margin:20px 0;
}

.trusted-title{
font-size:32px;
}

}











/* ================= HIRE SECTION ================= */

@media (min-width: 768px) {
.hire-section {
    position: relative;
    padding: 120px 0 0;
    background: url('../images/background-3.png') no-repeat center center;
    background-size: cover;
    text-align: center;
    overflow: hidden;
}
}


@media (max-width: 768px) {
.hire-section {
    position: relative;
    padding: 20px 0 0;
    background: url('../images/background-3.png') no-repeat center center;
    background-size: cover;
    text-align: center;
    overflow: hidden;
}
}



/* Blur Effect */
.hire-section::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.6);
}

/* Bottom Fade White */
.hire-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #f6f3ef 100%);
}

/* Content Above Overlay */
.hire-content {
    position: relative;
    z-index: 2;
}

/* Script Heading */
.hire-title {
    font-family: 'MadelynFill';
    font-size: 73px;
    color: #6b2f0f;
    margin-bottom: 15px;
    line-height: 51px;
}

/* Subtitle */
.hire-subtitle {
    font-size: 15px;
    color: #7a4a2a;
    margin-bottom: 30px;
}

/* Button */
.hire-btn {
    background: #d29a52;
    color: white;
    padding: 14px 40px;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s;
}

.hire-btn:hover {
    background: #b67f3d;
    color: white;
}

/* Speaker Image */
.hire-image {
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

.hire-image img {
    max-width: 400px;
    width: 100%;
}





/* Section */
.benefit-section{
    position:relative;
    padding:100px 20px;
    text-align:center;
	 background: url('../images/background-4.png') no-repeat center center;
    background-size:cover;
    background-position:center;
}

@media (max-width:768px){
  .benefit-section{ 
       padding:30px 20px;
  } 
}

/* Title */
.benefit-section h1{
    font-size:73px;
    color:#5a2d0c;
    margin-bottom:20px;
    font-family: 'MadelynFill';
}

/* Paragraph */
.benefit-section p{
    max-width:850px;
    margin:0 auto 60px;
    font-size:18px;
    line-height:1.7;
    color:#5a3a1b;
}

/* Features Row */
.features{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;
    flex-wrap:wrap;
    margin-bottom:50px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:20px;
    font-weight:500;
    color:#4b2a10;
}

.feature-item i{
    font-size:26px;
}

/* Divider */
.divider{
    width:1px;
    height:30px;
    background:#c7b8a6;
}

/* Button */
.btn-book{
    background:#d9a441;
    color:#fff;
    padding:14px 35px;
    border-radius:40px;
    font-size:18px;
    border:none;
    cursor:pointer;
    transition:0.3s ease;
}

.btn-book:hover{
    background:#c68f2c;
    transform:translateY(-3px);
}

/* Responsive */
@media(max-width:768px){
    .benefit-section h1{
        font-size:55px;
    }
    .benefit-section p{
        font-size:16px;
    }
    .divider{
        display:none;
    }
}





.events-section{
position:relative;
width:100%;
height:500px;
overflow:hidden;
display:flex;
align-items:center;
}


.events-banner{
position:absolute;
top:0;
left:0;
display:flex;
height:100%;
animation:scrollBanner 60s linear infinite;
}

.events-banner img{
height:100%;
width:auto;
flex-shrink:0;
}

/* animation */
@keyframes scrollBanner{
from{
transform:translateX(0);
}
to{
transform:translateX(-50%);
}
}


/* Right Transparent Panel */
.events-overlay{
position:absolute;
right:80px;
top:50%;
transform:translateY(-50%);
width:420px;
height:500px;
padding:60px 50px;
background:rgba(255,255,255,0.85);
backdrop-filter:blur(3px);
z-index:2;
}

/* Heading */
.events-overlay h2{
    font-family: 'MadelynFill';
    font-size:73px;
    color:#6b3b18;
    margin-bottom:20px;
    text-align:center;
}

/* Text */
.events-overlay p{
    font-size:16px;
    line-height:1.8;
    color:#5b4a3a;
    text-align:center;
}

@media (max-width:991px){

.events-section{
    height:auto;
    display:flex;
    flex-direction:column; /* stack items */
    padding:5px 0;
}

/* TEXT ON TOP */
.events-overlay{
    position:relative;
    order:1;
    right:auto;
    top:auto;
    transform:none;
    width:100%;
    height:auto;
    padding:40px 25px;
    background:#fff;
}

/* SLIDER BELOW */
.events-banner{
    position:relative;
    order:2;
    height:250px;
    margin-top:20px;
}

/* slider images */
.events-banner img{
    height:100%;
}

.events-overlay h2{
    font-size:70px;
}

}





/* SECTION */
.testimonial-section{
    position:relative;
    padding:120px 0;
     background: url('../images/background-4.png') no-repeat center center;
}

/* Soft White Gradient Overlay */
.testimonial-section::before{
    content:"";
    position:absolute;
    inset:0;
    
}

/* Keep content above overlay */
.testimonial-content{
    position:relative;
    z-index:2;
}

/* LEFT CONTENT */
.left-heading{
    font-size: 73px;
    color: #6b3b18;
    line-height: 1.1;
	line-height:68px;
	font-family: 'MadelynFill';
}

.left-text{
    font-size:17px;
    color:#5a4636;
    line-height:1.9;
    margin-top:30px;
}

/* CARD STYLE */
.testimonial-card{
    background:#fff;
    padding:25px 30px;
    border-radius:6px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    display:flex;
    gap:20px;
    align-items:flex-start;
    margin-bottom:30px;
}

.testimonial-card img{
    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-card h6{
    font-weight:600;
    color:#6b3b18;
    margin-bottom:8px;
}

.testimonial-card p{
    font-size:14px;
    color:#555;
    line-height:1.6;
    margin-bottom:0;
}

/* Responsive */
@media(max-width:991px){
    .left-heading{
        font-size: 60px;
        line-height: 62px;
    }
    .testimonial-section{
        padding:8px 0;
    }
}





.footer-section{
    background:#e6c9a8; /* Beige background */
    padding:80px 0;
    color:#5b2c06;
}

/* Logo Style */
.footer-logo{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:25px;
}

.logo-circle{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#d9a441;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-weight:600;
	font-size:30px;
	font-family: 'MadelynFill';
}

.logo-text{
    font-family: 'MadelynFill';
    font-size:37px;
}

/* Social Icons */
.social-icons a{
    width:40px;
    height:40px;
    background:#5b2c06;
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:6px;
    margin-right:10px;
    text-decoration:none;
    transition:0.3s;
}

.social-icons a:hover{
    background:#3e1f04;
}

/* Headings */
.footer-heading{
    font-weight:600;
    margin-bottom:20px;
    font-size:18px;
}

/* Links */
.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    text-decoration:none;
    color:#5b2c06;
    font-size:15px;
    transition:0.3s;
}

.footer-links a:hover{
    color:#3e1f04;
    padding-left:5px;
}

/* Contact Info */
.contact-info{
    margin-top:25px;
}

.contact-info p{
    margin-bottom:10px;
    font-size:15px;
}

.contact-info i{
    margin-right:10px;
}

/* Responsive */
@media(max-width:991px){
    .footer-section{
        padding:50px 0;
    }
}




/* About Section */
.about-section{
    background:#f3efe9;
    padding-top:30px;
    position:relative;
    overflow:hidden;
	 background: url('../images/back-aboutus.png') no-repeat center center;
}

/* Soft bottom fade */
.about-section::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:120px;
    
}

/* Heading */
.about-heading{
    font-family: 'MadelynFill';
    font-size: 72px;
    line-height: 57px;
    color: #5b2c06;
    margin-bottom: 30px;
}

/* Paragraph */
.about-text{
    font-family:'Poppins', sans-serif;
    font-size:16px;
    line-height:1.8;
    color:#6a3b15;
    margin-bottom:20px;
}

/* Image */
.about-image-wrapper{
    position:relative;
}

.about-image{
    max-height:480px;
}

/* Responsive */
@media(max-width:991px){
    .about-section{
        padding:70px 0;
        text-align:center;
    }

    .about-heading{
        font-size:36px;
    }
}



/* Section Background */
.speaker-section{
    background:#f4efe9;
    position:relative;
    overflow:hidden;
	padding-top:30px;
	padding-bottom:30px;
}

.speaker-section img{
    border-radius:20px;
    border:8px solid #d39a2d;
}
/* Heading */
.speaker-heading{
    font-family: 'MadelynFill';
    font-size: 72px;
    line-height: 67px;
    color: #d39a2c;
    margin-bottom: 30px;
}

/* Paragraph Text */
.speaker-text{
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.3;
    color: #5b2c06;
    margin-bottom: 20px;
}

/* Image Wrapper */
.speaker-image-wrapper{
    position:relative;
    height:100%;
}

/* Image */
.speaker-image{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Smooth Gradient Fade (Left Side of Image) */
.speaker-image-wrapper::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:200px;
    height:100%;
    background:linear-gradient(to right, #f4efe9 0%, rgba(244,239,233,0) 100%);
    z-index:2;
}

/* Responsive */
@media(max-width:991px){
    .speaker-section{
        padding:5px 0;
        text-align:center;
    }

    .speaker-heading{
        font-size:36px;
    }

    .speaker-image-wrapper::before{
        display:none;
    }
}



/* Section Background */
.amarvani-section{
    background:#f4efe9;
    position:relative;
    overflow:hidden;
    background:url('../images/amar-vani.png') no-repeat center center;
    background-size:cover;
}

/* Heading */
.amarvani-heading{
    font-family: 'MadelynFill';
    font-size: 73px;
    color: #d39a2c;
    line-height: 70px;
    margin-bottom: 30px;
}

/* Paragraph Text */
.amarvani-text{
    font-family:'Poppins', sans-serif;
    font-size:15px;
    line-height:1.3;
    color:#5b2c06;
    margin-bottom:20px;
}

/* Image Wrapper */
.amarvani-image-wrapper{
    position:relative;
    height:100%;
}

/* Image */
.amarvani-image{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Smooth Gradient Fade */
.amarvani-image-wrapper::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:200px;
    height:100%;
    background:linear-gradient(to right, #f4efe9 0%, rgba(244,239,233,0) 100%);
    z-index:2;
}

/* Responsive */
@media(max-width:991px){
    .amarvani-section{
        padding:20px 0;
        text-align:center;
    }

    .amarvani-heading{
       font-size: 46px;
        font-weight: 500;
        line-height: 50px;
    }

    .amarvani-image-wrapper::before{
        display:none;
    }
}




/* ================= PROGRAM DETAIL ================= */

.program-detail {
    position: relative;
    padding: 100px 0;
    background: #f6f3ef;
    overflow: hidden;
}


@media (max-width:768px){
    
    .program-detail {
         padding: 30px 0;
    }
}

/* Background Image on Right */
.program-detail::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
   background: url(../images/lds-background.png) no-repeat center center;
    background-size: cover;
    z-index: 1;
}

/* White Fade Effect */
.program-detail::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        #f6f3ef 0%,
        rgba(246,243,239,0.95) 40%,
        rgba(246,243,239,0.7) 70%,
        rgba(246,243,239,0) 100%
    );
    z-index: 2;
}

/* Content Layer */
.program-detail .container {
    position: relative;
    z-index: 3;
}

/* Title */
.program-title {
    font-family: 'MadelynFill';
    font-size: 73px;
    line-height: 70px;
    color: #6b2f0f;
    margin-bottom: 20px;
}

/* Text */
.program-text {
    font-size: 15px;
    line-height: 1.8;
    color: #5b2c06;
    max-width: 500px;
}

/* Hide duplicate image on large screens */


/* Mobile View */
@media (max-width: 991px) {

    .program-detail::after {
        display: none;
    }

    .program-detail::before {
        display: none;
    }

    .program-image {
        display: block;
        margin-top: 40px;
    }

    .program-image img {
        width: 100%;
        border-radius: 20px;
    }
}




/* ================= SPLIT PROGRAM SECTION ================= */

.program-split {
    position: relative;
    padding: 100px 0;
    background: #f6f3ef;
    overflow: hidden;
}

/* Right Side Image Background */
.program-split::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('../images/celebrity-background.png') no-repeat center right;
    background-size: cover;
    z-index: 1;
}

/* Left White Gradient Fade */
.program-split::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        #f6f3ef 0%,
        rgba(246,243,239,0.95) 40%,
        rgba(246,243,239,0.7) 70%,
        rgba(246,243,239,0) 100%
    );
    z-index: 2;
}

/* Keep Content Above */
.program-split .container {
    position: relative;
    z-index: 3;
}

/* Heading */
.split-title {
    font-family: 'MadelynFill';
    font-size: 72px;
    color: #6b2f0f;
    margin-bottom: 20px;
}

/* Paragraph */
.split-text {
    font-size: 15px;
    line-height: 1.3;
    color: #5b2c06;
    max-width: 520px;
}

/* Hide mobile image on desktop */
.mobile-image {
    display: none;
}

/* ================= MOBILE ================= */

@media (max-width: 991px) {

    .program-split::after,
    .program-split::before {
        display: none;
    }

    .mobile-image {
        display: block;
        margin-top: 40px;
    }

    .mobile-image img {
        width: 100%;
        border-radius: 20px;
    }
    
    .program-split {

    padding: 30px 0;

}

.split-title{
    font-size: 48px;
}

}




/* Born Again Section */
.bornagain {
  background: url('../images/born-again.png') no-repeat center right;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.bornagain-content {
  padding: 60px 80px;
}

.bornagain-title {
  font-family: 'MadelynFill';
  font-size: 72px;
  color: #6b2e1a;
  margin-bottom: 25px;
}

.bornagain-text {
  font-size: 15px;
  line-height: 1.4;
  color: #5a4638;
  max-width: 500px;
}

.bornagain-text strong {
  color: #6b2e1a;
}

.bornagain-image {
  position: relative;
}

.bornagain-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 991px) {
  .bornagain {
    background: #f4f1ec;
    padding: 5px 0;
  }

  .bornagain-content {
    padding: 40px 30px;
    text-align: center;
  }

  .bornagain-title {
    font-size: 72px;
  }

  .bornagain-text {
    margin: 0 auto;
  }
}





@media (min-width: 992px) {

    .paright{
        margin-right:100px;
    }

    .palef{
        margin-left:100px;
    }

}




.popup-form{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

.popup-content{
background:#fff;
padding:40px;
border-radius:10px;
width:90%;
max-width:400px;
text-align:center;
position:relative;
}

.popup-content h3{
margin-bottom:20px;
}

.popup-content input{
width:100%;
padding:10px;
margin-bottom:15px;
border:1px solid #ccc;
border-radius:5px;
}

.popup-content button{
background:#c89b55;
border:none;
color:#fff;
padding:10px 20px;
border-radius:5px;
cursor:pointer;
}

.close-popup{
position:absolute;
top:10px;
right:15px;
font-size:22px;
cursor:pointer;
}

