:root {
    --c1:#012a4a;
    --c2:#013a63;
    --c3:#01497c;
    --c4:#014f86;
    --c5:#2a6f97;
    --c6:#2c7da0;
    --c7:#468faf;
    --c8:#61a5c2;
    --c9:#89c2d9;
    --c10:#a9d6e5;
    --c11:#e5e5e5;
    --white: #ffffff;
    --black: #000000;

    --bg-main:#012a4a;
  --bg-card:#013a63;
  --accent:#61a5c2;
  --text-light:#a9d6e5;
}

body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
}

/* ==============================
   PERFORMANCE OPTIMIZATION RESET
================================ */

/* Use GPU acceleration only where needed */
* {
  box-sizing: border-box;
}

/* Smooth scrolling (native, lightweight) */
html {
  scroll-behavior: smooth;
}

/* Prevent layout thrashing */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Reduce repaint cost */
section {
  contain: layout paint;
}

/* Disable heavy transitions globally */
* {
  transition: background-color 0.2s ease,
              color 0.2s ease,
              box-shadow 0.2s ease,
              transform 0.2s ease;
}

/* Prefer transform instead of top/left */
.card,
.portfolio-item,
.service-card,
.why-card {
  will-change: transform;
}


/* Section reveal animation */
section {
  opacity: 0;
  transform: translateY(30px);
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Sticky Navbar */
.navbar-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.custom-navbar {
    background: linear-gradient(90deg, var(--c1), var(--c4));
    padding: 14px 24px;
}

/* Layout */
.nav-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo {
    height: 70px;
}

.menu-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.6rem;
}

/* Center Menu */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0 auto;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #eaf6ff;
    text-decoration: none;
    font-weight: 500;
    padding: 6px 0;
    transition: all 0.3s ease;
}

.nav-menu li.active a,
.nav-menu a:hover {
    color: var(--c10);
    text-decoration: underline                                                                                                                                                                                                  ;
}

/* Dropdown */
.dropdown {
    position: relative; /* REQUIRED */
}

.dropdown-menu {
    position: absolute;
    top: 38px;
    left: 0;
    background: var(--c2);
    border-radius: 10px;
    padding: 10px 0;
    display: none;
    min-width: 220px;
    z-index: 999;
}

/* SHOW DROPDOWN */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* 🔑 INVISIBLE HOVER BRIDGE (FIX) */
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 12px;
}

/* LINKS */
.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background: var(--c5);
}



/* CTA Button */
.get-quote-btn {
    padding: 10px 24px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--c8), var(--c10));
    color: var(--c1);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.get-quote-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--c10), var(--c7));
    box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

/* Drawer Overlay */
#drawerOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    z-index: 998;
}

#drawerOverlay.active {
    display: block;
}

/* Mobile Drawer */
#mobileDrawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    background: linear-gradient(180deg, var(--c1), var(--c6));
    padding: 20px;
    z-index: 999;
    transition: left 0.4s ease;
}

#mobileDrawer.active {
  color: var(--white);
    left: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.drawer-header img {
    height: 36px;
}

.drawer-header button {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
}

.drawer-menu {
    list-style: none;
    padding: 0;
}

.drawer-menu li {
    padding: 12px 0;
    color: #eaf6ff;
    font-weight: 500;
}
.drawer-menu li a {
    padding: 12px 0;
    color: var(--white);
    font-weight: 500;
}
.drawer-menu li.active a {
    padding: 12px 0;
    color: var(--c10);
}

.issue-card{
  background:var(--white);
transition:0.35s ease;
border-radius:12px; 
padding:1.6rem; 
box-shadow: 0 8px 20px 2px rgba(1, 50, 34, 0.18);

}

.issue-card H5{
  color: var(--c1);
}

.issue-card p{
  color: var(--white);
}
.issue-card:hover{
  background:var(--c1);
color:#fff !important;
transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,0.18);
}

.issue-card:hover h5{
  color: var(--c10);
}
.issue-card:hover p{
  color:#fff !important;
}


.drawer-menu li.active {
    color: var(--c1);
}

.drawer-submenu {
    list-style: none;
    padding-left: 16px;
    margin-top: 8px;
}

.drawer-submenu li {
    font-size: 0.9rem;
    color: var(--c9);
}

.drawer-cta {
    margin-top: 30px;
    text-align: center;
}

