/* ===================== RESET & BASE ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0e2a4d;
  --navy-dark: #0a1f3a;
  --blue: #1565c0;
  --blue-light: #1976d2;
  --gold: #ffc926;
  --green: #2e9e44;
  --green-dark: #1f7a32;
  --orange: #fb8c00;
  --purple: #7b2cbf;
  --gray-text: #5b6b7d;
  --gray-bg: #f3f6f9;
  --border-light: #e3e8ee;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: #2c3a4a;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
}

/* =========================================================
   MARKETING ANIMATIONS & REVEALS (NEW EFFECT)
   ========================================================= */
.js-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.js-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth Premium Floating Effect for Hero Elements */
@keyframes softFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes badgePulse {
  0% { transform: scale(1); box-shadow: 0 6px 18px rgba(0,0,0,0.25); }
  50% { transform: scale(1.03); box-shadow: 0 10px 25px rgba(46, 158, 68, 0.4); }
  100% { transform: scale(1); box-shadow: 0 6px 18px rgba(0,0,0,0.25); }
}

/* ===================== HEADER ===================== */
.site-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

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

.logo-img {
  height: 56px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover .logo-img {
  transform: rotate(-5deg) scale(1.05);
}

.logo-text { display: flex; flex-direction: column; line-height: 1.2; }

.logo-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 26px;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.logo-sub {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 11.5px;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.logo-tag {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.4px;
  color: #33414f;
  padding: 10px 16px;
  border-radius: 4px;
  position: relative;
  transition: all .3s ease;
}

.main-nav a:hover { 
  color: var(--blue);
  background: rgba(21, 101, 192, 0.05);
}

.main-nav a.active {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 12px rgba(21, 101, 192, 0.2);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--navy);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.nav-toggle:active {
  transform: scale(0.9);
}

/* ===================== HERO ===================== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 70px 0 160px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.hero-text { 
  flex: 1; 
  max-width: 50%;
  color: #fff; 
  position: relative; 
  z-index: 2; 
}

.hero-text h1 {
  font-size: 44px;
  line-height: 1.2;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.hero-text h1 .highlight { color: var(--gold); }

.hero-divider {
  width: 70px;
  height: 4px;
  background: var(--blue-light);
  margin: 22px 0 26px;
  border-radius: 2px;
}

.hero-points li {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 19px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  transition: transform 0.2s ease;
}

.hero-points li:hover {
  transform: translateX(5px);
}

.hero-points i {
  color: var(--gold);
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  padding: 12px 22px;
  border-radius: 30px;
  margin-top: 28px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  animation: badgePulse 3s infinite ease-in-out;
}

.hero-badge .flag {
  width: 26px;
  height: 18px;
  border-radius: 2px;
  flex-shrink: 0;
}

.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%; 
  height: 100%;
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 70% 100%;
  border-bottom-left-radius: 20% 50%;
  border-left: 12px solid #0056b3; 
  animation: softFloat 6s ease-in-out infinite;
}

/* ===================== SERVICE CARDS ===================== */
.cards-section {
  background: linear-gradient(to bottom, transparent 100px, var(--gray-bg) 100px);
  padding: 0 0 60px;
  margin-top: -100px; 
  position: relative;
  z-index: 10; 
}

.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.service-card {
  flex: 1 1 calc(33.333% - 19px);
  min-width: 280px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.11);
  text-align: center;
  padding-bottom: 30px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Premium Card Hover Impact */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(14, 42, 77, 0.16);
}

.card-img-wrap {
  position: relative;
  height: 220px;
  background: #eef2f6;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .card-img-wrap img {
  transform: scale(1.06);
}

.card-icon {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  border: 4px solid #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.service-card:hover .card-icon {
  transform: translateX(-50%) scale(1.1);
}

.card-blue .card-icon { background: var(--blue); }
.card-green .card-icon { background: var(--green); }
.card-orange .card-icon { background: var(--orange); }

.service-card h3 {
  margin-top: 46px;
  font-size: 21px;
  letter-spacing: 0.5px;
}

.card-blue h3 { color: var(--blue); }
.card-green h3 { color: var(--green); }
.card-orange h3 { color: var(--orange); }

.service-card p {
  color: var(--gray-text);
  font-size: 14.5px;
  margin: 14px 30px 24px;
}

/* Interactive Magnetic Button Feel */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.5px;
  padding: 12px 30px;
  border-radius: 6px;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.btn:hover::after {
  transform: translateX(0);
}

.btn-blue { background: var(--blue); }
.btn-green { background: var(--green); }
.btn-orange { background: var(--orange); }

/* ===================== FEATURES STRIP ===================== */
.features-section {
  background: #fff;
  padding: 0 0 60px;
}

.features-grid {
  background: var(--gray-bg);
  border-radius: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 34px 30px;
}

.feature-item { 
  flex: 1 1 calc(25% - 18px); 
  min-width: 220px; 
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 19px;
  transition: transform 0.4s ease;
}

.feature-item:hover .feature-icon {
  transform: rotate(360deg);
}

.icon-blue { background: var(--blue); }
.icon-green { background: var(--green); }
.icon-purple { background: var(--purple); }
.icon-orange { background: var(--orange); }

.feature-item h4 {
  font-size: 15px;
  margin-bottom: 4px;
  color: #1c2b3a;
}

.feature-item p {
  font-size: 13px;
  color: var(--gray-text);
}

/* ===================== ABOUT ===================== */
.about-section {
  padding: 20px 0 80px;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.about-img-wrap { flex: 1 1 380px; overflow: hidden; border-radius: 14px; }
.about-content { flex: 1 1 380px; }

.about-img-wrap img {
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(20,40,70,0.15);
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-wrap:hover img {
  transform: scale(1.04);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--blue);
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 30px;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 18px;
}

.about-content p {
  color: var(--gray-text);
  font-size: 15px;
  margin-bottom: 30px;
}

.stats-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.stat:hover {
  transform: scale(1.05);
}

.stat i { font-size: 26px; }

.icon-blue-text { color: var(--blue); }
.icon-green-text { color: var(--green); }
.icon-orange-text { color: var(--orange); }

.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 19px;
  color: #1c2b3a;
}

.stat span {
  font-size: 12.5px;
  color: var(--gray-text);
}

/* ===================== WHATSAPP BAR ===================== */
.whatsapp-bar {
  background: linear-gradient(90deg, var(--green-dark), var(--green));
}

.whatsapp-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px 20px;
}

