/* --- RESET & VARIABLES --- */
:root {
  /* Premium Palette */
  --primary: #0f172a;
  /* Deep Navy / Blackish Blue */
  --blue: #2563eb;
  /* Vibrant Royal Blue */
  --blue-dark: #1e40af;
  --accent: #06b6d4;
  /* Cyan for subtle highlights */
  --white: #ffffff;
  --bg-light: #f8fafc;
  /* Very light blue-grey */
  --text-main: #334155;
  --text-light: #64748b;

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--primary);
}

a {
  text-decoration: none;
  transition: 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* --- UTILITIES --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.section-padding {
  padding: 100px 0;
  position: relative;
}

.text-highlight {
  color: var(--blue);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: #eff6ff;
  color: var(--blue);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.section-header.light h2,
.section-header.light p {
  color: var(--white);
}

.section-header.light p {
  opacity: 0.8;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
}

.btn-blue:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  border: 2px solid var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
}

/* --- HEADER --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  transition: 0.3s;
}

header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo i {
  color: var(--blue);
  font-size: 1.8rem;
}

.logo span {
  color: var(--blue);
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.nav-link:hover {
  color: var(--blue);
}

.hamburger {
  display: none;
  font-size: 24px;
  color: var(--primary);
  cursor: pointer;
}

.mobile-only {
  display: none;
}

/* --- HERO --- */
.hero {
  padding-top: 140px;
  padding-bottom: 100px;
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.8rem;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 35px;
  max-width: 550px;
}

.btn-group {
  display: flex;
  gap: 15px;
}

.hero-N-wrapper {
  position: relative;
}

.image-box {
  position: relative;
  border-radius: 30px;
  overflow: visible;
}

.image-box img {
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  transform: perspective(1000px) rotateY(-5deg);
  transition: 0.5s;
}

.image-box:hover img {
  transform: perspective(1000px) rotateY(0deg);
}

.floating-stat {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: var(--white);
  padding: 20px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: float 4s ease-in-out infinite;
}

.floating-stat i {
  font-size: 24px;
  color: var(--blue);
  background: #eff6ff;
  padding: 12px;
  border-radius: 50%;
}

.floating-stat strong {
  display: block;
  font-size: 1.2rem;
  color: var(--primary);
}

.floating-stat span {
  font-size: 0.85rem;
  color: var(--text-light);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* --- FEATURES --- */
.values-section {
  margin-top: -50px;
  padding-bottom: 100px;
  position: relative;
  z-index: 10;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: 0.3s;
  border-top: 4px solid transparent;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--blue);
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: #f1f5f9;
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  transition: 0.3s;
}

.value-card:hover .icon-circle {
  background: var(--blue);
  color: var(--white);
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* --- GLOBAL REACH --- */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.desc {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-item {
  display: flex;
  gap: 20px;
}

.feature-item i {
  font-size: 24px;
  color: var(--blue);
  background: #eff6ff;
  padding: 15px;
  border-radius: 12px;
  height: fit-content;
}

.feature-item h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.feature-item p {
  font-size: 0.95rem;
  color: var(--text-light);
}

.tilt-wrapper {
  perspective: 1000px;
}

.tilt-wrapper img {
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  transform: rotateY(5deg);
  transition: 0.5s;
  width: 100%;
}

.tilt-wrapper:hover img {
  transform: rotateY(0deg);
}

/* --- DISCOVER --- */
.discover-section {
  background: var(--bg-light);
}

.discover-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--primary);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.discover-text {
  padding: 80px 60px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.discover-text h3 {
  font-size: 2.5rem;
  margin: 15px 0 20px;
  color: var(--white);
}

.discover-text p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  line-height: 1.7;
}

.discover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- TEAM --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.team-card {
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: 0.3s;
  border: 1px solid #f1f5f9;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.member-photo {
  width: 100%;
  height: 250px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.team-card:hover .member-photo img {
  transform: scale(1.05);
}

.designation {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 5px;
}

.company {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.socials a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #f8fafc;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
}

.socials a:hover {
  background: var(--blue);
  color: var(--white);
}

/* --- VIDEO --- */
.video-section {
  padding: 100px 0;
  background: #000;
  text-align: center;
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
}

.video-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.video-frame video {
  width: 100%;
  display: block;
}

/* Center Play Button */
.center-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue);
  border: none;
  font-size: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2);
  transition: 0.3s;
  z-index: 5;
}

.center-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--white);
  box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.3);
}

.center-play-btn.hide {
  opacity: 0;
  pointer-events: none;
}

