*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Plus Jakarta Sans',sans-serif;
}

h1,h2,h3,h4{
font-family:'Playfair Display',serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#ffffff;
color:#333;
overflow-x:hidden;
}

/* Render the desktop/tablet layout at a 67% scale, matching what the
   site looks like at 67% browser zoom. */
@media (min-width:769px){
html{
zoom:0.67;
}
}

/* Render the mobile layout at an 80% scale, matching what the
   site looks like at 80% browser zoom on mobile. */
@media (max-width:768px){
html{
zoom:0.8;
}
}

/* HEADER */

header{
position:fixed;
top:0;
left:0;
width:100%;
background:#fff;
z-index:1000;
box-shadow:0 2px 20px rgba(0,0,0,.08);
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:12px 30px;
}

.logo-area{
display:flex;
align-items:center;
gap:15px;
}

.logo{
height:70px;
}

.company-name h5{
font-size:18px;
color:#081F5C;
margin-bottom:3px;
}

.tagline{
font-size:13px;
color:#666;
font-weight:500;
}

.nav-links{
display:flex;
align-items:center;
gap:25px;
list-style:none;
}

.nav-links a{
text-decoration:none;
color:#020c27;
font-weight:600;
transition:.3s;
}

.nav-links a:hover{
color:#E9B824;
}

.demo-btn{
background:#E9B824;
color:#020b24 !important;
display:inline-flex;
align-items:center;
justify-content:center;
padding:12px 20px;
min-width:140px;
white-space:nowrap;
border-radius:30px;
font-weight:700;
text-decoration:none;
flex-shrink:0;
}
/* HERO */

