*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
color:#333;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:#000;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
position:sticky;
top:0;
z-index: 9999;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
z-index: 9999;
}

nav a{
margin-left:20px;
text-decoration:none;
color:#fff;
font-weight:500;
}

.hero{
/* background:linear-gradient(120deg,#ffb040,#ffb347); */
color:white;
padding:120px 0;
text-align:center;
 background: url('banner.webp') no-repeat center center/cover;
 height: 500px;
}
.hero-content{
   
}
.hero h1{
font-size:42px;
margin-bottom:20px;
}

.btn{
background:white;
color:#ffb040;
padding:12px 25px;
text-decoration:none;
border-radius:30px;
font-weight:600;
}

.section{
padding:40px 0;
}

.light{
background:#f7f7f7;
}

.grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.center{
text-align:center;
margin-bottom:40px;
}

.benefit-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.benefit-card{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
text-align:center;
}

.process-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.process-card{
text-align:center;
padding:20px;
border:1px solid #eee;
border-radius:10px;
}

.process-card span{
display:inline-block;
width:40px;
height:40px;
background:#ffb040;
color:white;
border-radius:50%;
line-height:40px;
margin-bottom:10px;
}

.contact{
/* background:#ffb040; */
color:white;
}

.contact-box{
/* max-width:600px; */
text-align:center;
display: flex;
/* margin: 0px 20px; */
    align-items: center;
    gap: 37px;
    border-radius: 20px;
    background: #f0f0f5;
    box-shadow: 0px 0px 0.384px 0.384px rgba(0, 0, 0, 0.07), 0px 16.121px 16.121px 0px rgba(0, 0, 0, 0.04), 0px 4.86px 4.86px 0px rgba(0, 0, 0, 0.03), 0px 2.019px 2.019px 0px rgba(0, 0, 0, 0.02), 0px 0.73px 0.73px 0px rgba(0, 0, 0, 0.01);
}


.contact-box .left
 {
    flex: 1;
    width: 50%;
    height: 550px;
}

.contact-box .right {
    flex: 1;
    width: 50%;
    display: grid;
    align-items: center;
    padding-right: 60px;
}

.contact-box .right h2{
    color: rgba(2, 6, 12, 0.92);
    
    font-size: 48px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: -0.4px;
    opacity: 0.9;
}
form{
display:flex;
flex-direction:column;
/* gap:15px; */
/* margin-top:25px; */
}

input{
padding:12px;
border:none;
border-radius:5px;
}

button{
background:black;
color:white;
padding:12px;
border:none;
border-radius:5px;
cursor:pointer;
}

footer{
text-align:center;
padding:20px;
background:#111;
color:#fff;
}
footer a{
color: #ffb040;
text-decoration: none;

}
@media(max-width:768px){

.grid{
grid-template-columns:1fr;
}

.benefit-grid{
grid-template-columns:1fr 1fr;
}

.process-grid{
grid-template-columns:1fr 1fr;
}

.hero h1{
font-size:30px;
}

}

.hero-slider{
position:relative;
height:85vh;
overflow:hidden;
}

.slides{
position:relative;
height:100%;
}

.slide{
position:absolute;
width:100%;
height:100%;
opacity:0;
transition:opacity .7s ease;
}

.slide.active{
opacity:1;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
}

.slide-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:white;
background:rgba(0,0,0,0.4);
padding:40px;
border-radius:10px;
}
.slide-content p{
    margin: 10px 0px;
}

.slide-content h1{
font-size:48px;
margin-bottom:15px;
}

.prev,.next{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,0.5);
color:white;
border:none;
font-size:25px;
padding:10px 15px;
cursor:pointer;
}

.prev{
left:20px;
}

.next{
right:20px;
}

.dots{
position:absolute;
bottom:20px;
left:50%;
transform:translateX(-50%);
display:flex;
gap:10px;
}

.dots span{
width:12px;
height:12px;
background:white;
opacity:.5;
border-radius:50%;
cursor:pointer;
}

.dots span.active{
opacity:1;
}

