/* ============================================
   GeoSpark Technocrats - Main Stylesheet
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============ CSS Variables ============ */
:root {
  --primary: #0F4C81;
  --primary-light: #1a6ab8;
  --primary-dark: #0a3560;
  --secondary: #1CB5E0;
  --accent: #F7941D;
  --accent-dark: #e07e0d;
  --success: #28A745;
  --bg: #F8FAFC;
  --dark: #1D2939;
  --dark2: #101828;
  --text: #475467;
  --text-light: #667085;
  --white: #ffffff;
  --border: rgba(15,76,129,0.12);
  --shadow-sm: 0 2px 12px rgba(15,76,129,0.08);
  --shadow-md: 0 8px 32px rgba(15,76,129,0.14);
  --shadow-lg: 0 20px 60px rgba(15,76,129,0.18);
  --shadow-xl: 0 30px 80px rgba(15,76,129,0.22);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient: linear-gradient(135deg, #0F4C81 0%, #1CB5E0 100%);
  --gradient-dark: linear-gradient(135deg, #0a3560 0%, #0F4C81 100%);
  --gradient-accent: linear-gradient(135deg, #F7941D 0%, #f4c531 100%);
  --glass-bg: rgba(255,255,255,0.12);
  --glass-border: rgba(255,255,255,0.2);
}

/* ============ Reset & Base ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

/* ============ Scroll Progress Bar ============ */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-accent);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ============ Custom Cursor ============ */
#cursor-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%,-50%);
  transition: transform 0.1s ease, background 0.3s;
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 2px solid rgba(15,76,129,0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.18s ease, width 0.3s, height 0.3s, border-color 0.3s;
}

/* ============ Loading Screen ============ */
#loader {
  position: fixed;
  inset: 0;
  background: var(--dark2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.loader-logo span { color: var(--secondary); }
.loader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: var(--gradient-accent);
  border-radius: 2px;
  animation: loadBar 1.8s ease forwards;
}
@keyframes loadBar { from { width: 0; } to { width: 100%; } }

/* ============ Navbar ============ */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
  background: transparent;
}
#mainNav.scrolled {
  background: rgba(15,76,129,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white) !important;
}
.navbar-brand .brand-geo { color: var(--secondary); }
.navbar-brand .brand-sub { font-size: 0.7rem; font-weight: 400; display: block; color: rgba(255,255,255,0.8); letter-spacing: 2px; text-transform: uppercase; }

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.9) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.5rem 1rem !important;
  position: relative;
  letter-spacing: 0.3px;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 60%; }
.navbar-nav .nav-link:hover { color: var(--white) !important; }

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 30px;
  padding: 0.5rem 1.4rem !important;
  font-weight: 600;
  margin-left: 0.5rem;
  box-shadow: 0 4px 15px rgba(247,148,29,0.4);
}
.nav-cta:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(247,148,29,0.5);
}
.nav-cta::after { display: none !important; }

.navbar-toggler {
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  padding: 0.3rem;
}
.navbar-toggler:focus { box-shadow: none; }

/* ============ Hero Section ============ */
#hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--dark2);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #061b35 0%, #0F4C81 50%, #1CB5E0 100%);
  z-index: 0;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1600&auto=format&fit=crop&q=60');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 1;
}
.hero-particles { position: absolute; inset: 0; z-index: 2; overflow: hidden; }
.hero-content { position: relative; z-index: 5; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title .text-highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary-custom {
  background: var(--accent);
  color: var(--white);
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 6px 25px rgba(247,148,29,0.45);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary-custom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.btn-primary-custom:hover::before { transform: scaleX(1); }
.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(247,148,29,0.55);
  color: var(--white);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.btn-outline-custom:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-3px);
  color: var(--white);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat .num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat .num span { color: var(--accent); }
.hero-stat .lbl {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0.2rem;
}

/* Hero visual cards */
.hero-visual { position: relative; z-index: 5; }
.hero-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  padding: 1rem;
}
.hero-img-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.hero-img-card:hover { transform: scale(1.03); }
.hero-img-card img { width: 100%; height: 200px; object-fit: cover; }
.hero-img-card:first-child { grid-column: 1 / -1; }
.hero-img-card:first-child img { height: 240px; }
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,76,129,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.hero-img-card:hover .hero-img-overlay { opacity: 1; }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-wheel {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}
.scroll-wheel::after {
  content: '';
  width: 4px; height: 8px;
  background: var(--accent);
  border-radius: 2px;
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  animation: scrollAnim 2s infinite;
}
@keyframes scrollAnim {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

/* ============ Section Styles ============ */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-title span { color: var(--primary); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-divider {
  width: 60px; height: 4px;
  background: var(--gradient);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}
.text-center .section-divider { margin: 1rem auto 1.5rem; }

/* Wave SVG divider */
.wave-divider { line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; }

/* ============ Stats Counter Section ============ */
#stats { background: var(--primary); position: relative; overflow: hidden; }
#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-card-hero {
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.stat-icon-wrap {
  width: 70px; height: 70px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.stat-card-hero:hover .stat-icon-wrap {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotateY(10deg) scale(1.1);
}
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-num-suffix { color: var(--accent); }
.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.5rem;
}

/* ============ About Section ============ */
#about { background: var(--white); }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-img-wrap img { width: 100%; height: 500px; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 160px;
}
.about-badge .badge-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.about-badge .badge-num span { color: var(--accent); }
.about-badge .badge-txt { font-size: 0.8rem; color: var(--text-light); margin-top: 0.3rem; }

.value-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15,76,129,0.07);
  color: var(--primary);
  border-radius: 30px;
  padding: 0.4rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0.3rem;
  transition: var(--transition);
}
.value-chip:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.value-chip i { font-size: 0.9rem; color: var(--accent); }

