* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* ===== COLORS (Variables) ===== */
:root {
  --blue-dark: #01328E;
  --blue-light: #08A1DD;
  --bg-light: #f4f4f4;
  --text-dark: #000;
  --text-muted: #555;
  --white: #ffffff;
}

/* ============================= */
/*         NAVBAR                */
/* ============================= */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo img {
  height: 55px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 45px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-size: 15px;
  font-weight: 500;
  transition: 0.2s;
}

.nav-links a:hover {
  color: var(--blue-light);
}

.nav-links a.active {
  color: var(--blue-light) !important;
  font-weight: 700;
}

.login-btn {
  background: var(--blue-dark);
  color: white;
  padding: 8px 39px;
  border-radius: 30px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  margin-left: 122px;
  transition: 0.3s;
}

.login-btn:hover {
  background: var(--blue-light);
  color: white;
}

/* ===== HAMBURGER MENU ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #000;
  border-radius: 5px;
  transition: 0.3s;
}

/* ===== NAVBAR RESPONSIVE ===== */
@media (max-width: 1080px) {
  .nav-container {
    flex-direction: row;
  }

  .nav-links {
    gap: 27px;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .login-btn {
    margin-left: 0;
  }
}




.hero {
  width: 100%;
  padding: 80px 20px;
  background: white;
  overflow: hidden;
}

.hero-container {
  max-width: 1156px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 50px;
  animation: fadeUp 0.9s ease forwards;
}

/* LEFT SIDE */
.hero-text {
  flex: 1;
}

.hero-text p {
  font-size: 12px;
  color: #01328E;
  max-width: 469px;
  display: inline-block;
  border: 1px solid #01328E;
  padding: 5px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  width: 151px;
  margin-left: 12px;
  opacity: 0;
  animation: slideLeft 0.7s ease forwards;
}

.hero-text h2 {
  font-size: 42px;
  color: #01328E;
  margin-left: 15px;
  opacity: 0;
  animation: slideLeft 0.9s ease forwards;
  animation-delay: 0.2s;
  margin-top: 15px;
}

/* RIGHT SIDE */
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 95px;
  margin-right: 18px;
  opacity: 0;
  animation: slideRight 0.9s ease forwards;
  animation-delay: 0.4s;
}

/* BUTTONS */
.btn-secondary,
.btn-primary {
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 10px 12px;
}

.btn-secondary {
  background-color: #01328E;
  color: #fff;
  border-radius: 50%;
  height: 38px;
  width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: #01328E;
  color: #fff;
}

.btn-primary:hover,
.btn-secondary:hover {
  background: #08A1DD;
  color: #fff;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 25px rgba(8, 161, 221, 0.25);
}

