@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Rethink+Sans:ital,wght@0,400..800;1,400..800&display=swap");
@import url("./contact-us.css");
@import url("./feature.css");
@import url("./privacy.css");
@import url("./terms.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #0a0f1f;
  color: #e0e4fc;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Cyber security color palette */
:root {
  --primary-bg: #0a0f1f;
  --secondary-bg: #11182f;
  --accent-cyan: #b542c7;
  --accent-blue: #2a6df4;
  --accent-purple: #8b5cf6;
  --neon-glow: 0 0 15px rgba(0, 240, 255, 0.5);
  --card-bg: rgba(17, 24, 47, 0.8);
  --border-glow: rgba(0, 240, 255, 0.2);
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, #a0b0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center {
  text-align: center;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mb-10 {
  margin-bottom: 10px;
}

.section-sub {
  color: var(--accent-cyan);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.section-title {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
}

/* Buttons with cyber style */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  color: white;
  font-weight: 600;
  padding: 16px 42px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 0 20px rgba(42, 109, 244, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.7);
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}
.btn-primary:hover::before {
  left: 100%;
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--accent-cyan);
  color: var(--accent-cyan);
  font-weight: 600;
  padding: 14px 38px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 1px;
  transition: 0.3s;
  background: transparent;
  text-transform: uppercase;
}
.btn-outline:hover {
  background: var(--accent-cyan);
  color: #0a0f1f;
  box-shadow: var(--neon-glow);
}

/* Header & Navigation */
.top-bar {
  background: rgba(10, 15, 31, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
  padding: 12px 0;
  position: relative;
  z-index: 100;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-contact i {
  color: var(--accent-cyan);
  margin-right: 8px;
}
.top-contact span {
  margin-right: 25px;
  font-size: 14px;
}
.top-social a {
  color: #e0e4fc;
  margin-left: 20px;
  transition: 0.3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  i {
    color: var(--accent-cyan);
  }
}
.top-social a:hover {
  color: var(--accent-cyan);
  text-shadow: var(--neon-glow);
}

/* Navbar */
.navbar {
  background: rgba(10, 15, 31, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 99;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 32px;
  font-weight: 800;
  font-family: "Space Grotesk", sans-serif;
  background: linear-gradient(135deg, #fff, var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

a.logo {
  text-decoration: none;
}

.logo span {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links {
  display: flex;
  gap: 35px;
}
.nav-links a {
  color: #e0e4fc;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-cyan);
  box-shadow: var(--neon-glow);
  transition: 0.3s;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-btn {
  background: transparent;
  border: 2px solid var(--accent-cyan);
  color: var(--accent-cyan);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nav-btn:hover {
  background: var(--accent-cyan);
  color: #0a0f1f;
  box-shadow: var(--neon-glow);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--accent-cyan);
  color: var(--accent-cyan);
  width: 45px;
  height: 45px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  transition: 0.3s;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
}

.mobile-menu-toggle:hover {
  background: var(--accent-cyan);
  color: #0a0f1f;
}

/* Always show toggle on tablet and below */
@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex !important;
  }

  .nav-links {
    display: none !important;
  }

  .nav-btn {
    display: none !important;
  }
}

/* Mobile Menu Floating */
.mobile-menu-floating {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background: #0a0f1f;
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 80px 25px 30px;
  transition: 0.4s ease;
  border-left: 1px solid rgba(0, 240, 255, 0.2);
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu-floating.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: 0.3s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  color: var(--accent-cyan);
}

.mobile-menu-floating .nav-links {
  display: flex !important;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
}

.mobile-menu-floating .nav-links a {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.mobile-menu-floating .nav-links a:hover {
  color: var(--accent-cyan);
  padding-left: 10px;
}

.mobile-menu-floating .nav-btn {
  display: inline-block !important;
  width: 100%;
  text-align: center;
  margin-top: 10px;
  padding: 15px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(42, 109, 244, 0.15),
    transparent 50%
  );
  pointer-events: none;
}
.hero .container {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
}
.hero-content {
  flex: 1;
}
.hero-sub {
  color: var(--accent-cyan);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-content h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 25px;
}
.hero-content h1 span {
  background: linear-gradient(135deg, var(--accent-cyan), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc {
  color: #a0b0d0;
  font-size: 18px;
  max-width: 550px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 50px;
}
.stat-item h2 {
  font-size: 58px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-item p {
  color: #a0b0d0;
  font-weight: 500;
  letter-spacing: 1px;
}
.hero-image {
  flex: 1;
  height: 550px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  opacity: 0.8;
  transition: 0.5s;
}
.hero-image:hover img {
  transform: scale(1.05);
  opacity: 1;
}
.hero-usp {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 18px;
}

.usp-pill {
  background: rgba(92, 108, 255, 0.12);
  border: 1px solid rgba(92, 108, 255, 0.4);
  color: #dbe2ff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(6px);
  transition: 0.25s;
}

.usp-pill:hover {
  transform: translateY(-2px);
  background: rgba(92, 108, 255, 0.22);
}

.usp-pill.highlight {
  background: #5c6cff;
  border: none;
  color: #fff;
}
/* Partners */
.partners {
  padding: 50px 0;
  overflow: hidden;
}

/* SCROLL CONTAINER */
.partner-scroll {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* TRACK */
.partner-track {
  display: flex;
  gap: 60px;
  animation: scrollPartners 28s linear infinite;
  width: max-content;
}

/* PAUSE ON HOVER */
.partner-scroll:hover .partner-track {
  animation-play-state: paused;
}

/* ITEM */
.partner-item {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 14px 24px;
  border-radius: 50px;

  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);

  white-space: nowrap;
  font-weight: 600;
  color: #dbe7ff;
}

/* ICON */
.partner-item i {
  color: var(--accent-cyan);
}

/* ANIMATION */
@keyframes scrollPartners {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .partner-track {
    gap: 30px;
    animation-duration: 18s;
  }

  .partner-item {
    padding: 10px 18px;
    font-size: 14px;
  }

  .partner-item img {
    width: 22px;
    height: 22px;
  }
}

/* Leading Cyber Defense */
.leading {
  padding: 100px 0;
  /* background-image: url("../image/about-us-18.webp"); */
}
.leading .container {
  display: flex;
  gap: 80px;
}
.leading-left {
  flex: 1;
}
.leading-left h2 {
  font-size: 82px;
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}
.leading-left h2 span {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.leading-right p {
  font-size: 20px;
  color: #b0c0e0;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* Strategies */
.strategies {
  padding: 100px 0;
  background: rgba(17, 24, 47, 0.5);
  position: relative;
}
.strategies-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.strategies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.strategy-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  padding: 40px 30px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}
.strategy-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    var(--accent-cyan),
    var(--accent-purple),
    var(--accent-cyan)
  );
  border-radius: 20px;
  opacity: 0;
  transition: 0.4s;
  z-index: -1;
}
.strategy-card:hover::before {
  opacity: 0.3;
}
.strategy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 240, 255, 0.2);
}
.card-num {
  font-size: 52px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-cyan), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
}
.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}
.tag {
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-cyan);
}

/* Why choose us */

.easylock-advanced {
  padding: 120px 0;
  position: relative;
}

.advanced-wrapper {
  display: grid;
  grid-template-columns: 1fr 420px 1fr;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
}

.advanced-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.advanced-card .icon {
  font-size: 32px;
  color: var(--accent-cyan);
  margin-bottom: 20px;
}

.advanced-card h4 {
  margin-bottom: 15px;
  font-size: 22px;
}

.advanced-card p {
  color: #a0b0d0;
  margin-bottom: 20px;
}

.advanced-card ul {
  list-style: none;
  padding: 0;
}

.advanced-card li {
  margin-bottom: 10px;
  color: #cfd8f6;
  font-size: 15px;
}

.advanced-image img {
  width: 100%;
  max-width: 250px;
  display: block;
  margin: auto;
  filter: drop-shadow(0 0 40px rgba(120, 80, 255, 0.5));
}

/* Responsive */
@media (max-width: 992px) {
  .advanced-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .advanced-image {
    order: -1;
  }
}

/* Data Product Section - New from image */
.data-product {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.data-product::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(
    circle at 70% 50%,
    rgba(0, 240, 255, 0.1),
    transparent 70%
  );
  pointer-events: none;
}
.data-product-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
}
.data-product-left {
  flex: 1;
}
.data-product-left .section-sub {
  margin-bottom: 10px;
}
.data-product-left h2 {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
}
.data-product-left h2 span {
  background: linear-gradient(135deg, var(--accent-cyan), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.stats-card {
  background: rgba(17, 24, 47, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  margin-top: 30px;
  max-width: 450px;
  position: relative;
  overflow: hidden;
}
.stats-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-cyan), var(--accent-purple));
}
.stats-card h3 {
  font-size: 64px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 5px;
}
.stats-card p {
  color: var(--accent-cyan);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.stats-card .trusted-text {
  color: #a0b0d0;
  font-size: 15px;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 15px;
}
.data-product-right {
  flex: 1;
}
.challenge-box {
  background: rgba(17, 24, 47, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 30px;
  padding: 50px;
  position: relative;
  overflow: hidden;
}
.challenge-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.2), transparent 70%);
  border-radius: 50%;
}
.challenge-box h4 {
  font-size: 32px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff, var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.challenge-box p {
  color: #b0c0e0;
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}
.challenge-box .highlight {
  color: var(--accent-cyan);
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
  font-size: 20px;
}
.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  transition: 0.3s;
  border-bottom: 2px solid transparent;
  padding-bottom: 5px;
}
.learn-more-btn:hover {
  border-bottom-color: var(--accent-cyan);
  gap: 15px;
}
.learn-more-btn i {
  font-size: 14px;
  transition: 0.3s;
}
.learn-more-btn:hover i {
  transform: translateX(5px);
}

/* Next-Gen */
.nextgen {
  padding: 100px 0;
}
.nextgen-wrapper {
  display: flex;
  gap: 70px;
  margin-top: 50px;
}
.nextgen-content {
  flex: 1;
}
.nextgen-list {
  list-style: none;
  margin: 30px 0;
}
.nextgen-list li {
  margin-bottom: 18px;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.nextgen-list i {
  color: var(--accent-cyan);
  font-size: 20px;
  text-shadow: var(--neon-glow);
}
.ai-powered {
  background: rgba(17, 24, 47, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 20px;
  padding: 35px;
  margin-top: 30px;
}
.ai-powered h4 i {
  color: var(--accent-cyan);
  margin-right: 10px;
}
.nextgen-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.2);
  position: relative;
}
.nextgen-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.nextgen-image:hover img {
  transform: scale(1.05);
}

/* Services */
.services {
  background: rgba(17, 24, 47, 0.8);
  padding: 100px 0;
  position: relative;
}
.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: rgba(10, 15, 31, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  h5 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
}
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  transform: scaleX(0);
  transition: 0.4s;
}
.service-card:hover::after {
  transform: scaleX(1);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.15);
  border-color: var(--accent-cyan);
}
/* ICON CONTAINER */
.icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 30px;
  color: #fff;
  margin-bottom: 22px;

  box-shadow: 0 12px 35px rgba(124, 92, 255, 0.6);

  position: relative;
  overflow: hidden;

  animation: floatIcon 4s ease-in-out infinite;
  background: rgba(181, 66, 199, 0.1);
  border: 1px solid rgba(181, 66, 199, 0.2);
  padding: 25px;
}

