body{
font-family: 'Poppins', sans-serif;
margin:0;
padding:0;
}

/* ================= HEADER ================= */

.main-header{
position:fixed;
top:0;
width:100%;
z-index:999;
padding:15px 0;
transition:0.4s;
}

.main-header.sticky{
background:#fff;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

/* HEADER FLEX */

.header-flex{
display:flex;
align-items:center;
justify-content:space-between;
}

/* LOGO */

.logo{
height:45px;
}

/* MENU ICON */

.menu-toggle{
width:30px;
cursor:pointer;
display: none;
}

.menu-toggle span{
display:block;
height:3px;
background:#ffffff;
margin:6px 0;
transition:0.3s;
}

/* ================= MOBILE MENU ================= */

.mobile-menu{
position:fixed;
top:0;
right:-100%;
width:100%;
height:100%;
background:#111;
display:flex;
align-items:center;
justify-content:center;
transition:0.5s;
z-index:9999;
}

.mobile-menu.active{
right:0;
}

.mobile-menu ul{
list-style:none;
padding:0;
text-align:center;
}

.mobile-menu ul li{
margin:25px 0;
}

.mobile-menu ul li a{
color:#fff;
font-size:28px;
text-decoration:none;
font-weight:500;
transition:0.3s;
}

.mobile-menu ul li a:hover{
color:#E87722;
}

.menu-close{
position:absolute;
top:30px;
right:30px;
font-size:35px;
color:#fff;
cursor:pointer;
}

/* ================= HERO ================= */

.hero-section{
min-height:100vh;
background:url('../image/banner.webp') center/cover no-repeat;
display:flex;
align-items:center;
text-align:center;
color:#fff;
position:relative;

}

.hero-section::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
}

.hero-content{
position:relative;
z-index:2;
max-width:900px;
margin:auto;
}

/* HERO TITLE */

.hero-title{
font-size:60px;
font-weight:600;
line-height:1.2;
margin-bottom:20px;
}

.hero-title span{
color:#ff7710;
}

/* HERO TEXT */

.hero-text{
font-size:17px;
color:#eee;
margin-bottom:35px;
}

/* BUTTON */

.hero-btn{
display:inline-block;
padding:14px 38px;
background:#E87722;
color:#fff;
border-radius:40px;
text-decoration:none;
font-weight:500;
transition:0.3s;
}

.hero-btn:hover{
background:#ff8b2c;
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(232,119,34,0.4);
}

/* HERO ZOOM */

@keyframes zoomHero{

0%{background-size:100%;}
100%{background-size:110%;}

}

.main-header.sticky .menu-toggle span{
    background: #111;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

.hero-title{
font-size:36px;
}

.hero-text{
font-size:15px;
padding:0 0px;
}

.hero-content{
padding-top: 120px;
padding-bottom: 60px;
}

}

/* LOGO WRAP */

.logo-wrap{
display:flex;
align-items:center;
gap:12px;
}

/* ORANGE CIRCLE */

.logo-icon{
width:48px;
height:48px;
background:#E87722;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-weight:600;
font-size:20px;
}

/* TEXT */

.logo-text{
display:flex;
flex-direction:column;
line-height:1.1;
}

.brand-name{
font-size:26px;
font-weight:600;
color:#E87722;
}

.brand-sub{
font-size:12px;
letter-spacing:2px;
color:#ffffff;
}

@media(max-width:768px){

.brand-name{
font-size:20px;
}

.logo-icon{
width:40px;
height:40px;
font-size:18px;
}

}

.vision-section{
padding:60px 0px;
background:hsl(0deg 0% 96% / 30%);
position:relative;
overflow:hidden;
}

.vision-content{
max-width:900px;
margin:auto;
}

/* TITLE */

.vision-title{
font-size:42px;
font-weight:600;
margin-bottom:20px;
opacity:0;
transform:translateY(30px);
animation:fadeUp 1s ease forwards;
}

.vision-title span{
color:#E87722;
}

/* LINE */

.title-line{
width:0;
height:4px;
background:#E87722;
margin:15px auto 30px;
animation:lineGrow 1s ease forwards;
animation-delay:.6s;
}

/* TEXT */

.vision-text{
font-size:18px;
line-height:1.7;
color:#666;
margin-bottom:40px;
opacity:0;
animation:fadeIn 1s ease forwards;
animation-delay:1s;
}

/* BUTTON */

.vision-btn{
display:inline-block;
padding:14px 40px;
border:2px solid #E87722;
border-radius:15px;
color:#E87722;
text-decoration:none;
font-weight:500;
transition:all .4s ease;
opacity:0;
animation:fadeIn 1s ease forwards;
animation-delay:1.3s;
}

