/* style.css */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#f7f9fc;
  color:#111827;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* ================= HEADER ================= */

.header{
  background:#fff;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:28px;
  font-weight:700;
  color:#0b2a6f;
}

.logo i{
  color:#ff8a00;
}

.orange{
  color:#ff8a00;
}

.nav-links{
  display:flex;
  list-style:none;
  gap:30px;
}

.nav-links a{
  text-decoration:none;
  color:#111827;
  font-weight:500;
  transition:0.3s;
}

.nav-links a:hover{
  color:#0b2a6f;
}

.admin-btn{
  background:#0b2a6f;
  color:#fff;
  border:none;
  padding:12px 20px;
  border-radius:8px;
  cursor:pointer;
  font-weight:600;
}

.menu-toggle{
  display:none;
  font-size:28px;
  cursor:pointer;
}

/* ================= HERO ================= */

.hero{
  padding:80px 0;
  background:#fff;
}

.hero-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:50px;
}

.hero-text h1{
  font-size:55px;
  line-height:1.2;
  margin-bottom:20px;
}

.hero-text h1 span{
  color:#0b2a6f;
}

.line{
  width:90px;
  height:4px;
  background:#ff8a00;
  margin-bottom:20px;
}

.hero-text p{
  color:#555;
  margin-bottom:20px;
  line-height:1.8;
}

.hero-text ul{
  list-style:none;
  margin-bottom:30px;
}

.hero-text ul li{
  margin-bottom:12px;
  font-size:17px;
}

.hero-text ul li i{
  color:#0b2a6f;
  margin-right:10px;
}

.hero-buttons{
  display:flex;
  gap:20px;
}