/* Top-Right Mute Overlay */
.mute-toggle-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 6;
  transition: 0.3s;
  backdrop-filter: blur(4px);
}

.mute-toggle-overlay:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
}

/* Video Control Bar */
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transition: 0.3s;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.video-frame:hover .video-controls {
  opacity: 1;
}

.control-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
}

.control-btn:hover {
  color: var(--blue);
  transform: scale(1.1);
}

.volume-slider {
  width: 120px;
  cursor: pointer;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: var(--blue);
  border-radius: 50%;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: 0.2s;
}

.volume-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* --- AUTH PAGES (Login, Signup, etc) --- */
.auth-body {
  /* Premium Abstract Background Image */
  background: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?q=80&w=2564&auto=format&fit=crop') no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  z-index: 1;
}

/* Dark overlay to ensure text readability */
.auth-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.4); /* Dark blue tint */
  z-index: -1;
}

.auth-body::after {
  display: none;
}

.auth-card {
  /* Ultra-Glass Look */
  background: rgba(255, 255, 255, 0.05); /* Extremely transparent */
  backdrop-filter: blur(40px); /* Heavy blur */
  -webkit-backdrop-filter: blur(40px);
  padding: 30px 40px; /* Reduced vertical padding */
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
  max-width: 480px; /* Slightly wider */
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 10;
  overflow: hidden;
  transition: transform 0.3s;
}

/* Shine effect on card */
.auth-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: skewX(-20deg);
  animation: shine 8s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

/* Text Colors - Switch to White for Glass on Dark */
.auth-logo {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px; /* Reduced margin */
  text-decoration: none;
  text-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.auth-logo i {
  color: #fff;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.5));
}

.auth-logo span {
  color: #fff;
  opacity: 0.9;
}

.auth-title {
  font-size: 1.8rem; /* Slightly smaller */
  margin-bottom: 5px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.auth-subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px; /* Significantly reduced margin */
  font-size: 0.95rem;
  font-weight: 300;
}

.form-group {
  margin-bottom: 15px; /* Compact spacing */
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
  margin-left: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}

/* Glassy Inputs */
.form-input {
  width: 100%;
  padding: 12px 15px; /* More compact inputs */
  background: rgba(255, 255, 255, 0.05); /* Very see-through */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-size: 0.95rem;
  color: #fff;
  transition: all 0.3s ease;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  outline: none;
}

/* Premium Button */
.auth-btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 15px;
  /* Gradient Blue Background */
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border: none;
  color: #ffffff;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.auth-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: 0.5s;
}

.auth-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
}

.auth-btn:hover::before {
  transform: translateX(100%);
}
/* Success Button */
.success-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 15px;
    /* Gradient Blue Background */
    background: linear-gradient(135deg, var(--blue) 0%, #25ebd0 100%);
    border: none;
    color: #ffffff;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

    .success-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transform: translateX(-100%);
        transition: 0.5s;
    }

    .success-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
        background: linear-gradient(135deg, var(--blue-dark) 0%, #25ebd0 100%);
    }

        .success-btn:hover::before {
            transform: translateX(100%);
        }
.auth-links {
  margin-top: 35px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  padding: 0;
  border: none;
}

.auth-links a {
  color: #fff;
  font-weight: 700;
  margin-left: 6px;
  text-decoration: none;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: 0.3s;
}

.auth-links a:hover {
  border-bottom-color: #fff;
  text-shadow: 0 0 10px rgba(255,255,255,0.6);
}

.forgot-link {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.forgot-link:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(255,255,255,0.4);
  transform: translateX(-3px);
}

.auth-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: 0.3s;
}

.auth-links a:hover::after {
  width: 100%;
}

.otp-inputs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}


.otp-field {
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  color: #fff;
  transition: all 0.3s;
}

.otp-field:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  outline: none;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.password-container {
  position: relative;
  width: 100%;
}

.toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  z-index: 10;
  transition: color 0.3s;
}

.toggle-password:hover {
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

/* Eye Blink Animation for Toggle */
@keyframes eyeBlink {
  0% { transform: translateY(-50%) scaleY(1); }
  50% { transform: translateY(-50%) scaleY(0.1); }
  100% { transform: translateY(-50%) scaleY(1); }
}

.toggle-password.animate {
  animation: eyeBlink 0.5s ease;
}

/* Input Revealed State */
.form-input.revealed {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
  letter-spacing: 0.5px;
  color: #fff;
  font-weight: 500;
}

/* --- WORKFLOW --- */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline .line {
  position: absolute;
  width: 4px;
  background: #e2e8f0;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 4px;
}

.timeline-item {
  padding: 20px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

/* Dots on line */
.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--white);
  border: 4px solid var(--blue);
  border-radius: 50%;
  top: 30px;
  z-index: 1;
}

