/* ================= RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Inter", sans-serif;
}

body{
  background:#f6f7f9;
  color:#1e293b;
  line-height:1.6;
  padding-top:100px;
}

/* ================= CONTAINER ================= */
.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* ================= NAVBAR ================= */
/* ================= NAVBAR ================= */

header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:90px;
  background:#fff;
  box-shadow:0 2px 12px rgba(0,0,0,0.06);
  z-index:1000;
  display:flex;
  align-items:center;
}

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;   /* ⭐ KEY FIX */
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 30px;
}

/* ================= NAV LINKS ================= */
.nav-links{
  list-style:none;
  display:flex;
  gap:30px;
  margin-right: 30px;
}

.nav-links a{
  text-decoration:none;
  color:#1e293b;
  font-weight:500;
  font-family:sans-serif;
  transition:.3s;
}

.nav-links a:hover{
  color:#1b4f8f;
}
/* ================= NAV ACTIVE INDICATOR ================= */
.nav-links{
  list-style:none;
  display:flex;
  gap:35px;
  align-items:center;
  white-space:nowrap;   /* ⭐ prevents wrapping */
}
.nav-links li{
  white-space:nowrap;
}

.nav-links a{
  text-decoration:none;
  color:#1e293b;
  font-weight:500;
  font-size:16px;
  transition:.3s;
  position:relative;
  padding-bottom:5px;
}
.nav-links a{
  position:relative;
  padding-bottom:5px;
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0%;
  height:2px;
  background:#1b4f8f;
  transition:0.3s ease;
}

/* Hover animation */
.nav-links a:hover::after{
  width:100%;
}

/* Active page line */
.nav-links a.active::after{
  width:100%;
}

/* ================= LOGO BADGE ================= */

.logo-badge{
  text-decoration:none;
  color:inherit;

  display:flex;
  align-items:center;
  gap:14px;
  
  background:#fff;
  padding:12px 18px;
  border-radius:18px;
  box-shadow:0 10px 20px rgba(0,0,0,0.1);

  transition:all 0.3s ease;
}

.logo-badge:hover{
  transform:scale(1.03);
  opacity:0.95;
}

.logo-badge img{
  height:70px;   /* ⭐ bigger logo */
  width:auto;
}

/* ================= HERO ================= */
.hero{
  min-height:85vh;
  display:flex;
  align-items:center;
  padding-top:10px;
  background:
  linear-gradient(rgba(10,30,60,0.85),rgba(10,30,60,0.95)),
  url("https://images.unsplash.com/photo-1743742566156-f1745850281a");
  background-size:cover;
  background-position:center;
  color:white;
  margin-bottom: 00px;
}

.hero-content{ max-width:700px; }

.hero h1{
  font-size:3rem;
  margin-bottom:20px;
  line-height:1.2;
}

.hero h1 span{ color:#6fd1a6; }

.hero p{
  margin-bottom:30px;
  color:#d1d5db;
}

.hero-buttons{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.btn-primary{
  background:#1b4f8f;
  color:white;
  padding:14px 24px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
}

.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.btn-secondary{
  background:rgba(255,255,255,0.15);
  color:white;
  padding:14px 24px;
  border-radius:10px;
  text-decoration:none;
}

/* ================= SECTION TITLE ================= */
.section-title{
  text-align:center;
  margin-bottom:40px;
}

.section-title h2{
  font-size:2.2rem;
}

/* ================= SERVICES ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Poppins", sans-serif;
}
.services{ padding:70px 0; }

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  margin-top: 60px;
  text-align: center;
}

/* CARD LINK RESET */
.service-card {
  text-decoration: none;
  color: #0f2f56;
  transition: 0.4s ease;
}

/* CIRCLE IMAGE */
.service-image {
  width: 220px;
  height: 220px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.5s ease;
}

/* IMAGE INSIDE CIRCLE */
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

/* TITLE */
.service-card h3 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
}

/* HOVER EFFECT */
.service-card:hover .service-image {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-card:hover img {
  transform: scale(1.1);
}
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-image {
    width: 180px;
    height: 180px;
  }
}
.service-card:hover .service-image {
  box-shadow: 0 0 0 6px rgba(30,122,85,0.2),
              0 20px 50px rgba(0,0,0,0.15);
}
/* ================= PROJECTS ================= */
/* ================= FEATURED PROJECTS ================= */

.featured-projects {
  padding: 100px 0;
  background: #f8fafc;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

/* PROJECT CARD */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

/* IMAGE */
.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.6s ease;
  display: block;
}

/* OVERLAY */
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      rgba(15,47,86,0.85),
      rgba(30,122,85,0.85)
  );
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transition: 0.4s ease;
}