.hero{
    position:relative;
    min-height:min(100vh, 900px);
    display:flex;
    align-items:center;
    justify-content:flex-start;
    padding:140px 6vw 80px;
    overflow:hidden;

    background:
    linear-gradient(rgba(8,31,92,.45), rgba(8,31,92,.45)),
    url("image.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}
.hero-features{
display:flex;
justify-content:center;
gap:40px;
margin:30px 0;
flex-wrap:wrap;
}

.hero-features div{
display:flex;
align-items:center;
gap:10px;
font-weight:600;
color:white;
}

.hero-features i{
color:#E9B824;
font-size:20px;
margin-left:0;
align-items:center;
gap:20px;
}

.hero-text{
position: relative;
z-index: 2;
width: 100%;
max-width: 620px;
text-align: left;
margin-left: 0;
padding-left: 0;
}
.hero-text h1{
font-size:clamp(2.5rem,5vw,4rem);
font-weight:800;
line-height:1.2;
color:#f5f6f8;
margin-bottom:40px;
margin-left:0;
}

.hero-text p{
    font-size:clamp(1rem,1.3vw,1.2rem);
    line-height:1.5;   /* increase spacing between the two lines */
    margin-bottom:20px;
    color:#fbf9f9;
    text-align:left;
    margin-left:0;
    padding-left:0;
}

.hero-buttons{
display:flex;
gap:15px;
margin-top:70px;
flex-wrap:wrap;
}

.btn-primary{
background:#E9B824;
color:#081F5C;
padding:15px 30px;
border-radius:40px;
font-weight:700;
text-decoration:none;
}

.btn-secondary{
background:#25D366;
color:white;
padding:15px 30px;
border-radius:40px;
font-weight:700;
text-decoration:none;
}

.gradient-heading{
font-size:48px;
font-weight:800;
line-height:2.2;
background:linear-gradient(90deg,#ffffff,#f8f8f8,#E9B824,#FFD84D);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
background-clip:text;
}

/* STATS */

.stats{
margin-top:-50px;
padding:0 8%;
position:relative;
z-index:10;
}

.stats-grid{
display:flex;
background:white;
border-radius:25px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.1);
}
.stat-card{
flex:1;
border-right:1px solid #eee;
}

.stat-card:last-child{
border-right:none;
}

.stat-card{
background:white;
padding:35px;
text-align:center;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.stat-card h2{
font-size:45px;
font-weight:800;
color:#081F5C;
margin-bottom:10px;
}

.stat-card p{
font-size:16px;
color:#666;
}
/* SERVICES SECTION */

.section{
padding:100px 8%;
}

.section-title{
font-size:28px;
color:#eec407ed;
text-align:center;
margin-bottom:15px;
margin-top:-30px;
}

.section-subtitle{
text-align:center;
font-size:40px;
font-weight:800;
color:#040404;
max-width:800px;
margin:auto;
margin-bottom:60px;
line-height:1.8;
}

.service-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.service-card{
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
position:relative;
transition:all 0.4s ease;
cursor:pointer;
}

.service-card:hover{
transform:translateY(-15px) scale(1.03);
box-shadow:0 20px 40px rgba(0,0,0,.15);
}
.service-card li{
list-style:none;
padding:10px 0;
transition:all 0.3s ease;
display:block;
}

.service-card li:hover{
transform:translateX(15px);
color:#E9B824;
}
.service-icon{
width:70px;
height:70px;
background:#E9B824;
border-radius:20px;
display:flex;
justify-content:center;
align-items:center;
font-size:32px;
margin-bottom:20px;
}

.service-card h3{
font-size:22px;
color:#081F5C;
margin-bottom:15px;
font-weight:700;
}

.service-card p{
line-height:1.8;
color:#666;
}
.service-arrow{
position:absolute;
bottom:25px;
right:25px;
width:45px;
height:45px;
background:#E9B824;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
font-size:24px;
font-weight:bold;
color:#081F5C;
transition:.3s;
}

.service-arrow:hover{
transform:translateX(5px);
background:#081F5C;
color:white;
}
.page-banner{
background:linear-gradient(135deg,#081F5C,#1238A8);
padding:150px 8% 80px;
text-align:center;
color:white;
}

.page-banner h1{
font-size:48px;
margin-bottom:20px;
}

.page-banner p{
font-size:20px;
max-width:800px;
margin:auto;
}
.section ul{
font-size:20px;
line-height:2;
list-style:none;
}

.section li{
background:#fff;
padding:15px;
margin:10px 0;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

/*WHY CHOOSE US*/

.why-us{
background:#081F5C;
color:white;
}

.why-us .section-title{
color:white;
margin-top:-40px;
}

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:50px;
}

.why-card{
background:rgba(255,255,255,.08);
padding:30px;
border-radius:20px;
text-align:center;
}

.why-card i{
font-size:45px;
color:#E9B824;
margin-bottom:20px;
}

.why-card h3{
margin-bottom:15px;
font-size:22px;
}

.why-card p{
line-height:1.8;
}

/*PROCESS SECTION*/
.process-section{
padding:100px 8%;
text-align:center;
background:white;
}

.process-section h5{
color:#E9B824;
font-size:18px;
font-weight:700;
margin-bottom:10px;
margin-top:-60px;
}

.process-section h2{
font-size:48px;
font-weight:800;
color:#081F5C;
margin-bottom:80px;
}

.timeline-line{
position:absolute;
top:80px;
left:10%;
width:80%;
border-top:3px dashed #C8D2E0;
z-index:1;
}
.timeline{
display:flex;
justify-content:space-between;
gap:25px;
}

.process-step{
flex:1;
min-width:180px;
}
.step-number{
width:40px;
height:40px;
background:#081F5C;
color:white;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-weight:bold;
margin:auto;
margin-bottom:15px;
}

.step-icon{
width:120px;
height:120px;
background:white;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
margin:auto;
box-shadow:0 10px 25px rgba(0,0,0,.08);
font-size:50px;
color:#081F5C;
margin-bottom:20px;
}

.process-step h3{
color:#081F5C;
font-size:22px;
margin-bottom:12px;
font-weight:700;
}

.process-step p{
color:#666;
line-height:1.8;
}

.menu-toggle{
display:none;
}
.dropdown{
position:relative;
}

.dropdown-menu{
display:none;
position:absolute;
top:100%;
left:0;
background:white;
min-width:250px;
list-style:none;
padding:10px 0;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,.12);
z-index:1000;
}

.dropdown-menu li a{
display:block;
padding:12px 20px;
text-decoration:none;
color:#081F5C;
}

.dropdown-menu li a:hover{
background:#f5f5f5;
}

.dropdown:hover .dropdown-menu{
display:block;
}
/* TESTIMONIALS */
.testimonials{
padding:100px 8%;
background:#E4B408;
text-align:center;
}

.testimonials h5{
color:#070707;
font-size:16px;
font-weight:700;
letter-spacing:2px;
margin-bottom:10px;
margin-top:-60px;
}

.testimonials h2{
font-size:48px;
color:#081F5C;
font-weight:800;
margin-bottom:60px;
}

.testimonial-grid{
overflow:hidden;
width:100%;
}

.testimonial-track{
display:flex;
gap:30px;
width:100%;
will-change:transform;
}

.testimonial-card{
flex:0 0 calc((100% - 60px) / 3);
background:white;
padding:35px;
border-radius:25px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:transform .3s;
}

.testimonial-card:hover{
transform:translateY(-10px);
}

.testimonial-card img{
width:140px;
height:140px;
border-radius:50%;
object-fit:cover;
margin-bottom:20px;
}

.stars{
color:#E9B824;
font-size:26px;
letter-spacing:4px;
margin-bottom:20px;
}

.testimonial-card p{
line-height:1.9;
color:#555;
margin-bottom:25px;
}

.testimonial-card h4{
font-size:26px;
color:#081F5C;
margin-bottom:8px;
}

.testimonial-card span{
color:#777;
font-size:15px;
}
/*FOOTER*/

.footer{
background:#081F5C;
color:white;
padding:30px 3% 40px;

}
.footer h3{
margin-bottom:12px;
font-size:18px;
font-weight:600;
}
.footer p{
font-size:14px;
line-height:1.6;
color:#ddd;
}

.footer-logo{
height:80px;
margin-bottom:20px;
}

/* QUICK LINKS */

.quick-links{
list-style:disc;
padding-left:20px;
}

.quick-links li{
margin-bottom:12px;
}

.quick-links a{
text-decoration:none;
color:white;
transition:.3s;
font-size:14px;
}

.quick-links a:hover{
color:#E9B824;
}

.footer .card a{
color:white;
text-decoration:none;
transition:.3s;
}

.footer .card a:hover{
color:#E9B824;
}

/* ENQUIRY BOX */

.enquiry-box{
background:white;
padding:25px;
border-radius:20px;
text-align:center;
}

.enquiry-box img{
width:120px;
margin-bottom:15px;
}

.enquiry-btn{
display:inline-block;
background:#E9B824;
color:#081F5C;
padding:12px 25px;
border-radius:30px;
font-weight:700;
text-decoration:none;
margin-top:15px;
}

/* SOCIAL SECTION */

.footer-bottom{
border-top:1px solid rgba(255,255,255,.2);
padding-top:25px;
margin-top:15px;
margin-bottom:0;
text-align:center;
}

.social-icons{
display:flex;
justify-content:left;
gap:10px;
margin-top:0px;
margin-bottom:40px;
}

.social-icons a{
width:25px;
height:25px;
background:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
color:#081F5C;
font-size:10px;
transition:.3s;
margin-top:10px;
}

.social-icons a:hover{
transform:translateY(-5px);
}

.copyright{
color:#ddd;
font-size:14px;
}
.footer-cta-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:25px;
flex-wrap:nowrap;
}

.footer-grid{
display:grid;
grid-template-columns:1.5fr 1fr 1fr 1fr;
gap:20px;
align-items:start;
}

.get-started{
background:transparent;
padding:0;
text-align:left;
box-shadow:none;
}

.get-started h4{
font-size:15px;
margin-bottom:10px;
}

.get-started p{
font-size:14px;
line-height:1.6;
margin-bottom:45px;
}
.cta-top{
display:flex;
align-items:center;
gap:15px;
margin-bottom:15px;
}

.cta-small-image{
width:90px;
height:auto;
}
.cta-section{
padding:80px 8%;
background:#F8FAFC;
margin-top:0;
}

.cta-content{
display:flex;
align-items:center;
justify-content:space-between;
gap:50px;
background:white;
padding:50px;
border-radius:30px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.cta-text{
flex:1;
}

.cta-text h5{
color:#E9B824;
font-size:10px; 
font-weight:700; 
margin-bottom:15px;
}

.cta-text h3{
color:#081F5C;
font-size:22px;
font-weight:400;
margin-bottom:20px;
line-height:1.3;
}

.cta-text p{
color:#666;
line-height:1.8;
margin-bottom:30px;
}

.cta-btn{
display:inline-block;
background:#E9B824;
color:#081F5C;
padding:12px 30px;
margin-top:-20px;
border-radius:30px;
text-decoration:none;
font-weight:600;
}

.cta-btn:hover{
background:white;
}
.mobile-actions{
    display:none;
}

/* WHATSAPP BUTTON */

.whatsapp{
position:fixed;
right:20px;
bottom:20px;
width:65px;
height:65px;
background:#25D366;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
text-decoration:none;
font-size:32px;
color:white;
box-shadow:0 10px 25px rgba(0,0,0,.25);
z-index:999;
}
.whatsapp::after{
    content:"Chat With Us";
    position:absolute;
    right:80px;
    top:50%;
    transform:translateY(-50%);
    background:#25D366;
    color:#fff;
    padding:10px 16px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    white-space:nowrap;
    box-shadow:0 6px 20px rgba(0,0,0,.25);
}

@media (max-width:1400px){
.navbar{
        padding:8px 5%;
    }

    .logo img{
        height:50px;
    }

    .company-name h5{
        font-size:16px;
    }

    .demo-btn{
        padding:8px 16px;
    }

.hero{
min-height:100vh;
padding:140px 5% 80px;
background-size:cover;
background-position:center;
}
.hero-content{
max-width:550px;
}
.hero-text h1{
font-size:3.2rem;
line-height:1.2;
 }
.hero-text p{
font-size:1rem;
}
.trust-badge{
margin-top:50px;
}
.process{
    padding:100px 5%;
    overflow:hidden;
}
.timeline{
    display:flex;
    gap:20px;
    overflow-x:auto;
    flex-wrap:nowrap;
    scrollbar-width:thin;
    scrollbar-color:#E9B824 #f1f1f1;
    padding-bottom:14px;
}

.timeline::-webkit-scrollbar{
    display:block;
    height:8px;
}
.timeline::-webkit-scrollbar-track{
    background:#f1f1f1;
    border-radius:10px;
}
.timeline::-webkit-scrollbar-thumb{
    background:#E9B824;
    border-radius:10px;
}
.process-step{
    min-width:180px;
    flex-shrink:0;
}
.why-grid{
grid-template-columns:repeat(2,1fr);
}
.testimonials{
padding:60px 15px;
overflow:hidden;
}
.testimonial-track{
    display:flex;
    gap:25px;
}

.testimonials h5{
font-size:14px;
margin-top:-20px;
}
.testimonials h2{
font-size:18px;
margin-top:20px;
}

.testimonial-grid{
    overflow:hidden;
}

.testimonial-card{
    flex:0 0 350px;
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}
.testimonial-card p{
font-size:13px;
}
.footer-grid{
grid-template-columns:2fr 1fr 1fr 1fr;
gap:20px;
}
.mobile-actions{
    display:none;
}
.footer{
        padding:35px 5%;
    }

    .footer-grid{
        gap:15px;
        align-items:flex-start;
    }

    .footer h3{
        margin-bottom:10px;
        font-size:20px;
    }

    .footer p{
        font-size:14px;
        line-height:1.5;
        margin-bottom:8px;
    }

.footer h3{
    font-size:18px;
    line-height:1.2;
    margin-bottom:8px;
}

.footer p{
    font-size:13px;
    line-height:1.4;
}
    .quick-links li{
        margin-bottom:6px;
    }

    .get-started{
        padding:15px;
    }
.get-started h3{
    margin-bottom:8px;
}
.get-started p{
    font-size:14px;
    line-height:1.4;
    margin-bottom:10px;
}

    .demo-btn{
        padding:8px 16px;
    }
    .mobile-actions{
    display:none;
}
}
@media (max-width:1200px){
.hero{
padding:7rem 5%;
gap:3rem;
}
.hero-text h1{
font-size:3.2rem;
}
.hero-image img{
width:min(100%,650px);
height:auto;
object-fit:contain;
}
.services-grid,.resources-grid,.cards-container{
grid-template-columns:repeat(3,1fr);
}
.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:40px;
align-items:flex-start;
}
.footer-grid > div{
width:100%;
}
}
@media (max-width:992px){
.navbar{
padding:15px 30px;
}
.hero{
flex-direction:column;
justify-content:center;
text-align:center;
gap:2rem;
padding:7rem 2rem 4rem;
}
.hero-text{
max-width:100%;
}
.hero-buttons{
justify-content:center;
}
.hero-image img{
max-width:450px;
}
.services-grid,.resources-grid,.cards-container,.timeline-grid{
grid-template-columns:repeat(2,1fr);
}
.footer-grid{
grid-template-columns:1.5fr 1fr 1fr 1fr;
}
}
@media (max-width:768px){

.hero{
min-height:min(100vh, 700px);
background:
linear-gradient(rgba(8,31,92,0.5), rgba(8,31,92,0.5)),url("image.png");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
display:flex;
align-items:flex-start; 
padding:110px 6vw 60px;
color:white;
}
 .trust-badge{
display:inline-flex !important;
align-items:center !important;
justify-content:center !important;
padding:8px 16px !important;
font-size:13px !important;
margin:0 auto 20px !important;
width:fit-content !important;
max-width:90% !important;
}
.trust-icon{
width:24px !important;
height:24px !important;
font-size:12px !important;
}

.hero-image{
display:none;
}
.hero-text{
width:100% !important;
max-width:700px;
margin:0 auto !important;
text-align:center !important;
left:0 !important;
top:0 !important;
padding:20px;
margin-top: 0 !important;
display:flex !important;
flex-direction:column !important;
align-items:center !important;
justify-content:center !important;
}
.hero-text h1{
font-size:clamp(1.8rem, 8vw, 2.6rem) !important;
line-height:1.25 !important;
margin-bottom:20px !important;
text-align:center !important;
}
.hero-text p{
text-align:center !important;
margin:0 auto 25px !important;
max-width:90% !important;
}
.hero-buttons{
display:flex;
justify-content:center !important;
gap:15px;
flex-wrap:nowrap;
margin-top:30px !important; 
}
.hero-buttons a{
display:flex;
align-items:center;
justify-content:center;
width:180px; 
height:50px; 
text-align:center;
}
.stats-grid{
display:flex !important;
flex-wrap:nowrap !important;
overflow-x:auto;
margin-top:-50px !important;
}
.stat-card{
flex:0 0 25% !important;
padding:10px !important;
}
.stat-card h2{
font-size:16px !important;
}

.stat-card p{
font-size:12px !important;
}

/* HEADER */

.navbar{
padding:8px 12px;
}

.logo{
height:50px !important;
}

.company-name h5{
font-size:10px !important;
line-height:1.2 !important;
max-width:140px;
}
.tagline{
display:none !important;
}

.demo-btn{
padding:8px 12px !important;
font-size:11px !important;
}

/* SERVICES */

.section{
padding:60px 15px !important;
}

.section-title{
font-size:14px !important;
}

.section-subtitle{
font-size:18px !important;
line-height:1.3 !important;
margin-bottom:30px !important;
}

.service-grid{
display:grid !important;
grid-template-columns:1fr 1fr !important;
gap:12px !important;
}
.service-card{
  padding:15px !important;
  position:relative;
  padding-top: 60px !important;
}
.service-arrow{
    position: absolute;
    top: 15px;
    right: 15px;
}
.service-card h3{
font-size:14px !important;
line-height:1.4;
}

.service-card p{
font-size:12px !important;
}

/* WHY US */

.why-grid{
display:grid !important;
grid-template-columns:1fr 1fr !important;
gap:12px !important;
}
.why-card{
padding:15px !important;
}
.why-card h3{
font-size:14px !important;
}
.why-card p{
    font-size:13px !important;
    line-height:1.25 !important;
}
/* PROCESS */
.process-section h5{
font-size:14px !important;
margin-top:-90px !important;
}
.process-section h2{
font-size:18px !important;
margin-top:0 !important;
}
.timeline{
overflow-x:auto !important;
gap:20px !important;
margin-top:-20px !important;
padding-top:0 !important;
padding-bottom:14px !important; 
scroll-behavior:smooth !important;
scrollbar-width:thin !important;
scrollbar-color:#E9B824 #f1f1f1 !important;
scroll-snap-type:x mandatory !important;
-webkit-overflow-scrolling:touch !important;
touch-action:pan-x !important;
}
.timeline::-webkit-scrollbar{
    display:block !important;
    height:6px !important;
}
.timeline::-webkit-scrollbar-track{
    background:#f1f1f1;
    border-radius:10px;
}
.timeline::-webkit-scrollbar-thumb{
    background:#E9B824;
    border-radius:10px;
}
.process-step{
min-width:120px !important;
flex-shrink:0 !important;
scroll-snap-align:center !important;
}
.step-icon{
width:70px !important;
height:70px !important;
font-size:28px !important;
}
.process-step h3{
font-size:14px !important;
}
.process-step p{
font-size:13px !important;
}

/* TESTIMONIALS */

.testimonials{
padding:60px 15px !important;
}
.testimonials h5{
font-size:14px !important;
margin-top:-20px !important;
}
.testimonials h2{
font-size:18px !important;
margin-top:20px !important;
}

.testimonial-grid{
overflow:hidden;
overflow-x:auto;
margin-top:20px;
scroll-snap-type:x mandatory;
-webkit-overflow-scrolling:touch;
touch-action:pan-x;
}

.testimonial-track{
display:flex;
gap:15px;
}

.testimonial-grid::-webkit-scrollbar{
height:8px;
display:none;
}
.testimonial-grid::-webkit-scrollbar-thumb:hover{
background:#081F5C;
}

.testimonial-card{
min-width:100%;
max-width:100%;
flex:0 0 100%;
scroll-snap-align:center;
padding:20px !important;
box-sizing:border-box;
}
.testimonial-card p{
font-size:13px !important;
}
/* STATS */
.menu-toggle{
display:block !important;
font-size:32px;
color:#000;
cursor:pointer;
}

.nav-links{
display:none !important;
}

.nav-links.active{
display:flex !important;
flex-direction:column;
position:absolute;
top:100%;
left:0;
width:100%;
background:white;
padding:15px;
box-shadow:0 5px 20px rgba(0,0,0,.15);
z-index:9999;
}

.nav-links li{
width:100%;
border-bottom:1px solid #eee;
}

.nav-links li a{
display:block;
width:100%;
padding:10px 0;
}

.dropdown-menu{
display:none !important;
}
.service-card p{
display:none !important;
}
.cta-image{
display: flex;
justify-content: center;
align-items: center;
}

.cta-image img{
display: block;
margin: 0 auto;
max-width: 100%;
height: auto;
}
.get-started{
margin-top: -20px;
}
.mobile-actions{
display:flex !important;
position:fixed;
bottom:0;
left:0;
width:100%;
z-index:99999;
box-shadow:0 -3px 15px rgba(0,0,0,.15);
}

.mobile-actions a{
flex:1;
text-align:center;
padding:14px 5px;
font-size:13px;
font-weight:700;
text-decoration:none;
color:white;
}

.mobile-actions a:nth-child(1){
background:#25D366;
}

.mobile-actions a:nth-child(2){
background:#081F5C;
}

.mobile-actions a:nth-child(3){
background:#E9B824;
color:#081F5C;
}

body{
padding-bottom:60px;
}
.whatsapp{
display:none;
}

/*FOOTER RESPONSIVE*/
.footer{
padding:50px 20px;
}
.footer-grid{
grid-template-columns:1fr 1fr;
gap:25px 15px;
text-align:center;
}
.footer-grid > div:nth-child(1){
grid-column:1 / -1;
}
.footer-grid > div:nth-child(2),
.footer-grid > div:nth-child(3){
text-align:left;
}
.footer-grid > div:nth-child(4){
grid-column:1 / -1;
text-align:center;
}

.footer-logo{
margin:0 auto 15px;
}
.quick-links{
    list-style: disc;
    list-style-position: inside;
    padding-left: 0;
    margin: 0;
}

.quick-links li{
    margin-bottom: 8px;
}
.card{
padding:15px 0 0;
}
.cta-top{
    flex-direction:column;
    align-items:center;
    gap:30px;   /* Increase this value as needed */
}
.cta-small-image{
width:90px;
}
.get-started{
text-align:center;
}
.footer-bottom{
flex-direction:column;
gap:15px;
text-align:center;
}
.social-icons{
justify-content:center;
}
.copyright{
text-align:center;
}
.timeline-line{
    display: none !important;
}
}  
@media(max-width:480px){
.hero-text h1{
font-size:28px;
}
.hero-text p{
font-size:16px;
}
.section{
padding:70px 6%;
}
.cta-section{
padding:70px 6%;
}
.why-banner{
background:#081F5C;
color:white;
padding:50px;
border-radius:20px;
display:flex;
justify-content:space-between;
align-items:center;
margin:80px auto;
}
.why-left{
width:30%;
}
.why-left span{
color:#E9B824;
font-weight:bold;
}
.why-left h2{
margin-top:10px;
font-size:38px;
}
.why-right{
width:65%;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
text-align:center;
}
.why-item i{
font-size:40px;
color:#E9B824;
margin-bottom:15px;
}
.process-section{
padding:100px 8%;
text-align:center;
background:white;
}
.process-section h5{
color:#E9B824;
font-size:18px;
font-weight:700;
margin-bottom:10px;
}
.process-section h2{
font-size:48px;
font-weight:800;
color:#081F5C;
margin-bottom:80px;
}
.timeline{
position:relative;
display:flex;
justify-content:flex-start;
align-items:flex-start;
gap:25px;
flex-wrap:nowrap;
}
.timeline-line{
position:absolute;
top:80px;
left:10%;
width:80%;
border-top:3px dashed #C8D2E0;
z-index:1;
}
.process-step{
flex:1;
min-width:180px;
max-width:220px;
position:relative;
z-index:2;
}
.step-number{
width:40px;
height:40px;
background:#081F5C;
color:white;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-weight:bold;
margin:auto;
margin-bottom:15px;
}
.step-icon{
width:120px;
height:120px;
background:white;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
margin:auto;
box-shadow:0 10px 25px rgba(0,0,0,.08);
font-size:50px;
color:#081F5C;
margin-bottom:20px;
}
.process-step h3{
color:#081F5C;
font-size:22px;
margin-bottom:12px;
font-weight:700;
}
.process-step p{
color:#666;
line-height:1.8;
}
}
.trust-badge{
display:inline-flex;
align-items:center;
gap:10px;
padding:10px 22px;
background:rgba(12, 43, 117, 0.85);
border:2px solid rgba(255,255,255,0.18);
border-radius:50px;
color:#fff;
font-size:16px;
font-weight:500;
backdrop-filter:blur(12px);
box-shadow:0 8px 25px rgba(0,0,0,.25),inset 0 0 10px rgba(255,255,255,.08);
margin-bottom:30px;
}
.trust-badge strong{
font-weight:700;
}
.trust-icon{
display:flex;
justify-content:center;
align-items:center;
width:30px;
height:30px;
border-radius:50%;
background:#FFC107;
color:#081230;
font-size:15px;
box-shadow:0 4px 10px rgba(255,193,7,.4);
}

/* Floating News Button */

.news-btn{

position:fixed;

right:25px;

bottom:100px;

background:#0b4ea2;

color:white;

padding:14px 18px;

border-radius:50px;

display:flex;

align-items:center;

gap:10px;

cursor:pointer;

font-weight:600;

box-shadow:0 10px 25px rgba(0,0,0,.25);

z-index:9999;

transition:.3s;

}

.news-btn:hover{

transform:translateY(-3px);

background:#083b7d;

}

.news-btn i{

font-size:22px;

}

/* Popup */

.news-popup{

display:none;

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.5);

justify-content:center;

align-items:center;

z-index:10000;

}

.news-content{

background:white;

width:420px;

max-width:90%;

padding:30px;

border-radius:20px;

position:relative;

animation:popup .3s ease;

}

.close-news{

position:absolute;

right:20px;

top:15px;

font-size:28px;

cursor:pointer;

font-weight:bold;

}

.news-content h2{

margin-bottom:20px;

color:#081F5C;

}

.news-item{

padding:15px 0;

border-bottom:1px solid #ddd;

}

.news-item:last-child{

border-bottom:none;

}

.news-item h4{

color:#081F5C;

margin-bottom:5px;

}

.news-item p{

color:#666;

font-size:14px;

}

@keyframes popup{

from{

transform:scale(.8);

opacity:0;

}

to{

transform:scale(1);

opacity:1;

}

}
html{
    scroll-behavior:smooth;
}

section{
    scroll-margin-top:90px;
}
/* REQUEST DEMO POPUP */

.demo-popup{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    justify-content:center;
    align-items:center;
    z-index:100000;
}

.demo-content{
    width:450px;
    max-width:92%;
    background:#fff;
    border-radius:20px;
    padding:35px;
    position:relative;
    animation:popup .35s ease;
}

.close-demo{
    position:absolute;
    top:15px;
    right:20px;
    font-size:30px;
    cursor:pointer;
    font-weight:bold;
}

.demo-content h2{
    color:#081F5C;
    margin-bottom:10px;
}

.demo-content p{
    color:#666;
    margin-bottom:25px;
}

.demo-content form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.demo-content input,
.demo-content textarea{

    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
    font-size:15px;
}

.demo-content select{
    width:100%;
    padding:14px 40px 14px 14px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
    font-size:15px;
    color:#333;
    background-color:#fff;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23081F5C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 14px center;
    background-size:16px;
    cursor:pointer;
}

.demo-content select:focus{
    border-color:#E9B824;
}

.demo-content textarea{
    height:120px;
    resize:none;
}

.demo-content button{

    background:#E9B824;
    color:#081F5C;
    border:none;
    padding:15px;
    border-radius:30px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.demo-content button:hover{

    background:#081F5C;
    color:white;
}

/* =====================================================
   NEWS PAGE + "View All News" link (popup)
   ===================================================== */

.view-all-news{
display:inline-block;
margin-top:15px;
color:#0b4ea2;
font-weight:700;
text-decoration:none;
font-size:14px;
}

.view-all-news:hover{
text-decoration:underline;
}

.news-page-hero{
background:#081F5C;
color:#fff;
text-align:center;
padding:160px 8% 70px;
}

.news-page-hero h1{
font-size:42px;
margin-bottom:15px;
}

.news-page-hero p{
font-size:17px;
color:#cfd8ea;
max-width:600px;
margin:auto;
}

.news-container{
max-width:1100px;
margin:auto;
padding:60px 20px;
}

.news-list{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:25px;
}

.news-card{
background:#fff;
border-radius:18px;
padding:28px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;
border-left:5px solid #E9B824;
}

.news-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.news-card img{
width:100%;
height:180px;
object-fit:cover;
border-radius:12px;
margin-bottom:15px;
}

.news-card .news-date{
color:#E9B824;
font-weight:700;
font-size:13px;
letter-spacing:1px;
text-transform:uppercase;
margin-bottom:10px;
display:block;
}

.news-card h3{
color:#081F5C;
margin-bottom:10px;
font-size:20px;
}

.news-card p{
color:#555;
line-height:1.7;
font-size:15px;
}

.news-state{
text-align:center;
padding:60px 20px;
color:#666;
font-size:16px;
grid-column:1/-1;
}

.news-spinner{
width:40px;
height:40px;
border:4px solid #eee;
border-top-color:#E9B824;
border-radius:50%;
margin:0 auto 15px;
animation:newsspin 0.8s linear infinite;
}

@keyframes newsspin{
to{ transform:rotate(360deg); }
}

@media (max-width:768px){

.news-page-hero{
    padding:130px 6% 50px;
}

.news-page-hero h1{
    font-size:30px;
}

.news-page-hero p{
    font-size:15px;
}

.news-container{
    padding:40px 15px;
}

.news-list{
    grid-template-columns:1fr;
}

}