/* ICON ITSELF */
.icon-wrap i {
  position: relative;
  z-index: 2;
}

/* SOFT GLOW PULSE */
.icon-wrap::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.7), transparent 70%);
  opacity: 0.6;
  animation: pulseGlow 3s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* GLOW PULSE ANIMATION */
@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.3;
  }
}

/* EMI Protection Section */
.emi-protection {
  padding: 100px 0;
}
.emi-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
}
.emi-content {
  flex: 1;
}
.emi-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.emi-stat-item {
  background: rgba(181, 66, 199, 0.1);
  border: 1px solid rgba(181, 66, 199, 0.2);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
}
.emi-stat-item h4 {
  font-size: 36px;
  margin-bottom: 5px;
}
.emi-image {
  flex: 1;
  height: 500px;
  background: rgba(181, 66, 199, 0.1);
  border-radius: 30px;
  border: 1px solid rgba(181, 66, 199, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.emi-image img {
  width: 45%;
  height: 80%;
  filter: drop-shadow(0 0 30px rgba(181, 66, 199, 0.5));
  border-radius: 150px 150px 150px 150px;
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
}
.testimonials-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.rating-large {
  background: linear-gradient(
    135deg,
    rgba(0, 240, 255, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 240, 255, 0.3);
  padding: 25px 45px;
  border-radius: 20px;
  font-size: 48px;
  font-weight: 800;
  color: #fff;
}
.rating-large small {
  font-size: 16px;
  display: block;
  opacity: 0.8;
  color: #a0b0d0;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.testi-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  padding: 35px;
  transition: 0.4s;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 240, 255, 0.2);
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}
.author-avatar {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #0a0f1f;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  text-align: center;
  position: relative;
}
.cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(181, 66, 199, 0.2), transparent 70%);
  filter: blur(60px);
  z-index: -1;
}
.cta h2 {
  font-size: 72px;
  margin-bottom: 30px;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.footer {
  background: #060a16;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(108, 140, 255, 0.2);
  color: #fff;
}

/* GRID */

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* BRAND COLUMN */

.footer-col.brand p {
  color: #a8b4d0;
  margin: 20px 0;
  line-height: 1.6;
}

.footer-contact div {
  margin-bottom: 10px;
  color: #c5d0ea;
  font-size: 14px;
}

.footer-contact i {
  margin-right: 8px;
  color: #6c8cff;
}

/* SOCIAL ICONS */

.socials {
  margin-top: 20px;
}

.socials a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}