/* Hero Base */
.hero-upgrade {
  width: 100%;
  background: linear-gradient(
    120deg,
    #fff4e6 0%,
    #ffffff 45%,
    #f7faff 100%
  );
  padding: 140px 20px;
  overflow: hidden;
}

.hero-container {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  height: 80vh;
}

.slides {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5%;
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s ease;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}

/* Backgrounds */
.bg-one {
  background: linear-gradient(120deg, #fff4e6 0%, #ffffff 45%, #f7faff 100%);
}

.bg-two {
  background: linear-gradient(120deg, #f3e7f8 0%, #ffffff 45%, #f8eef6 100%);
}

.bg-three {
  background: linear-gradient(120deg, #e6f4f6 0%, #ffffff 45%, #eef7f1 100%);
}


.content {
  color: #000;
  max-width: 45%;
  animation: fadeInUp 1.2s ease;
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.hero-primary {
  background: #facc15;
  color: #000;
  padding: 0.9rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.content span {
  color: #facc15;
}

.content button {
  padding: 12px 24px;
  border: none;
  background: #fff;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}

.image {
  max-width: 45%;
  animation: fadeInRight 1.2s ease;
}

.image img {
  width: 100%;
  border-radius: 12px;
}

/* Navigation */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  font-size: 2rem;
  padding: 12px 16px;
  cursor: pointer;
  color: #fff;
  z-index: 10;              /* 👈 ALWAYS ON TOP */
  opacity: 1;               /* 👈 NEVER FADES */
}

.prev { left: 20px; }
.next { right: 20px; }

/* Dots container */
.dots {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  z-index: 10;              /* 👈 ALWAYS ON TOP */
  opacity: 1;               /* 👈 NEVER FADES */
}

/* Individual dots */
.dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  display: inline-block;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.dot.active {
  background: var(--c1);
  transform: scale(1.2);
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .slide {
    flex-direction: column;
    text-align: center;
  }

  .content, .image {
    max-width: 100%;
  }

  .content h1 {
    font-size: 2rem;
  }

  .image {
    margin-top: 20px;
  }
}


/* Section Base */
.about-section {
    padding: 120px 6%;
    background: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Images */
.about-images {
    position: relative;
    flex: 1;
}

.about-img {
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    object-fit: cover;
}

.main-img {
    width: 100%;
    max-width: 420px;
}

.overlay-img {
    width: 260px;
    position: absolute;
    bottom: -60px;
    left: 200px;
    border: 6px solid #fff;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    top: 30px;
    left: -40px;
    background: var(--c6);
    color: #fff;
    padding: 20px 24px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.experience-badge span {
    font-size: 1.8rem;
    font-weight: 700;
}

/* Content */
.about-content {
    flex: 1.2;
}

.about-content h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--c1);
    margin-bottom: 24px;
}

.about-description {
    color: var(--c4);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Points */
.about-points {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.point {
    display: flex;
    gap: 20px;
}

.point i {
    font-size: 28px;
    color: var(--c6);
    min-width: 32px;
}

.point h5 {
    margin: 0 0 6px;
    color: var(--c2);
}

.point p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}

/* Responsive */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 60px;
    }

    .overlay-img {
        position: static;
        margin-top: 20px;
    }

    .experience-badge {
        position: static;
        margin: 20px 0;
        display: inline-block;
    }

    .about-content h2 {
        font-size: 2.2rem;
        text-align: center;
    }

    .about-description {
        text-align: center;
    }
}

:root {
    --c1:#012a4a;
    --c2:#013a63;
    --c3:#01497c;
    --c4:#014f86;
    --c5:#2a6f97;
    --c6:#2c7da0;
    --c7:#468faf;
    --c8:#61a5c2;
    --c9:#89c2d9;
    --c10:#a9d6e5;
}

/* Section Base */
.services-section {
    padding: 120px 6%;
    background: linear-gradient(
    120deg,
    #fff4e6 0%,
    #ffffff 45%,
    #f7faff 100%
  );
}

.services-container {
    max-width: 1200px;
    margin: auto;
}

/* Header */
.services-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 70px;
}

.services-header h2 {
    font-size: 2.7rem;
    color: var(--c1);
    margin-bottom: 16px;
}

.services-header p {
    color: var(--c4);
    line-height: 1.7;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

/* Card */
.service-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 18px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    overflow: hidden;
}

/* Accent line */
.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--c6), var(--c8));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Icon */
.service-card i {
    font-size: 38px;
    color: var(--c6);
    margin-bottom: 22px;
    transition: transform 0.35s ease;
}

/* Hover */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.15);
}

