/* ===== Import Google Fonts ===== */
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");
/* ===== Global Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* ===== Base Font for Text ===== */
body, h1, h2, h3, h4, h5, h6, p, a, span, li {
  font-family: 'Inter Tight', 'PT Sans', Arial, sans-serif;
}
/* Monospace for code / special cases */
code, pre, .ui-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
html {
  font-size: 14px; /* base size (recommended) */
}
/* =========================
   ROOT VARIABLES
========================= */ :root {
  /* Brand Colors */
  --primary: #4f46e5;
  --primary-dark: #4338ca;
  --secondary: #0f172a;
  --accent: #22c55e;
  /* Neutrals */
  --bg-body: #f4f6f8;
  --bg-white: #ffffff;
  --bg-dark: #0b1220;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-white: #ffffff;
  /* Borders & Shadows */
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
}
/* =========================
   SLIDER TEXT (WHITE)
========================= */
.slider {
  position: relative;
}
.slide {
  position: relative;
}
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* dark overlay for contrast */
}
.slide-text {
  position: absolute;
  bottom: 20%;
  left: 8%;
  z-index: 2;
  max-width: 500px;
  color: var(--text-white);
}
.slide-text h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-white);
}
.slide-text p {
  font-size: 1rem;
  color: #e5e7eb;
}
.material-icons {
  font-size: 36px; /* size */
  color: #2563eb; /* color */
  vertical-align: middle;
}
.services {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 30px 10px;
}
.card {
  background: #fff;
  padding: 15px 10px;
  border-radius: 12px;
  text-align: center;
  width: 300px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card i.material-icons {
  font-size: 40px;
  color: #2563eb;
  margin-bottom: 12px;
}
.card p {
  font-size: 18px;
  font-weight: 300;
  color: #333;
  margin: 0;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
  background: #f4f6f8;
  color: #222;
}

/* Sticky Header */
.header {
  position: sticky;
  top: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
  background: #fff;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
/* Logo */
.logo img {
  display: block;
  height: auto;
}
/* Nav */
#nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: space-between; /* push download-btn right */
  gap: 20px;
}
.nav-links {
  display: flex;
  gap: 20px;
  margin: 0 auto; /* center nav links in available space */
}
#nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  position: relative;
  transition: color 0.3s ease;
}
#nav a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #2563eb;
  transition: width 0.3s ease;
}
#nav a:hover::after, #nav a.active::after {
  width: 100%;
}
/* Download button */
.download-btn {
  padding: 8px 16px;
  background: #2563eb; /* base blue */
  color: #fff !important; /* force white text */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  white-space: nowrap;
  transition: background 0.3s, transform 0.3s;
  position: relative;
}
.download-btn2 {
  padding: 8px 16px;
  background: #2563eb; /* base blue */
  color: #fff !important; /* force white text */
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
  white-space: nowrap;
  transition: background 0.3s, transform 0.3s;
  position: relative;
}
/* Remove any nav underline effects */
.download-btn::after {
  content: none !important;
}
/* Hover effect */
.download-btn:hover {
  background: #02146c; /* lighter blue on hover */
  color: #fff; /* text remains white */
  transform: scale(1.05); /* subtle scale-up */
}
/* Hamburger */
.menu-btn {
  display: none;
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  z-index: 1100;
}
/* Mobile responsive */
@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }
  #nav {
    position: fixed;
    top: 60px; /* header height */
    left: 0;
    width: 100vw;
    height: calc(100vh - 60px);
    flex-direction: column;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1050;
    padding: 0;
    gap: 0;
  }
  #nav.show {
    transform: translateX(0);
  }
  .nav-links {
    flex-direction: column;
    width: 100%;
    margin: 0; /* remove centering on mobile */
  }
  .nav-links a {
    padding: 15px 25px;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
  }
  .download-btn {
    margin: 15px 25px;
    width: calc(100% - 50px);
    text-align: center;
  }
}
/* Dropdown container */
.dropdown {
  position: relative;
}
/* Dropdown button */
.dropbtn {
  cursor: pointer;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  display: inline-block;
}
/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 500px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  z-index: 2000;
  padding: 10px;
  gap: 20px;
  flex-direction: row;
}
/* Dropdown columns */
.dropdown-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* Dropdown links */
.dropdown-content a {
  color: #333;
  padding: 3px 0;
  text-decoration: none;
}
.dropdown-content a:hover {
  background-color: #f0f0f0;
  border-radius: 4px;
}
/* ==============================
   DESKTOP BEHAVIOR
============================== */
@media (min-width: 669px) {
  .dropdown:hover .dropdown-content {
    display: flex;
  }
}
/* ==============================
   MOBILE BEHAVIOR (ACCORDION)
============================== */
@media (max-width: 568px) {
  /* Nav container */
  #nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 60px);
    flex-direction: column;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1050;
    overflow-y: auto;
  }
  #nav.show {
    transform: translateX(0);
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  /* 🔥 KEY FIXES */
  .dropdown {
    display: block;
    width: 100%;
  }
  .dropbtn {
    display: block;
    width: 100%;
    padding: 15px 25px;
  }
  .dropdown-content {
    position: static;
    margin: 0;
    padding: 0 25px;
    min-width: unset;
    width: 100%;
    box-shadow: none;
    border: none;
    gap: 0;
  }
  .dropdown-content.active {
    display: flex;
  }
  .dropdown-column {
    width: 100%;
  }
  .dropdown-column a {
    padding: 10px 0;
  }
  /* Download button */
  .download-btn {
    margin: 15px 25px;
    width: calc(100% - 50px);
    text-align: center;
  }
}
/* Remove default UL spacing */
.sub-menu, .sub-menu ul {
  margin: 0 !important;
  padding: 0 !important;
}
/* Parent menu item */
.menu-item {
  margin: 0 !important;
  padding: 0 !important;
}
/* Fix gap between parent and dropdown */
.menu-item.has-children > .sub-menu {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: none !important;
}
/* Each dropdown item */
.sub-menu li {
  margin: 0 !important;
  padding: 12px 16px;
}
/* Remove bottom padding from toggle item */
.menu-item.has-children > a {
  padding-bottom: 12px;
  margin-bottom: 0 !important;
}
/* Kill any flex gap if present */
nav ul {
  gap: 0 !important;
}
/* Dropdown container1 */
.dropdown1 {
  position: relative;
  display: inline-block;
}
/* Dropdown button */
.dropbtn1 {
  cursor: pointer;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  transition: color 0.3s ease;
}
/* Remove underline hover for dropbtn if needed */
.dropbtn1::after {
  content: none;
}
/* Dropdown content (hidden by default) */
.dropdown-content1 {
  display: none;
  position: absolute;
  top: 100%; /* below the button */
  left: 0;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  z-index: 2000;
  flex-direction: column;
}
/* Links inside dropdown */
.dropdown-content1 a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background 0.2s;
}
.dropdown-content1 a:hover {
  background-color: #f0f0f0;
}
/* Show dropdown on hover */
.dropdown1:hover .dropdown-content1 {
  display: flex;
  flex-direction: column;
}
/* Optional: arrow rotation on hover */
.dropdown1:hover .dropbtn1::after {
  transform: rotate(180deg);
}
/* Hero slider */
.hero {
  background: #1e58d9;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
.hero2 {
  background: #1f1f21;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
.hero button {
  margin-top: 25px;
  padding: 12px 28px;
  border: none;
  background: #fff;
  color: #2563eb;
  font-weight: bold;
  cursor: pointer;
  border-radius: 20px;
}
.hero2 button {
  margin-top: 25px;
  padding: 12px 28px;
  border: none;
  background: #fff;
  color: #2563eb;
  font-weight: bold;
  cursor: pointer;
  border-radius: 20px;
}
/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 50px 20px;
  max-width: 1000px;
  margin: auto;
}
.card {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
/* Base Footer */
.footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 25px 15px 15px; /* reduced top padding */
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto 15px;
  gap: 20px;
}
.footer-col {
  flex: 1 1 250px;
}
.footer-col h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 18px;
}
.footer-col p, .footer-col li, .footer-col a {
  color: #ccc;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li {
  margin-bottom: 5px;
}
.footer-col a:hover {
  color: #2563eb;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 6px 10px;
  border-radius: 6px;
  border: none;
  outline: none;
  font-size: 14px;
}
.newsletter-form button {
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  background: #2563eb;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}
.newsletter-form button:hover {
  background: #1e4db7;
}
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  background: #111;
  color: #aaa;
  font-size: 13px;
}
/* Mobile Responsive Footer */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  .footer-col {
    text-align: center;
    width: 100%;
    padding: 0 16px;
    s box-sizing: border-box;
  }
  .newsletter-form {
    justify-content: center;
  }
}
/* SLIDER SECTION */
.slider {
  position: relative;
  max-width: 100%;
  height: 700px; /* slider height */
  overflow: hidden;
}
.slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide {
  display: none;
  width: 100%;
  height: 100%;
  position: relative;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide.active {
  display: block;
}
/* Text overlay centered */
.slide-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  max-width: 80%;
  /* Animation */
  animation: bounceIn 1s ease;
}
/* Headings and paragraph styles */
.slide-text h3 {
  font-size: 62px;
  margin-bottom: 12px;
}
.slide-text p {
  font-size: 22px;
  line-height: 1.5;
}
/* Bounce In Animation */
@keyframes bounceIn {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
  }
  60% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
  80% {
    transform: translate(-50%, -50%) scale(0.95);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
/* Arrows smaller and square-ish */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 22px; /* smaller arrow */
  width: 40px; /* square shape */
  height: 40px; /* square shape */
  padding: 0;
  cursor: pointer;
  border-radius: 5px; /* slightly rounded */
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prev {
  left: 15px;
}
.next {
  right: 15px;
}
.prev:hover, .next:hover {
  background: rgba(0, 0, 0, 0.7);
}
/* Dots */
.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}
.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
}
.dot.active {
  background: #fff;
}
/* IMAGE CARDS */
.image-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 20px;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.image-card {
  width: 32%;
  height: 300px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.image-card .card-text {
  position: absolute;
  bottom: 15px;
  left: 20px;
  color: white;
  font-size: 22px;
  font-weight: bold;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}
.image-card:hover {
  transform: scale(1.07) rotateX(3deg) rotateY(3deg);
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.25);
}
/* Responsive */
@media (max-width: 768px) {
  .image-card {
    width: 100%;
    margin-bottom: 20px;
  }
}
/* TEXT SECTION BELOW IMAGE CARDS */
.info-section {
  padding: 60px 20px;
  background: #f9fafb;
}
.info-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.info-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
}
.info-card i.material-icons {
  font-size: 48px;
  color: #2563eb;
  margin-bottom: 12px;
}
.info-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #111;
}
.info-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}
/* Responsive */
@media (max-width: 768px) {
  .info-points {
    grid-template-columns: 1fr;
  }
}
.about-page {
  background: #f4f6f8;
}
/* HERO */
.about-hero {
  background: linear-gradient(135deg, #0f172a, #2563eb);
  padding: 90px 20px;
  color: #fff;
  text-align: center;
}
.about-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}
.about-hero p {
  font-size: 18px;
  color: #cbd5f5;
  max-width: 700px;
  margin: 0 auto;
}
/* CONTENT */
.about-container {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-story h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #111;
}
.about-story p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}
.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
}
/* VALUES */
.about-values {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}
.about-values h2 {
  font-size: 32px;
  margin-bottom: 50px;
  color: #2563eb;
}
.values-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.value-card {
  background: #f9fafb;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
}
.value-card i {
  font-size: 48px;
  color: #2563eb;
  margin-bottom: 15px;
}
.value-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}
.value-card p {
  font-size: 16px;
  color: #555;
}
/* CTA */
.about-cta {
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}
.about-cta h2 {
  font-size: 32px;
  margin-bottom: 12px;
}
.about-cta p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #cbd5f5;
}
.cta-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.cta-btn:hover {
  background: #1e4db7;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-story p {
    max-width: 100%;
  }
}
.info-text {
  max-width: 1100px;
  margin: 40px auto 60px;
  padding: 0 20px;
  text-align: center;
}
.info-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #111;
}
.info-text > p {
  font-size: 18px;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.info-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: left;
}
.info-points h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #2563eb;
}
.info-points {
  max-width: 1400px; /* controls how wide the cards can go */
  margin: 0 auto; /* centers the section */
  padding: 0 20px; /* space from screen edges */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  text-align: left;
}
/* WHITE TEXT CARDS */
.info-section {
  padding: 40px 0;
}
.info-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
}
.info-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #2563eb;
}
.info-card p {
  color: #555;
  line-height: 1.6;
}
/* CENTERED TEXT SECTION */
.center-text {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 25px;
  text-align: center;
}
.center-text h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #111;
}
.center-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}
/* ABOUT US SECTION */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 220px;
}
.about-text {
  background: linear-gradient(135deg, #0f172a, #2563eb); /* dark blue to light blue */
  color: #fff;
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 15px;
  max-width: 520px;
}
.about-image {
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .about-section {
    grid-template-columns: 1fr;
  }
  .about-text {
    padding: 50px 30px;
    text-align: center;
  }
  .about-text p {
    max-width: 100%;
  }
  .about-image {
    height: 260px;
  }
}
.subscribe-section {
  background: #2563eb; /* blue background to match theme */
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}
.subscribe-wrapper {
  max-width: 600px;
  margin: 0 auto;
}
.subscribe-wrapper h2 {
  font-size: 32px;
  margin-bottom: 15px;
}
.subscribe-wrapper p {
  font-size: 18px;
  margin-bottom: 30px;
}
.subscribe-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.subscribe-form input[type="email"] {
  padding: 12px 18px;
  border: none;
  border-radius: 24px;
  width: 250px;
  font-size: 16px;
}
.subscribe-form button {
  padding: 12px 25px;
  border: none;
  background: #fff;
  color: #2563eb;
  font-weight: bold;
  cursor: pointer;
  border-radius: 24px;
  font-size: 16px;
  transition: background 0.3s ease;
}
.subscribe-form button:hover {
  background: #e5e7eb;
}
.services-text-section {
  background: #f4f6f8;
  padding: 60px 20px;
  text-align: center;
}
.services-text-wrapper {
  max-width: 1400px; /* wider container */
  margin: 0 auto;
}
.services-text-wrapper h2 {
  font-size: 22px;
  color: #2563eb;
  margin-bottom: 15px;
}
.services-text-wrapper p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.2;
}
.service-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* stretch cards across container */
  gap: 20px;
}
.service-point {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
  flex: 1 1 32%; /* flexible width for 3 cards */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 250px; /* ensures cards don’t get too small */
}
.service-point:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
}
.service-point h4 {
  font-size: 20px;
  color: #2563eb;
  margin-bottom: 10px;
}
.service-point p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}
/* Responsive */
@media (max-width: 768px) {
  .service-points {
    flex-direction: column;
    align-items: center;
  }
  .service-point {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
/* Login Page */
.login-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 80px); /* full height minus header */
  padding: 20px;
  background: #f4f6f8;
}
.login-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 400px;
  text-align: center;
}
.login-card h2 {
  color: #2563eb;
  margin-bottom: 10px;
}
.login-card p {
  color: #555;
  font-size: 14px;
  margin-bottom: 25px;
}
.login-card input {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}
.login-card button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #2563eb;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}
.login-card button:hover {
  background: #1e4db7;
}
.login-footer {
  margin-top: 15px;
  font-size: 13px;
}
.login-footer a {
  color: #2563eb;
  text-decoration: none;
}
.login-footer a:hover {
  text-decoration: underline;
}
.password-field {
  position: relative;
  width: 100%;
}
.password-field input {
  width: 100%;
  padding-right: 45px;
}
.toggle-password {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #666;
  font-size: 22px;
}
.divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
}
.divider span {
  background: #fff;
  padding: 0 10px;
  color: #777;
  font-size: 13px;
}
.divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #ddd;
  z-index: -1;
}
.social-login {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* 🔥 make sure these exist */
  opacity: 1;
  visibility: visible;
  transform: none;
  height: auto;
}
.social-login img {
  width: 20px;
}
.google-btn:hover {
  background: #f5f5f5;
}
.facebook-btn {
  background: #1877f2;
  color: #fff;
  border: none;
}
.facebook-btn:hover {
  background: #166fe5;
}
/*Subscription*/
.subscription-section {
  padding: 80px 20px;
  background: #f9fafb;
  text-align: center;
}
.subscription-button {
  border-radius: 20px;
}
.subscription-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.subscription-header p {
  color: #555;
  margin-bottom: 50px;
}
.subscription-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}
.plan-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.plan-card:hover {
  transform: translateY(-8px);
}
.plan-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}
.price {
  font-size: 2rem;
  font-weight: bold;
  margin: 15px 0;
}
.price span {
  font-size: 0.9rem;
  color: #777;
}
.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}
.plan-card ul li {
  margin-bottom: 10px;
  color: #444;
}
.plan-card button {
  padding: 12px 25px;
  border: none;
  background: #111827;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}
.plan-card.featured {
  background: #111827;
  color: #fff;
}
.plan-card.featured ul li, .plan-card.featured .price span {
  color: #e5e7eb;
}
.plan-card.featured button {
  background: #facc15;
  color: #111;
}
/*Blog*/
.blog-section {
  background: #f4f6f8;
  padding: 70px 20px;
}
.blog-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.blog-wrapper h2 {
  font-size: 28px;
  color: #2563eb;
  margin-bottom: 10px;
}
.blog-wrapper p {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}
.blog-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
}
.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.blog-content {
  padding: 20px;
}
.blog-date {
  font-size: 16px;
  color: #888;
}
.blog-content h4 {
  font-size: 16px;
  color: #111;
  margin: 10px 0;
}
.blog-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 15px;
}
.blog-content a {
  color: #2563eb;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
}
.blog-content a:hover {
  text-decoration: underline;
}
/* Responsive */
@media (max-width: 1100px) {
  .blog-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .blog-cards {
    grid-template-columns: 1fr;
  }
}
/*----------------------------------
blog detail*/
.blog-detail-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
}
.blog-article2 img.blog-cover {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}
.blog-article2 h2 {
  margin-top: 30px;
}
.blog-article2 blockquote {
  background: #f5f7fa;
  padding: 20px;
  border-left: 4px solid #0b1f3a;
  margin: 30px 0;
}
.blog-sidebar2 .sidebar-box {
  background: #fff;
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 10px;
}
.recent-post {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.recent-post img {
  width: 50px;
  border-radius: 6px;
}
.tag-cloud span {
  display: inline-block;
  background: #eef2f7;
  padding: 6px 12px;
  border-radius: 20px;
  margin: 5px;
  font-size: 13px;
}
@media (max-width: 900px) {
  .blog-detail-wrapper {
    grid-template-columns: 1fr;
  }
}
/*Testimonial*/
.testimonial-section {
  background: linear-gradient(135deg, #0f172a, #020617);
  padding: 80px 20px;
  color: #fff;
}
.testimonial-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-wrapper h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #38bdf8;
}
.testimonial-wrapper p {
  font-size: 14px;
  color: #cbd5f5;
  margin-bottom: 50px;
}
.testimonial-slider {
  overflow-x: auto; /* horizontal scroll */
  overflow-y: hidden;
  padding-bottom: 10px;
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #38bdf8 rgba(15, 23, 42, 0.5); /* thumb / track color */
}
/* Webkit (Chrome, Safari, Edge) */
.testimonial-slider::-webkit-scrollbar {
  height: 10px; /* scrollbar height */
}
.testimonial-slider::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.5);
  border-radius: 10px;
}
.testimonial-slider::-webkit-scrollbar-thumb {
  background-color: #38bdf8;
  border-radius: 10px;
  border: 2px solid rgba(15, 23, 42, 0.5);
}
.testimonial-track {
  display: flex;
  gap: 25px;
  flex-wrap: nowrap; /* single row */
  scroll-snap-type: x mandatory; /* snap cards while scrolling */
}
.testimonial-card {
  flex: 0 0 320px; /* desktop card width */
  scroll-snap-align: start;
  background: #020617;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.comment {
  font-size: 13px;
  line-height: 1.6;
  color: #e5e7eb;
  margin-bottom: 20px;
}
.profile {
  display: flex;
  align-items: center;
  gap: 15px;
}
.profile img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #38bdf8;
}
.profile h4 {
  font-size: 15px;
  margin: 0;
}
.profile span {
  font-size: 13px;
  color: #94a3b8;
}
.testimonial-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 30px rgba(56, 189, 248, 0.35);
}
/* Mobile responsive */
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 80%;
  }
}
/*Download app*/
.download-app-section {
  background: linear-gradient(135deg, #0f172a, #2563eb);
  padding: 60px 10px;
  color: #fff;
}
.download-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}
.download-content {
  flex: 1 1 500px;
}
.download-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #fff;
}
.download-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #cbd5f5;
}
.download-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.store-btn img {
  height: 50px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.store-btn img:hover {
  transform: scale(1.05);
}
.download-image {
  position: relative;
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.download-image img {
  position: relative;
  z-index: 2;
  width: 300px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
/* Animated Beeping Circle */
.download-image::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.4);
  z-index: 1;
  animation: beep 1.5s infinite;
}
@keyframes beep {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.6;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .download-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }
  .download-image::before {
    width: 280px;
    height: 280px;
  }
}
/*services*/
.services-page {
  background: #f4f6f8;
}
/* HERO */
.services-hero {
  background: linear-gradient(135deg, #0f172a, #2563eb);
  padding: 90px 20px;
  text-align: center;
  color: #fff;
}
.services-hero h1 {
  font-size: 42px;
  margin-bottom: 12px;
}
.services-hero p {
  font-size: 18px;
  color: #cbd5f5;
  max-width: 700px;
  margin: 0 auto;
}
/* GRID */
.services-container {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.service-card i {
  font-size: 52px;
  color: #2563eb;
  margin-bottom: 18px;
}
.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #111;
}
.service-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}
/* CTA */
.services-cta {
  background: linear-gradient(135deg, #020617, #0f172a);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}
.services-cta h2 {
  font-size: 34px;
  margin-bottom: 12px;
}
.services-cta p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #cbd5f5;
}
.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.cta-btn:hover {
  background: #1e4db7;
  transform: translateY(-2px);
}
/* SERVICES DETAILS */
.services-details {
  background: #ffffff;
  padding: 90px 20px;
}
.details-row {
  max-width: 1400px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.details-row:last-child {
  margin-bottom: 0;
}
.details-text h2 {
  font-size: 32px;
  color: #111;
  margin-bottom: 18px;
}
.details-text p {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 14px;
}
.details-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease;
}
.details-image img:hover {
  transform: scale(1.04);
}
/* Reverse layout */
.details-row.reverse {
  grid-template-columns: 1fr 1fr;
}
.details-row.reverse .details-text {
  order: 2;
}
.details-row.reverse .details-image {
  order: 1;
}
/* Responsive */
@media (max-width: 900px) {
  .details-row, .details-row.reverse {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .details-row.reverse .details-text, .details-row.reverse .details-image {
    order: unset;
  }
  .details-text h2 {
    font-size: 26px;
  }
  .details-text p {
    font-size: 16px;
  }
}
/* contact*/
/* CONTACT PAGE */
.contact-page {
  padding: 90px 20px;
  background: #f8fafc;
}
.contact-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.contact-header h1 {
  font-size: 42px;
  color: #111;
  margin-bottom: 10px;
}
.contact-header p {
  font-size: 18px;
  color: #555;
}
.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
}
/* CONTACT INFO */
.contact-info {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.contact-info h3 {
  font-size: 26px;
  margin-bottom: 15px;
}
.contact-info p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}
.contact-info ul {
  list-style: none;
  padding: 0;
}
.contact-info li {
  font-size: 16px;
  margin-bottom: 12px;
}
/* CONTACT FORM */
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.form-group {
  margin-bottom: 18px;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 12px;
  border: 1px solid #ddd;
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.contact-form button {
  width: 100%;
  padding: 14px;
  background: #2563eb;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
.contact-form button:hover {
  background: #1e4fd8;
  transform: translateY(-2px);
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-header h1 {
    font-size: 32px;
  }
}
/* Blog page*/
.blog-page {
  padding: 80px 20px;
  background: #ffffff;
}
.blog-header {
  text-align: center;
  margin-bottom: 60px;
}
.blog-header h1 {
  font-size: 2.6rem;
  margin-bottom: 10px;
}
.blog-header p {
  color: #555;
  font-size: 1.1rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}
.blog-card {
  background: #f9fafb;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-10px);
}
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-content {
  padding: 25px;
}
.category {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: bold;
  color: #2563eb;
  margin-bottom: 10px;
}
.blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.blog-content p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 18px;
}
.blog-content a {
  text-decoration: none;
  font-weight: bold;
  color: #111827;
}
.blog-content a:hover {
  color: #2563eb;
}
/*Privacy-policy*/
.page-header {
  text-align: center;
  padding: 60px 20px;
  background: #f5f7fa;
}
.page-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}
.content-page {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
  line-height: 1.8;
}
.content-page h2 {
  margin-top: 30px;
  color: #2563eb;
}
.content-page ul {
  padding-left: 20px;
}
.policy-date {
  margin-top: 40px;
  font-size: 14px;
  color: #777;
}
/*services-2*/
/* Hero */
.service-hero {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
.service-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}
.service-hero p {
  max-width: 700px;
  margin: auto;
  opacity: 0.9;
}
/* Services Grid */
.service-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.service-box {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.service-box span {
  font-size: 40px;
  color: #2563eb;
  margin-bottom: 15px;
  display: inline-block;
}
.service-box h3 {
  margin-bottom: 10px;
}
.service-box p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}
/* Split Section */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}
.split-text h2 {
  margin-bottom: 15px;
  font-size: 32px;
}
.split-text p {
  color: #555;
  line-height: 1.7;
}
.split-image img {
  width: 100%;
  border-radius: 16px;
}
/* CTA */
.service-cta {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}
.service-cta h2 {
  margin-bottom: 15px;
}
.service-cta a {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  background: #2563eb;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}
/* Responsive */
@media (max-width: 768px) {
  .split-section {
    grid-template-columns: 1fr;
  }
}
/*-------------------------------------
INDEX2
-------------------------------------*/
.hero-alt {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
}
.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
/* LEFT IMAGE */
.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}
/* RIGHT FORM */
.hero-form {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}
.hero-form h3 {
  margin-bottom: 5px;
}
.hero-form p {
  margin-bottom: 25px;
  color: #555;
}
.hero-form input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}
.hero-form button {
  width: 100%;
  padding: 14px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
}
.hero-form small {
  display: block;
  text-align: center;
  margin-top: 15px;
}
/* FLOATING TEXT */
/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
  .hero-floating-text {
    position: relative;
    top: 0;
    margin-bottom: 30px;
  }
}
.about-split2 {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  min-height: 480px;
}
/* LEFT SIDE */
.about-left2 {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-left2 h2 {
  font-size: 38px;
  margin-bottom: 20px;
}
.about-left2 p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}
/* RIGHT SIDE */
.about-right2 {
  background: #f8fafc;
  padding: 80px 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
/* SERVICE CARDS */
.service-card2 {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card2:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
}
.service-card2 span {
  font-size: 36px;
  color: #2563eb;
  margin-bottom: 12px;
  display: inline-block;
}
.service-card2 h4 {
  font-size: 18px;
  margin-bottom: 8px;
}
.service-card2 p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .about-split2 {
    grid-template-columns: 1fr;
  }
  .about-left2, .about-right2 {
    padding: 60px 25px;
  }
  .about-right2 {
    grid-template-columns: 1fr;
  }
}
/* FORCE BACK TO TOP VISIBILITY */
#backToTop {
  position: fixed !important;
  bottom: 30px;
  right: 30px;
  width: 48px !important;
  height: 48px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: #0b1f3a;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 2147483647;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  transform: translateZ(0); /* fixes transform containment bug */
}
/* visible state */
#backToTop.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
/* prevent global button styles */
#backToTop {
  padding: 0 !important;
  margin: 0 !important;
}

