@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
  padding-top: 120px;
  overflow-x: hidden;
  background: #fafcff;
}


/* NAVBAR */

.navbar {

  position: fixed;

  top: 16px;

  left: 50%;

  transform: translateX(-50%);

  width: 95%;

  z-index: 999;

  border-radius: 26px;

  background:
    rgba(255, 255, 255, .85);

  backdrop-filter:
    blur(25px);

  box-shadow:
    0 10px 50px rgba(0, 0, 0, .08);

  transition: .35s;

}


.nav-container {

  /* max-width: 1450px; */

  height: 88px;

  margin: auto;

  padding: 0 32px;

  display: flex;

  align-items: center;

  justify-content: space-between;

}



/* LOGO */

.logo {

  display: flex;

  align-items: center;

  gap: 14px;

  text-decoration: none;

}


.logo img {

  width: 60px;

  height: 60px;

  padding: 6px;

  background: white;

  border-radius: 18px;

  box-shadow:
    0 10px 30px rgba(99, 102, 241, .20);

}


.brand {

  font-size: 24px;

  font-weight: 900;

  color: #111827;

}


.brand span {

  display: block;

  margin-top: 4px;

  font-size: 12px;

  color: #6366f1;

}



/* MENU */

.menu {

  display: flex;

  align-items: center;

  gap: 8px;

  list-style: none;

}


.menu li {

  position: relative;

}


.menu a {

  display: flex;

  align-items: center;

  gap: 6px;

  padding: 14px 18px;

  text-decoration: none;

  font-weight: 700;

  border-radius: 16px;

  color: #475569;

  transition: .3s;

}


.menu a:hover {

  background: #eef2ff;

  color: #4f46e5;

  transform:
    translateY(-2px);

}


.active {

  background: #eef2ff;

  color: #4f46e5 !important;

}



/* DROPDOWN */

.dropdown {

  position: absolute;

  top: 45px;

  left: 0;

  width: 320px;

  padding: 16px;

  background: white;

  border-radius: 22px;

  display: none;

  box-shadow:
    0 25px 60px rgba(0, 0, 0, .10);

}


.dropdown a {

  display: block;

  padding: 14px;

  margin-bottom: 8px;

}


.dropdown-parent:hover .dropdown {

  display: block;

}



/* BUTTON */