.service-card:hover i {
    transform: scale(1.1);
}

/* Text */
.service-card h4 {
    color: var(--c2);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-header h2 {
        font-size: 2.2rem;
    }
}

:root {
  --c1:#012a4a;
  --c2:#013a63;
  --c3:#01497c;
  --c4:#014f86;
  --c5:#2a6f97;
  --c6:#2c7da0;
  --c7:#468faf;
  --c8:#61a5c2;
  --c9:#89c2d9;
  --c10:#a9d6e5;
}

/* Section Base */
.business-banner {
  padding: 120px 6%;
  background: #f7fbff;
}

.banner-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* LEFT SIDE */
.banner-left {
  position: relative;
  flex: 1;
}

.image-grid {
  display: grid;
  grid-template-columns: 380px 260px;
  grid-template-rows: 200px 200px;
  gap: 24px;
}

.img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.img.tall {
  grid-row: span 2;
}

.img.wide {
  grid-column: span 1;
}

/* Experience Badge */
.experience-badge {
  position: absolute;
  bottom: -40px;
  left: 40px;
  width: 150px;
  height: 150px;
  background: var(--c3);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.experience-badge h3 {
  font-size: 2.2rem;
  margin: 0;
}

.experience-badge p {
  margin: 0;
  font-size: 0.9rem;
}

/* RIGHT SIDE */
.banner-right {
  flex: 1;
}

.banner-right h2 {
  font-size: 2.9rem;
  font-weight: 700;
  color: var(--c1);
  margin-bottom: 24px;
  line-height: 1.2;
}

.banner-text {
  color: var(--c4);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Stats */
.banner-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
}

.stat-card {
  background: #fff;
  padding: 22px 26px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.stat-card h4 {
  margin: 0;
  color: var(--c2);
  font-size: 1.6rem;
}

.stat-card span {
  font-size: 0.85rem;
  color: #555;
}

/* CTA */
.banner-cta {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--c6), var(--c8));
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 992px) {
  .banner-wrapper {
    flex-direction: column;
    gap: 70px;
  }

  .image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .img.tall {
    grid-row: auto;
  }

  .experience-badge {
    position: static;
    margin: 30px auto 0;
  }

  .banner-right h2 {
    text-align: center;
    font-size: 2.4rem;
  }

  .banner-text {
    text-align: center;
  }

  .banner-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .banner-cta {
    display: block;
    margin: auto;
  }
}

/* Section Base */
.why-choose-section {
  padding: 120px 6%;
  background: linear-gradient(
    120deg,
    #fff4e6 0%,
    #ffffff 45%,
    #f7faff 100%
  );
}

.why-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.why-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.why-header h2 {
  font-size: 2.7rem;
  color: var(--bg-main);
  margin-bottom: 16px;
}

.why-header p {
  color: var(--bg-card);
  line-height: 1.7;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* Card */
.why-card {
  background: var(--c2);
  padding: 42px 34px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  transition: all 0.35s ease;
  overflow: hidden;
}

/* Accent Line */
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--c8), var(--c10));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.why-card:hover::before {
  transform: scaleX(1);
}

/* Icon */
.why-card i {
  font-size: 40px;
  color: var(--c8);
  margin-bottom: 22px;
  transition: transform 0.35s ease;
}

/* Hover */
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.why-card:hover i {
  transform: scale(1.1);
}

/* Text */
.why-card h4 {
  color: #ffffff;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--c10);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-header h2 {
    font-size: 2.2rem;
  }
}

/* Section */
.portfolio-section {
  padding: 120px 6%;
  background: linear-gradient(180deg, var(--white), var(--white));
}

.portfolio-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.portfolio-header {
  text-align: center;
  margin-bottom: 50px;
}

.portfolio-header h2 {
  color: #000;
  font-size: 2.7rem;
}

.portfolio-header p {
  color: var(--c1);
}

