/* === SKYWAVE RESTRUCTURED HOMEPAGE STYLES === */
/* Accent and utility colors to match your theme */
:root { 
    --accent: var(--blue);
    --dark: #0e1622;
    --light: var(--light-bg);
    --blue: #1f4d8f; --dark-blue: #163b6c; 
    --light-bg: #f8f9fb; 
    --muted: #5f6c7b; 
    --shadow: 0 4px 18px rgba(0, 0, 0, 0.06); 
    --radius: 12px; font-family: "Poppins", sans-serif; 
} 

* { 
    box-sizing:
    border-box; 
    margin: 0; 
    padding: 0; 
} 

body { 
    background: var(--light-bg); 
    color: #0e1622; 
    line-height: 1.6;
}

/* GLOBAL BUTTONS */
.btn {
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.alt {
    background: transparent;
    border: 2px solid var(--blue);
    color: var(--dark-blue);
}

.btn.alt:hover {
    background: var(--blue);
    color: white;
}

.btn.primary {
    background: var(--blue);
    color: white;
}

.section-head {
    margin-bottom: 40px;
}

/* NAVBAR */ 

header { 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5%;
  transition: all 0.3s ease;
  background-color: #fff; 
} 

.logo {
  width: 100px;
  height: auto;
}

.logo img {
  width: 100%;
  height: 100%;
}

header.transparent { background: transparent; color: white; } 

header.solid { background: white; color: #0e1622; box-shadow: var(--shadow); } 

.logo { font-weight: 700; font-size: 1.3rem; } nav { display: flex; align-items: center; gap: 25px; } 

nav a { text-decoration: none; color: inherit; font-weight: 500; transition: 0.2s; } 

nav a:hover { color: #5f6c7b; } 

.contact-btn { background: var(--dark-blue); color: white; border: none; padding: 10px 18px; border-radius: 8px; font-weight: 600; cursor: pointer; } 

.hamburger { display: none; font-size: 1.5rem; background: none; border: none; color: inherit; } 

@media (max-width: 850px) { nav { display: none; flex-direction: column; position: absolute; top: 70px; right: 5%; background: white; padding: 20px; border-radius: var(--radius); box-shadow: var(--shadow); color: var(--dark-blue); } nav.show { display: flex; } .hamburger { display: block; } }

/* Fade-in animation */ 
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; } 

.fade-in.show { opacity: 1; transform: translateY(0); }

/* Hero */
.hero { display:flex; align-items:center; justify-content:center; height:80vh;
  background: linear-gradient(to right, var(--dark-blue), #1f4d8f);
  color: white;
  overflow:hidden; text-align:center;
}

.hero-content { position:relative; z-index:1; max-width:800px; animation: fadeInUp 1s ease forwards; }
.hero h1 { font-size:3rem; margin-bottom:1rem; }
.hero p { font-size:1.2rem; margin-bottom:2rem; }
.hero-btn { display:inline-block; padding:.75rem 1.5rem; background:var(--accent-color); color:#fff; text-decoration:none; font-weight:bold; border-radius:5px; transition: background 0.3s ease; }
.hero-btn:hover { background: var(--blue); }

/* UNIVERSAL SECTION WRAPPER */
.section {
  padding: 60px 5%;
  background: white;
  margin-top: 40px;
  border-top: 1px solid #e5e7eb;
}

.section h2 {
  font-size: 2rem;
  color: var(--dark-blue);
  margin-bottom: 25px;
  text-align: left;
}

/* ABOUT SECTION */
#about {
  background: var(--light-bg);
}

#about p {
  color: var(--muted);
  line-height: 1.7;
}

#about .cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

#about .card {
  background: white;
  border-radius: var(--radius);
  padding: 25px;
  box-shadow: var(--shadow);
  flex: 1 1 280px;
}

#about .logos-row {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
  padding: 15px 0;
}

#about .logos-row img {
  height: 40px;
  opacity: 0.9;
}

#about div:last-of-type {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:20px;
}

/* PRODUCTS / SERVICES / SOLUTIONS */
#offerings .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

#offerings .card {
  flex: 1 1 280px;
  padding: 25px;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

#offerings .card h3 {
  margin-bottom: 10px;
  color: var(--dark-blue);
}

#offerings .card p {
  color: var(--muted);
  margin-bottom: 15px;
}

.section-head div {
  display: flex;
  flex-wrap: wrap;
}

.section-head p {
    color: var(--muted);
}

.section-head div a:not(:last-of-type) {
  margin-right: 10px;
}

.section-head div a {
  margin-bottom: 10px;
}

/* WHY CHOOSE US */
#why .features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

#why .card {
  background: white;
  border-radius: var(--radius);
  padding: 25px;
  box-shadow: var(--shadow);
  text-align: left;
}

#why .card h3 {
  color: var(--dark-blue);
  margin-bottom: 8px;
}

#why .card p {
  color: var(--muted);
}

/* Animations */
@keyframes fadeInUp { from { opacity:0; transform:translateY(20px);} to {opacity:1; transform:translateY(0);} }

/* FOOTER */ 
footer { 
    background: white; 
    padding: 30px 5%;
    border-top: 1px solid #e5e7eb; 
    margin-top: 60px; 
} 
    
.footer-grid { 
    max-width: 1100px; 
    margin: auto; 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: 
    space-between; 
    align-items: center; 
    gap: 20px; 
    
} 

.footer-links { display: flex; flex-wrap: wrap; gap: 20px; } 

.footer-links a { text-decoration: none; color: #3d4652; font-weight: 500; } 

.footer-right { color: #6b7280; font-size: 14px; } 

/* MOBILE ADJUSTMENTS */ 
@media(max-width:768px){ .hero h1{font-size:2rem;} .hero p{font-size:1rem;} }