.btn{
  padding:14px 28px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.primary-btn{
  background:#0b2a6f;
  color:#fff;
}

.secondary-btn{
  border:2px solid #0b2a6f;
  color:#0b2a6f;
}

.primary-btn:hover,
.secondary-btn:hover{
  transform:translateY(-3px);
}

.hero-image img{
  width:100%;
  animation:float 3s ease-in-out infinite;
}

@keyframes float{
  0%{transform:translateY(0);}
  50%{transform:translateY(-15px);}
  100%{transform:translateY(0);}
}

/* ================= SERVICES ================= */

.services{
  padding:80px 0;
}

.section-title{
  text-align:center;
  margin-bottom:50px;
}

.section-title span{
  color:#0b2a6f;
  font-weight:600;
}

.section-title h2{
  font-size:38px;
  margin-top:10px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.service-card{
  background:#fff;
  padding:35px 25px;
  border-radius:18px;
  text-align:center;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
  transition:0.3s;
}

.service-card:hover{
  transform:translateY(-10px);
}

.service-card i{
  font-size:42px;
  color:#0b2a6f;
  margin-bottom:20px;
}

.service-card h3{
  margin-bottom:15px;
}

.service-card p{
  color:#666;
  line-height:1.7;
}

/* FEATURES */

.features{
  margin-top:50px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.feature-box{
  background:#edf4ff;
  padding:25px;
  border-radius:16px;
  display:flex;
  gap:15px;
}

.feature-box i{
  font-size:30px;
  color:#0b2a6f;
}

/* ================= STATS ================= */

.stats{
  padding:70px 0;
  background:#08255f;
  color:#fff;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  text-align:center;
  gap:20px;
}

.stat-box i{
  font-size:42px;
  margin-bottom:15px;
}

.stat-box h2{
  font-size:42px;
  margin-bottom:10px;
}

/* ================= ABOUT ================= */

.about{
  padding:80px 0;
}

.about-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.about-card,
.why-card,
.faq-section{
  background:#fff;
  padding:30px;
  border-radius:18px;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.about-card img{
  width:100%;
  margin-top:20px;
}

.about-card span,
.why-card span,
.faq-section span{
  color:#0b2a6f;
  font-weight:600;
}

.about-card h2{
  margin:15px 0;
}

.why-card ul{
  list-style:none;
  margin-top:20px;
}

.why-card ul li{
  margin-bottom:18px;
}

.why-card ul li i{
  color:#0b2a6f;
  margin-right:10px;
}

/* FAQ */

.faq-item{
  border:1px solid #ddd;
  border-radius:10px;
  margin-top:15px;
  overflow:hidden;
}

.faq-question{
  width:100%;
  padding:18px;
  border:none;
  background:#fff;
  display:flex;
  justify-content:space-between;
  cursor:pointer;
  font-size:16px;
  font-weight:500;
}

.faq-answer{
  display:none;
  padding:0 18px 18px;
  color:#555;
}

.faq-item.active .faq-answer{
  display:block;
}

/* ================= FOOTER ================= */

.footer{
  background:#061a45;
  color:#fff;
  padding:70px 0 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1.2fr;
  gap:60px;
  align-items:flex-start;
}

.footer-logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:26px;
  font-weight:700;
  margin-bottom:24px;
}

.footer-logo i{
  color:#fff;
  font-size:30px;
}

.footer p{
  color:rgba(255,255,255,0.8);
  line-height:1.9;
  max-width:380px;
}

.footer h3{
  font-size:28px;
  margin-bottom:24px;
  position:relative;
}

.footer h3::after{
  content:'';
  width:45px;
  height:3px;
  background:#ff8a00;
  position:absolute;
  left:0;
  bottom:-10px;
  border-radius:10px;
}

.footer ul{
  list-style:none;
  padding:0;
}

.footer ul li{
  margin-bottom:18px;
  color:rgba(255,255,255,0.9);
  line-height:1.7;
}

.footer ul li i{
  margin-right:12px;
  color:#ff8a00;
}

.footer a{
  text-decoration:none;
  color:rgba(255,255,255,0.9);
  transition:0.3s;
}

.footer a:hover{
  color:#ff8a00;
  padding-left:5px;
}

/* .footer-bottom{
  text-align:center;
  padding:28px 20px;
  margin-top:60px;
  border-top:1px solid rgba(255,255,255,0.1);
  color:rgba(255,255,255,0.75);
  font-size:15px;
} */


/* ================= FOOTER BOTTOM ================= */

.footer-bottom{
  margin-top: 60px;
  padding: 15px 30px;
  border-top:1px solid rgba(255,255,255,0.1);
  display:flex;
  justify-content:space-between;
  align-items:center;

  gap:20px;
  flex-wrap:wrap;
}

/* LEFT SIDE */

.footer-bottom-left{
  color:#fff;
  font-size:18px;
  font-weight:500;
}

/* RIGHT SIDE */

.footer-bottom-right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
}

/* LOGO */

.footer-bottom-right img{
  width:280px;
  max-width:100%;
  object-fit:contain;
}

/* TEXT */

.dev-text{
  margin-top:6px;
  color:#fff;
  font-size:15px;
  font-weight:600;
}

.resilience-link{
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.resilience-link:hover{
  opacity: 0.9;
}

/* MOBILE */

@media(max-width:768px){

  .footer-bottom{
    flex-direction:column;
    text-align:center;
    padding:20px;
  }

  .footer-bottom-right{
    align-items:center;
  }

  .footer-bottom-left{
    font-size:15px;
  }

  .footer-bottom-right img{
    width:220px;
  }

}
/* ================= SERVICE HIGHLIGHTS ================= */

.service-highlights{
  padding: 90px 0;
  background: #f8fafc;
}

.highlights-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 25px;
  margin-top: 50px;
}

.highlight-card{
  background: #fff;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s ease;
  border: 1px solid #e5e7eb;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.highlight-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.highlight-icon{
  width: 70px;
  height: 70px;
  margin: auto;
  margin-bottom: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg,#ff7a00,#ffb347);
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon i{
  color: #fff;
  font-size: 28px;
}

.highlight-card h3{
  font-size: 22px;
  margin-bottom: 12px;
  color: #111827;
}

.highlight-card p{
  color: #6b7280;
  line-height: 1.7;
  font-size: 15px;
}
/* ================= RESPONSIVE ================= */

@media(max-width:992px){

  .container{
    width:92%;
  }

  .hero-content{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero-text{
    order:2;
  }

  .hero-image{
    order:1;
  }

  .hero-text h1{
    font-size:42px;
  }

  .hero-buttons{
    justify-content:center;
    flex-wrap:wrap;
  }

  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .highlights-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .about-grid{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
    gap:40px;
  }
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  /* NAVBAR */

  .navbar{
    padding:16px 0;
  }

  .logo{
    font-size:22px;
  }

  .menu-toggle{
    display:block;
  }

  .admin-btn{
    display:none;
  }

  .nav-links{
    position:absolute;
    top:80px;
    right:-100%;
    width:260px;
    background:#fff;
    flex-direction:column;
    gap:20px;
    padding:25px;
    border-radius:16px;
    transition:0.3s;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
  }

  .nav-links.active{
    right:20px;
  }

  /* HERO */

  .hero{
    padding:60px 0;
  }

  .hero-content{
    gap:30px;
  }

  .hero-text h1{
    font-size:34px;
    line-height:1.3;
  }

  .hero-text p{
    font-size:15px;
  }

  .hero-text ul li{
    font-size:15px;
    text-align:left;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:center;
  }

  .btn{
    width:100%;
    max-width:260px;
    text-align:center;
  }

  .hero-image img{
    max-width:100%;
  }

  /* SECTION TITLE */

  .section-title h2{
    font-size:28px;
    line-height:1.4;
  }

  /* SERVICES */

  .services{
    padding:60px 0;
  }

  .services-grid{
    grid-template-columns:1fr;
  }

  .service-card{
    padding:30px 20px;
  }

  /* HIGHLIGHTS */

  .service-highlights{
    padding:60px 0;
  }

  .highlights-grid{
    grid-template-columns:1fr;
  }

  /* ABOUT */

  .about{
    padding:60px 0;
  }

  .about-grid{
    grid-template-columns:1fr;
  }

  .about-card,
  .why-card,
  .faq-section{
    padding:24px;
  }

  .about-card img{
    margin-top:15px;
    border-radius:14px;
  }

  /* FAQ */

  .faq-question{
    font-size:15px;
    padding:16px;
  }

  .faq-answer{
    font-size:14px;
  }

  /* FOOTER */

  .footer{
    padding-top:50px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:35px;
    text-align:left;
  }

  .footer-logo{
    font-size:22px;
  }

  .footer h3{
    font-size:22px;
    margin-bottom:20px;
  }

  .footer p{
    max-width:100%;
    font-size:15px;
  }

  .footer ul li{
    font-size:15px;
    margin-bottom:14px;
  }

  .footer-bottom{
    margin-top:40px;
    padding:22px 10px;
    font-size:14px;
  }
}

/* ================= SMALL MOBILE ================= */

@media(max-width:480px){

  .hero-text h1{
    font-size:28px;
  }

  .section-title h2{
    font-size:24px;
  }

  .logo{
    font-size:20px;
  }

  .footer-logo{
    font-size:20px;
  }

  .service-card h3,
  .highlight-card h3{
    font-size:20px;
  }
}

/* ================= GLOBAL MOBILE FIX ================= */

html, body{
  overflow-x:hidden;
}

/* ================= MOBILE RESPONSIVE ================= */

@media(max-width:768px){

  .container{
    width:94%;
  }

  /* NAVBAR */

  .navbar{
    padding:14px 0;
    position:relative;
  }

  .logo{
    font-size:18px;
    gap:6px;
  }

  .logo i{
    font-size:20px;
  }

  .menu-toggle{
    display:block;
    font-size:22px;
  }

  .nav-links{
    position:absolute;
    top:70px;
    right:-100%;
    width:220px;
    background:#fff;
    flex-direction:column;
    gap:16px;
    padding:20px;
    border-radius:12px;
    transition:0.3s;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    z-index:999;
  }

  .nav-links.active{
    right:0;
  }

  .nav-links li{
    width:100%;
  }

  .nav-links a{
    font-size:15px;
    display:block;
    width:100%;
  }

  .admin-btn{
    display:none;
  }

  /* HERO */

  .hero{
    padding:40px 0;
  }

  .hero-content{
    grid-template-columns:1fr;
    gap:25px;
  }

  .hero-text{
    text-align:center;
  }

  .hero-text h1{
    font-size:28px;
    line-height:1.4;
  }

  .hero-text p{
    font-size:14px;
    line-height:1.8;
  }

  .line{
    margin:auto;
    margin-bottom:20px;
  }

  .hero-text ul{
    text-align:left;
  }

  .hero-text ul li{
    font-size:14px;
    margin-bottom:10px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:center;
    gap:15px;
  }

  .btn{
    width:100%;
    max-width:240px;
    text-align:center;
    padding:12px 20px;
  }

  .hero-image img{
    width:100%;
    max-width:320px;
    margin:auto;
    display:block;
  }

  /* TITLES */

  .section-title{
    margin-bottom:35px;
  }

  .section-title h2{
    font-size:24px;
    line-height:1.4;
  }

  /* SERVICES */

  .services{
    padding:50px 0;
  }

  .services-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .service-card{
    padding:25px 20px;
  }

  .service-card i{
    font-size:34px;
  }

  .service-card h3{
    font-size:20px;
  }

  .service-card p{
    font-size:14px;
  }

  /* HIGHLIGHTS */

  .service-highlights{
    padding:50px 0;
  }

  .highlights-grid{
    grid-template-columns:1fr;
  }

  .highlight-card{
    padding:25px 20px;
  }

  /* ABOUT */

  .about{
    padding:50px 0;
  }

  .about-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .about-card,
  .why-card,
  .faq-section{
    padding:22px;
  }

  .about-card img{
    width:100%;
    border-radius:14px;
  }

  /* FAQ */

  .faq-question{
    font-size:14px;
    padding:16px;
    line-height:1.5;
  }

  .faq-answer{
    font-size:14px;
  }

  /* FOOTER */

  .footer{
    padding-top:45px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:35px;
  }

  .footer-logo{
    font-size:22px;
  }

  .footer h3{
    font-size:22px;
  }

  .footer p,
  .footer ul li,
  .footer a{
    font-size:14px;
  }

  .footer-bottom{
    font-size:13px;
    padding:20px 10px;
  }
}

/* ================= WHATSAPP FLOAT BUTTON ================= */

.whatsapp-float{
  position: fixed;
  right: 20px;
  bottom: 125px;
  z-index: 9999;
}

/* MAIN BUTTON */

.whatsapp-bar{
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg,#25d366,#128c7e);
  color: #fff;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 60px;
  box-shadow: 0 8px 25px rgba(37,211,102,0.35);
  transition: all 0.3s ease;
  overflow: hidden;
  min-width: 65px;
}

/* HOVER EFFECT */

.whatsapp-bar:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(37,211,102,0.45);
}

/* ICON */

.whatsapp-bar i{
  font-size: 34px;
  flex-shrink: 0;
}

/* TEXT AREA */

.whatsapp-content{
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.contact-text{
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.phone-number{
  font-size: 12px;
  opacity: 0.95;
}

/* PULSE ANIMATION */

.whatsapp-bar::before{
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 60px;
  border: 2px solid rgba(255,255,255,0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse{
  0%{
    transform: scale(1);
    opacity: 1;
  }
  70%{
    transform: scale(1.08);
    opacity: 0;
  }
  100%{
    transform: scale(1.08);
    opacity: 0;
  }
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .whatsapp-float{
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-bar{
    padding: 10px 14px;
    border-radius: 50px;
    gap: 10px;
  }

  .whatsapp-bar i{
    font-size: 28px;
  }

  .contact-text{
    font-size: 13px;
  }

  .phone-number{
    font-size: 11px;
  }
}

/* SMALL MOBILE */

@media(max-width:480px){

  .whatsapp-content{
    display: none;
  }

  .whatsapp-bar{
    width: 58px;
    height: 58px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  .whatsapp-bar i{
    font-size: 30px;
  }
}