.leadership-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.leadership-card h6 {
  color: var(--primary);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.leader-item { display: flex; gap: 0.75rem; margin-bottom: 0.8rem; align-items: flex-start; }
.leader-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; flex-shrink: 0; margin-top: 0.5rem; }
.leader-name { font-weight: 600; color: var(--dark); font-size: 0.9rem; }
.leader-title { font-size: 0.8rem; color: var(--text-light); }

/* ============ Services Section ============ */
#services { background: var(--bg); }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0;
  background: var(--gradient);
  border-radius: 0 0 4px 4px;
  transition: height 0.4s ease;
}
.service-card:hover::before { height: 100%; width: 4px; top: 0; }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(15,76,129,0.1) 0%, rgba(28,181,224,0.1) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gradient);
  transform: scale(1.1) rotate(5deg);
}
.service-card:hover .service-icon i { color: var(--white) !important; }
.service-card h4 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.8rem;
}
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.service-sub-list { margin-top: 1rem; padding-left: 0; }
.service-sub-list li {
  font-size: 0.85rem;
  color: var(--text);
  padding: 0.2rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-sub-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============ Industries Section ============ */
#industries { background: var(--white); }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.25rem;
}
.industry-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1rem;
  text-align: center;
  cursor: default;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.industry-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.industry-card:hover::after { opacity: 1; }
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.industry-card:hover .ind-icon,
.industry-card:hover .ind-name { color: var(--white) !important; position: relative; z-index: 1; }
.ind-icon { font-size: 2.2rem; color: var(--primary); margin-bottom: 0.8rem; transition: var(--transition); position: relative; z-index: 1; }
.ind-name { font-size: 0.88rem; font-weight: 600; color: var(--dark); transition: var(--transition); position: relative; z-index: 1; }

/* ============ Projects Section ============ */
#projects { background: var(--bg); }
.project-filters { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  padding: 0.5rem 1.4rem;
  border: 2px solid var(--border);
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: var(--transition);
  height: 100%;
}
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.project-img-wrap { position: relative; overflow: hidden; height: 260px; }
.project-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.project-card:hover .project-img-wrap img { transform: scale(1.08); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,76,129,0.9) 0%, rgba(15,76,129,0.3) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.5rem;
}
.project-info { padding: 1.5rem; }
.project-info h5 { font-size: 1.05rem; color: var(--dark); margin-bottom: 0.4rem; }
.project-info p { font-size: 0.85rem; color: var(--text-light); }

/* ============ Testimonials Section ============ */
#testimonials { background: var(--primary); position: relative; overflow: hidden; }
.testimonial-slider-wrap { position: relative; }
.testimonial-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin: 1rem;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}
.stars { color: #FFD700; font-size: 1rem; margin-bottom: 1.2rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-name { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--white); font-size: 1rem; }
.author-role { font-size: 0.82rem; color: rgba(255,255,255,0.65); }

/* ============ Why Choose Us ============ */
#why-us { background: var(--white); }
.feature-card {
  display: flex;
  gap: 1.2rem;
  padding: 1.8rem;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  margin-bottom: 1.25rem;
}
.feature-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
  border-color: var(--primary);
}
.feature-icon-wrap {
  width: 52px; height: 52px;
  background: var(--gradient);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  flex-shrink: 0;
}
.feature-card h5 { font-size: 1rem; color: var(--dark); margin-bottom: 0.3rem; }
.feature-card p { font-size: 0.87rem; color: var(--text-light); margin: 0; }

.timeline-item {
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 2rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 10px; top: 28px;
  width: 2px;
  height: calc(100% - 28px);
  background: var(--border);
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  position: absolute;
  left: 0; top: 4px;
  width: 22px; height: 22px;
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: 50%;
  transition: var(--transition);
}
.timeline-item:hover .timeline-dot { background: var(--accent); border-color: var(--accent); }
.timeline-content h6 { font-size: 1rem; color: var(--dark); margin-bottom: 0.3rem; }
.timeline-content p { font-size: 0.87rem; color: var(--text-light); }