.project-overlay h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.project-overlay p {
  font-size: 14px;
  margin-bottom: 15px;
}

.project-btn {
  background: white;
  color: #0f2f56;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.project-btn:hover {
  background: #dbeafe;
}

/* HOVER EFFECT */
.project-card:hover img {
  transform: scale(1.1);
}

.project-card:hover .project-overlay {
  opacity: 1;
}
@media (max-width: 992px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= HAMBURGER ================= */
.hamburger{
  display:none;
  flex-direction:column;
  gap:4px;
  cursor:pointer;
}

.hamburger span{
  width:24px;
  height:3px;
  background:#0b2c4a;
  border-radius:3px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:1000px){

  .services-grid{ grid-template-columns:repeat(2,1fr); }
  .stats-grid{ grid-template-columns:repeat(2,1fr); }
  .projects-grid{ grid-template-columns:1fr; }

}

@media(max-width:768px){

  /* LOGO SMALLER */
  .logo-badge{
    position:static;
    transform:none;
    margin-right:auto;
    padding:8px 12px;
    border-radius:14px;
  }

  .logo-badge img{ height:40px; }
  .brand-name{ font-size:15px; }
  .brand-sub{ font-size:11px; }

  /* HAMBURGER SHOW */
  .hamburger{
    display:flex;
    margin-left:auto;
    position: relative;
    left: -25px;
  }

  /* MOBILE MENU */
  .nav-links{
    display:none;
    position:absolute;
    top:90px;
    left:0;
    width:100%;
    background:white;
    flex-direction:column;
    align-items:center;
    gap:20px;
    padding:20px 0;
    box-shadow:0 10px 20px rgba(0,0,0,0.08);
  }

  .nav-links.active{
    display:flex;
  }

}

@media(max-width:600px){
  .hero h1{ font-size:2rem; }
}

/* ================= CTA SECTION ================= */
.cta{
  background:linear-gradient(135deg,#0b2c4a,#1b4f8f);
  color:white;
  padding:100px 0;
  text-align:center;
}

.cta-content h2{
  font-size:2.5rem;
  margin-bottom:20px;
}

.cta-content p{
  max-width:700px;
  margin:0 auto 30px;
  color:#e2e8f0;
}

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

/* ================= FOOTER ================= */
.footer{
  background:#0f172a;
  color:#cbd5e1;
  padding:70px 0 30px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:40px;
}

.footer h3,
.footer h4{
  color:#ffffff;
  margin-bottom:15px;
}

.footer p{
  font-size:14px;
  margin-bottom:10px;
  line-height:1.6;
}

.footer-links ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links li{
  margin-bottom:8px;
}

.footer-links a{
  text-decoration:none;
  color:#cbd5e1;
  font-size:14px;
  transition:0.3s ease;
}

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

.footer-bottom{
  text-align:center;
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.1);
  font-size:14px;
  color:#94a3b8;
}

.footer-social{
  align-items: center;
}
/* ================= FOOTER RESPONSIVE ================= */
@media(max-width:768px){
  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
  }
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float{
  position:fixed;
  bottom:20px;
  right:20px;

  width:55px;
  height:55px;

  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;
  text-decoration:none;

  box-shadow:0 8px 20px rgba(0,0,0,0.2);
  z-index:1000;

  transition:transform 0.3s ease;
}

.whatsapp-float img{
  width:28px;
  height:28px;
}

.whatsapp-float:hover{
  transform:scale(1.1);
}

/* ================= FOOTER SOCIAL ================= */

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: center;   /* centers horizontally */
  align-items: center;
  margin-top: 15px;
}
.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #1e7a55;
  transform: translateY(-4px);
}

@media (max-width: 768px) {

  .footer-grid {
    text-align: center;   /* centers text */
  }

  .footer-social {
    justify-content: center;  /* important */
  }

}
.social-btn{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#1e293b;
  color:white;
  text-decoration:none;
  transition:0.3s ease;
  font-size:16px;
}

/* Hover colors */
.social-btn.instagram:hover{
  background:#E1306C;
}

.social-btn.youtube:hover{
  background:#FF0000;
}

.social-btn.facebook:hover{
  background:#1877F2;
}
.contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.contact-item .icon {
  min-width: 20px;
}