.demo-btn {

  border: none;

  padding: 15px 28px;

  border-radius: 60px;

  font-size: 15px;

  font-weight: 800;

  cursor: pointer;

  color: white !important;

  background:
    linear-gradient(135deg,
      #6366f1,
      #8b5cf6);

  box-shadow:
    0 15px 35px rgba(99, 102, 241, .28);

  transition: .3s;

}


.demo-btn:hover {
background:
    linear-gradient(135deg,
      #6366f1,
      #8b5cf6);
  transform:
    translateY(-3px);

}



/* HAMBURGER */

.menu-btn {

  display: none;

  width: 42px;

  height: 42px;

  cursor: pointer;

  position: relative;

  z-index: 1001;

}


.menu-btn span {

  position: absolute;

  width: 30px;

  height: 3px;

  left: 6px;

  background: #4f46e5;

  border-radius: 30px;

  transition: .35s;

}


.menu-btn span:nth-child(1) {

  top: 10px;

}


.menu-btn span:nth-child(2) {

  top: 19px;

}


.menu-btn span:nth-child(3) {

  top: 28px;

}



/* X */

.menu-btn.active span:nth-child(1) {

  transform:
    rotate(45deg);

  top: 19px;

}


.menu-btn.active span:nth-child(2) {

  opacity: 0;

}


.menu-btn.active span:nth-child(3) {

  transform:
    rotate(-45deg);

  top: 19px;

}



/* TABLET */

@media(max-width:1100px) {

  .navbar {

    top: 0;

    width: 100%;

    border-radius:
      0 0 28px 28px;

  }

  .brand {

    font-size: 18px;

  }

  .menu-btn {

    display: block;

  }

  .menu {

    position: fixed;

    right: -100%;

    top: 0;

    width: 340px;

    height: 100vh;

    background:

      linear-gradient(180deg,
        white,
        #eef2ff);

    backdrop-filter:

      blur(30px);

    padding:

      110px 26px;

    flex-direction: column;

    align-items: flex-start;

    gap: 14px;

    transition: .45s;

    overflow: auto;

    box-shadow:
      -10px 0 50px rgba(0, 0, 0, .08);

  }


  .menu.active {

    right: 0;

  }


  .menu li {

    width: 100%;

  }


  .menu a {

    width: 100%;

    padding: 16px;

  }


  .demo-btn {

    width: 100%;

  }



  /* MOBILE DROPDOWN */

  .dropdown {

    position: relative;

    display: none;

    top: 10px;

    width: 100%;

    padding: 10px;

    box-shadow: none;

    background: #fff;

  }


  .dropdown-parent.open .dropdown {

    display: block;

  }

}



/* MOBILE */

@media(max-width:600px) {

  body {

    padding-top: 90px;

  }

  .nav-container {

    height: 74px;

    padding: 0 18px;

  }


  .logo {

    gap: 10px;

  }


  .logo img {

    width: 48px;

    height: 48px;

  }


  .brand {

    font-size: 16px;

    line-height: 1.2;

  }


  .brand span {

    font-size: 10px;

  }


  .menu {

    width: 100%;

    padding:

      100px 20px;

  }

}

/* navbar Part END here ======================================================== */

/* Section 1 Part Start here =================================================== */
/* HERO */

.hero {

  /* margin-top: 110px; */
  width: 100%;
  /* display: flex;
  justify-content: center; */
  position: relative;

}



/* CAROUSEL */

.carousel {

  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;

  position: relative;

}



/* SLIDER */

.slides {
  width: 95%;
  display: flex;
  transition:

    transform 1.2s cubic-bezier(0.22,
      1,
      0.36,
      1);

  will-change:
    transform;

}



.slide {

  min-width: 100%;

}



/* IMAGE */

.slide img {

  width: 100%;
  border-radius: 30px;
  display: block;

  height: auto;

  object-fit: contain;

}



/* FIXED BUTTON SECTION */

.hero-actions {

  position: absolute;

  /* LEFT CORNER */

  left: 50px;
  bottom: 20px;

  transform: none;

  display: flex;

  gap: 18px;

  align-items: center;

  z-index: 50;

}



/* BUTTON */

.btn {

  position: relative;

  overflow: hidden;

  padding:

    20px 38px;

  border: none;

  border-radius: 70px;

  font-size: 16px;

  font-weight: 800;

  cursor: pointer;

  letter-spacing: .3px;

  transition:

    all .45s ease;

  backdrop-filter:

    blur(18px);

}



/* DEMO BUTTON */

.primary {

  color: white;

  background:

    linear-gradient(135deg,

      #4f46e5 0%,

      #7c3aed 45%,

      #9333ea 100%);

  box-shadow:

    0 18px 50px rgba(79,
      70,
      229,
      0.30);

}



/* MODULE BUTTON */

.secondary {

  color: #4338ca;
text-decoration: none;
  background:

    rgba(255,
      255,
      255,
      0.72);

  border:

    1px solid rgba(255,
      255,
      255,
      0.55);

  box-shadow:

    0 14px 40px rgba(0,
      0,
      0,
      0.08);

}



/* SHINE */

.btn::before {

  content: "";

  position: absolute;

  top: 0;

  left: -120%;

  width: 70%;

  height: 100%;

  background:

    linear-gradient(90deg,

      transparent,

      rgba(255,
        255,
        255,
        .35),

      transparent);

  transform:

    skewX(-20deg);

  transition: .8s;

}



.btn:hover::before {

  left: 150%;

}



/* HOVER */

.primary:hover {

  transform:

    translateY(-6px) scale(1.03);

  box-shadow:

    0 28px 70px rgba(79,
      70,
      229,
      0.40);

}



.secondary:hover {

  transform:

    translateY(-6px);

  background: white;

  box-shadow:

    0 25px 55px rgba(60,
      70,
      180,
      0.18);

}



/* CLICK */

.btn:active {

  transform:

    scale(.97);

}

/* ARROW */

.arrow {

  position: absolute;

  top: 50%;

  transform:
    translateY(-50%);

  width: 65px;

  height: 65px;

  border: none;

  border-radius: 50%;

  cursor: pointer;

  background:

    rgba(255,
      255,
      255,
      .85);

  backdrop-filter:

    blur(18px);

  font-size: 26px;

  z-index: 15;

}



.prev {

  left: 28px;

}



.next {

  right: 28px;

}



/* DOTS */

.dots {

  position: absolute;

  bottom: 10px;

  left: 50%;

  transform:
    translateX(-50%);

  display: flex;

  gap: 12px;

  z-index: 20;

}



.dot {

  width: 12px;

  height: 12px;

  border-radius: 50%;

  background:

    rgba(255,
      255,
      255,
      .55);

  transition: .4s;

}



.dot.active {

  width: 46px;

  border-radius: 50px;

  background: white;

}



@media (max-width: 768px) {

  .hero {
    margin-top: 80px;
  }

  .slide img {
    width: 100%;
    height: auto;
    border-radius: 16px;
  }

  .hero-actions {
    position: static;
    transform: none;
    margin-top: 20px;
    padding: 0 15px;

    /* display: flex;
    flex-direction: column; */
    gap: 12px;

    width: 100%;
  }

  .btn {
    /* width: 100%; */
    padding: 10px 5px;
    font-size: 11px;
    justify-content: center;
  }

  .dots {
    display: none;
    bottom: 10px;
  }
}

/* Section 1 part End Here ====================================================== */

/* Section 2 Part Start here ===================================================== */


/* CONTAINER */
.section2 {
  margin: 40px 0px;

}

/* TOP HERO TEXT */

.hero-heading {
  width: 100%;
  text-align: center;
  padding: 90px 20px 70px;
  /* background: #efefef; */
}

.hero-heading span {
  display: block;
  color: #00A9E8;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.hero-heading h1 {
  color: #081144;
  font-size: 72px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-heading p {
  color: #33456F;
  font-size: 22px;
  line-height: 1.7;
}

/* Responsive */

@media(max-width:768px) {

  .hero-heading {
    padding: 70px 20px 50px;
  }

  .hero-heading span {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .hero-heading h1 {
    font-size: 38px;
  }

  .hero-heading p {
    font-size: 16px;
  }

}

.erp-role-container {

  width: 80%;
  max-width: 1400px;

  margin: auto;

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(380px, 1fr));

  gap: 22px;

}


/* CARD */

.erp-role-card {

  background: #fff;

  border-radius: 20px;

  padding: 24px;

  position: relative;

  min-height: 280px;

  box-shadow:
    0 2px 10px rgba(0, 0, 0, .04),
    0 8px 24px rgba(0, 0, 0, .04);

  transition: .3s;

}

.erp-role-card:hover {
  transform: translateY(-6px);
}


/* HEADER */

.erp-role-header {

  display: flex;

  align-items: center;

  gap: 16px;

}

.erp-role-icon {

  width: 72px;

  height: 72px;

  min-width: 72px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 30px;

}

.erp-role-title {

  font-size: 24px;

  font-weight: 700;

  margin-bottom: 4px;

}

.erp-role-subtitle {

  font-size: 16px;

  color: #374151;

}


/* DIVIDER */

.erp-role-divider {

  border: none;

  border-top: 1px solid #e5e7eb;

  margin: 22px 0;

}


/* LIST */

.erp-role-list {
  list-style: none;
}

.erp-role-item {

  position: relative;

  padding-left: 34px;

  margin-bottom: 16px;

  line-height: 1.6;

}

.erp-role-item::before {

  content: "✓";

  position: absolute;

  left: 0;

  top: 2px;

  width: 18px;

  height: 18px;

  border: 2px solid currentColor;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 10px;

}


/* BUTTON */

.erp-role-btn {

  position: absolute;

  right: 22px;

  bottom: 22px;

  width: 48px;

  height: 48px;

  border: none;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  cursor: pointer;

  transition: .3s;

}

.erp-role-btn:hover {
  transform: scale(1.08);
}


/* ADMIN */

.erp-admin {
  border-top: 4px solid #0d6efd;
}

.erp-admin h2,
.erp-admin i,
.erp-admin li::before {
  color: #0d6efd;
}

.erp-admin .erp-role-icon,
.erp-admin .erp-role-btn {
  background: #e9f2ff;
}


/* TEACHER */

.erp-teacher {
  border-top: 4px solid #16a34a;
}

.erp-teacher h2,
.erp-teacher i,
.erp-teacher li::before {
  color: #16a34a;
}

.erp-teacher .erp-role-icon,
.erp-teacher .erp-role-btn {
  background: #e9f9ef;
}


/* STUDENT */

.erp-student {
  border-top: 4px solid #9333ea;
}

.erp-student h2,
.erp-student i,
.erp-student li::before {
  color: #9333ea;
}

.erp-student .erp-role-icon,
.erp-student .erp-role-btn {
  background: #f3e8ff;
}


/* PARENT */

.erp-parent {
  border-top: 4px solid #f97316;
}

.erp-parent h2,
.erp-parent i,
.erp-parent li::before {
  color: #f97316;
}

.erp-parent .erp-role-icon,
.erp-parent .erp-role-btn {
  background: #fff1e7;
}


/* DRIVER */

.erp-driver {
  border-top: 4px solid #0891b2;
}

.erp-driver h2,
.erp-driver i,
.erp-driver li::before {
  color: #0891b2;
}

.erp-driver .erp-role-icon,
.erp-driver .erp-role-btn {
  background: #e8f9fd;
}


/* SECURITY */

.erp-security {
  border-top: 4px solid #ec4899;
}

.erp-security h2,
.erp-security i,
.erp-security li::before {
  color: #ec4899;
}

.erp-security .erp-role-icon,
.erp-security .erp-role-btn {
  background: #ffe8f4;
}


@media(max-width:768px) {

  .erp-role-container {
    grid-template-columns: 1fr;
  }

}

/* Section 2 End Here============================================================== */

/* Section 3 Part Start Here  ===================================================== */
/* =========================
   ERP MODULES SECTION
========================= */

.erp-modules {
  padding: 110px 6%;
  background: #f5f7fb;
  text-align: center;
}

.erp-head span {
  color: #8f00ff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.erp-head h1 {
  margin-top: 18px;
  font-size: 62px;
  font-weight: 900;
  color: #11193b;
  line-height: 1.1;
}

.erp-head p {
  margin-top: 25px;
  font-size: 20px;
  max-width: 900px;
  margin-inline: auto;
  color: #616a86;
  line-height: 1.8;
}

/* =========================
   MODULE GRID
========================= */

.modules-card {
  margin-top: 70px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: 24px;
}

/* =========================
   MODULE CARD
========================= */

.module {
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.06);

  transition: all 0.35s ease;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;

  min-height: 240px;
}

.module i {
  font-size: 42px;
  margin-bottom: 18px;

  background: linear-gradient(135deg,
      #4d2cff,
      #cf00ff);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.module h4 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
  color: #132048;
}

.module p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #667085;
}

/* =========================
   HOVER EFFECT
========================= */

.module:hover {
  transform: translateY(-10px);

  background: linear-gradient(135deg,
      #4d2cff,
      #b300ff);

  box-shadow:
    0 20px 50px rgba(77, 44, 255, 0.25);
}

.module:hover i {
  -webkit-text-fill-color: #ffffff;
}

.module:hover h4,
.module:hover p {
  color: #ffffff;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .erp-modules {
    padding: 80px 20px;
  }

  .erp-head h1 {
    font-size: 40px;
  }

  .erp-head p {
    font-size: 16px;
  }

  .modules-card {
    grid-template-columns: repeat(auto-fit,
        minmax(170px, 1fr));
    gap: 18px;
  }

  .module {
    min-height: 220px;
    padding: 22px;
  }

  .module i {
    font-size: 34px;
  }

  .module h4 {
    font-size: 17px;
  }

  .module p {
    font-size: 13px;
  }
}

/* =========================
   SEE ALL MODULES BUTTON
========================= */

.modules-btn {
  text-align: center;
  margin-top: 60px;
}

.see-modules-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 16px 34px;

  background: linear-gradient(135deg,
      #4d2cff,
      #b300ff);

  color: #fff;
  text-decoration: none;

  font-size: 16px;
  font-weight: 700;

  border-radius: 60px;

  box-shadow:
    0 15px 35px rgba(77, 44, 255, .25);

  transition: .35s ease;
}

.see-modules-btn i {
  transition: .35s ease;
}

.see-modules-btn:hover {
  transform: translateY(-5px);
  box-shadow:
    0 20px 45px rgba(77, 44, 255, .35);
}

.see-modules-btn:hover i {
  transform: translateX(6px);
}



/* Section 3 Part End Here =========================================================== */
/* Section 4 Part Start Here =========================================================== */

/* ========================= */

.app-feature {

  position: relative;
  overflow: hidden;

  padding: 20px 8%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 80px;

  background:
    linear-gradient(135deg,
      #0f172a 0%,
      #1e3a8a 35%,
      #4f46e5 70%,
      #7c3aed 100%);
}

.app-feature::before {

  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  left: -200px;
  top: -200px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(255, 255, 255, .15),
      transparent);

  filter: blur(40px);
}

.app-feature::after {

  content: "";

  position: absolute;

  width: 700px;
  height: 700px;

  right: -250px;
  bottom: -250px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(255, 255, 255, .10),
      transparent);

  filter: blur(40px);
}

/* LEFT */

.left {
  flex: 1;
  position: relative;
  z-index: 2;
}

.badge {

  display: inline-block;

  padding: 12px 22px;

  border-radius: 50px;

  background:
    rgba(255, 255, 255, .12);

  border:
    1px solid rgba(255, 255, 255, .15);

  color: white;

  font-weight: 700;
}

.left h2 {

  font-size: 68px;

  line-height: 1.05;

  margin: 25px 0;

  font-weight: 900;

  color: white;
}

.left p {

  font-size: 20px;

  line-height: 1.8;

  max-width: 650px;

  color:
    rgba(255, 255, 255, .82);
}

/* FEATURES */

.feature-grid {

  margin-top: 40px;

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 18px;
}

.item {

  display: flex;
  align-items: center;

  gap: 15px;

  padding: 18px 20px;

  border-radius: 18px;

  background:
    rgba(255, 255, 255, .10);

  border:
    1px solid rgba(255, 255, 255, .15);

  backdrop-filter: blur(12px);

  color: white;

  font-weight: 600;

  transition: .35s;
}

.item:hover {

  transform:
    translateY(-4px);

  background:
    rgba(255, 255, 255, .18);
}

.item i {

  font-size: 22px;

  color: #93c5fd;
}

/* STATS */

.stats {

  display: flex;

  gap: 50px;

  margin-top: 45px;
}

.stats h3 {

  font-size: 34px;

  color: white;
}

.stats span {

  color:
    rgba(255, 255, 255, .75);
}

/* BUTTON */

.feature-btn {

  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-top: 40px;

  padding: 18px 34px;

  border-radius: 60px;

  text-decoration: none;

  background: white;

  color: #111827;

  font-weight: 700;

  transition: .35s;
}

.feature-btn:hover {

  transform:
    translateY(-5px);
}

/* RIGHT */

.right {

  flex: 1;

  display: flex;

  justify-content: center;

  position: relative;

  z-index: 2;
}

.right img {

  width: 600px;

  filter:
    drop-shadow(0 30px 60px rgba(0, 0, 0, .35));

  animation:
    floatPhone 5s ease-in-out infinite;
}

@keyframes floatPhone {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* MOBILE */

@media(max-width:900px) {

  .app-feature {

    flex-direction: column;

    text-align: center;

    padding: 90px 25px;
  }

  .left h2 {
    font-size: 42px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
  }

  .right img {
    width: 300px;
  }
}


/* Section 4 End here ======================================================== */
/* Footer Part Start here ======================================================== */
.footer {
  background: linear-gradient(135deg, #08112b, #0d1b46);
  color: #fff;
  padding: 80px 8% 25px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr  1fr 1.5fr;
  gap: 50px;
}

.logo-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.footer-brand h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #c8d2ff;
  line-height: 1.8;
}

.app-buttons {
  display: flex;
  gap: 12px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.app-btn {
  background: rgba(255, 255, 255, .08);
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: .3s;
}

.app-btn:hover {
  background: #2563eb;
}

.footer-links h3,
.footer-newsletter h3 {
  margin-bottom: 25px;
  font-size: 22px;
}

.footer-links a {
  display: block;
  color: #c8d2ff;
  text-decoration: none;
  margin-bottom: 14px;
  transition: .3s;
}

.footer-links a:hover {
  color: #3b82f6;
  padding-left: 5px;
}

.footer-newsletter p {
  color: #c8d2ff;
  margin-bottom: 20px;
  line-height: 1.7;
}

.newsletter-box {
  display: flex;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
}

.newsletter-box input {
  flex: 1;
  border: none;
  padding: 15px;
  outline: none;
}

.newsletter-box button {
  border: none;
  padding: 15px 25px;
  background: #2563eb;
  color: white;
  cursor: pointer;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.social-links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: .3s;
}

.social-links a:hover {
  background: #2563eb;
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 60px;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.bottom-links {
  display: flex;
  gap: 20px;
}

.bottom-links a {
  color: #c8d2ff;
  text-decoration: none;
}

@media(max-width:1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:768px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}



/* Privacy Policy Part Start Here ============================================================ */

.privacy_hero {
  background: linear-gradient(135deg, #0f172a, #1e3a8a, #4f46e5, #7c3aed);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.privacy_hero h1 {
  font-size: 56px;
  margin-bottom: 15px;
}

.privacy_hero p {
  max-width: 800px;
  margin: auto;
  font-size: 18px;
  opacity: .95;
}

.privacy_badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.privacy_badge {
  background: rgba(255, 255, 255, .15);
  padding: 12px 20px;
  border-radius: 50px;
}

.privacy_container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

.privacy_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.privacy_card {
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  transition: .3s;
}

.privacy_card:hover {
  transform: translateY(-5px);
}

.privacy_card i {
  font-size: 40px;
  color: #4f46e5;
  margin-bottom: 15px;
}

.privacy_card h3 {
  margin-bottom: 10px;
}

.privacy_section_title {
  text-align: center;
  margin-bottom: 40px;
}

.privacy_section_title h2 {
  font-size: 42px;
  color: #111827;
}

.privacy_info {
  margin-top: 60px;
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.privacy_info h2 {
  color: #4f46e5;
  margin-bottom: 15px;
}

.privacy_info p,
.privacy_info li {
  line-height: 1.9;
}

.privacy_info ul {
  padding-left: 20px;
}

.privacy_contact {
  margin-top: 40px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  padding: 35px;
  border-radius: 24px;
}

.privacy_footer {
  text-align: center;
  padding: 30px;
  color: #6b7280;
}

@media(max-width:768px) {

  .privacy_hero h1 {
    font-size: 36px;
  }

  .privacy_section_title h2 {
    font-size: 30px;
  }

}