/* Tabs */
.portfolio-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-btn {
  background: #01497c;
  color: var(--text-light);
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.tab-btn.active {
  background: linear-gradient(135deg, #2c7da0, #61a5c2);
  color: #fff;
}

/* Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  transition: opacity 0.25s ease;
}

/* Item */
.portfolio-item {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
}

.portfolio-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.portfolio-item h4 {
  color: #fff;
  margin: 14px 0 6px;
}

.portfolio-item p {
  color: var(--text-light);
  font-size: 0.85rem;
  padding-bottom: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

:root {
  --dark:#012a4a;
  --dark-2:#013a63;
  --accent:#61a5c2;
  --light:#a9d6e5;
  --white:#ffffff;
}

/* Section */
.traffic-banner {
  padding: 120px 6%;
  background: linear-gradient(180deg, var(--dark), var(--dark-2));
}

/* Container */
.traffic-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* Content */
.traffic-content {
  flex: 1;
}

.traffic-content h2 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.traffic-desc {
  color: var(--light);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Stats */
.traffic-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
}

.stat span {
  display: block;
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
}

.stat p {
  color: var(--light);
  font-size: 0.9rem;
}

/* CTA */
.traffic-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #2c7da0, #61a5c2);
  color: #fff;
  padding: 14px 34px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
}

.call span {
  color: var(--light);
  font-size: 0.85rem;
}

.call strong {
  color: #fff;
}

/* Visual */
.traffic-visual {
  flex: 1;
  position: relative;
}

/* Image */
.image-shape {
  width: 320px;
  height: 360px;
  overflow: hidden;
  border: 6px solid var(--accent);
}

.image-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Benefits Card */
.benefits-card {
  position: absolute;
  bottom: -40px;
  right: -20px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  width: 280px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.benefits-card h4 {
  margin-bottom: 16px;
  color: var(--dark);
}

.benefit {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.benefit .icon {
  font-size: 22px;
}

.benefit strong {
  color: var(--dark);
}

.benefit p {
  font-size: 0.85rem;
  color: #555;
}

/* Responsive */
@media (max-width: 992px) {
  .traffic-container {
    flex-direction: column;
    text-align: center;
  }

  .traffic-stats {
    justify-content: center;
  }

  .traffic-cta {
    justify-content: center;
  }

  .traffic-visual {
    margin-top: 60px;
  }

  .benefits-card {
    position: static;
    margin: 30px auto 0;
  }
}

/* Section reveal animation */
.traffic-banner {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.traffic-banner.visible {
  opacity: 1;
  transform: translateY(0);
}

:root {
  --dark:#012a4a;
  --dark-2:#013a63;
  --accent:#2c7da0;
  --accent-light:#61a5c2;
  --light:#a9d6e5;
  --success:#4ade80;
  --danger:#f87171;
}

.pricing-section {
  padding: 120px 6%;
  background: #f7fbff;
}

.pricing-container {
  max-width: 1400px;
  margin: auto;
}

.pricing-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.pricing-header h2 {
  color: var(--dark);
  font-size: 2.6rem;
}

.pricing-header p {
  color: #555;
  margin-top: 10px;
}

/* Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

/* Card */
.pricing-card {
  background: #fff;
  border-radius: 22px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  transition: transform 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

/* Featured */
.pricing-card.featured {
  background: var(--dark);
  color: #fff;
}

.pricing-card.featured .features li {
  color: var(--light);
}

/* Price */
.price-badge {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  margin: 0 auto 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
}

.price-badge span {
  font-size: 0.85rem;
}

.price-badge.highlight {
  background: #ef4444;
}

.plan-sub {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 20px;
}

/* Features */
.features {
  text-align: left;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.features li {
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.features li.yes::before {
  content: "✔ ";
  color: var(--success);
  font-weight: bold;
}

.features li.no::before {
  content: "✖ ";
  color: var(--danger);
  font-weight: bold;
}

/* Buttons */
.btn-primary,
.btn-accent {
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
}

.btn-primary {
  background: var(--dark);
  color: #fff;
}

.btn-accent {
  background: #ef4444;
  color: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pricing-section.visible {
  opacity: 1;
  transform: translateY(0);
}



 /* ===== Device Assistance Section Styles ===== */
    .da-services-section {
      padding: 4rem 1.5rem;
      max-width: 1600px;
      margin: auto;
    }

    .da-services-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .da-services-header h2 {
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      color: #0f172a;
      margin-bottom: 0.75rem;
    }

    .da-services-header p {
      max-width: 760px;
      margin: auto;
      color: #475569;
      font-size: 1rem;
    }

    .da-services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2rem;
    }

    .da-service-card {
      background: #ffffff;
      border-radius: 18px;
      padding: 2.2rem 1.8rem 2.6rem;
      text-align: center;
      box-shadow: 0 10px 25px rgba(0,0,0,0.06);
      transition: all 0.35s ease;
      opacity: 0;
      transform: translateY(60px);
    }

    .da-service-card img{
      width: 100%;
    }

    .da-service-card.da-show {
      opacity: 1;
      transform: translateY(0);
    }

    /* Scroll directions */
    .da-from-left {
      transform: translateX(-80px);
    }

    .da-from-right {
      transform: translateX(80px);
    }

    .da-from-left.da-show,
    .da-from-right.da-show {
      transform: translateX(0);
    }

    /* Hover */
    .da-service-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 25px 45px rgba(0,0,0,0.12);
    }

    .da-service-card img {
      max-width: 180px;
      margin-bottom: 1.5rem;
      transition: transform 0.35s ease;
    }

    .da-service-card:hover img {
      transform: scale(1.08);
    }

    .da-service-card h3 {
      font-size: 1.25rem;
      color: #0f172a;
      margin-bottom: 0.6rem;
    }

    .da-service-card p {
      font-size: 0.95rem;
      line-height: 1.6;
      color: #475569;
      margin-bottom: 1.6rem;
    }

    .da-service-card a {
      display: inline-block;
      padding: 0.65rem 1.8rem;
      border-radius: 30px;
      border: 2px solid var(--c3);
      color: #1e40af;
      text-decoration: none;
      font-size: 0.9rem;
      transition: all 0.3s ease;
    }

    .da-service-card a:hover {
      background: var(--c1);
      color: #ffffff;
    }

    @media (max-width: 600px) {
      .da-services-section {
        padding: 3rem 1rem;
      }
    }

/* our services */

/* ===============================
   ASSIST SECTION
================================ */

.qs-assist-section {
  padding: 100px 0;
  background: linear-gradient(
    120deg,
    #fff4e6 0%,
    #ffffff 45%,
    #f7faff 100%
  );
}

.qs-assist-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px;
}

.qs-assist-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--c1);
  margin-bottom: 15px;
}

.qs-assist-header p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

/* Grid */
.qs-assist-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  justify-items: center;
}

/* Item */
.qs-assist-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.35s ease;
}

.qs-assist-item:hover {
  transform: translateY(-8px);
}

.qs-assist-item span {
  display: block;
  margin-top: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
}

/* Circle */
.qs-assist-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.qs-assist-circle img {
  width: 100%;
  height: auto;
  transition: transform 0.35s ease;
}

/* Hover effect */
.qs-assist-item:hover .qs-assist-circle {
  box-shadow: 0 28px 60px rgba(10,54,157,0.25);
}

.qs-assist-item:hover img {
  transform: scale(1.1);
}

/* ===============================
   SCROLL ANIMATIONS
================================ */

.qs-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.qs-animate.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1200px) {
  .qs-assist-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .qs-assist-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .qs-assist-header h2 {
    font-size: 1.9rem;
  }
}

@media (max-width: 480px) {
  .qs-assist-grid {
    grid-template-columns: 1fr;
  }
}
/* ends */

/* Section */
.client-testimonial {
  padding: 120px 6%;
  background: #f7fbff;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease;
}

.client-testimonial.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-wrapper {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.testimonial-header {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.testimonial-header .tag {
  color: var(--c8);
  font-size: 0.85rem;
  font-weight: 600;
}

.testimonial-header h2 {
  color: var(--c1);
  font-size: 2.6rem;
}

.testimonial-header .right {
  max-width: 500px;
  color: #555;
}

/* Slider */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  display: flex;
  gap: 40px;
  padding: 40px;
  background: linear-gradient(135deg, #ffffff, #eef6fb);
  border-radius: 20px;
  align-items: center;
}

/* Image */
.image-box {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--c8);
  flex-shrink: 0;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.content-box .quote {
  font-size: 1.1rem;
  color: var(--c1);
  margin-bottom: 16px;
}

.stars {
  color: #fbbf24;
  margin-bottom: 12px;
}

.content-box h4 {
  margin: 0;
  color: var(--c1);
}

.content-box span {
  color: #666;
  font-size: 0.85rem;
}

/* Navigation */
.nav-buttons {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  gap: 12px;
}

.nav-buttons button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--c1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-header {
    text-align: center;
  }

  .testimonial-slide {
    flex-direction: column;
    text-align: center;
  }

  .image-box {
    width: 160px;
    height: 160px;
  }

  .nav-buttons {
    position: static;
    justify-content: center;
    margin-top: 20px;
  }
}

:root {
  --c1:#012a4a;
  --c2:#013a63;
  --c8:#61a5c2;
  --c10:#a9d6e5;
}

/* Footer Base */
.site-footer {
  width: 100%;
  background: linear-gradient(180deg, var(--c1), var(--c2));
  color: #fff;
  padding-top: 70px;
}

/* Container */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px;
  align-items: start; /* KEY FIX */
}

/* Columns */
.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 14px;
}