.vision-btn:hover{
background:#E87722;
color:#fff;
box-shadow:0 10px 25px rgba(232,119,34,.3);
transform:translateY(-3px);
}

/* ANIMATIONS */

@keyframes fadeUp{

to{
opacity:1;
transform:translateY(0);
}

}

@keyframes fadeIn{

to{
opacity:1;
}

}

@keyframes lineGrow{

to{
width:80px;
}

}

/* SECTION */

.solutions-section{
padding:60px 0;
background:#f8f8f8;
}

/* TITLE */

.section-title h2{
font-size:40px;
font-weight:600;
}

.section-title span{
color:#E87722;
}

/* CARD */

.solution-card{

background:#fff;
border-radius:20px;
padding:60px 30px;
border:1px solid #eee;

transition:all .4s ease;
cursor:pointer;

}

/* ICON */

.solution-card .icon{
font-size:45px;
color:#E87722;
margin-bottom:20px;
}

/* TEXT */

.solution-card h4{
font-size:24px;
font-weight:600;
}

/* HOVER EFFECT */

.solution-card:hover{

transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,0.08);
border-color:#E87722;

}

.solution-card:hover .icon{

transform:scale(1.15);
transition:.4s;

}

@media(max-width:768px){

    .vision-title
    {
        font-size: 32px;
    }
    .vision-text{
        font-size: 16px;
        margin-bottom: 30px;
        line-height: 1.6;
    }
.solutions-section{
padding:50px 0;
}

.section-title h2{
font-size:28px;
}

.solution-card{
padding:40px 20px;
}

}



.solution-card .icon{
font-size:42px;
color:#E87722;
margin-bottom:20px;
transition:.4s;
}

.service-section{
    padding: 60px 0px;
}

.service-card{
    border-radius:15px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:all .4s ease;
    position:relative;
}

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

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

.service-content{
    padding:30px;
}

.service-icon{
    position:absolute;
    top:160px;
    left:20px;
    width:45px;
    height:45px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.service-icon i{
    font-size:18px;
    color: #e87722;
}

.service-title{
    font-size:22px;
    font-weight:600;
    margin-bottom:10px;
}

.service-text{
    font-size:17px;
    line-height: 1.6;
    color:#6c757d;
}

@media screen and (max-width:768px) {
   .service-text{
    font-size:15px;
    line-height: 1.5;
    color:#6c757d;
} 
}

.expectation-section{
background:#f1ebe7;
padding: 60px 0px;
}

.main-title{
font-size:48px;
font-weight:600;
font-family:serif;
}

.main-title span{
color:#d88a2d;
}

.title-underline{
width:70px;
height:4px;
background:#d88a2d;
margin:10px auto 0;
border-radius:5px;
}

.subtitle{
font-size:22px;
color:#0e0f0f;
font-weight:500;
}

.description{
max-width:750px;
margin:auto;
margin-top:15px;
font-size:18px;
color:#5a6570;
line-height:1.7;
}

@media (max-width:768px){

.expectation-section{
padding:40px 0px;
}

.main-title{
font-size:32px;
line-height:1.2;
}

.title-underline{
width:60px;
height:3px;
margin-top:8px;
}

.subtitle{
font-size:18px;
margin-top:18px;
}

.description{
font-size:15px;
line-height:1.6;
margin-top:12px;
padding:0 10px;
}

}

.vip-services-sec{
background:#ffffff;
padding: 60px 0px;
}

.vip-service-card{
display:flex;
background:#f4f4f4;
border-radius:12px;
overflow:hidden;
border:1px solid #ddd;
transition:.4s;
position:relative;
height:100%;
}

.vip-service-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.vip-service-img{
width:45%;
}

.vip-service-img img{
width:100%;
height:100%;
object-fit:cover;
}

.vip-service-content{
width:55%;
padding:30px;
position:relative;
}

.vip-service-icon{
position:absolute;
left:20px;
top:20px;
width:45px;
height:45px;
background:#fff;
border-radius:10px;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.vip-service-icon svg{
color:#ff6a00!important;
font-size:20px;
}

.vip-service-title{
font-size:20px;
font-weight:600;
margin-bottom:5px;
}

.vip-service-sub{
color:#ff6a00;
font-size:16px;
display:block;
margin-bottom:10px;
}

.vip-service-text{
font-size:16px;
color:#555;
line-height:1.6;
}

@media (max-width:768px){

.vip-service-card{
flex-direction:column;
}

/* content first */
.vip-service-content{
order:1;
width:100%;
padding:25px;
}

/* image below */
.vip-service-img{
order:2;
width:100%;
height:220px;
}

.vip-service-img img{
height:100%;
}

.vip-service-icon{
left:15px;
top:15px;
}

}

.vip-service-img{
    position: relative;
}

.vip-portfolio-sec{
background:#f5f5f5;
padding: 60px 0px;
}

.vip-portfolio-title{
font-size:42px;
font-weight:600;
}

.vip-portfolio-title span{
color:#d88a2d;
}

/* square image box */

.vip-portfolio-box{
position:relative;
width:100%;
overflow:hidden;
border-radius:20px;
background:#e2cbb6;
cursor:pointer;
}

.vip-portfolio-box img{
width:100%;
height:300px;
object-fit:cover;
transition:0.5s;
}

/* overlay */

.vip-portfolio-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
display:flex;
align-items:center;
justify-content:center;
opacity:0;
transition:0.4s;
}

.vip-portfolio-overlay i{
color:#fff;
font-size:28px;
}

/* hover */

.vip-portfolio-box:hover img{
transform:scale(1.1);
}

.vip-portfolio-box:hover .vip-portfolio-overlay{
opacity:1;
}

@media (max-width:768px){

.vip-portfolio-title{
font-size:30px;
}

.vip-portfolio-box{
border-radius:16px;
}

}

.vip-ethos-sec{

/* background-color:#f5f5f5; */
padding: 60px 0px;
/* subtle pattern like screenshot */

background:#f3f3f3;

/* white line pattern */

background-image: repeating-linear-gradient(
45deg,
rgba(255,255,255,0.8) 0px,
rgba(255,255,255,0.8) 4px,
transparent 4px,
transparent 28px
);

background-size:5px 5px;

}

.vip-ethos-title{
font-size:42px;
font-weight:600;
margin-bottom:10px;
}

.vip-ethos-title span{
color:#d88a2d;
}

.vip-ethos-desc{
max-width:700px;
margin:auto;
font-size:18px;
color:#6c757d;
margin-bottom:40px;
}

.vip-ethos-card{

background:#fff;
max-width:900px;
padding:40px;
border-radius:14px;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
text-align:left;
transition:0.4s;
}

.vip-ethos-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 45px rgba(0,0,0,0.12);
}

