:root {
  --primary-color: #002147; /* Royal Blue */
  --secondary-color: #ffb300; /* UAE Gold */
  --dark-bg: #111111;
  --light-bg: #f4f6f8;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --font-main: "Manrope", sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.3);
  --shadow-lg: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--light-bg);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Utilities */
.text-brand {
  color: var(--primary-color) !important;
}
.bg-brand {
  background-color: var(--primary-color) !important;
  color: white !important;
}
.text-accent {
  color: var(--secondary-color) !important;
}
.bg-accent {
  background-color: var(--secondary-color) !important;
  color: #000 !important;
}

/* Buttons */
.btn {
  border-radius: 8px;
  padding: 12px 28px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-primary {
  background: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  color: #000;
}

.btn-primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 179, 0, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* Glassmorphism Card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
}

/* Navbar */
.navbar {
  padding-top: 20px;
  padding-bottom: 20px;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.navbar.scrolled {
  padding-top: 15px;
  padding-bottom: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-link {
  font-weight: 600;
  color: var(--text-dark) !important;
  margin: 0 10px;
  position: relative;
  font-size: 0.95rem;
  border-radius: 8px;
}
.nav-link:hover {
  background-color: var(--secondary-color);
  border-radius: 8px;
}

/*.nav-link::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  width: 0;*/
/*  height: 2px;*/
/*  bottom: 0;*/
/*  left: 0;*/
/*  background-color: var(--secondary-color);*/
/*  transition: width 0.3s ease;*/
/*}*/

/*.nav-link:hover::after,*/
/*.nav-link.active::after {*/
/*  width: 100%;*/
/*}*/

/* Hero Section */
.hero-section {
  padding: 180px 0 100px;
  background: linear-gradient(135deg, #002147 0%, #00152e 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

/* Abstract Background Shapes */
.hero-section::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 179, 0, 0.15) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 24px;
}

/* Service Cards */
.feature-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
  border-color: var(--secondary-color);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--secondary-color);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover::before {
  opacity: 1;
}

.icon-box {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 16px;
  font-size: 2.5rem;
  margin-bottom: 24px;
  transition: var(--transition);
  box-shadow: 0 10px 20px rgba(0, 33, 71, 0.2);
}

.feature-card:hover .icon-box {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: scale(1.05) rotate(3deg);
}

/* Process Section */
.process-step {
  position: relative;
  padding: 20px;
  text-align: center;
  z-index: 2;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 25px;
  position: relative;
  z-index: 2;
  border: 4px solid #fff;
  box-shadow: 0 0 0 4px #f4f6f8; /* Double ring effect */
}

/* Connecting Line */
.process-line {
  position: relative;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 50px; /* Aligns with center of 60px circle + padding top approx */
  left: 50%;
  width: 100%;
  height: 3px;
  background: #e9ecef;
  z-index: 1;
  transform: translateY(-50%);
}

.process-line:last-child::before {
  display: none;
}

/* Ensure line is hidden on mobile */
@media (max-width: 767.98px) {
  .process-line::before {
    display: none;
  }
  .process-step {
    margin-bottom: 30px;
  }
}

/* Stats */
.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1050;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: white !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.float-btn:hover {
  transform: scale(1.1) rotate(10deg);
}

.whatsapp-btn {
  background-color: #25d366;
  animation: pulse-green 2s infinite;
}

.call-btn {
  background-color: var(--secondary-color);
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive Block */
@media (max-width: 991px) {
  .hero-section {
    padding: 120px 0 60px;
    text-align: center;
  }
  .hero-content {
    margin-bottom: 40px;
  }
  .hero-section::before {
    display: none;
  }
}

/* Testimonials */
.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%; /* For grid consistency */
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stars {
  color: #ffc107;
  margin-bottom: 15px;
}

/* FAQ Accordion */
.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.accordion-button {
  font-weight: 700;
  padding: 20px;
  background: white;
  color: var(--text-dark);
}

.accordion-button:not(.collapsed) {
  background-color: #f0f4f8; /* Light blue tint */
  color: var(--primary-color);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.accordion-body {
  padding: 24px;
  background: white;
  color: #555;
  line-height: 1.7;
}