.timeline-item.left::after {
  right: -12px;
}

.timeline-item.right::after {
  left: -12px;
}

.timeline-item .content {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
  position: relative;
}

.timeline-item:hover .content {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.date-badge {
  display: inline-block;
  background: #eff6ff;
  color: var(--blue);
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.read-more {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 15px;
  display: inline-block;
}

/* --- TESTIMONIALS --- */
.testimonials-section {
  background: var(--primary);
  color: var(--white);
}

.big-icon {
  font-size: 40px;
  color: var(--blue);
  margin-bottom: 20px;
}

.testimonial-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.quote {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.7;
  opacity: 0.9;
}

.user-details {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.user-details i {
  font-size: 35px;
  color: var(--blue);
}

.user-details h5 {
  margin: 0;
  font-size: 1rem;
  color: var(--white);
}

.user-details span {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* --- PARTNERS --- */
.partner-banner {
  background: var(--white);
  padding: 60px;
  text-align: center;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid #f1f5f9;
}

.quote-box i {
  font-size: 40px;
  color: #e2e8f0;
  margin-bottom: 15px;
  display: block;
}

.quote-box h3 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.quote-box p {
  font-size: 1.1rem;
  color: var(--text-light);
}

/* --- PRODUCTS --- */
.products-section {
  background: #f8fafc;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid #eee;
}

.product-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.prod-icon {
  width: 60px;
  height: 60px;
  background: #eff6ff;
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}

.product-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* --- FOOTER --- */
footer {
  background: #020617;
  color: #94a3b8;
  padding: 80px 0 0;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.map-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg');
  background-size: cover;
  opacity: 0.03;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 0.8fr 0.8fr;
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

/* Adjustment for 5 columns layout in footer */
.footer-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  display: block;
}

.footer-brand span {
  color: var(--blue);
}

.footer-widget h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.1rem;
  border-left: 3px solid var(--blue);
  padding-left: 12px;
}

.contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.contact-list i {
  color: var(--blue);
  margin-top: 4px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #94a3b8;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--blue);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 25px 0;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: var(--white);
  opacity: 0.7;
  transition: 0.3s;
  font-size: 1.1rem;
}

.social-icons a:hover {
  color: var(--blue);
  opacity: 1;
  transform: translateY(-3px);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    margin-bottom: 40px;
  }

  .btn-group {
    justify-content: center;
  }

  .hero-image-wrapper {
    max-width: 80%;
    margin: 0 auto;
  }

  .image-box img {
    transform: none !important;
  }

  .split-layout {
    grid-template-columns: 1fr;
  }

  .discover-card {
    grid-template-columns: 1fr;
  }

  .discover-image {
    height: 300px;
  }

  .timeline .line {
    left: 30px;
    transform: none;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 0;
    text-align: left !important;
  }

  .timeline-item.left,
  .timeline-item.right {
    left: 0;
  }

  .timeline-item::after {
    left: 21px;
    right: auto;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
    margin-top: 10px;
    width: 100%;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .floating-stat {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    width: 90%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* --- EXTRA MOBILE RESPONSIVENESS (< 576px) --- */
@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.3rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .btn {
    width: 100%; /* Full width buttons on small mobile */
    display: flex;
    margin-bottom: 10px;
  }

  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .auth-card {
    padding: 25px 20px;
    border-width: 1px;
    margin: 0;
    max-width: 100%;
  }

  .auth-body {
    padding: 15px;
    align-items: center;
    /* Center it, but if height is small, rely on min-height */
  }

  .auth-title {
    font-size: 1.5rem;
  }

  .otp-inputs {
    gap: 8px;
  }

  .otp-field {
    width: 45px;
    height: 50px;
    font-size: 1.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-widget h4 {
    border-left: none;
    padding-left: 0;
    text-decoration: underline;
    text-decoration-color: var(--blue);
    text-underline-offset: 5px;
  }

  .contact-list li {
    justify-content: center;
  }

  .discover-text {
    padding: 40px 20px;
    text-align: center;
  }

  .discover-text h3 {
    font-size: 2rem;
  }
}

/* --- LANDSCAPE / SHORT SCREEN ADJUSTMENTS --- */
@media (max-height: 500px) and (orientation: landscape) {
  .auth-body {
    align-items: flex-start;
    padding: 20px;
  }

  .auth-card {
    margin-top: 0;
  }
}