/* Brand Column */
.footer-brand {
  gap: 12px;
}

/* Image */
.footer-image {
  height: 60px;              /* FIXED HEIGHT */
  object-fit: cover;
  border-radius: 10px;
  margin-right: 20px;
}

.footer-payments {
  margin-top: 6px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-payments img {
  height: 80px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.footer-payments img:hover {
  opacity: 1;
}

/* ===============================
   DISCLAIMER
================================ */
.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 15px;
  margin-top: 10px;
  text-align: center;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.footer-disclaimer p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 10px;
}

.footer-disclaimer strong {
  color: #ffffff;
}

/* Text */
.footer-col p {
  color: var(--c10);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Lists */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--c10);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col ul li a:hover {
  color: #fff;
  transform: translateX(6px);
}

/* Contact */
.contact-info li {
  font-size: 0.9rem;
  color: var(--c10);
}

/* Bottom */
.footer-bottom {
  width: 100%;
  background: rgba(0,0,0,0.15);
  padding: 16px 12px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--c10);
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-image {
    height: 140px;
  }

  .footer-col ul li a:hover {
    transform: none;
  }
}

/* about us page */

/* =========================
   ABOUT PAGE BANNER
========================= */
.about-page-banner {
  background: linear-gradient(
    120deg,
    #fff4e6 0%,
    #ffffff 45%,
    #f7faff 100%
  );
  padding: 140px 20px;
  text-align: center;
  color: var(--bg-main);
}

