/* ===== RESET ===== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html,body{
  overflow-x:hidden;
  font-family:Arial,sans-serif;
  background:#f5f5f5;
}

/* ===== HEADER ===== */
.header{
  width:100%;
  background:#0b3c2d;
  position:sticky;
  top:0;
  z-index:999;
}

.nav{
  width:100%;
  height:70px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 20px;
}

/* ===== LOGO ===== */
.logo{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.logo img{
  width:55px;
  height:55px;
  object-fit:contain;
}

/* ===== DESKTOP MENU ===== */
.menu{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex:1;
  gap:22px;
  margin-left:30px;
}

.menu a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:500;
  white-space:nowrap;
}

/* ===== HAMBURGER ===== */
.hamburger{
  display:none;
  color:#fff;
  font-size:28px;
  cursor:pointer;
}

/* ===== OVERLAY ===== */
.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.5);
  display:none;
  z-index:998;
}

.overlay.active{
  display:block;
}

/* ===== MOBILE MENU ===== */
.mobile-menu{
  position:fixed;
  top:0;
  right:-300px;
  width:260px;
  height:100%;
  background:#06251c;
  transition:.3s;
  z-index:999;
  padding-top:10px;
}

.mobile-menu.active{
  right:0;
}

.close-btn{
  background:red;
  color:#fff;
  padding:10px;
  font-size:14px;
  text-align:center;
  cursor:pointer;
  margin-bottom:10px;
}

.mobile-menu a{
  display:block;
  color:#fff;
  text-decoration:none;
  padding:15px 20px;
  border-bottom:1px solid rgba(255,255,255,.1);
}

/* ===== BANNER ===== */
.responsive-banner{
  width:100%;
  height:auto;
  display:block;
  object-fit:FILL;
}

/* ===== LOAN SECTION ===== */
.loan-section{
  width:100%;
  background:#1f6fb2;
  padding:40px 15px;
}

.loan-container{
  width:100%;
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px;
}

/* ===== BOX ===== */
.loan-box{
  background:#fff;
  padding:25px;
  border-radius:10px;
}

.loan-box h2{
  font-size:26px;
  margin-bottom:10px;
  color:#0b3c2d;
  line-height:1.4;
}

.loan-box small{
  display:block;
  margin-bottom:20px;
  color:#555;
  font-size:14px;
}

/* ===== FORM ===== */
.form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
}

.form input{
  width:100%;
  padding:14px;
  border:1px solid #ccc;
  border-radius:8px;
  font-size:15px;
}

.form button{
  grid-column:span 2;
  background:red;
  color:#fff;
  border:none;
  padding:15px;
  border-radius:8px;
  font-size:18px;
  cursor:pointer;
  font-weight:bold;
}