.socials a:hover {
  background: linear-gradient(135deg, #6c8cff, #00e0ff);
  transform: translateY(-3px);
}

/* LINKS */

.footer-col h5 {
  margin-bottom: 18px;
  font-size: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: #a8b4d0;
  text-decoration: none;
  transition: 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

/* NEWSLETTER */

.newsletter p {
  color: #a8b4d0;
  margin-bottom: 15px;
}

.newsletter-box {
  display: flex;
  margin-bottom: 20px;
}

.newsletter-box input {
  flex: 1;
  padding: 14px 16px;
  border-radius: 10px 0 0 10px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.newsletter-box button {
  padding: 0 20px;
  border: none;
  background: linear-gradient(135deg, #6c8cff, #00e0ff);
  border-radius: 0 10px 10px 0;
  color: #fff;
  cursor: pointer;
}

/* PARTNER CTA */

.partner-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  color: #cfd8f6;
  cursor: pointer;
}

/* BOTTOM BAR */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #8e9bb8;
  font-size: 14px;
}

.footer-links a {
  margin: 0 12px;
  color: #8e9bb8;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.secure-badge {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
/* ========================================
RESPONSIVE STYLES
======================================== */

/* Small Laptop - 1024px */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .section-title {
    font-size: 42px;
  }

  /* Hero */
  .hero {
    padding: 60px 0 50px;
  }

  .hero .container {
    flex-direction: column;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .hero-desc {
    font-size: 16px;
    max-width: 100%;
  }

  .hero-stats {
    gap: 30px;
  }

  .stat-item h2 {
    font-size: 42px;
  }

  .hero-image {
    height: 400px;
    width: 100%;
  }

  /* Leading */
  .leading {
    padding: 60px 0;
  }

  .leading .container {
    flex-direction: column;
    gap: 40px;
  }

  .leading-left h2 {
    font-size: 52px;
  }

  .leading-right p {
    font-size: 17px;
  }

  /* Strategies */
  .strategies {
    padding: 60px 0;
  }

  .strategies-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .strategies-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Services */
  .services {
    padding: 60px 0;
  }

  .services-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Data Product */
  .data-product {
    padding: 60px 0;
  }

  .data-product-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .data-product-left h2 {
    font-size: 42px;
  }

  .stats-card h3 {
    font-size: 48px;
  }

  .challenge-box {
    padding: 35px;
  }

  /* Nextgen */
  .nextgen {
    padding: 60px 0;
  }

  .nextgen-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .nextgen-image {
    height: 350px;
  }

  /* EMI */
  .emi-protection {
    padding: 60px 0;
  }

  .emi-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .emi-image {
    height: 350px;
    width: 100%;
  }

  .emi-image img {
    width: 100%;
    height: 100%;
  }

  /* Testimonials */
  .testimonials {
    padding: 60px 0;
  }

  .testimonials-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* CTA */
  .cta {
    padding: 60px 0;
  }

  .cta h2 {
    font-size: 48px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Navbar */
  .nav-links {
    display: none;
  }

  .nav-btn {
    display: none;
  }
}

/* Tablet - 768px */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  /* Navbar */
  .navbar {
    padding: 15px 0;
  }

  .logo {
    font-size: 24px;
  }

  .logo img {
    width: 35px;
    height: 35px;
  }

  .section-title {
    font-size: 36px;
  }

  /* Top Bar */
  .top-bar .container {
    flex-direction: column;
    gap: 10px;
  }

  .top-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .top-contact span {
    margin-right: 0;
    font-size: 12px;
  }

  .top-social {
    display: flex;
    justify-content: center;
  }

  /* Hero */
  .hero {
    padding: 40px 0 40px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-sub {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-item h2 {
    font-size: 36px;
  }

  .hero-image {
    height: 300px;
  }

  /* Leading */
  .leading {
    padding: 50px 0;
  }

  .leading-left h2 {
    font-size: 38px;
  }

  .leading-right p {
    font-size: 15px;
  }

  /* Strategies */
  .strategies {
    padding: 50px 0;
  }

  .strategies-grid {
    grid-template-columns: 1fr;
  }

  .strategy-card {
    padding: 30px 20px;
  }

  .card-num {
    font-size: 42px;
  }

  /* Services */
  .services {
    padding: 50px 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 25px 20px;
  }

  /* Data Product */
  .data-product {
    padding: 50px 0;
  }

  .data-product-left h2 {
    font-size: 32px;
  }

  .stats-card {
    padding: 30px;
  }

  .stats-card h3 {
    font-size: 40px;
  }

  .challenge-box {
    padding: 25px;
  }

  .challenge-box h4 {
    font-size: 24px;
  }

  .challenge-box p {
    font-size: 15px;
  }

  /* Nextgen */
  .nextgen {
    padding: 50px 0;
  }

  .nextgen-list li {
    font-size: 15px;
  }

  .nextgen-image {
    height: 280px;
  }

  /* EMI */
  .emi-protection {
    padding: 50px 0;
  }

  .emi-stats {
    grid-template-columns: 1fr;
  }

  .emi-image {
    height: 280px;
  }

  .emi-image img {
    width: 100%;
    height: 100%;
  }

  /* Testimonials */
  .testimonials {
    padding: 50px 0;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .rating-large {
    font-size: 36px;
    padding: 20px 30px;
  }

  /* CTA */
  .cta {
    padding: 50px 0;
  }

  .cta h2 {
    font-size: 32px;
  }

  .btn-primary,
  .btn-outline {
    padding: 14px 28px;
    font-size: 14px;
  }

  /* Footer */
  .footer {
    padding: 50px 0 20px;
  }

  .footer-grid {
    gap: 40px;
  }
}

/* Mobile - 480px */
@media (max-width: 480px) {
  /* Navbar */
  .navbar {
    padding: 15px 0;
  }

  .logo {
    font-size: 22px;
  }

  .logo img {
    width: 32px;
    height: 32px;
  }

  .mobile-menu-toggle {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .nav-btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  .top-bar {
    padding: 8px 0;
  }

  .top-contact span {
    font-size: 11px;
  }

  .top-social a span {
    display: none;
  }

  .section-title {
    font-size: 28px;
  }

  .section-sub {
    font-size: 12px;
    letter-spacing: 2px;
  }

  /* Hero */
  .hero-content h1 {
    font-size: 30px;
  }

  .hero-desc {
    font-size: 14px;
  }

  .hero-stats {
    gap: 15px;
  }

  .stat-item h2 {
    font-size: 28px;
  }

  .stat-item p {
    font-size: 13px;
  }

  .hero-image {
    height: 220px;
  }

  /* Buttons */
  .btn-primary,
  .btn-outline {
    padding: 12px 24px;
    font-size: 13px;
    width: 100%;
    text-align: center;
  }

  /* Leading */
  .leading-left h2 {
    font-size: 32px;
  }

  /* Strategy Card */
  .strategy-card {
    padding: 25px 18px;
  }

  .card-num {
    font-size: 36px;
  }

  /* Data Product */
  .data-product-left h2 {
    font-size: 26px;
  }

  .stats-card {
    padding: 20px;
  }

  .stats-card h3 {
    font-size: 32px;
  }

  .stats-card p {
    font-size: 14px;
  }

  .challenge-box {
    padding: 20px;
  }

  .challenge-box h4 {
    font-size: 20px;
  }

  .challenge-box p {
    font-size: 14px;
  }

  .challenge-box .highlight {
    font-size: 16px;
  }

  /* Nextgen */
  .nextgen-list li {
    font-size: 14px;
    gap: 10px;
  }

  .nextgen-image {
    height: 220px;
  }

  .ai-powered {
    padding: 25px;
  }

  /* EMI */
  .emi-stat-item {
    padding: 20px;
  }

  .emi-stat-item h4 {
    font-size: 28px;
  }

  .emi-image {
    height: 220px;
  }

  .emi-image img {
    width: 100%;
    height: 100%;
  }

  /* Testimonials */
  .rating-large {
    font-size: 28px;
    padding: 15px 25px;
  }

  .testi-card {
    padding: 25px 18px;
  }

  /* CTA */
  .cta h2 {
    font-size: 26px;
  }

  .cta-buttons {
    width: 100%;
  }

  /* Footer */
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-links a {
    margin: 0 8px;
    font-size: 12px;
  }

  .newsletter-box {
    flex-direction: column;
  }

  .newsletter-box input {
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .newsletter-box button {
    border-radius: 10px;
    padding: 14px;
  }
}

/* Animations */
[data-aos] {
  transition-timing-function: ease-out;
}
