/* --- RESET & GLOBAL VARIABLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --primary: #afe60a;
  --secondary: #52ab98;
  --light: #f2f2f2;
  --white: #ffffff;
  --dark: #122c34;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

/* --- NAVIGATION --- */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: var(--white);
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
    color: white;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
}

.menu {
  display: flex;
  list-style: none;
}

.menu li {
  margin-left: 20px;
}

.menu a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: var(--secondary);
}

/* --- HERO SECTION --- */
header {
  height: 80vh;
  background: linear-gradient(rgba(68, 200, 240, 0.925), rgba(18, 44, 52, 0.7)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero-content p {
    color: white;
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-buttons .btn {
  padding: 12px 25px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 0 10px;
  font-weight: bold;
  transition: all 0.3s;
}

.primary-btn {
  background-color: var(--secondary);
  color: var(--white);
  transition: 0.3s ease;
}

.primary-btn:hover {
  background-color: #07ffeee9;
  color: var(--dark); 
}

.secondary-btn {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white) !important;
  transition: 0.3s ease;
}

.secondary-btn:hover {
  background-color: var(--white);
  color: var(--dark);
}

/* --- SEARCH BAR --- */
.search-bar {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.search-bar input {
  width: 400px;
  padding: 15px;
  border: none;
  border-radius: 5px 0 0 5px;
  font-size: 1rem;
  outline: none;
}

.search-btn {
  padding: 15px 25px;
  border: none;
  background-color: var(--primary);
  color: var(--white);
  font-weight: bold;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: background 0.3s;
}

.search-btn:hover {
  background-color: #1a444e;
}

/* --- SECTIONS & CARDS --- */
section {
  padding: 80px 20px;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--primary);
  position: relative;
}

section h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background-color: var(--secondary);
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.cards {
  display: grid;
  gap: 30px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.card i {
  color: var(--secondary);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(21, 81, 98, 0.684);
}

.loading-span {
  font-weight: bold;
  color: var(--primary);
  font-size: 1.1rem;
}

/* --- MAP --- */
#mapContaziner {
  height: 500px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- MISC UI COMPONENTS --- */
.empty-state, .about-box, .contact-box {
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.empty-state i {
  color: #95377b;
  margin-bottom: 15px;
}

/* --- MODAL FOR SEARCH --- */
.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.8rem;
  cursor: pointer;
  color: #922a2a74;
}

.close-btn:hover {
  color: var(--dark);
}

#searchResults ul {
  list-style: none;
  margin-top: 15px;
}

#searchResults li {
  padding: 10px;
  border-bottom: 1px solid #5fe4be;
}

/* --- FOOTER --- */
footer {
  background-color: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    padding: 15px;
  }
  .menu {
    margin-top: 15px;
  }
  .menu li {
    margin: 0 10px;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .search-bar {
    flex-direction: column;
    align-items: center;
  }
  .search-bar input {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
  }
  .search-btn {
    border-radius: 5px;
    width: 100%;
  }
}

/* --- NEW REPORT STYLES --- */
.report-section {
  background-color: #d1b0b0;
  border-bottom: 1px solid #ddd;
}

.report-header {
  text-align: center; 
  margin-bottom: 50px;
}

.badge {
  background: var(--secondary);
  color: rgb(4, 200, 249);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.report-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.report-main article h3 {
  color: var(--primary);
  margin: 30px 0 15px 0;
  border-left: 4px solid var(--secondary);
  padding-left: 15px;
}

.highlight-box {
  background: #0fe1b4;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  border: 1px solid var(--secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
}

.service-mini-card {
  background: var(--light);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

.service-mini-card i {
  color: var(--primary);
  margin-bottom: 10px;
}

/* --- SIDEBAR --- */
.report-sidebar {
  background: var(--light);
  padding: 25px;
  border-radius: 12px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.source-item {
  background: rgb(56, 173, 219);
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 0.9rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.cta-sidebar {
  margin-top: 30px;
  background: var(--primary);
  color: rgb(107, 107, 245);
  padding: 20px;
  border-radius: 10px;
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  padding: 15px;
  background: rgb(236, 236, 113);
  border-radius: 8px;
}

/* Responsive fixes */
@media (max-width: 900px) {
  .report-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

/* --- ARTICLE & REPORT STYLING --- */
.report-section {
    background-color: #e4661786;
    padding: 60px 20px;
}

.badge {
    background: var(--secondary);
    color: rgb(25, 42, 110);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.report-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.report-main article h3 {
    color: var(--primary);
    margin: 40px 0 20px 0;
    font-size: 1.8rem;
}

.highlight-box {
    background: #5fa596;
    border-left: 5px solid var(--secondary);
    padding: 20px;
    border-radius: 5px;
    margin: 25px 0;
    font-style: italic;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.service-mini-card {
    background: #3b7716;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #542649;
}

.service-mini-card i {
    color: var(--secondary);
    margin-bottom: 15px;
}

.threat-alert {
    background: #fff5f5;
    border: 1px dashed #bcb13e;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
}

/* --- DATA TABLE --- */
.table-container {
    margin-top: 50px;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: rgb(108, 217, 239);
}

table th, table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #41a4e2;
}

table th {
    background-color: var(--primary);
    color: rgba(30, 97, 116, 0.867);
}

/* --- SIDEBAR --- */
.report-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.cta-sidebar {
    background: var(--dark);
    color: rgb(210, 124, 236);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.cta-sidebar h3 { margin-bottom: 15px; }

.social-box {
    margin-top: 20px;
    text-align: center;
}

.social-icons i {
    font-size: 1.5rem;
    margin: 10px;
    color: var(--primary);
    cursor: pointer;
}

/* --- FAQ --- */
.faq-section {
    margin-top: 50px;
}

.faq-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #c6f994;
}

/* Responsive */
@media (max-width: 992px) {
    .report-grid {
        grid-template-columns: 1fr;
    }
    .report-sidebar {
        position: static;
    }
}

.acc-header {
    cursor: pointer;
    background: #7dc9f8;
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: bold;
    transition: 0.3s;
}
.acc-header:hover { background: #e77c7c; }
.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f495b3;
    padding: 0 15px;
}

/* General Setup */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }
body { background-color: #0b0e14; color: #f0e870; scroll-behavior: smooth; }

/* Navigation */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%; background: rgba(11, 14, 20, 0.9);
    position: fixed; width: 100%; top: 0; z-index: 1000; backdrop-filter: blur(10px);
}
.menu { display: flex; list-style: none; }
.menu li a { color: rgb(174, 111, 250); text-decoration: none; margin-left: 20px; font-weight: 500; }

/* Section Backgrounds & Parallax */
section, header {
    position: relative; padding: 100px 10%; min-height: 80vh;
    display: flex; flex-direction: column; justify-content: center;
    background-attachment: fixed; background-size: cover; background-position: center;
}

.hero-section { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072'); }
.bg-data { background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?q=80&w=2070'); }
.bg-services { background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?q=80&w=2072'); }
.bg-blog { background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1518176259641-0ca93c05989d?q=80&w=2070'); }
.bg-about { background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?q=80&w=2070'); }

/* Glassmorphism Cards */
.card, .glass-panel {
    background: rgba(113, 162, 6, 0.325);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px; border-radius: 20px;
    transition: 0.4s ease; text-align: center;
}
.card:hover { transform: translateY(-10px); background: rgba(255, 255, 255, 0.1); border-color: #3498db; }

/* Grid Layouts */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }

/* Animations */
.reveal { opacity: 0; transform: translateY(50px); transition: 1s all ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Buttons */
.btn { padding: 12px 25px; border-radius: 30px; border: none; cursor: pointer; font-weight: 600; margin-right: 10px; }
.primary-btn { background: #3498db; color: rgb(129, 240, 231); }
.secondary-btn { background: transparent; border: 2px solid rgb(223, 113, 238); color: rgb(105, 219, 236); }

footer { text-align: center; padding: 40px; background: #07090d; }




/* =========================================================
   1. MODERN DESIGN SYSTEM & VARIABLES (Premium Tech Look)
   ========================================================= */
:root {
  /* Core Colors */
  --primary: #068090c6;       /* Cyan Tech Blue */
  --primary-dim: rgba(0, 188, 212, 0.1);
  --secondary: #b1b349;     /* Neon Green */
  --accent: #634dc4;        /* Pink Accent */
  
  /* Neutral Palette (Dark Theme) */
  --dark-bg: #05070a;       /* Almost Black */
  --dark-soft: #0a0e17;     /* Soft Dark */
  --dark-card: #111621;     /* Card Background */
  --light-text: #116e7b;    /* Off-White Text */
  --white: #830e0e8e;
  
  /* Glassmorphism Effects */
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(15px);
  
  /* UI Elements */
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.3);
  --shadow-lg: 0 15px 35px rgba(0,0,0,0.5);
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); /* Ultra Smooth */
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* =========================================================
   2. GLOBAL RESET & FOUNDATION
   ========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px; /* Base size */
}

body {
  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Common Section Styling */
section {
  padding: 100px 8%;
  position: relative;
  width: 100%;
}

/* =========================================================
   3. NAVIGATION (Modern Glass Nav)
   ========================================================= */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 8%;
  background: rgba(35, 86, 162, 0.7); /* Translucent */
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 2000;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
  text-transform: uppercase;
}

.menu {
  display: flex;
  list-style: none;
  gap: 1.8rem;
}

.menu a {
  text-decoration: none;
  color: var(--light-text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  opacity: 0.8;
  position: relative;
}

/* Underline Hover Effect */
.menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--secondary);
  transition: var(--transition);
}

.menu a:hover {
  color: var(--white);
  opacity: 1;
}

.menu a:hover::after {
  width: 100%;
}

/* =========================================================
   4. HERO SECTION (Dynamic Moving "Video" Background)
   ========================================================= */
header {
  position: relative;
  height: 100vh; /* Full viewport height */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 0 8%;
}

/* --- THE KEY: DYNAMIC MOVING BACKGROUND --- */
header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* High-quality tech image with gradients */
  background-image: 
    linear-gradient(135deg, rgba(141, 199, 88, 0.756) 0%, rgba(11, 22, 36, 0.6) 50%, rgba(5, 7, 10, 0.9) 100%),
    url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072');
  background-size: cover;
  background-position: center;
  /* DYNAMIC MOTION ANIMATION */
  animation: backgroundMove 20s infinite alternate ease-in-out;
  z-index: 1;
  transform: scale(1.1); /* Prevents white edges during move */
}

/* Define the background motion animation */
@keyframes backgroundMove {
  0% { background-position: 50% 50%; transform: scale(1.1) translate(0, 0); }
  50% { background-position: 60% 40%; transform: scale(1.15) translate(-10px, 10px); }
  100% { background-position: 40% 60%; transform: scale(1.1) translate(10px, -10px); }
}

.hero-content {
  position: relative;
  z-index: 10; /* Above background */
  max-width: 900px;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem); /* Responsive typography */
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
  background: linear-gradient(to right, var(--white), var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleFadeIn 1s ease-out;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2.5rem;
  color: white;
  opacity: 0.9;
  animation: titleFadeIn 1.2s ease-out;
}

/* Animation for Hero Text */
@keyframes titleFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   5. SECTIONS WITH PARALLAX BACKGROUNDS
   ========================================================= */

/* Parallax Class to apply to specific sections */
.parallax-section {
  background-attachment: fixed; /* Core parallax effect */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Specific Section Backgrounds (Ensure these have distinct visual cues) */
.bg-data     { background-image: linear-gradient(rgba(5,7,10,0.85), rgba(5,7,10,0.85)), url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?q=80&w=2070'); }
.bg-services { background-image: linear-gradient(rgba(5,7,10,0.9), rgba(5,7,10,0.9)), url('https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?q=80&w=2072'); }
.bg-about    { background-image: linear-gradient(rgba(5,7,10,0.8), rgba(5,7,10,0.8)), url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?q=80&w=2070'); }

/* Section Headlines */
section h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 4rem;
  color: var(--white);
  position: relative;
  font-weight: 700;
}

section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

/* =========================================================
   6. UI COMPONENTS (Buttons, Cards, Forms)
   ========================================================= */

/* --- Modern Glass Buttons --- */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  margin: 0 10px;
}

.primary-btn {
  background: var(--primary);
  color: var(--dark-bg);
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.primary-btn:hover {
  background: var(--white);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.secondary-btn {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.secondary-btn:hover {
  background: var(--primary-dim);
  border-color: var(--secondary);
  color: var(--secondary);
}

/* --- Glassmorphism Cards --- */
.card-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 3rem;
}

.card {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Card Hover Effect: Glow & Lift */
.card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(0, 188, 212, 0.2);
  background: rgb(5, 250, 160);
}

/* Subtle glow effect on hover */
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 0%, var(--primary-dim), transparent 70%);
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}

.card:hover::before {
  opacity: 1;
}

.card > * { position: relative; z-index: 1; } /* Content above glow */

/* --- Modern Search Bar (Transparent Glass) --- */
.search-container {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.search-wrapper {
  display: flex;
  width: 100%;
  max-width: 600px;
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  overflow: hidden;
  transition: var(--transition);
}

.search-wrapper:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-dim);
}

.search-wrapper input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1rem;
  outline: none;
}

.search-btn {
  padding: 0 1.5rem;
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.search-btn:hover {
  color: var(--secondary);
  background: var(--primary-dim);
}

/* --- FAQ Accordion (Clean & Minimal) --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--dark-card);
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: var(--transition);
}

.acc-header {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.acc-header:hover {
  background: rgba(9, 210, 210, 0.653);
  color: var(--primary);
}

.acc-header::after {
  content: '+';
  font-size: 1.3rem;
  transition: var(--transition);
}

/* Active State for Accordion (Apply this class via JS) */
.faq-item.active .acc-header {
  color: var(--secondary);
  background: rgba(163, 180, 63, 0.655);
}

.faq-item.active .acc-header::after {
  content: '-';
  transform: rotate(180deg);
}

.acc-body {
  max-height: 0; /* Hidden by default */
  overflow: hidden;
  transition: max-height 0.3s ease-out; /* Standard height transition */
  background: rgba(33, 101, 138, 0.523);
  padding: 0 1.5rem; /* Padding only on sides when closed */
}

.faq-item.active .acc-body {
  padding: 1.5rem; /* Full padding when open */
  max-height: 500px; /* Adjust based on content */
}

/* =========================================================
   7. ANIMATIONS & MISC
   ========================================================= */

/* Reveal on Scroll (Use with JS IntersectionObserver) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   8. FOOTER
   ========================================================= */
footer {
  padding: 3rem 8%;
  background: #030508;
  text-align: center;
  color: #78909c;
  font-size: 0.9rem;
  border-top: 1px solid var(--glass-border);
}

/* =========================================================
   9. RESPONSIVE DESIGN BREAKPOINTS
   ========================================================= */
@media (max-width: 992px) {
  nav { padding: 1rem 5%; }
  section { padding: 80px 5%; }
}

@media (max-width: 768px) {
  /* Mobile Menu logic must be handled in HTML/JS */
  .menu { display: none; } 

  .hero-content h1 { font-size: 2.5rem; }
  .hero-content p { font-size: 1rem; }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .btn { margin: 0; width: 100%; }
  
  /* Disable Parallax on Mobile for performance */
  .parallax-section {
    background-attachment: scroll !important;
  }
}


/* --- MODERN DESIGN SYSTEM --- */
:root {
  --primary: #094456;    /* Deep Ocean Blue */
  --secondary: #52ab98;  /* Vibrant Teal */
  --accent: #2b6777;     /* Soft Sea Blue */
  --light-bg: #f8fafc;   /* Modern Light Grey */
  --white: #ffffff;
  --text-main: #334155;  /* Soft Black for readability */
  --glass: rgba(255, 255, 255, 0.85);
  --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
}

body {
  background-color: var(--light-bg);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

/* --- DYNAMIC NAVIGATION --- */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.menu a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.menu a:hover {
  color: var(--secondary);
}

/* --- HERO SECTION --- */
.hero-section {
  height: 85vh;
  background: linear-gradient(135deg, rgba(145, 225, 250, 0.85), rgba(43, 103, 119, 0.8)), 
              url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&q=80') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  clip-path: ellipse(150% 100% at 50% 0%); /* Subtle curved bottom */
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}

/* --- BUTTONS --- */
.btn {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.primary-btn {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(82, 171, 152, 0.4);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(82, 171, 152, 0.6);
}

/* --- DYNAMIC CARDS & GLASSMORPHISM --- */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 3rem;
}

.card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  text-align: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card i {
  background: rgba(75, 158, 140, 0.604);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  color: var(--secondary);
}

/* --- SKELETON LOADER ANIMATION --- */
.loading-span {
  display: inline-block;
  height: 20px;
  width: 100px;
  background: linear-gradient(90deg, #75a5edc0 25%, #5892de 50%, #f0f2f5 75%);
  background-size: 200% 100%;
  animation: pulse 1.5s infinite;
  border-radius: 4px;
  color: transparent;
}

@keyframes pulse {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* --- MAP STYLING --- */
#mapContaziner {
  height: 500px;
  border-radius: 24px;
  border: 8px solid var(--white);
  box-shadow: var(--shadow);
}

/* --- CLEAN REPORT SECTION --- */
.report-section {
  background: var(--white);
  padding: 100px 0;
}

.highlight-box {
  background: #39ad92b5; /* Soft Mint */
  border-left: 5px solid var(--secondary);
  padding: 25px;
  border-radius: 0 15px 15px 0;
  margin: 30px 0;
  font-style: italic;
  color: var(--primary);
}

.service-mini-card {
  background: var(--light-bg);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
}

.service-mini-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
}

/* --- TABLE STYLING --- */
.table-container {
  overflow-x: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

table th {
  background: var(--primary);
  color: var(--white);
  padding: 18px;
  text-align: left;
  font-size: 0.9rem;
}

table td {
  padding: 18px;
  border-bottom: 1px solid #69c1f8b6;
}

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

footer p {
  opacity: 0.6;
  font-size: 0.85rem;
  margin-top: 20px;
}



/* Map Section Background */
.bg-map {
    background-image: linear-gradient(rgba(23, 75, 102, 0.7), rgba(72, 58, 126, 0.7)), 
                      url('http://googleusercontent.com/image_collection/image_retrieval/5773047844855619897');
}

/* Projects Section Background */
.bg-projects {
    background-image: linear-gradient(rgba(76, 95, 169, 0.593), rgba(78, 50, 127, 0.61)), 
                      url('http://googleusercontent.com/image_collection/image_retrieval/17320738125881271694');
}

/* Contact Section Background */
.bg-contact {
    background-image: linear-gradient(rgba(130, 134, 87, 0.9), rgba(47, 86, 98, 0.9)), 
                      url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?q=80&w=2070');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
} 