*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f4f8ff;
}

/* NAVBAR */
nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 8%;
background:white;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
position:sticky;
top:0;
z-index:1000;
}

.logo{
display:flex;
align-items:center;
gap:10px;
}

.logo img{
width:40px;
}

.logo span{
font-weight:600;
color:#003366;
}

nav ul{
display:flex;
list-style:none;
gap:25px;
}

nav ul li a{
text-decoration:none;
color:#333;
transition:0.3s;
}

nav ul li a:hover,
nav ul li .active{
color:#0056ff;
}

.btn{
padding:10px 18px;
border-radius:30px;
cursor:pointer;
transition:0.3s;
}

.whatsapp{
background:#25D366;
color:white;
}

.whatsapp:hover{
transform:scale(1.1);
}


/* HERO */
.hero{
display:flex;
align-items:center;
justify-content:space-between;
padding:60px 8%;
background:linear-gradient(135deg,#003366,#0056ff);
color:white;
}

.hero-left h1{
font-size:40px;
margin-bottom:15px;
}

.hero-left p{
font-size:20px;
margin-bottom:10px;
}

.hero-left span{
display:block;
margin-bottom:20px;
}

.primary{
background:#ffd700;
color:#000;
font-weight:600;
}

.primary:hover{
background:#ffcc00;
transform:scale(1.05);
}

.hero-right img{
width:400px;
animation:float 3s ease-in-out infinite;
}

@keyframes float{
0%{transform:translateY(0)}
50%{transform:translateY(-15px)}
100%{transform:translateY(0)}
}


/* SERVICES */
.services{
padding:60px 8%;
text-align:center;
}

.services h2{
margin-bottom:40px;
color:#003366;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.card{
background:white;
padding:25px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
transition:0.3s;
}

.card i{
font-size:30px;
color:#0056ff;
margin-bottom:15px;
}

.card:hover{
transform:translateY(-10px);
background:#0056ff;
color:white;
}

.card:hover i{
color:#ffd700;
}


/* WHY */
.why{
padding:60px 8%;
background:white;
}

.why h2{
text-align:center;
margin-bottom:40px;
color:#003366;
}

.why-box{
display:flex;
flex-direction:column;
gap:20px;
}

.why-item{
display:flex;
gap:15px;
align-items:center;
background:#f4f8ff;
padding:20px;
border-radius:10px;
transition:0.3s;
}

.why-item i{
font-size:25px;
color:#0056ff;
}

.why-item:hover{
background:#0056ff;
color:white;
transform:translateX(10px);
}


/* CONTACT */
.contact{
padding:60px 8%;
text-align:center;
}

.contact form{
max-width:400px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

.contact input,
.contact textarea{
padding:12px;
border-radius:8px;
border:1px solid #ccc;
}

.contact button{
background:#0056ff;
color:white;
padding:12px;
border:none;
border-radius:30px;
cursor:pointer;
transition:0.3s;
}

.contact button:hover{
background:#ffd700;
color:black;
}


/* RESPONSIVE */
@media(max-width:768px){
.hero{
flex-direction:column;
text-align:center;
}

.hero-right img{
width:250px;
margin-top:20px;
}

nav ul{
display:none;
}
}


.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
padding:40px 8%;
}

.card{
background:#fff;
padding:25px;
border-radius:15px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
transition:0.4s ease;
position:relative;
overflow:hidden;
}

/* ICON */
.card i{
font-size:35px;
color:#003366;
margin-bottom:15px;
transition:0.3s;
}

/* TITLE */
.card h3{
margin-bottom:10px;
color:#222;
}

/* TEXT */
.card p{
font-size:14px;
color:#555;
margin-bottom:15px;
}

/* LINK (YELLOW instead of RED) */
.card a{
text-decoration:none;
color:#f4b400;   /* YELLOW */
font-weight:600;
}

/* HOVER EFFECT */
.card:hover{
transform:translateY(-10px);
box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

/* HOVER BACKGROUND ANIMATION */
.card::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:#f4b400;
transition:0.4s;
z-index:0;
}

.card:hover::before{
left:0;
}

/* CONTENT ABOVE LAYER */
.card *{
position:relative;
z-index:1;
}

/* HOVER TEXT COLOR */
.card:hover h3,
.card:hover p{
color:#fff;
}

.card:hover i{
color:#fff;
}

.card:hover a{
color:#003366;
background:#fff;
padding:6px 12px;
border-radius:20px;
}


.main-section{
display:flex;
gap:40px;
padding:60px 8%;
background:#f4f8ff;
}

/* LEFT */
.left{
flex:2;
}

.left h2{
color:#003366;
margin-bottom:20px;
}

.mini-cards{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:15px;
margin-bottom:40px;
}

.mini-card{
background:#fff;
padding:15px;
border-radius:12px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
transition:0.3s;
}

.mini-card i{
font-size:25px;
color:#0056ff;
margin-bottom:10px;
}

.mini-card a{
color:#f4b400;
font-weight:600;
text-decoration:none;
}

.mini-card:hover{
transform:translateY(-8px);
background:#0056ff;
color:white;
}

.mini-card:hover i{
color:#ffd700;
}

.mini-card:hover a{
color:#fff;
}

/* WHY */
.why-title{
margin-top:20px;
}

.why-list{
display:flex;
flex-direction:column;
gap:15px;
}

.why-item{
display:flex;
gap:15px;
align-items:center;
background:#fff;
padding:15px;
border-radius:10px;
transition:0.3s;
}

.why-item i{
font-size:22px;
color:#0056ff;
}

.why-item:hover{
background:#0056ff;
color:white;
transform:translateX(10px);
}

/* RIGHT */
.right{
flex:1;
}

.right h3{
color:#003366;
margin-bottom:20px;
}

/* STATS */
.stats{
display:flex;
justify-content:space-between;
margin-bottom:20px;
}

.stats h2{
color:#003366;
}

.stats p{
font-size:13px;
}

/* WHATSAPP */
.whatsapp-box{
display:flex;
align-items:center;
gap:15px;
background:linear-gradient(135deg,#0f9d58,#34a853);
color:white;
padding:15px;
border-radius:12px;
margin-bottom:15px;
transition:0.3s;
}

.whatsapp-box i{
font-size:28px;
}

.whatsapp-box:hover{
transform:scale(1.05);
}

/* CALL */
.call-box{
display:flex;
align-items:center;
gap:15px;
background:linear-gradient(135deg,#ffcc00,#f4b400);
color:black;
padding:15px;
border-radius:12px;
margin-bottom:20px;
transition:0.3s;
}

.call-box:hover{
transform:scale(1.05);
}

/* CONTACT */
.contact-box{
background:#fff;
padding:20px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.contact-box input,
.contact-box textarea{
width:100%;
padding:10px;
margin-bottom:10px;
border-radius:6px;
border:1px solid #ccc;
}

.contact-box button{
width:100%;
padding:12px;
background:#0056ff;
color:white;
border:none;
border-radius:30px;
cursor:pointer;
transition:0.3s;
}

.contact-box button:hover{
background:#ffd700;
color:black;
}

/* RESPONSIVE */
@media(max-width:992px){
.main-section{
flex-direction:column;
}

.mini-cards{
grid-template-columns:repeat(2,1fr);
}
}


/* FOOTER */
.footer{
background:#003366;
color:white;
padding-top:50px;
}

/* GRID */
.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
padding:0 8%;
}

/* BOX */
.footer-box h2,
.footer-box h3{
margin-bottom:15px;
}

.footer-box p{
font-size:14px;
line-height:1.6;
}

/* LINKS */
.footer-box ul{
list-style:none;
}

.footer-box ul li{
margin-bottom:10px;
}

.footer-box ul li a{
text-decoration:none;
color:#ddd;
transition:0.3s;
}

.footer-box ul li a:hover{
color:#ffd700; /* YELLOW */
padding-left:5px;
}

/* CONTACT ICON */
.footer-box i{
margin-right:8px;
color:#ffd700;
}

/* SOCIAL ICONS */
.social{
margin-top:15px;
display:flex;
gap:10px;
}

.social i{
background:#0056ff;
padding:10px;
border-radius:50%;
cursor:pointer;
transition:0.3s;
}

.social i:hover{
background:#ffd700;
color:#000;
transform:scale(1.2);
}

/* BOTTOM */
.footer-bottom{
text-align:center;
margin-top:30px;
padding:15px;
background:#002244;
font-size:14px;
}


.pf-section{
padding:60px 8%;
text-align:center;
background:#fff;
}

/* MAIN TITLE */
.pf-section h1{
color:#0b2c5f;   /* DARK BLUE */
margin-bottom:40px;
font-size:32px;
}

/* CONTAINER */
.pf-container{
display:flex;
align-items:center;
gap:40px;
text-align:left;
}

/* IMAGE */
.pf-image img{
width:100%;
max-width:400px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

/* CONTENT */
.pf-content h2{
color:#e60000;   /* RED HEADING */
margin-bottom:15px;
}

.pf-content p{
color:#333;
font-size:15px;
line-height:1.6;
margin-bottom:15px;
}

/* LIST */
.pf-content ul{
list-style:none;
}

.pf-content ul li{
margin-bottom:8px;
padding-left:20px;
position:relative;
}

.pf-content ul li::before{
content:"➤";
position:absolute;
left:0;
color:#000;
font-size:12px;
}

/* BOTTOM TEXT */
.bottom-text{
margin-top:30px;
color:#444;
font-size:14px;
}

/* BUTTON */
.cta-btn{
margin-top:20px;
padding:14px 30px;
background:#ff3b3b; /* RED BUTTON */
color:white;
border:none;
border-radius:30px;
font-size:16px;
cursor:pointer;
transition:0.3s;
}

.cta-btn:hover{
background:#cc0000;
transform:scale(1.05);
}

/* RESPONSIVE */
@media(max-width:768px){
.pf-container{
flex-direction:column;
text-align:center;
}

.pf-content{
text-align:center;
}
}


/* CHANGE HEADING (RED → YELLOW) */
.pf-content h2{
color:#f4b400;   /* YELLOW */
margin-bottom:15px;
}

/* CHANGE BUTTON (RED → YELLOW) */
.cta-btn{
margin-top:20px;
padding:14px 30px;
background:#f4b400; /* YELLOW */
color:#000;
border:none;
border-radius:30px;
font-size:16px;
cursor:pointer;
transition:0.3s;
}

/* BUTTON HOVER */
.cta-btn:hover{
background:#ffd700;
transform:scale(1.05);
}


.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 8%;
    background: #0d47a1;
    color: white;
    gap: 50px;
}

/* LEFT */
.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 20px;
    margin-bottom: 10px;
}

.tagline {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.desc {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* BULLETS */
.points {
    margin-bottom: 15px;
    padding-left: 20px;
}

.points li {
    margin-bottom: 8px;
}

/* NOTE */
.note {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 20px;
}

/* BUTTON */
.btn {
    display: inline-block;
    background: #ffcc00;
    color: black;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.05);
}

/* RIGHT IMAGE */
.hero-right img {
    width: 350px;
    max-width: 100%;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 32px;
    }
}