/* ============ Values Section ============ */
#values { background: var(--bg); }
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.value-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.value-card-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(15,76,129,0.1), rgba(28,181,224,0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.2rem;
  transition: var(--transition);
}
.value-card:hover .value-card-icon { background: var(--gradient); }
.value-card:hover .value-card-icon i { color: var(--white) !important; }
.value-card h5 { font-size: 1rem; color: var(--dark); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* ============ FAQ Section ============ */
#faq { background: var(--white); }
.faq-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md) !important;
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--dark);
  background: var(--white);
  padding: 1.2rem 1.5rem;
  box-shadow: none !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(15,76,129,0.04);
}
.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230F4C81'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-body {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
  padding: 0 1.5rem 1.2rem;
}

/* ============ Contact Section ============ */
#contact { background: var(--bg); }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 48px; height: 48px;
  background: var(--gradient);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.contact-info-item h6 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-light); margin-bottom: 0.2rem; }
.contact-info-item p, .contact-info-item a { font-size: 0.95rem; color: var(--dark); font-weight: 500; margin: 0; }

.form-control-custom {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  margin-bottom: 1rem;
}
.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15,76,129,0.1);
}
.form-control-custom::placeholder { color: var(--text-light); }
textarea.form-control-custom { resize: vertical; min-height: 130px; }

.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ============ Footer ============ */
#footer { background: var(--dark2); color: rgba(255,255,255,0.8); }
.footer-top { padding: 70px 0 50px; }
.footer-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand span { color: var(--secondary); }
.footer-desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.8; max-width: 300px; }
.footer-h { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 1.25rem; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-links a::before { content: '→'; color: var(--accent); opacity: 0; transition: var(--transition); }
.footer-links a:hover::before { opacity: 1; }

.footer-newsletter .form-inline {
  display: flex;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  overflow: hidden;
  padding: 4px;
}
.footer-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  color: var(--white);
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.footer-newsletter button {
  background: var(--accent);
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.footer-newsletter button:hover { background: var(--accent-dark); }

.social-links { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  font-size: 0.95rem;
}
.social-link:hover { background: var(--accent); color: var(--white); transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
}
.footer-bottom p { font-size: 0.83rem; color: rgba(255,255,255,0.45); margin: 0; }

/* ============ Floating Buttons ============ */
#whatsapp-btn {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}
#whatsapp-btn:hover { transform: scale(1.1); color: var(--white); }

#back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
  cursor: pointer;
  border: none;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--accent); }

/* ============ Floating Contact CTA ============ */
.floating-contact {
  position: fixed;
  left: 0; top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fc-btn {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 1rem 0.5rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: block;
}
.fc-btn:hover { background: var(--accent); color: var(--white); }
.fc-btn:first-child { border-radius: 0 var(--radius-sm) 0 0; }
.fc-btn:last-child { border-radius: 0 0 var(--radius-sm) 0; }

/* ============ Animation Classes ============ */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.scale-in { opacity: 0; transform: scale(0.85); transition: opacity 0.6s ease, transform 0.6s ease; }
.in-view.fade-up, .in-view.fade-left, .in-view.fade-right { opacity: 1; transform: none; }
.in-view.scale-in { opacity: 1; transform: scale(1); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============ Misc Utilities ============ */
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-accent { color: var(--accent); }
.bg-primary-custom { background: var(--primary); }
.divider-line { width: 100%; height: 1px; background: var(--border); margin: 2rem 0; }

/* Glowing blob */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: blobMove 8s ease-in-out infinite;
}
@keyframes blobMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.1); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Mouse glow effect */
.mouse-glow {
  position: fixed;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(28,181,224,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: left 0.2s ease, top 0.2s ease;
}

/* Typing cursor */
.typed-cursor { color: var(--accent); }

/* Section background patterns */
.bg-dots {
  background-image: radial-gradient(var(--border) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

/* Trusted by logos ticker */
.logo-ticker-wrap {
  overflow: hidden;
  padding: 1.5rem 0;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.logo-ticker {
  display: flex;
  gap: 4rem;
  animation: ticker 25s linear infinite;
  width: max-content;
}
.logo-ticker-item {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-ticker-item i { color: var(--accent); }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Vision Mission cards */
.vm-card {
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  height: 100%;
  transition: var(--transition);
}
.vm-card-mission {
  background: var(--gradient);
  color: var(--white);
}
.vm-card-vision {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.vm-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.vm-card .vm-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}
.vm-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.vm-card ul { padding-left: 0; }
.vm-card ul li {
  padding: 0.35rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
}
.vm-card-mission ul li { color: rgba(255,255,255,0.9); }
.vm-card-mission ul li::before { content: '✓'; color: var(--accent); font-weight: 700; }
.vm-card-vision ul li { color: var(--text); }
.vm-card-vision ul li::before { content: '→'; color: var(--primary); font-weight: 700; }

/* Particle canvas */
#particle-canvas { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