@media(max-width:768px){

.slide-content h1{
font-size:20px;
}
.slide-content p{
    font-size: 15px;
}
.btn {
    background: white;
    color: #ffb040;
    padding: 5px 25px;
}

.section-title{
 font-size: 37px !important;
 }
 .partner-section .subtitle{
    font-size: 20px !important;
 }
.hero-slider{
height:50vh;
}

}

.partner-section {
    text-align: center;
    margin-bottom: 50px;
}
.partner-section .subtitle {
    color: rgba(2, 6, 12, 0.6);
    text-align: center;
    /* font-feature-settings: "clig" off, "liga" off; */
    /* font-family: Gilroy_Medium; */
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.304px;
    margin: 10px 0px;
}
.partner-section .cards {
    display: flex;
    justify-content: center;
    margin-top: 44px;
}
.partner-section .cards .card1 {
    display: flex;
    width: 312px;
    padding: 48px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    display: flex;
    border-radius: 16px;
    border: 1px solid #f0e1be;
    background: #fff0cd;
    box-shadow: 0px 0px 0.384px 0.384px rgba(0, 0, 0, 0.07), 0px 16.121px 16.121px 0px rgba(0, 0, 0, 0.04), 0px 4.86px 4.86px 0px rgba(0, 0, 0, 0.03), 0px 2.019px 2.019px 0px rgba(0, 0, 0, 0.02), 0px 0.73px 0.73px 0px rgba(0, 0, 0, 0.01);
    margin-right: 28px;
}
.partner-section .cards .title {
    color: #232323;
    text-align: center;
    
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 28px;
    letter-spacing: -0.4px;
    opacity: 0.9;
}
.partner-section .cards .description {
    color: rgba(59, 59, 59, 0.6);
    text-align: center;
   
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
}
.partner-section .cards .card2 {
    width: 312px;
    display: flex;
    padding: 48px 20px;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    border-radius: 16px;
    border: 1px solid #caeadf;
    background: #d0f5e5;
    box-shadow: 0px 0px 0.384px 0.384px rgba(0, 0, 0, 0.07), 0px 16.121px 16.121px 0px rgba(0, 0, 0, 0.04), 0px 4.86px 4.86px 0px rgba(0, 0, 0, 0.03), 0px 2.019px 2.019px 0px rgba(0, 0, 0, 0.02), 0px 0.73px 0.73px 0px rgba(0, 0, 0, 0.01);
    margin-right: 28px;
}
.partner-section .cards .card3 {
    width: 312px;
    display: flex;
    padding: 49px 20px;
    flex-direction: column;
    /* align-items: flex-start; */
    justify-content: center;
    gap: 28px;
    border-radius: 16px;
    border: 1px solid #e7c7c2;
    background: #ffe0dc;
    box-shadow: 0px 0px 0.384px 0.384px rgba(0, 0, 0, 0.07), 0px 16.121px 16.121px 0px rgba(0, 0, 0, 0.04), 0px 4.86px 4.86px 0px rgba(0, 0, 0, 0.03), 0px 2.019px 2.019px 0px rgba(0, 0, 0, 0.02), 0px 0.73px 0.73px 0px rgba(0, 0, 0, 0.01);
}
 .section-title {
    text-align: center;
   
    font-size: 72px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: -0.4px;
    opacity: 0.9;
    background: linear-gradient(180deg, rgba(2, 6, 12, 0.85) 85.23%, rgba(255, 255, 255, 0.85) 109.66%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.button-container {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}
.button-container .button {
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    gap: 8px;
    align-self: stretch;
    border-radius: 58px;
    background: rgb(49, 134, 22);
    border: 0;
    color: #fff;
    z-index: 100;
   
}
#infographics {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 120px;
}
#infographics .left {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    align-items: center;
    background: #f0f0f5;
    padding: 40px;
}
#infographics .text {
    color: rgba(2, 6, 12, 0.75);
    text-align: center;

    font-size: 27px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: -0.487px;
    max-width: 355px;
}
.button-container {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}
.button-container .button {
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    gap: 8px;
    align-self: stretch;
    border-radius: 58px;
    background: rgb(49, 134, 22);
    border: 0;
    color: #fff;
    z-index: 100;
    
}
#infographics .stroke {
    display: none;
}
#infographics .middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    background: #f0f0f5;
    padding: 40px;
}
#infographics .right {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    background: #f0f0f5;
    padding: 40px;
}
@media (max-width: 768px) {
    .contact-box {
        flex-direction: column-reverse;
        margin: 0px;
        gap: 10px;
        border-radius: 0px;
        background: #fff;
        box-shadow: none;
    }
}
@media (max-width: 768px) {
    .contact-box .left, .contact-box .right {
        width: 100%;
        padding: 0;
    }
        .partner-section .cards {
        margin: 0;
        align-items: center;
        flex-direction: column;
    }
    .partner-section .cards .card1 {
        margin: 0 0 20px 0;
    }
    .partner-section .cards .card2{
        margin: 0 0 20px 0;
    }
    .partner-section .cards .card3{
        margin: 0 0 20px 0;
    }
        #infographics {
        flex-direction: column;
        margin: 0px;
        gap: 0px;
    }
        #infographics .left {
        margin: 0;
        background: #fff;
    }
        #infographics .text-mobile {
        display: block;
    }
        #infographics .text-mobile .title {
        color: #232323;
        text-align: center;
       
        font-size: 20px;
        font-style: normal;
        font-weight: 800;
        line-height: 100%;
        letter-spacing: -0.304px;
        opacity: 0.9;
        padding-bottom: 10px;
    }
        #infographics .text-mobile .subtitle {
        color: rgb(49, 134, 22);
        text-align: center;
       
        font-size: 32px;
        font-style: normal;
        font-weight: 800;
        line-height: 120%;
        letter-spacing: -0.487px;
        opacity: 0.9;
        padding-bottom: 20px;
    }
        #infographics .middle {
        margin: 0;
        background: #fff;
    }
        #infographics .right {
        margin: 0;
        background: #fff;
    }
}