.vip-ethos-card-title{
text-align:center;
font-size:28px;
font-weight:600;
margin-bottom:25px;
}

.vip-ethos-list{
list-style:none;
padding:0;
margin:0;
}

.vip-ethos-list li{
display:flex;
gap:12px;
margin-bottom:16px;
font-size:16px;
color:#555;
align-items:flex-start;
}

.vip-ethos-list i{
color:#ff6a00;
font-size:18px;
margin-top:3px;
}

.vip-ethos-btn{

display:inline-block;
margin-top:40px;
padding:14px 34px;
background:#f26400;
color:#fff;
border-radius:30px;
font-weight:500;
text-decoration:none;
transition:0.4s;
font-size: 17px;
}

.vip-ethos-btn:hover{
background:#d95300;
}

@media (max-width:768px){

.vip-ethos-title{
font-size:30px;
}

.vip-ethos-desc{
font-size:16px;
}

.vip-ethos-card{
padding:25px;
}

.vip-ethos-card-title{
font-size:22px;
}

.vip-ethos-list li{
font-size:15px;
}

}

.vip-cta-sec{
padding:60px 0;
background:#fce4d2;
}

/* same font for all headings */

.vip-cta-title{
font-size:38px;
font-weight:600;
color:#000;
margin-bottom:8px;
font-family:inherit;
}

.vip-cta-orange{
color:#f26400;

}

.vip-cta-desc{
font-size: 20px;
color:#212223;
margin:auto;
margin-top:20px;
margin-bottom:35px;
font-family:inherit;
}

/* button */

.vip-cta-btn{
display:inline-block;
padding:14px 36px;
background: #f26400;   /* light orange */
color:#ffffff;        /* dark orange text */
border-radius:40px;
text-decoration:none;
font-weight:500;
transition:0.3s;
font-size: 17px;
}

.vip-cta-btn:hover{
background:#f26400;
color:#fff;
}

.floating-buttons{
position:fixed;
right:20px;
bottom:20px;
display:flex;
flex-direction:column;
gap:12px;
z-index:999;
}

.floating-buttons a{
width:50px;
height:50px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:#fff;
font-size:20px;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
transition:.3s;
}

.call-btn{
background:#E87722;
text-decoration: none;
}