/* ===== STATUS BOX ===== */
.status-box{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.status-btn{
  background:#0b3c2d;
  color:#fff;
  text-decoration:none;
  padding:14px 30px;
  border-radius:8px;
  margin-top:20px;
  display:inline-block;
  font-weight:bold;
}

/* ===== CONTENT ===== */
/* ===== TWO COLUMN SECTION ===== */

.two-column-section{
width:100%;
padding:60px 20px;
background:#f5f7f6;
}

.two-column-container{
max-width:1200px;
margin:auto;

display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
}

.content-box{
background:#ffffff;
padding:35px;
border-radius:12px;

box-shadow:0 2px 10px rgba(0,0,0,0.08);

transition:0.3s;
}

.content-box:hover{
transform:translateY(-5px);
}

.content-box h2{
font-size:28px;
margin-bottom:15px;
color:#0b3c2d;
line-height:1.4;
}

.content-box p{
font-size:16px;
line-height:1.8;
color:#444444;
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

.two-column-container{
grid-template-columns:1fr;
}

.content-box{
padding:25px;
}

.content-box h2{
font-size:22px;
}

}
/* ===== IMAGE CONTENT SECTION ===== */

.image-content-section{
width:100%;
padding:70px 20px;
background:#ffffff;
}

.image-content-container{
max-width:1200px;
margin:auto;

display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.image-text h2{
font-size:34px;
line-height:1.4;
margin-bottom:20px;
color:#0b3c2d;
}

.image-text p{
font-size:16px;
line-height:1.9;
margin-bottom:18px;
color:#444444;
}

.image-box img{
width:100%;
height:auto;

border-radius:14px;

display:block;

box-shadow:0 4px 15px rgba(0,0,0,0.10);
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

.image-content-container{
grid-template-columns:1fr;
}

.image-text h2{
font-size:26px;
}

}
/* ===== FOOTER ===== */
.footer{
  background:#0b3c2d;
  color:#fff;
  padding:40px 20px;
}

.footer-container{
  width:100%;
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}

.footer h3{
  margin-bottom:12px;
}

.footer a{
  color:#fff;
  text-decoration:none;
}

.footer-bottom{
  text-align:center;
  border-top:1px solid rgba(255,255,255,.2);
  margin-top:25px;
  padding-top:20px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media(max-width:900px){

  /* HEADER */
  .header{
    height:50px;
  }

  .nav{
    height:60px;
    padding:0 12px;
  }

  /* LOGO */
  .logo img{
    width:42px;
    height:42px;
  }

  /* MENU */
  .menu{
    display:none;
  }

  /* HAMBURGER */
  .hamburger{
    display:block;
    font-size:24px;
  }

  /* MOBILE MENU */
  .mobile-menu{
    width:240px;
    padding-top:5px;
  }

  .mobile-menu a{
    padding:13px 18px;
    font-size:14px;
  }

  .close-btn{
    padding:8px;
    font-size:13px;
    margin-bottom:5px;
  }

  /* BANNER */
  .responsive-banner{
    width:100%;
    height:auto;
    display:block;
  }

  /* BLUE SECTION */
  .loan-section{
    padding:20px 10px;
    background:#1f6fb2;
  }

  /* COLUMN */
  .loan-container{
    grid-template-columns:1fr;
    gap:15px;
  }

  /* BOX */
  .loan-box{
    padding:18px;
    border-radius:8px;
  }

  /* HEADINGS */
  .loan-box h2{
    font-size:20px;
    text-align:center;
  }

  .loan-box small{
    text-align:center;
    font-size:13px;
    margin-bottom:15px;
  }

  /* FORM */
  .form{
    grid-template-columns:1fr;
    gap:12px;
  }

  .form input{
    padding:13px;
    font-size:14px;
  }

  .form button{
    grid-column:span 1;
    width:100%;
    padding:14px;
    font-size:16px;
  }

  /* STATUS BUTTON */
  .status-btn{
    width:100%;
    text-align:center;
    padding:14px;
    font-size:15px;
    border-radius:8px;
  }

  /* CONTENT */
  .content{
    padding:25px 12px;
  }

  .content h1{
    font-size:24px;
    line-height:1.4;
  }

  .content p{
    font-size:15px;
  }

  /* FOOTER */
  .footer{
    padding:30px 15px;
  }

  .footer-container{
    grid-template-columns:1fr;
    gap:18px;
  }

  .footer-bottom{
    font-size:13px;
  }

}
/* ===== ADMIN LOGIN BUTTON ===== */
.admin-login-btn{
  background:#fff;
  color:#0b3c2d !important;
  padding:10px 18px;
  border-radius:8px;
  font-weight:700;
  transition:.3s;
}

.admin-login-btn:hover{
  background:#ffd54f;
  color:#000 !important;
}

/* ===== MOBILE ADMIN BUTTON ===== */
.mobile-admin-btn{
  background:#fff;
  color:#0b3c2d !important;
  margin:15px;
  border-radius:8px;
  text-align:center;
  font-weight:700;
}
/* FORM SECTION */

.form-section{
background:#1f6fb2;
padding:60px 20px;
}

.form-container{
max-width:1200px;
margin:auto;
display:flex;
gap:30px;
align-items:stretch;
}

.form-box,
.status-box{
flex:1;
background:#fff;
padding:40px;
border-radius:18px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.form-box h2,
.status-box h2{
font-size:26px;
line-height:1.4;
color:#0b3c2d;
font-weight:800;
margin-bottom:12px;
text-transform:uppercase;
}

.form-box p,
.status-box p{
color:#555;
margin-bottom:25px;
font-size:15px;
line-height:1.6;
}

.loan-form{
display:grid;
grid-template-columns:1fr 1fr;
gap:16px;
}

.loan-form input{
width:100%;
height:52px;
padding:0 16px;
border:1px solid #ddd;
border-radius:10px;
font-size:15px;
outline:none;
}

.loan-form input:focus{
border-color:#0b3c2d;
}

.full-width{
grid-column:1/3;
}

.loan-form button{
height:54px;
background:#0b3c2d;
border:none;
color:#fff;
font-size:16px;
font-weight:700;
border-radius:10px;
cursor:pointer;
width:100%;
}

.loan-form button:hover{
background:#09513c;
}

.status-btn{
display:flex;
align-items:center;
justify-content:center;
height:55px;
background:#0b3c2d;
color:#fff;
font-size:17px;
font-weight:700;
border-radius:10px;
text-decoration:none;
margin-top:20px;
}

.status-btn:hover{
background:#09513c;
}

/* MOBILE */

@media(max-width:992px){

.form-container{
flex-direction:column;
}

}

@media(max-width:768px){

.form-box,
.status-box{
padding:25px;
}

.loan-form{
grid-template-columns:1fr;
}

.full-width{
grid-column:1/2;
}

.form-box h2,
.status-box h2{
font-size:22px;
text-align:center;
}

.form-box p,
.status-box p{
text-align:center;
}

.status-btn{
width:100%;
}

}
/* ===== FINAL BUTTON + MOBILE FIX ===== */

.loan-form{
display:grid;
grid-template-columns:1fr 1fr;
gap:12px;
}

.loan-form input{
width:100%;
height:50px;
padding:0 14px;
border:1px solid #ddd;
border-radius:8px;
font-size:14px;
outline:none;
}

.loan-form button{
grid-column:1/3;
width:100%;
height:52px;
background:#d62828 !important;
border:none;
border-radius:8px;
font-size:16px;
font-weight:700;
color:#fff;
cursor:pointer;
margin-top:5px;
}

.loan-form button:hover{
background:#b71c1c !important;
}

/* STATUS BUTTON */

.status-btn{
width:100%;
height:52px;
display:flex;
align-items:center;
justify-content:center;
padding:0;
}

/* MOBILE */

@media(max-width:768px){

.loan-container{
grid-template-columns:1fr;
gap:15px;
}

.loan-box{
padding:18px;
}

.loan-form{
grid-template-columns:1fr;
gap:10px;
}

.loan-form input{
height:46px;
font-size:14px;
}

.loan-form button{
grid-column:1/2;
height:48px;
font-size:15px;
}

.status-btn{
height:48px;
font-size:15px;
}

}
/* ===================================== */
/* MOBILE OPTIMIZATION */
/* ===================================== */

@media(max-width:768px){

.two-column-section,
.image-content-section,
.two-col-section{
padding:20px 18px;
}

.content-box,
.two-col-text{
padding:0;
}

.content-box h2,
.two-col-text h2,
.image-text h2{
font-size:26px;
line-height:1.3;
margin-bottom:14px;
}

.content-box p,
.two-col-text p,
.image-text p{
font-size:18px;
line-height:1.8;
}

.two-column-container,
.image-content-container,
.two-col-container{
gap:25px;
}

.two-col-text h2{
max-width:90%;
}

}

/* ===================================== */
/* PROFESSIONAL LOAN SERVICES SECTION */
/* ===================================== */

.loan-services-section{
width:100%;
padding:70px 20px;
background:#f5f7f9;
overflow:hidden;
position:relative;
}

/* ===================================== */
/* SECTION HEADING */
/* ===================================== */

.section-heading{
max-width:760px;
margin:auto;
text-align:center;
margin-bottom:45px;
}

.section-heading h2{
font-size:42px;
line-height:1.3;
margin-bottom:16px;
color:#0b3c2d;
font-weight:800;
}

.section-heading p{
font-size:17px;
line-height:1.8;
color:#555555;
}

/* ===================================== */
/* SLIDER */
/* ===================================== */

.loan-slider-wrapper{
width:100%;
overflow:hidden;
position:relative;
}

.loan-slider-track{
display:flex;
gap:20px;
width:max-content;

will-change:transform;
}

/* ===================================== */
/* CARD */
/* ===================================== */

.loan-service-card{
width:300px;
flex-shrink:0;

background:linear-gradient(
135deg,
#0b3c2d,
#145c46
);

padding:28px 22px;

border-radius:24px;

text-align:center;

position:relative;

overflow:hidden;

box-shadow:0 8px 24px rgba(0,0,0,0.10);

transition:0.3s;
}

.loan-service-card:hover{
transform:translateY(-8px);
}

/* ===================================== */
/* BACKGROUND CIRCLE */
/* ===================================== */

.loan-service-card::before{
content:'';

position:absolute;

top:-40px;
right:-40px;

width:120px;
height:120px;

background:rgba(255,255,255,0.06);

border-radius:50%;
}

/* ===================================== */
/* ICON */
/* ===================================== */

.loan-icon{
font-size:46px;
margin-bottom:18px;
}

/* ===================================== */
/* HEADING */
/* ===================================== */

.loan-service-card h3{
font-size:26px;
margin-bottom:14px;
color:#ffffff;
font-weight:800;
}

/* ===================================== */
/* PARAGRAPH */
/* ===================================== */

.loan-service-card p{
font-size:15px;
line-height:1.6;
margin-bottom:16px;
color:rgba(255,255,255,0.85);
}

/* ===================================== */
/* PRICE/TEXT */
/* ===================================== */

.loan-service-card span{
display:block;

font-size:20px;
font-weight:800;

margin-bottom:22px;

color:#ffd76a;
}

/* ===================================== */
/* BUTTON */
/* ===================================== */

.loan-service-card a{
display:inline-flex;
align-items:center;
justify-content:center;

height:50px;
padding:0 28px;

background:#ffffff;
color:#0b3c2d;

font-size:16px;
font-weight:700;

text-decoration:none;

border-radius:50px;

transition:0.3s;
}

.loan-service-card a:hover{
background:#ffd76a;
}

/* ===================================== */
/* MOBILE */
/* ===================================== */

@media(max-width:768px){

.loan-services-section{
padding:55px 16px;
}

.section-heading{
margin-bottom:35px;
}

.section-heading h2{
font-size:25px;
}

.section-heading p{
font-size:18px;
line-height:1.7;
}

.loan-service-card{
width:260px;
padding:24px 18px;
}

.loan-service-card h3{
font-size:22px;
}

.loan-service-card p{
font-size:14px;
}

.loan-service-card span{
font-size:18px;
}

.loan-icon{
font-size:40px;
}

}
/* ========================= */
/* MOBILE FIXED BUTTONS */
/* ========================= */

.bottom-fixed-buttons{

position:fixed;

bottom:0;
left:0;

width:100%;

display:none;

z-index:99999;

}

/* CALL BUTTON */

.bottom-call-btn{

width:50%;
height:45px;

background:#e00046;

display:flex;
align-items:center;
justify-content:center;

font-size:20px;
font-weight:800;
letter-spacing:1px;

color:#ffffff;
text-decoration:none;

}

/* WHATSAPP BUTTON */

.bottom-whatsapp-btn{

width:50%;
height:45px;

background:#48c154;

display:flex;
align-items:center;
justify-content:center;

font-size:20px;
font-weight:800;
letter-spacing:1px;

color:#ffffff;
text-decoration:none;

}

/* MOBILE ONLY */

@media(max-width:768px){

.bottom-fixed-buttons{

display:flex;

}

body{
padding-bottom:5px;
}

}




body{

-webkit-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;

}