.franchise-form{
max-width:800px;
margin:auto;
padding:35px;
background:#ffffff;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
font-family:Arial, sans-serif;
}

.franchise-form h2{
text-align:center;
margin-bottom:25px;
font-weight:600;
font-size: 30px !important;
}

.franchise-form label{
font-weight:600;
margin-bottom:5px;
display:block;
}

.franchise-form input,
.franchise-form select{
width:100%;
padding:12px 14px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
transition:0.3s;
}

.franchise-form input:focus,
.franchise-form select:focus{
border-color:#ff6b00;
outline:none;
box-shadow:0 0 5px rgba(255,107,0,0.3);
}

.form-row{
display:flex;
gap:20px;
/* margin-bottom:20px; */
flex-wrap:wrap;
}

.form-group{
flex:1;
min-width:220px;
}

.submit-btn{
margin-top:15px;
text-align:center;
}

.submit-btn button{
background:rgb(49, 134, 22);
color:#fff;
border:none;
padding:14px 35px;
font-size:16px;
border-radius:6px;
cursor:pointer;
transition:0.3s;
}

.submit-btn button:hover{
background:#ff6b00;
}

@media(max-width:768px){

.form-row{
flex-direction:column;
margin-top: 15px;
}
.franchise-form label {
  
    display: none;
}
.prev, .next {
    display: none;

}
.slide-content {
    width: 80%;
}

}

.nav{
display:flex;
align-items:center;
justify-content:space-between;
}

nav{
display:flex;
gap:25px;
}

nav a{
text-decoration:none;
font-weight:500;
color:#fff;
}

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
}

/* Mobile */

@media(max-width:768px){

nav{
position:absolute;
top:80px;
left:0;
width:100%;
background:#fff;
flex-direction:column;
align-items:center;
gap:20px;
padding:25px 0;
display:none;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

nav.active{
display:flex;
}

.menu-toggle{
display:block;
}

}