.page-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.about-page-banner h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.about-page-banner p {
  max-width: 600px;
  margin: auto;
  color: var(--c3);
  line-height: 1.7;
}

/* =========================
   ABOUT COMPANY
========================= */
.about-company {
  padding: 110px 20px;
}

.about-company-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-company-image img {
  width: 100%;
  border-radius: 20px;
}

.about-company-content h2 {
  color: var(--c1);
  margin-bottom: 18px;
}

.about-company-content p {
  line-height: 1.7;
  margin-bottom: 14px;
  color: #444;
}

/* =========================
   OUR MISSION
========================= */
.our-mission {
  padding: 110px 20px;
  background: #f7fbff;
}

.mission-container {
  max-width: 1200px;
  margin: auto;
}

.mission-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.mission-header h2 {
  color: var(--c1);
}

.mission-header p {
  color: #555;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.mission-card {
  background: #fff;
  padding: 32px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.mission-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.mission-card h4 {
  color: var(--c1);
  margin-bottom: 10px;
}

.mission-card p {
  font-size: 0.9rem;
  color: #555;
}

/* =========================
   SCROLL ANIMATION
========================= */
.section-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease;
}

.section-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .about-company-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .about-page-banner h1 {
    font-size: 2.2rem;
  }
}

/* Section */
.pricing-faq {
  padding: 110px 20px;
  background: #f7fbff;
}

/* Container */
.faq-container {
  max-width: 900px;
  margin: auto;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  color: var(--c1);
  font-size: 2.4rem;
}

.faq-header p {
  color: #555;
  max-width: 600px;
  margin: 10px auto 0;
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Item */
.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* Question */
.faq-question {
  width: 100%;
  padding: 22px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--c8);
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

/* Active */
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 22px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Scroll Animation */
.section-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease;
}

.section-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 600px) {
  .faq-question {
    font-size: 0.95rem;
  }
}

/* Section */
.contact-section {
  padding: 120px 20px;
  background: #f7fbff;
}

/* Layout */
.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* Image */
.contact-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* Form */
.contact-form-wrapper h2 {
  color: var(--c1);
  margin-bottom: 10px;
}

.contact-form-wrapper p {
  color: #555;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--c1);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 0.95rem;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--c8);
}

.error {
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 4px;
}

.success-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.popup-box {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  max-width: 400px;
}

.popup-box h3 {
  color: #012a4a;
}

.popup-box button {
  margin-top: 20px;
  padding: 10px 30px;
  border: none;
  background: #012a4a;
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
}


/* Button */
.submit-btn {
  background: linear-gradient(135deg, var(--c1), var(--c2));
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.95rem;
}

