/* Import Bootstrap Icons */
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css');

/* CSS Variables for Consistent Theming */
:root {
  --primary-navy: #0a2540;
  --secondary-navy: #163a6b;
  --accent-orange: #ff6600;
  --accent-gold: #ffa500;
  --text-dark: #222;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #0a2540, #163a6b);
  --gradient-hero: linear-gradient(135deg, rgba(10, 37, 64, 0.95), rgba(22, 58, 107, 0.95));
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Header & Navigation */
.site-header {
  background: var(--primary-navy);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 30px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}



.company-name {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff; /* navy – matches corporate tone */
  white-space: nowrap;
}
.logo img {
  height: 50px;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.navbar a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
  position: relative;
}

.navbar a:hover {
  color: var(--accent-orange);
}

.navbar a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: width 0.3s ease;
}

.navbar a:hover::after {
  width: 100%;
}

/* Hero Section */
/* .hero {
  position: relative;
  background: var(--gradient-hero), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%230a2540" width="1200" height="400"/><circle cx="100" cy="100" r="80" fill="%23163a6b" opacity="0.3"/><circle cx="1000" cy="300" r="120" fill="%23163a6b" opacity="0.2"/><path d="M0,200 Q300,150 600,200 T1200,200" stroke="%23ff6600" stroke-width="2" fill="none" opacity="0.3"/></svg>');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 100px 30px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 0%, rgba(255, 102, 0, 0.05) 100%);
  animation: gradientShift 15s ease infinite;
} */
.hero {
  height: 90vh;
  background:
    linear-gradient(rgba(10, 37, 64, 0.75), rgba(10, 37, 64, 0.75)),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1920&q=80")
    center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

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

.hero .tagline {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero .subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero .btn {
  background: #ff6600;
  color: #fff;
  padding: 14px 32px;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.hero .btn:hover {
  background: #e65c00;
  transform: translateY(-2px);
}

@keyframes gradientShift {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease 0.2s backwards;
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-block;
  background: var(--accent-orange);
  color: var(--white);
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease 0.4s backwards;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn:hover {
  background: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Page Banner */
.page-banner {
  position: relative;
  background: var(--gradient-hero);
  padding: 80px 30px;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  margin-bottom: 50px;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
  animation: bannerMove 20s linear infinite;
}

@keyframes bannerMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.page-banner h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-banner p {
  font-size: 1.2rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

/* Sections */
section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 30px;
}

section h1, section h2 {
  color: var(--primary-navy);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

section h1::after, section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--accent-orange);
  border-radius: 2px;
}

section p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Content Cards */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: var(--white);
  border-radius: 10px;
  padding: 35px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card h3 {
  color: var(--primary-navy);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.card p {
  color: var(--text-light);
  font-size: 1rem;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: var(--white);
}

.card-icon i {
  font-size: 28px;
}

/* Lists Styling */
.styled-list {
  list-style: none;
  padding: 0;
}

.styled-list li {
  padding: 15px 0;
  padding-left: 35px;
  position: relative;
  color: var(--text-dark);
  font-size: 1.1rem;
  border-bottom: 1px solid #eee;
}

.styled-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-orange);
  font-weight: bold;
  font-size: 1.3rem;
}

.styled-list li:last-child {
  border-bottom: none;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  counter-reset: step-counter;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 25px;
  background: var(--bg-light);
  border-radius: 10px;
  border-left: 4px solid var(--accent-orange);
  transition: all 0.3s ease;
  counter-increment: step-counter;
}

.process-step:hover {
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.process-step::before {
  content: counter(step-counter);
  background: var(--gradient-primary);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.process-step h3 {
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.process-step p {
  margin: 0;
}

/* Footer */
.site-footer {
  background: var(--primary-navy);
  color: var(--white);
  padding: 60px 30px 20px;
  margin-top: 80px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-orange);
}

.footer-section p,
.footer-section li {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-orange);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-item i {
  color: var(--accent-orange);
  font-size: 1.2rem;
  min-width: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-links a i {
  color: var(--white);
}

.social-links a:hover {
  background: var(--accent-orange);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
  }

  /* IMPORTANT: let hamburger control menu */
  .navbar ul {
    display: none;
  }
}
 .company-name {
    font-size: 15px;
  }

/* Animations */
.fade-in {
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    position: relative; /* ADD THIS */
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 30px;
    background: var(--primary-navy);
    flex-direction: column;
    width: 240px;
    padding: 20px;
    border-radius: 10px;
    display: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  }
 .company-name {
    font-size: 15px;
    color: #ffffff;
  }
  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}


/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