.whatsapp-left {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.whatsapp-left i {
  font-size: 30px;
}

.whatsapp-left span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
}

.whatsapp-number {
  background: var(--gold);
  color: #1c2b3a;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  padding: 10px 26px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.whatsapp-number:hover { 
  transform: scale(1.06); 
  box-shadow: 0 6px 20px rgba(255, 201, 38, 0.4);
}

/* =========================================================
   100% RESPONSIVE MEDIA QUERIES (KHOSOORAT MULTI-DEVICE VIEW)
   ========================================================= */

/* 1. Laptop & Small Desktop (Max-width 1099px) */
@media (max-width: 1099px) {
  .hero-text h1 { font-size: 38px; }
  .main-nav a { padding: 10px 12px; font-size: 13px; }
  .logo-title { font-size: 22px; }
}

/* 2. Tablet Portrait (Max-width 991px) */
@media (max-width: 991px) {
  .hero { padding: 50px 0 100px; display: flex; flex-direction: column; }
  .hero-inner { flex-direction: column; text-align: center; gap: 30px; }
  
  .hero-text { max-width: 100%; order: 1; }
  .hero-divider { margin: 20px auto; }
  .hero-points { display: inline-block; text-align: left; }
  .hero-points li { justify-content: flex-start; }
  
  .hero-media { position: relative; width: 80%; height: 350px; order: 2; margin: 0 auto; }
  .hero-img { border-radius: 20px; border: none; box-shadow: 0 10px 30px rgba(0,0,0,0.2); animation: none; }

  .service-card { flex: 1 1 calc(50% - 15px); }
  .about-img-wrap, .about-content { flex: 1 1 100%; text-align: center; }
  .about-grid { gap: 30px; }
  .stats-row { justify-content: center; }
  
  .feature-item { flex: 1 1 calc(50% - 12px); }
}

/* 3. Mobile Devices (Max-width 768px) */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    border-top: 1px solid var(--border-light);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; padding: 15px 20px; gap: 8px; }
  .main-nav a { display: block; padding: 14px 16px; background: var(--gray-bg); border-radius: 6px; text-align: center; font-size: 14.5px; }
  .main-nav a.active, .main-nav a:hover { background: var(--blue); color: #fff; }
  
  .header-inner { flex-wrap: wrap; position: relative; }
  
  .hero { padding: 40px 0 80px; }
  .hero-text h1 { font-size: 34px; }
  .hero-media { width: 100%; height: 300px; }
  
  .cards-section { margin-top: -40px; background: linear-gradient(to bottom, transparent 40px, var(--gray-bg) 40px); }
  .service-card { flex: 1 1 100%; }
  
  .features-grid { padding: 25px 20px; }
  .feature-item { text-align: center; flex-direction: column; align-items: center; }
  
  .about-img-wrap img { height: 280px; }
  .stats-row { background: var(--gray-bg); padding: 20px; border-radius: 12px; gap: 20px; flex-direction: column; }
  .stat { flex-direction: column; text-align: center; gap: 5px; }

  .whatsapp-inner { flex-direction: column; text-align: center; gap: 14px; }
  .whatsapp-left { flex-direction: column; gap: 8px; }
}

/* 4. Small Mobile (Max-width 480px) */
@media (max-width: 480px) {
  .header-inner { padding: 10px 15px; }
  .logo-title { font-size: 18px; }
  .logo-sub { font-size: 8px; }
  .logo-tag { font-size: 8px; }
  .logo-img { height: 40px; }
  
  .hero-text h1 { font-size: 28px; }
  .hero-points li { font-size: 15px; justify-content: center; text-align: center; }
  .hero-points { display: flex; flex-direction: column; }
  .hero-badge { font-size: 12px; padding: 12px 18px; flex-direction: column; gap: 8px; width: 100%; animation: none; }
  .hero-media { height: 240px; margin-top: 10px; }
  
  .feature-item { flex: 1 1 100%; }
  
  .card-img-wrap { height: 180px; }
  .about-content h2 { font-size: 24px; }
  .whatsapp-left span { font-size: 15px; }
  .whatsapp-number { width: 100%; max-width: 100%; display: block; }
}