.whatsapp-btn{
background:#25D366;
text-decoration: none;
}

.floating-buttons a:hover{
transform:scale(1.1);
}


.space-footer{
background:#f7f7f7;
padding:60px 0 10px;
font-family:Poppins,sans-serif;
}

.footer-brand{
display:flex;
justify-content:center;
align-items:center;
gap:15px;
margin-bottom:30px;
}

.brand-circle{
width:65px;
height:65px;
background:#E87722;
border-radius:50%;
color:#fff;
font-size:28px;
font-weight:700;
display:flex;
align-items:center;
justify-content:center;
}

.brand-text h4{
margin:0;
font-size:26px;
color:#d9821f;
}

.brand-text span{
font-size:12px;
letter-spacing:2px;
color:#777;
}

.footer-social{
margin-bottom:30px;
}

.footer-social a{
width:48px;
height:48px;
background:#efe4db;
border-radius:50%;
display:inline-flex;
align-items:center;
justify-content:center;
margin:0 8px;
font-size:18px;
color:#222;
transition:.3s;
text-decoration: none;
}

.footer-social a:hover{
background:#E87722;
color:#fff;
transform:translateY(-4px);
}

.footer-contact{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
margin-bottom:30px;
}

.contact-item{
display:flex;
align-items:center;
gap:10px;
color:#555;
font-size:15px;
}

.contact-item i{
color:#777;
}

.footer-bottom{
text-align:center;
color:#666;
font-size:14px;
}

.footer-links{
margin:8px 0;
}

.footer-links a{
margin:0 10px;
text-decoration:none;
color:#444;
}

.footer-links a:hover{
color:#E87722;
}

.partner{
font-size:13px;
color:#888;
}

@media(max-width:768px){

.footer-contact{
gap:12px;
justify-content: center;
}

.footer-brand{
flex-direction:column;
}

}

.glightbox-container .gslide-media img{
    width:100% !important;
    height:auto !important;
    max-width:90vw !important;
    max-height:90vh !important;
    object-fit:contain !important;
    margin:auto;
}

.gslide-media img{
object-fit:contain !important;
height:auto !important;
}

.space-modal .modal-content{
border-radius:18px;
border:none;
overflow:hidden;
}

.space-modal .modal-header{
background:#E87722;
color:white;
padding:20px 25px;
border:none;
}

.space-modal .modal-header h4{
margin:0;
font-weight:600;
}

.form-group{
position:relative;
}

.form-group i{
position:absolute;
left:15px;
top:20px;
transform:translateY(-50%);
color:#E87722;
}

.form-control{
padding:8px 15px 8px 45px;
border-radius:10px;
border:1px solid #ddd;
}

textarea.form-control{
padding-top:15px;
}

.form-control:focus{
border-color:#E87722;
box-shadow:0 0 0 2px rgba(232,119,34,0.15);
}

.space-btn{
background:#019b3a;
border:none;
padding:12px 30px;
color:white;
border-radius:8px;
font-weight:600;
margin-right:10px;
transition:.3s;
}

.space-btn:hover{
background:#cf651b;
}

.space-reset{
background:#888;
border:none;
padding:12px 25px;
color:white;
border-radius:8px;
}

.space-reset:hover{
background:#666;
}
.inner-breadcome h1{
    font-size: 44px;
    font-weight: 700;
    color: #fff!important;
}

.inner-breadcome p{
    color: #e87722;
    font-size: 18px;
}

.inner-breadcome p span{
    color: #ffffff;
    font-size: 18px;
}

.inner-breadcome a{
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
}


/* MAIN WRAPPER */
.terms-wrapper {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* HEADING STYLES */
.terms-main-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #e87722;
}

.terms-date {
    font-size: 14px;
    margin-bottom: 20px;
}

.terms-company {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* SECTION STYLES */
.terms-section {
    margin-bottom: 25px;
}

.terms-heading {
    font-size: 22px;
    font-weight: 600;
    color: #e87722;
    margin-bottom: 10px;
}

/* LIST STYLES */
.terms-list {
    padding-left: 20px;
}

.terms-list li {
    margin-bottom: 8px;
}

/* DIVIDER */
.terms-divider {
    margin: 20px 0;
    border-top: 1px solid #ddd;
}

/* MOBILE RESPONSIVE */
@media (max-width: 600px) {
    .terms-main-title {
        font-size: 22px;
    }
    .terms-heading {
        font-size: 20px;
    }
    .terms-wrapper {
        padding: 15px;
    }
     .inner-breadcome h1 {
    font-size: 33px!important;
    font-weight: 700;
    color: #fff !important;
}
}