/* Scroll Animation */
.section-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease;
}

.section-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Banner */
.portfolio-banner {
  background: linear-gradient(
    120deg,
    #fff4e6 0%,
    #ffffff 45%,
    #f7faff 100%
  );
  padding: 140px 20px;
  text-align: center;
  color: var(--bg-main);
}

.page-tag {
  background: rgba(255,255,255,0.15);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
}

.portfolio-banner h1 {
  font-size: 3rem;
  margin: 16px 0;
}

.portfolio-banner p {
  max-width: 600px;
  margin: auto;
  color: var(--bg-main);
}

/* Banner */
.services-banner {
  background: linear-gradient(
    120deg,
    #fff4e6 0%,
    #ffffff 45%,
    #f7faff 100%
  );
  padding: 140px 20px;
  text-align: center;
  color: var(--bg-main);
}

.page-tag {
  background: rgba(255,255,255,0.15);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
}

.services-banner h1 {
  font-size: 3rem;
  margin: 18px 0;
}

.services-banner p {
  max-width: 650px;
  margin: auto;
  color: var(--bg-main);
}

/* Sections */
.services-overview,
.services-detail,
.services-cta {
  padding: 110px 20px;
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

/* Overview */
.overview-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.overview-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.overview-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.overview-card h4 {
  padding: 16px 20px 6px;
  color: var(--c1);
}

.overview-card p {
  padding: 0 20px 20px;
  color: #555;
}

/* Detailed Services */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 90px;
}

.service-row.reverse {
  direction: rtl;
}

.service-row.reverse > * {
  direction: ltr;
}

.service-image img {
  width: 100%;
  border-radius: 20px;
}

.service-content h3 {
  color: var(--c1);
  margin-bottom: 14px;
}

.service-content p {
  color: #444;
  margin-bottom: 16px;
}

.service-content ul {
  padding-left: 18px;
}

.service-content ul li {
  margin-bottom: 8px;
  color: #555;
}

/* CTA */
.services-cta {
  background: linear-gradient(180deg, var(--c1), var(--c2));
  color: #fff;
  text-align: center;
}

.services-cta p {
  color: var(--c10);
  margin: 12px 0 24px;
}

.cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--c1);
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

/* Scroll Animation */
.section-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease;
}

.section-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-row.reverse {
    direction: ltr;
  }
}

/* HERO */
.service-hero {
  background: linear-gradient(
    120deg,
    #fff4e6 0%,
    #ffffff 45%,
    #f7faff 100%
  );
  padding: 150px 20px;
  text-align: center;
  color: var(--bg-main);
}

.service-tag {
  background: rgba(255,255,255,0.15);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
}

.service-hero h1 {
  font-size: 3rem;
  margin: 20px 0;
}

.service-hero p {
  max-width: 650px;
  margin: auto;
  color: var(--bg-main);
}

/* SECTIONS */
.service-container {
  max-width: 1200px;
  margin: auto;
  padding: 110px 20px;
}

.center {
  text-align: center;
  margin-bottom: 60px;
}

/* INTRO */
.service-intro .service-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-image img {
  width: 100%;
  border-radius: 20px;
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.feature-card {
  background: #fff;
  padding: 34px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-card i {
  font-size: 36px;
  color: var(--c8);
  margin-bottom: 14px;
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}

.process-step {
  background: #f7fbff;
  padding: 32px;
  border-radius: 20px;
}

.process-step span {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--c8);
}

/* TECH */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.tech-card {
  background: linear-gradient(180deg, var(--c1), var(--c2));
  color: #fff;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
}

/* CTA */
.service-cta {
  background: linear-gradient(180deg, var(--c1), var(--c2));
  text-align: center;
  padding: 120px 20px;
  color: #fff;
}

.cta-btn {
  background: #fff;
  color: var(--c1);
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

/* SCROLL ANIMATION */
.section-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease;
}

.section-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .service-intro .service-container,
  .features-grid,
  .process-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .service-hero h1 {
    font-size: 2.2rem;
  }
}

/* Section */
.service-faq {
  padding: 110px 20px;
  background: #f7fbff;
}

/* Container */
.faq-container {
  max-width: 900px;
  margin: auto;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  color: var(--c1);
}

.faq-header p {
  color: #555;
  max-width: 600px;
  margin: 10px auto 0;
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Item */
.faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* Question */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  color: var(--c8);
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

/* Active */
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 26px 22px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Scroll Animation */
.section-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease;
}