.btn-secondary img {
  filter: brightness(0) invert(1);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-35px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(35px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 📱 RESPONSIVE */
@media (max-width: 1880px) {
  .hero-container {
    max-width: 1156px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: -38px;
    animation: fadeUp 0.9s ease forwards;
  }
}

@media (max-width: 768px) {
  .hero-container {
    /* flex-direction: column; */
    /* text-align: center; */
    margin-top: -62px;
  }

  .hero-buttons {
    justify-content: center;
    margin-top: 30px;
    margin-right: 0;
  }

  .hero-text h2 {
    font-size: 30px;
  }
}

@media (max-width: 1400px) {
  .hero-container {
    max-width: 1156px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: -28px;
    animation: fadeUp 0.9s ease forwards;
  }
}

@media (max-width: 768px) {
  .hero-container {
    /* flex-direction: column; */
    /* text-align: center; */
    margin-top: -62px;
  }

  .hero-buttons {
    justify-content: center;
    margin-top: 30px;
    margin-right: 0;
  }

  .hero-text h2 {
    font-size: 30px;
  }
}

@media (max-width: 500px) {
  .hero-container {
    flex-direction: column;
    text-align: left;
    margin-top: -62px;
  }

  .hero-buttons {
    justify-content: center;
    margin-top: -8px;
    margin-right: 189px;
  }

  .hero-text h2 {
    font-size: 30px;
  }
}

@media (max-width: 415px) {


  .hero-buttons {
    justify-content: center;
    margin-top: -8px;
    margin-right: 161px;
  }

  .hero-text h2 {
    font-size: 30px;
  }
}

@media (max-width: 390px) {


  .hero-buttons {

    justify-content: center;
    margin-top: -22px;
    margin-right: 131px;
  }

  .hero-text h2 {
    font-size: 30px;
  }
}

/* <!-- SECTION TWO SECTION TWO SECTION TWO SECTION TWO SECTION TWO --> */

/* BASE STYLES */
.image-section {
  width: 100%;
  padding: 16px 20px 0;
  margin-top: -40px;
  /* halka sa upar shift */
  background: #fff;
}

.image-container {
  max-width: 1280px;
  margin: auto;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-top: -50px;
  /* extra content hide kare */
}

.image-container img {
  width: 100%;
  max-width: 1156px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  margin-top: 76px;
  transition: transform 0.3s ease;
  /* optional hover zoom */
}



/* ===== RESPONSIVE ===== */
@media (max-width: 1400px) {
  .image-section {
    width: 100%;
    padding: 0px 20px 0;
    margin-top: -59px;
    background: #fff;
  }
}

@media (max-width: 1280px) {
  .image-container {
    height: 500px;
  }

  .image-container img {
    width: 100%;
    max-width: 1156px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }
}

@media (max-width: 992px) {
  .image-container {
    height: 400px;
    padding: 0 16px;
  }
}

@media (max-width: 768px) {
  .image-container {
    height: 300px;
    padding: 0 12px;
  }

  .image-container img {
    max-width: 100%;
    border-radius: 8px;
  }
}

@media (max-width: 576px) {
  .image-container {
    height: 250px;
    padding: 0 8px;
  }

  .image-container img {
    max-width: 100%;
    border-radius: 6px;
    margin-top: -70px;
  }
}

/* SECTION THREE SECTION THREE SECTION THREE SECTION THREE SECTION THREE */

.info-section {
  padding: 40px 20px;
  margin-top: 0;
  /* fix */
  overflow: hidden;
}

.container {
  max-width: 1130px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-top: -60px;
}

/* Animation initial state */
.info-section .left,
.info-section .right {
  opacity: 0;
  transition: all 0.9s ease;
}

.info-section .left {
  transform: translateX(-50px);
}

.info-section .right {
  transform: translateX(50px);
}

/* Animation start when section comes on screen */
.info-section.show .left,
.info-section.show .right {
  opacity: 1;
  transform: translateX(0);
}

/* Left Side */
.left {
  flex: 1;
  margin-top: 34px;
}

.subheading {
  font-size: 12px;
  color: #01328E;
  max-width: 469px;
  display: inline-block;
  border: 1px solid #01328E;
  padding: 5px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  width: 101px;
}

.heading {
  font-size: 40px;
  margin-bottom: 20px;
  color: #01328E;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.primary,
.secondary {
  background: #01328E;
  color: #fff;
}

.primary:hover,
.secondary:hover {
  background: #08A1DD;
  color: #fff;
  transform: translateY(-4px);
}

/* Right Side */
.right {
  flex: 1;
}

.right p {
  font-size: 17px;
  line-height: 1.4;
  color: black;
  margin-top: 76px;

}

/* Responsive */
@media (max-width: 768px) {
  .container {
    /* flex-direction: column; */
    text-align: left;
    margin-top: -30px;

  }

  .buttons {
    justify-content: center;
  }

  .info-section .left,
  .info-section .right {
    transform: translateY(40px);
  }

  .info-section.show .left,
  .info-section.show .right {
    transform: translateY(0);
  }

}

@media (max-width: 600px) {
  .container {
    flex-direction: column;
    text-align: left;
    margin-top: -51px;

  }

  .buttons {
    justify-content: left;
  }

  .right p {
    font-size: 16px;
    line-height: 1.4;
    color: black;
    margin-top: -8px;
  }

  .info-section .left,
  .info-section .right {
    transform: translateY(40px);
  }

  .info-section.show .left,
  .info-section.show .right {
    transform: translateY(0);
  }
}

@media (max-width: 477px) {
  .container {
    flex-direction: column;
    text-align: left;
    margin-top: -51px;

  }

  .buttons {
    justify-content: left;
  }

  .right p {
    font-size: 14px;
    line-height: 1.4;
    color: black;
    margin-top: -28px;
  }

  .heading {
    font-size: 36px;
    margin-bottom: 20px;
    color: #01328E;
  }

  .info-section .left,
  .info-section .right {
    transform: translateY(40px);
  }

  .info-section.show .left,
  .info-section.show .right {
    transform: translateY(0);
  }
}

@media (max-width: 433px) {
  .container {
    flex-direction: column;
    text-align: left;
    margin-top: -51px;

  }

  .buttons {
    justify-content: left;
  }

  .right p {
    font-size: 12px;
    line-height: 1.4;
    color: black;
    margin-top: -28px;

  }

  .heading {
    font-size: 30px;
    margin-bottom: 20px;
    color: #01328E;
  }

  .info-section .left,
  .info-section .right {
    transform: translateY(40px);
  }

  .info-section.show .left,
  .info-section.show .right {
    transform: translateY(0);
  }
}

@media (max-width: 372px) {
  .container {
    flex-direction: column;
    text-align: left;
    margin-top: -74px;

  }

  .buttons {
    justify-content: left;
  }

  .right p {
    font-size: 12px;
    line-height: 1.4;
    color: black;
    margin-top: -28px;

  }

  .heading {
    font-size: 29px;
    margin-bottom: 20px;
    color: #01328E;
  }

  .info-section .left,
  .info-section .right {
    transform: translateY(40px);
  }

  .info-section.show .left,
  .info-section.show .right {
    transform: translateY(0);
  }

  .subheading {
    font-size: 12px;
    color: #01328E;
    max-width: 469px;
    display: inline-block;
    border: 1px solid #01328E;
    padding: 5px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    width: 112px;
  }
}

/* SECTION FOUR SECTION FOUR SECTION FOUR SECTION FOUR SECTION FOUR */

.stats-section {
  padding: 20px 20px;
  background: #fff;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

/* BOX */
.stat-box {
  padding: 0 26px;
  border-left: 1px solid #bdbdbd;

  /* START ANIMATION */
  opacity: 0;
  transform: translateY(40px);
  animation: statFadeUp 0.8s ease forwards;
}

/* DELAY */
.stat-box:nth-child(1) {
  animation-delay: 0.1s;
}

.stat-box:nth-child(2) {
  animation-delay: 0.3s;
}

.stat-box:nth-child(3) {
  animation-delay: 0.5s;
}

.stat-box:nth-child(4) {
  animation-delay: 0.7s;
}

/* NUMBER */
.stat-box h3 {
  display: inline-block;
  background: #f3f5f7;
  color: #08A1DD;
  font-size: 34px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
  line-height: 1;

  /* HOVER EFFECT */
  transition: all 0.35s ease;
  cursor: pointer;
}

/* NUMBER HOVER */
.stat-box h3:hover {
  transform: scale(1.18);
  background: #08A1DD;
  color: #fff;
  box-shadow: 0 12px 30px rgba(8, 161, 221, 0.35);
}

/* TEXT */
.stat-box p {
  font-size: 10px;
  letter-spacing: 0.8px;
  color: #01328E;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.6;
}

.text-color {
  color: #01328E;
}

/* SECTION ANIMATION */
@keyframes statFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }
}

@media (max-width: 576px) {

  .stats-container {
    grid-template-columns: 1fr;
  }

  .stat-box {
    padding: 0 0 0 20px;
  }

  .stat-box h3 {
    font-size: 28px;
  }
}

/* ================================= */
/* SERVICES SECTION */
/* ================================= */

.services-section {
  width: 100%;
  padding: 90px 20px;
  background: #fff;
  overflow: hidden;
}

/* ================================= */
/* TITLE */
/* ================================= */

.section-title {
  color: #01328E;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 3px;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-subtitle {
  max-width: 650px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 17px;

  line-height: 1.3;
}

h5.services {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  padding: 6px 17px;
  border-radius: 40px;
  border: 1px solid #01328E;
  color: #01328E;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: 0.3s ease;
}

/* ================================= */
/* WRAPPER */
/* ================================= */

.service-wrapper {
  max-width: 1200px;
  margin: -20px auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 28px;
  flex-wrap: wrap;
}

/* ================================= */
/* CARD */
/* ================================= */

.service-box {
  width: 100%;
  max-width: 350px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(1, 50, 142, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

  display: flex;
  flex-direction: column;

  opacity: 0;
  transform: translateY(40px);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    opacity 0.6s ease;
}

/* ================================= */
/* SCROLL ANIMATION */
/* ================================= */

.service-box.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================================= */
/* HOVER EFFECT */
/* ================================= */

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* ================================= */
/* HEADER */
/* ================================= */

.service-header {
  background: #01328E;
  color: #fff;
  padding: 18px 20px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
}

/* ================================= */
/* BODY */
/* ================================= */

.service-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-body p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* ================================= */
/* LIST */
/* ================================= */

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.5;
}

.service-item img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ================================= */
/* BUTTON */
/* ================================= */

.service-btn {
  margin-top: auto;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 14px 20px;
  border-radius: 50px;

  background: #01328E;
  color: #fff;

  text-decoration: none;
  font-size: 14px;
  font-weight: 600;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.service-btn:hover {
  background: #08A1DD;
  transform: translateY(-2px);
  color: #fff;
}

/* ================================= */
/* EXTRA BUTTON */
/* ================================= */

.services {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  padding: 6px 17px;
  border-radius: 40px;
  border: 1px solid #01328E;
  color: #01328E;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: 0.3s ease;
}

/* ================================= */
/* TABLET */
/* ================================= */

@media (max-width: 991px) {

  .section-subtitle {
    font-size: 32px;
  }

  .service-wrapper {
    gap: 22px;
  }

  .service-box {
    max-width: 48%;
  }
}

/* ================================= */
/* MOBILE */
/* ================================= */

@media (max-width: 768px) {

  .services-section {
    padding: 70px 16px;
  }

  .section-subtitle {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .service-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .service-box {
    max-width: 100%;
  }

  .service-header {
    font-size: 20px;
    padding: 16px;
  }

  .service-body {
    padding: 22px 18px;
  }

  .service-body p,
  .service-item {
    font-size: 14px;
  }

  .service-btn {
    padding: 13px 18px;
  }
}

/* ================================= */
/* SMALL MOBILE */
/* ================================= */

@media (max-width: 480px) {

  .section-subtitle {
    font-size: 22px;
    line-height: 1.4;
  }

  .service-box {
    border-radius: 20px;
  }

  .service-header {
    font-size: 18px;
  }
}



/* SECTION SIX SECTION SIX SECTION SIX SECTION SIX SECTION SIX */

/* ============================= */
/* SERVICE SECTION */
/* ============================= */

.service-section {
  padding: 0px 20px;
  text-align: center;
  box-sizing: border-box;
}

/* ============================= */
/* TITLE */
/* ============================= */

.service-title {
  font-size: 32px;
  color: #01328E;
  margin-bottom: 45px;
  margin-top: 51px;

  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.services-ten {
  display: block;
  margin: 61px auto -40px;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 12px;
  border: 1px solid #01328E;
  color: #01328E;
  text-align: center;
  width: fit-content;

  opacity: 0;
  transform: translateY(30px);

  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.services-ten:hover {
  background: #01328E;
  color: #fff;
}

/* ============================= */
/* GRID */
/* ============================= */

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
}

/* ============================= */
/* CARD */
/* ============================= */

.service-card {
  width: 100%;
  background: #F6F5F2;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding-bottom: 10px;
  min-height: 300px;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;

  /* Smooth Animation */
  opacity: 0;
  transform: translateY(50px);

  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease;

  will-change: transform, opacity;
}

/* ============================= */
/* IMAGE */
/* ============================= */

.insan-logo {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 58px;
  width: 50px;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;

  transition: transform 0.5s ease;
}

/* ============================= */
/* TEXT */
/* ============================= */

.service-name {
  font-weight: 500;
  font-size: 17px;
  color: #01328E;
  text-align: left;
  margin-left: 18px;
  display: flex;
  justify-content: left;
  align-items: center;
  margin-top: 18px;

  transition: color 0.3s ease;
}

.service-card h1,
.service-card h2,
.service-card h3,
.service-card h4,
.service-card p,
.service-card .card-title,
.service-card .card-description,
.service-card .service-name {
  transition: color 0.3s ease;
}

/* ============================= */
/* ICON */
/* ============================= */

.service-icon {
  position: absolute;
  bottom: 16px;
  right: 15px;
  background: #fff;
  color: #01328E;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.service-icon img {
  transition: filter 0.3s ease;
}

.service-icon:hover {
  background: #08A1DD;
  transform: scale(1.08);
}

.service-icon:hover img {
  filter: brightness(0) invert(1);
}

/* ============================= */
/* HOVER EFFECT */
/* ============================= */

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  background-color: #01328E;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.service-card:hover .service-image {
  transform: scale(1.04);
}

.service-card:hover h1,
.service-card:hover h2,
.service-card:hover h3,
.service-card:hover h4,
.service-card:hover .card-title,
.service-card:hover .service-name {
  color: #fff;
}

.service-card:hover p,
.service-card:hover .card-description {
  color: #dddddd;
}

/* ============================= */
/* BUTTON */
/* ============================= */

.service-button {
  margin-top: 40px;
  padding: 12px 30px;
  background-color: #01328E;
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
  border: 1px solid #01328E;

  opacity: 0;
  transform: translateY(30px);

  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.service-button:hover {
  background-color: #08A1DD;
  border-color: #08A1DD;
}

/* ============================= */
/* SHOW ANIMATION */
/* ============================= */

.show {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth Delays */

.service-card:nth-child(1) {
  transition-delay: 0.05s;
}

.service-card:nth-child(2) {
  transition-delay: 0.1s;
}

.service-card:nth-child(3) {
  transition-delay: 0.15s;
}

.service-card:nth-child(4) {
  transition-delay: 0.2s;
}

/* ============================= */
/* TABLET */
/* ============================= */

@media (max-width: 992px) {

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 650px;
  }

  .service-image {
    height: 240px;
  }
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 600px) {

  .service-section {
    padding: 40px 15px;
  }

  .service-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 320px;
  }

  .service-card {
    min-height: auto;
  }

  .service-image {
    height: 230px;
  }

  .service-name {
    font-size: 16px;
    margin-right: 55px;
  }

  .service-button {
    margin-top: 10px;
  }
}

/* ============================= */
/* EXTRA */
/* ============================= */

@media (max-width: 768px) {

  .card {
    display: flex;
    flex-direction: column;
  }

  .service-icon {
    margin-bottom: -14px;
  }
}


/* SECTION SEVEN SECTION SEVEN SECTION SEVEN SECTION SEVEN  */

.features-section {
  padding: 0px 20px;
  text-align: center;
  position: relative;
  /* 🔥 MUST (for decor positioning) */
  overflow: hidden;
  /* extra overflow hide */
}

.features-title {
  font-size: 32px;
  color: #01328E;
  margin-bottom: 30px;
  margin-top: 54px;
}

.services-nine {
  display: block;
  margin: 35px auto -40px;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 12px;
  border: 1px solid #01328E;
  color: #01328E;
  text-align: center;
  width: fit-content;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;


}

.features-card {
  background: #F6F5F2;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding-bottom: 20px;
  min-height: 300px;
  transition: all 0.4s ease;
}



/* Link underline remove */
.features-grid a,
.features-grid a:hover,
.features-grid a:focus,
.features-grid a:active,
.features-grid a:visited {
  text-decoration: none !important;
  color: inherit;
}

/* Card styling */
.features-card {
  display: block;
}

.features-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.features-name {
  margin: 17px 60px 0 22px;
  font-size: 17px;
  color: #01328E;
  text-align: left;
  display: flex;
  justify-content: left;
  align-items: center;
  margin-top: 20px;
  margin-left: 12px;
}

.features-icon {
  position: absolute;
  bottom: 14px;
  right: 15px;
  background: #fff;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.features-icon-two {
  position: absolute;
  bottom: 25px;
  right: 15px;
  background: #fff;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* .features-icon img {
  width: 16px;
  height: 16px;
  transition: 0.3s;
} */

.features-icon:hover {
  background: #08A1DD;
}

.features-icon:hover img {
  filter: brightness(0) invert(1);
}

.features-icon-two:hover {
  background: #08A1DD;
}

.features-icon-two:hover img {
  filter: brightness(0) invert(1);
}

.features-card:hover {
  transform: translateY(-10px) scale(1.03);
  background-color: #01328E;
}

.features-card:hover .features-name {
  color: #fff;
}

.features-button {
  margin-top: 40px;
  padding: 12px 30px;
  background-color: #01328E;
  color: #fff;
  border-radius: 25px;
  border: 1px solid #01328E;
  cursor: pointer;
}

.features-button:hover {
  background-color: #08A1DD;
  border-color: #08A1DD;
}

/* 🔥 DECOR FIX */
.offer__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  bottom: 365px;
  left: 108px;
  z-index: 10;
}

.decor {
  position: absolute;
  width: 60px;
  z-index: 0;
  opacity: 0.9;
}

/* keep cards above decor */
.features-grid,
.features-title,
.features-button {
  position: relative;
  z-index: 2;
}

/* Responsive */

.decor {
  position: absolute;
  width: clamp(30px, 4vw, 60px);
  /* screen ke hisaab se auto size */
  z-index: 0;
  opacity: 0.9;
  pointer-events: none;
}

/* bottom left */
.decor--one {
  bottom: -15px;
  left: clamp(6px, 2vw, 10px);
}

/* top left */
.decor--two {
  top: clamp(120px, 16vw, 237px);
  left: clamp(6px, 2vw, 10px);
}

/* Choti screens pe hide */
@media (max-width: 768px) {
  .decor {
    display: none;
  }
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* mobile decor */
@media (max-width: 768px) {
  .decor {
    width: 80px;
    opacity: 0.2;
  }
}

@media (max-width: 480px) {
  .decor {
    display: none;
  }
}


/* SECTION EIGHT SECTION EIGHT SECTION EIGHT SECTION EIGHT SECTION EIGHT  */


/* BASE STYLES */
.steps {
  padding: 80px 20px;
  margin-top: -87px;
}

.steps__container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
  margin-top: 61px;
}

.steps__tag {
  font-size: 12px;
  border: 1px solid #01328E;
  padding: 5px 12px;
  border-radius: 20px;
  color: #01328E;
}

.steps__title {
  font-size: 30px;
  margin: 15px 0;
  color: #01328E;
}

.steps__desc {
  color: #555;
  max-width: 600px;
  margin: auto;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.step-card {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
  text-align: left;
  width: 100%;
  max-width: 538px;
  /* maintain max width */
  margin: auto;
  height: 306px;

}

.step-card__bg {
  position: absolute;
  right: 0;
  top: 41px;
  width: 275px;
  pointer-events: none;
  z-index: 20;
}

/* TEXT & BUTTON */
.step-card__title {
  font-size: 30px;
}

.step-card__heading {

  font-size: 26px;
  font-weight: 500;
  margin-top: 14px;

}

.step-card__text {
  font-size: 15px;
  margin-top: 15px;
  font-weight: 400;

}

.step-card__list li {
  font-size: 20px;
  margin-top: 10px;
  font-weight: 500;
}

.steps__btn {
  background: #01328E;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin-top: 31px;
  border-radius: 20px;
}

.steps__btn:hover {
  background-color: #08A1DD;
  cursor: pointer;
}

/* ANIMATION */
.steps__header,
.step-card,
.steps__footer {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.steps__header.show,
.step-card.show,
.steps__footer.show {
  opacity: 1;
  transform: translateY(0);
}

/* HOVER EFFECT */
.step-card:hover {
  transform: translateY(-10px) scale(1.02);
}

/* Desktop / default */
.steps__grid .step-card:nth-child(1) {
  background: #01328E;
  /* Pehla card ka color */
  color: #fff;
}

.steps__grid .step-card:nth-child(2) {
  background: #d9e6f2;
  /* Dusra card ka color */
  color: #01328E;
}

/* Agar aur cards ho to add kar sakte ho */
.steps__grid .step-card:nth-child(3) {
  background: #08A1DD;
  color: #fff;
}

.steps__grid .step-card:nth-child(4) {
  background: #B3D4FF;
  color: #01328E;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .steps__grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .step-card__bg {
    width: 220px;
  }
}

@media (max-width: 768px) {
  .steps__grid {
    grid-template-columns: 1fr;
    /* single column */
    gap: 20px;
  }

  .step-card__bg {
    position: relative;
    width: 140px;
    margin: 10px auto 0;
    /* center image on small screens */
    top: 0;
    right: 0;
  }

  .step-card {
    padding: 20px;
    text-align: center;
  }

  .step-card__title {
    font-size: 24px;
  }

  .step-card__heading,
  .step-card__text,
  .step-card__list li {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .steps {
    padding: 60px 15px;
  }

  .step-card__title {
    font-size: 20px;
  }

  .step-card__heading,
  .step-card__text,
  .step-card__list li {
    font-size: 16px;
  }

  .steps__btn {
    width: 100%;
    padding: 12px 0;
  }
}

/* SECTION NINE SECTION NINE SECTION NINE SECTION NINE SECTION NINE */


/* Main Container */
.testimonial-slider {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 40px 0;
  margin-top: -100px;
}

/* Slide */
.slide {
  min-width: 100%;
  display: flex;
  gap: 20px;
  padding: 20px;
  align-items: stretch;
  margin-top: 27px;
}

/* Left Card */
.left-card {
  flex: 1;
  position: relative;
  height: 450px;
  overflow: hidden;
  background-color: #01328E;
  border-radius: 20px;
}



/* Overlay */
.testimonial-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  padding: 20px;
  border-radius: 16px;
  color: #01328E;

}

.testimonial-overlay p {
  font-size: 41px;
  color: white;
  line-height: 1.3;
  margin-top: -6px;
  margin-left: -2px;
}



/* Right Card */
.right-card {
  flex: 1;
  background: #08A1DD;
  color: white;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}


/* Background image effect */
.right-card::before {
  content: "";
  position: absolute;
  top: -22px;
  right: -11px;
  width: 102%;
  height: 78%;
  background: url('/swift launch new project/img/Mask Group.png') no-repeat center;
  background-size: contain;
}


.tag {
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 5px 12px;
  border-radius: 30px;
  display: inline-block;
  width: fit-content;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  color: white;
}

.right-card h2 {
  font-size: 30px;
  color: black;
  font-weight: 400;
  margin-bottom: 181px;
  line-height: 1.3;
  position: relative;
  z-index: 2;

}

.bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 15px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  margin-top: -20px;
}

.king {
  position: absolute;
  top: -12px;
  left: 0px;
}

.bottom h3 {
  font-size: 24px;
  color: black;
  font-weight: 800;
}

.bottom p {
  font-size: 14px;
  opacity: 0.8;
  color: black;
}

.read-btn {
  background: #01328E;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.read-btn:hover {
  transform: translateY(-2px);
  background-color: white;
  color: #01328E;
}

.btn-two {

  position: absolute;
  bottom: 22px;
  right: 311px;
  background: #fff;
  border-radius: 50%;
  height: 32px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.btn-three {
  background: white;
  color: #01328E;
  border: none;
  padding: 10px 37px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 394px;
  margin-left: 38px;
}

.btn-two:hover {
  transform: translateY(-2px);
  background-color: #08A1DD;
  color: white;
}

.btn-three:hover {
  transform: translateY(-2px);
  background-color: #08A1DD;
  color: white;
}

.btn-two:hover img {
  filter: brightness(0) invert(1);

}

.tuseday {
  position: absolute;
  height: 60px;
  width: 55px;
  right: 33px;
  top: 43px;
}

.sry-blue {
  position: absolute;
  right: 33px;
  top: 37px;
  object-fit: cover;
  height: 55px;
  width: 55px;

}

/* Initial animation state */
.left-card {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.9s ease;
}

.right-card {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.9s ease;
}

/* When section comes on screen */
.testimonial-slider.show .left-card,
.testimonial-slider.show .right-card {
  opacity: 1;
  transform: translateX(0);
}

/* Overlay icons slow up-down movement */
.tuseday,
.sry-blue,
.king {
  animation: floatIcon 3s ease-in-out infinite;
}

.sry-blue {
  animation-delay: 0.4s;
}

.king {
  animation-delay: 0.8s;
}



@keyframes floatIcon {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

/* ===============================
   RESPONSIVE DESIGN
================================= */

/* ===== LAPTOP ===== */
@media (max-width: 1200px) {

  .testimonial-slider {
    padding: 30px 20px;
  }

  .testimonial-overlay p {
    font-size: 34px;
  }

  .right-card h2 {
    font-size: 26px;
    margin-bottom: 140px;
  }

  .btn-two {
    right: 250px;
  }
}

/* ===== TABLET ===== */
@media (max-width: 992px) {

  .slide {
    flex-direction: column;
    gap: 25px;
  }

  .left-card,
  .right-card {
    width: 100%;
  }

  .left-card {
    height: 380px;
  }

  .testimonial-overlay p {
    font-size: 30px;
    line-height: 1.4;
  }

  .right-card {
    padding: 28px;
  }

  .right-card h2 {
    font-size: 24px;
    margin-bottom: 100px;
  }

  .bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .btn-two {
    position: static;
    margin-top: 15px;
  }

  .btn-three {
    margin-top: 260px;
    margin-left: 20px;
  }

  .tuseday,
  .sry-blue {
    width: 48px;
    height: 48px;
    right: 20px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .testimonial-slider {
    margin-top: -40px;
    padding: 20px 15px;
  }

  .slide {
    padding: 0;
  }

  .left-card {
    height: 300px;
    border-radius: 16px;
  }

  .right-card {
    border-radius: 16px;
    padding: 22px;
  }

  .testimonial-overlay {
    top: 15px;
    left: 15px;
    right: 15px;
    padding: 10px;
  }

  .testimonial-overlay p {
    font-size: 24px;
    margin-top: 0;
    margin-left: 0;
  }

  .tag {
    font-size: 10px;
    padding: 5px 10px;
  }

  .right-card h2 {
    font-size: 22px;
    margin-bottom: 80px;
    line-height: 1.4;
  }

  .bottom h3 {
    font-size: 20px;
  }

  .bottom p {
    font-size: 13px;
  }

  .read-btn {
    width: 100%;
    text-align: center;
  }

  .btn-three {
    width: calc(100% - 40px);
    margin: 180px auto 0;
    display: flex;
    justify-content: center;
  }

  .btn-two {
    width: 34px;
    height: 34px;
  }

  .king {
    width: 45px;
    top: -5px;
  }

  .tuseday,
  .sry-blue {
    width: 42px;
    height: 42px;
    top: 20px;
    right: 20px;
  }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {

  .left-card {
    height: 250px;
  }

  .testimonial-overlay p {
    font-size: 20px;
  }

  .right-card h2 {
    font-size: 19px;
    margin-bottom: 70px;
  }

  .bottom h3 {
    font-size: 18px;
  }

  .btn-three {
    margin-top: 150px;
    padding: 10px 20px;
  }
}

/* SECTION TEN SECTION TEN SECTION TEN SECTION TEN SECTION TEN */


.trust-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  /* FIX: flexible height */
  overflow: hidden;
  margin-top: 20px;
}

/* Full background */
.trust-bg {
  width: 100%;
  height: 80%;
  object-fit: cover;
  display: block;
}

.letter {
  display: inline-block;
}

/* Card */
.trust-card {
  position: absolute;
  top: 80px;
  left: 40px;
  width: 100%;
  max-width: 550px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 24px;
}

/* Top Row */
.trust-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  /* FIX */
}

/* Badge */
.trust-badge {
  border: 1px solid #003f9e;
  color: #003f9e;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 10px;
  font-weight: 600;
}

/* Heading */
.trust-card h2 {
  display: inline-block;
  background-color: rgba(156, 215, 238, 1);
  color: #01328E;
  font-size: 40px;
  font-weight: 400;
  margin: 0 0 20px;
  line-height: 1.2;
  padding: 3px 8px;
  border-radius: 12px;
  font-family: work sans-serif;
}



/* Bottom */
.trust-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Text */
.trust-bottom p {
  margin: 0;
  font-size: 16px;
  color: #222;
}

/* Button */
.trust-btn {
  background: #01328E;
  color: #fff;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 14px;
  white-space: nowrap;
}

.trust-btn:hover {
  background-color: #08A1DD;
}

.my-love {
  margin-bottom: 2px;
  color: #01328E;
  font-size: 37px;
  font-weight: 400;
}

/* ===============================
   RESPONSIVE DESIGN
================================= */

/* ===== LARGE TABLET ===== */
@media (max-width: 992px) {

  .trust-section {
    min-height: 600px;
  }

  .trust-card {
    top: 50px;
    left: 30px;
    max-width: 500px;
    padding: 22px;
  }

  .trust-card h2 {
    font-size: 34px;
  }

  .my-love {
    font-size: 32px;
  }

  .trust-bottom p {
    font-size: 15px;
  }
}

/* ===== TABLET ===== */
@media (max-width: 768px) {

  .trust-section {
    min-height: 520px;
  }

  .trust-bg {
    height: 100%;
  }

  .trust-card {
    position: absolute;
    top: 30px;
    left: 20px;
    right: 20px;

    width: auto;
    max-width: 100%;

    padding: 20px;
    border-radius: 16px;
  }

  .trust-top {
    margin-bottom: 18px;
  }

  .trust-card h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .my-love {
    font-size: 28px;
  }

  .trust-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .trust-bottom p {
    font-size: 15px;
    line-height: 1.6;
  }

  .trust-btn {
    width: 100%;
    text-align: center;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {

  .trust-section {
    min-height: 480px;
    margin-top: 10px;
  }

  .trust-card {
    top: 20px;
    left: 15px;
    right: 15px;

    padding: 18px;
    border-radius: 14px;
  }

  .trust-badge {
    font-size: 9px;
    padding: 5px 12px;
  }

  .trust-card h2 {
    font-size: 22px;
    padding: 3px 6px;
    border-radius: 8px;
  }

  .my-love {
    font-size: 22px;
  }

  .trust-bottom p {
    font-size: 14px;
  }

  .trust-btn {
    padding: 10px 18px;
    font-size: 13px;
  }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 400px) {

  .trust-card h2 {
    font-size: 19px;
  }

  .my-love {
    font-size: 19px;
  }

  .trust-bottom p {
    font-size: 13px;
  }

  .trust-btn {
    font-size: 12px;
    padding: 9px 16px;
  }
}



/* ============================= */
/*     CONTACT + SUBSCRIBE       */
/* ============================= */
.contact-section {
  background: var(--blue-light);
  padding: 50px 20px;
  margin-top: 160px;

}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: stretch;
  margin-top: -365px;
}

.contact-form {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 20px;
  flex: 1;
  max-width: 100%;
}

.bottom-tag {
  border: 1px solid var(--blue-dark);
  background: transparent;
  padding: 6px 14px;
  border-radius: 20px;
  color: var(--blue-dark);
  font-size: 12px;
}

.contact-form h2 {
  margin: 15px 0 10px;
  color: var(--blue-dark);
  font-size: 32px;
}

.contact-form p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.field label {
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--text-dark);
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  background: #eaeaea;
  font-size: 14px;
  outline: none;
}

textarea {
  height: 100px;
  resize: none;
}

.full {
  margin-top: 5px;
}

.form-btn {
  background: var(--blue-dark);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 20px;
  font-weight: 500;
  transition: 0.3s ease;
}

.form-btn:hover {
  background: var(--blue-light);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-image {
  position: relative;
  flex: 1;
}

.contact-image img {
  width: 97%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.call-box {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-bottom {
  margin-top: -3px;
  width: 69px;
  height: 32px;
}

/* CONTACT ANIMATIONS */
.contact-form,
.contact-image,
.subscribe {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s ease;
}

.contact-form {
  transform: translateX(-80px);
}

.contact-image {
  transform: translateX(80px);
}

.show {
  opacity: 1;
  transform: translate(0, 0);
}

.contact-form input:focus,
.contact-form textarea:focus {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(10, 79, 163, 0.25);
}

/* SUBSCRIBE */
.subscribe {
  max-width: 700px;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: white;
  flex-wrap: wrap;
  margin-bottom: 15px;
  transition-delay: 0.3s;
}

.subscribe p {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 35px;
}

.subscribe-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.subscribe-box input {
  border: none;
  padding: 12px 20px;
  outline: none;
  border-radius: 40px;
  width: 273px;
}

.subscribe-box button {
  background: white;
  color: var(--blue-dark);
  border: none;
  padding: 2px 13px;
  cursor: pointer;
  border-radius: 40px;
  transition: 0.3s ease;
  font-size: 27px;
}

.subscribe-box button img {
  height: 10px;
  margin-bottom: 3px;
  transition: 0.3s ease;
}

.subscribe-box button:hover {
  background-color: var(--blue-dark);
}

.subscribe-box button:hover img {
  filter: brightness(0) invert(1);
}

/* CONTACT RESPONSIVE */
@media (max-width: 1140px) {
  .contact-section {
    margin-top: 200px;
  }

  .contact-container {
    margin-top: -250px;
    padding: 0 20px;
  }
}

@media (max-width: 785px) {
  .contact-section {
    margin-top: 80px;
    padding: 30px 15px;
  }

  .contact-container {
    flex-direction: column;
    margin-top: 0;
    gap: 20px;
  }

  .contact-form {
    width: 92%;
  }

  .contact-image img {
    width: 100%;
  }

  .row {
    flex-direction: column;
  }
}

/* ============================= */
/*           FOOTER              */
/* ============================= */
.footer {
  background: var(--blue-dark);
  color: #fff;
  padding: 60px 80px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.bottom img {
  width: 160px;
  margin-bottom: 20px;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  opacity: 0.9;
  cursor: pointer;
}

.footer-col ul li:hover {
  opacity: 1;
}

.footer-col ul li a {
  text-decoration: none;
  color: inherit;
}

.footer-col ul li a:hover {
  text-decoration: none;
  color: inherit;
}

.link {
  text-decoration: underline;
  color: white;
}

.contact {
  margin: 15px 0;
}

.btn-group {
  margin-top: 20px;
}

.button-ten {
  background: #fff;
  color: var(--blue-dark);
  border: none;
  padding: 10px 18px;
  border-radius: 25px;
  margin-right: 10px;
  cursor: pointer;
  font-weight: bold;
}

.button-ten:hover {
  background-color: var(--blue-light);
  color: white;
}

.button-seven {
  padding: 8px 14px;
  margin-left: -9px;
  border: none;
  border-radius: 30px;
  color: var(--blue-dark);
  font-size: 16px;
  background: white;
  cursor: pointer;
}

.button-seven:hover {
  background-color: var(--blue-light);
  color: white;
}

.button-seven:hover img {
  filter: brightness(0) invert(1);
}

.button-seven img {
  height: 9px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: #ccc;
  font-size: 14px;
  gap: 15px;
}

.footer-bottom .links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom .links span {
  cursor: pointer;
  color: white;
}

.footer-bottom .social {
  display: flex;
  gap: 15px;
}

.footer-bottom .social a {
  color: white;
  font-size: 16px;
}

/* FOOTER RESPONSIVE */
@media (max-width: 992px) {
  .footer {
    padding: 50px 40px 20px;
  }

  .footer-container {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 20px;
  }

  .footer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    text-align: left;
    align-items: flex-start;
  }

  .footer-col {
    width: 65%;
    min-width: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-bottom .links,
  .footer-bottom .social {
    justify-content: center;
    flex-wrap: wrap;
  }
}