.section-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 600px) {
  .faq-question {
    font-size: 0.95rem;
  }
}

/* HERO */
.dmx-hero {
  background: linear-gradient(
    120deg,
    #fff4e6 0%,
    #ffffff 45%,
    #f7faff 100%
  );
  padding: 140px 20px;
}

.dmx-hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.dmx-hero-text {
  color: var(--bg-main);
}

.dmx-tag {
  background: rgba(255,255,255,0.15);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
}

.dmx-hero-image img {
  width: 100%;
  border-radius: 22px;
}

/* CONTAINER */
.dmx-container {
  max-width: 1200px;
  margin: auto;
  padding: 110px 20px;
}

.dmx-narrow {
  max-width: 800px;
}

.dmx-center {
  text-align: center;
  margin-bottom: 60px;
}

/* ABOUT */
.dmx-about {
  background: #f7fbff;
}

.dmx-about .dmx-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.dmx-about-image img {
  width: 100%;
  border-radius: 20px;
}

/* SERVICES */
.dmx-services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.dmx-service-card {
  background: #fff;
  padding: 34px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.dmx-service-card i {
  font-size: 34px;
  color: var(--c8);
  margin-bottom: 14px;
}

/* PROCESS */
.dmx-process {
  background: #f7fbff;
}

.dmx-process-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}

.dmx-process-step {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
}

/* FAQ */
.dmx-faq-item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.dmx-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
}

.dmx-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  transition: 0.35s ease;
}

.dmx-faq-item.active .dmx-faq-answer {
  max-height: 200px;
  padding-bottom: 22px;
}

/* CTA */
.dmx-cta {
  background: linear-gradient(135deg, var(--c1), var(--c2));
  text-align: center;
  padding: 120px 20px;
  color: #fff;
}

.dmx-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 36px;
  background: var(--c8);
  color: #012a4a;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.dmx-btn.light {
  background: #fff;
}

/* ANIMATION */
.dmx-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease;
}

.dmx-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .dmx-hero-container,
  .dmx-about .dmx-container,
  .dmx-services-grid,
  .dmx-process-grid {
    grid-template-columns: 1fr;
  }
}

:root {
  --c1:#012a4a;
  --c2:#013a63;
  --c10:#a9d6e5;
}

/* HERO */
.privacy-hero {
  background: linear-gradient(135deg, var(--c1), var(--c2));
  padding: 140px 20px;
  text-align: center;
  color: #fff;
}

.privacy-hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.privacy-hero p {
  max-width: 650px;
  margin: auto;
  color: var(--c10);
}

/* CONTENT */
.privacy-content {
  padding: 110px 20px;
  background: #f7fbff;
}

.privacy-container {
  max-width: 1200px;
  margin: auto;
}

.privacy-block {
  background: #fff;
  padding: 34px;
  border-radius: 18px;
  margin-bottom: 28px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.privacy-block h2 {
  color: var(--c1);
  margin-bottom: 14px;
}

.privacy-block p,
.privacy-block li {
  color: #444;
  line-height: 1.7;
}

.privacy-block ul {
  padding-left: 18px;
}

/* SCROLL ANIMATION */
.privacy-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease;
}

.privacy-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .privacy-hero h1 {
    font-size: 2.2rem;
  }

  .privacy-block {
    padding: 24px;
  }
}

/* HERO */
.terms-hero {
  background: linear-gradient(135deg, var(--c1), var(--c2));
  padding: 140px 20px;
  text-align: center;
  color: #fff;
}

.terms-hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.terms-hero p {
  max-width: 650px;
  margin: auto;
  color: var(--c10);
}

/* CONTENT */
.terms-content {
  padding: 110px 20px;
  background: #f7fbff;
}

.terms-container {
  max-width: 1200px;
  margin: auto;
}

.terms-block {
  background: #fff;
  padding: 34px;
  border-radius: 18px;
  margin-bottom: 28px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.terms-block h2 {
  color: var(--c1);
  margin-bottom: 14px;
}

.terms-block p,
.terms-block li {
  color: #444;
  line-height: 1.7;
}

.terms-block ul {
  padding-left: 18px;
}

/* SCROLL ANIMATION */
.terms-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease;
}

.terms-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .terms-hero h1 {
    font-size: 2.2rem;
  }

  .terms-block {
    padding: 24px;
  }
}
