* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial;
}

body {
  background: #f5f8fc;
  color: #333;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  overflow-x: hidden;
}

/* NAVBAR */

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  background: linear-gradient(135deg, #0e2445, #143a72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  height: 40px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 10px;
  transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #bcd6ff;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .header-actions {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 14px;
    background: rgba(10, 25, 52, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }
}

/* .call-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid #fff;
}

.call-btn i {
  font-size: 14px;
}

.call-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .call-btn span {
    display: none;
  }

  .call-btn {
    padding: 10px;
    width: 42px;
    height: 42px;
    justify-content: center;
  }
} */

/* HERO */

.hero {
  height: 600px;
  background: url("images/hero.jpg") center/cover;
  display: flex;
  align-items: center;
  padding-left: 80px;
  color: white;
}

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-left: 80px;
  color: white;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.hero-content {
  max-width: 500px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  margin-bottom: 25px;
}

/* BUTTONS */

.btn-primary {
  background: #1c4fa3;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
}

.btn-secondary {
  background: white;
  color: #1c4fa3;
  border: none;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 10px;
}

/* SERVICES */

.services-section {
  padding: 90px 70px;
  background: linear-gradient(to bottom, #f7f9fc, #eef3f9);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 55px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #2c5aa0;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 40px;
  line-height: 1.2;
  color: #16345f;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 17px;
  line-height: 1.7;
  color: #66758a;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(18, 47, 95, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 55px rgba(18, 47, 95, 0.16);
}

.service-image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image-wrap img {
  transform: scale(1.08);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 47, 95, 0.35),
    rgba(15, 47, 95, 0.05)
  );
}

.service-content {
  padding: 26px 24px 30px;
  text-align: center;
}

.service-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2d3d;
  margin-bottom: 12px;
  position: relative;
}

.service-content h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  background: #2c5aa0;
  margin: 12px auto 0;
  border-radius: 20px;
  transition: width 0.3s ease;
}

.service-card:hover .service-content h3::after {
  width: 68px;
}

.service-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #5e6c80;
  margin-bottom: 24px;
  min-height: 82px;
}

.service-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(135deg, #2c5aa0, #163c7a);
  box-shadow: 0 8px 20px rgba(44, 90, 160, 0.25);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;
}

.service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(44, 90, 160, 0.32);
  opacity: 0.95;
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 70px 22px;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .section-header p {
    font-size: 15px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-image-wrap {
    height: 210px;
  }

  .service-content p {
    min-height: auto;
  }
}

.about-premium {
  padding: 100px 70px;
  background: linear-gradient(135deg, #f7f9fc 0%, #eef3fa 50%, #f9fbfd 100%);
  position: relative;
  overflow: hidden;
}

.about-premium::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: rgba(44, 90, 160, 0.05);
  border-radius: 50%;
}

.about-premium::after {
  content: "";
  position: absolute;
  bottom: -140px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: rgba(22, 60, 122, 0.05);
  border-radius: 50%;
}

.about-premium-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 2;
}

.about-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #2c5aa0;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.about-text h2 {
  font-size: 48px;
  line-height: 1.15;
  color: #1a2f4d;
  margin-bottom: 22px;
  font-weight: 700;
}

.about-text p {
  font-size: 18px;
  line-height: 1.9;
  color: #58677c;
  max-width: 620px;
  margin-bottom: 30px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: linear-gradient(135deg, #2c5aa0, #163c7a);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(44, 90, 160, 0.22);
  transition: all 0.3s ease;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(44, 90, 160, 0.28);
}

.about-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-bg-shape {
  position: absolute;
  width: 92%;
  height: 92%;
  background: linear-gradient(135deg, #2c5aa0, #173d7d);
  border-radius: 30px;
  top: 35px;
  left: 35px;
  opacity: 0.12;
  filter: blur(2px);
}

.about-image-wrap img {
  width: 100%;
  max-width: 560px;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 55px rgba(23, 61, 125, 0.18);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.about-image-wrap img:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 28px 70px rgba(23, 61, 125, 0.22);
}

@media (max-width: 1024px) {
  .about-premium-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-text {
    text-align: center;
  }

  .about-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-image-wrap {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-premium {
    padding: 70px 22px;
  }

  .about-text h2 {
    font-size: 34px;
  }

  .about-text p {
    font-size: 16px;
    line-height: 1.8;
  }

  .about-image-wrap img {
    height: 300px;
  }

  .image-bg-shape {
    top: 18px;
    left: 18px;
  }
}

/* blog */

.blog-section {
  padding: 100px 70px;
  background: #f7f9fc;
}

.blog-container {
  max-width: 1280px;
  margin: 0 auto;
}

.blog-header {
  text-align: center;
  margin-bottom: 50px;
}

.blog-header h2 {
  font-size: 38px;
  color: #16345f;
  margin-bottom: 12px;
}

.blog-header p {
  color: #66758a;
  font-size: 16px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(18, 47, 95, 0.08);
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(18, 47, 95, 0.15);
}

.blog-image {
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.08);
}

.blog-content {
  padding: 24px;
}

.blog-date {
  font-size: 13px;
  color: #2c5aa0;
  font-weight: 600;
}

.blog-content h3 {
  font-size: 20px;
  margin: 10px 0;
  color: #1f2d3d;
}

.blog-content p {
  font-size: 14px;
  color: #5e6c80;
  line-height: 1.7;
  margin-bottom: 18px;
}

.blog-btn {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, #2c5aa0, #163c7a);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.blog-btn:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .blog-listing-section {
    padding: 60px 16px;
  }

  .blog-listing-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .blog-list-card {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
  }

  .blog-list-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .blog-list-content {
    padding: 18px 16px 20px;
  }

  .blog-list-content h3 {
    font-size: 22px;
    line-height: 1.35;
    word-break: break-word;
  }

  .blog-list-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .blog-list-meta {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
}

@media (max-width: 1024px) {
  .blog-section {
    padding: 80px 30px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .blog-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 70px 18px;
  }

  .blog-header {
    margin-bottom: 36px;
  }

  .blog-header h2 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .blog-header p {
    font-size: 15px;
    line-height: 1.7;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .blog-card {
    border-radius: 16px;
  }

  .blog-image {
    height: 210px;
  }

  .blog-content {
    padding: 20px 18px;
  }

  .blog-date {
    font-size: 12px;
  }

  .blog-content h3 {
    font-size: 22px;
    line-height: 1.35;
    margin: 8px 0 10px;
  }

  .blog-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .blog-btn {
    padding: 10px 18px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .blog-section {
    padding: 60px 16px;
  }

  .blog-header h2 {
    font-size: 24px;
  }

  .blog-image {
    height: 190px;
  }

  .blog-content h3 {
    font-size: 20px;
  }
}

/* CLIENTS */

/* .clients {
  text-align: center;
  padding: 60px;
  background: white;
}

.client-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  font-weight: bold;
} */

/* CONTACT */

.contact-premium {
  padding: 110px 70px;
  background:
    linear-gradient(135deg, rgba(16, 43, 84, 0.98), rgba(27, 72, 138, 0.95)),
    url("images/contact-bg.jpg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.contact-premium::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -80px;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.contact-premium::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.contact-premium-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.contact-left {
  color: #ffffff;
}

.contact-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b8d3ff;
  margin-bottom: 16px;
}

.contact-left h2 {
  font-size: 46px;
  line-height: 1.15;
  margin-bottom: 14px;
  font-weight: 700;
}

.contact-accent {
  width: 78px;
  height: 4px;
  border-radius: 50px;
  background: linear-gradient(90deg, #ffffff, #8bb6ff);
  margin-bottom: 24px;
}

.contact-left > p {
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.86);
  max-width: 580px;
  margin-bottom: 34px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px 20px;
  border-radius: 18px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  font-size: 20px;
}

.contact-info-item h4 {
  font-size: 17px;
  margin-bottom: 6px;
  color: #ffffff;
}

.contact-info-item p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.contact-right {
  display: flex;
  justify-content: center;
}

.contact-form {
  width: 100%;
  max-width: 560px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 28px;
  padding: 38px 32px;
  min-height: 500px;
  box-shadow: 0 22px 55px rgba(8, 25, 52, 0.22);
}

.contact-form h3 {
  font-size: 28px;
  color: #18365d;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8e2f0;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 15px;
  color: #243b5a;
  outline: none;
  background: #f9fbfe;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2c5aa0;
  box-shadow: 0 0 0 4px rgba(44, 90, 160, 0.1);
}

.contact-form textarea {
  resize: none;
  margin-bottom: 20px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: none;
  padding: 15px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2c5aa0, #163c7a);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(44, 90, 160, 0.22);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(44, 90, 160, 0.3);
}

@media (max-width: 1100px) {
  .contact-premium-container {
    grid-template-columns: 1fr;
  }

  .contact-left {
    text-align: center;
  }

  .contact-left > p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .contact-premium {
    padding: 75px 22px;
  }

  .contact-left h2 {
    font-size: 34px;
  }

  .contact-left > p {
    font-size: 16px;
    line-height: 1.8;
  }

  .contact-form {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .contact-form h3 {
    font-size: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

.footer-premium {
  background: linear-gradient(135deg, #0e2445, #143a72);
  color: #ffffff;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

.footer-premium::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.footer-premium::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -70px;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 70px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
  max-width: 320px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 18px;
  color: #ffffff;
  position: relative;
}

.footer-col h4::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  background: #78a8f2;
  border-radius: 50px;
  margin-top: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-col ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 6px;
}

.footer-contact li {
  line-height: 1.8;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-socials a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-socials a i {
  font-size: 18px;
  color: #ffffff;
  line-height: 1;
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 20px 15px;
  margin-top: 10px;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  margin: 4px 0;
}

.designed-by a {
  color: #9dc2ff;
  text-decoration: none;
  font-weight: 600;
}

.designed-by a:hover {
  color: #ffffff;
}

/* .footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
} */

@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    padding: 0 22px 35px;
  }

  .footer-brand p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-col {
    text-align: center;
  }

  .footer-col h4::after {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-socials {
    justify-content: center;
  }
}

/* popup */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  background: #ffffff;
  width: 90%;
  max-width: 420px;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  animation: popupScale 0.3s ease;
}

@keyframes popupScale {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.popup-box h3 {
  margin-bottom: 5px;
  color: #163c7a;
}

.popup-box p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #666;
}

.popup-box input,
.popup-box textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.popup-btn {
  width: 100%;
  padding: 12px;
  border: none;
  background: linear-gradient(135deg, #2c5aa0, #163c7a);
  color: white;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.popup-btn:hover {
  opacity: 0.9;
}

/* ṃenu toggle */

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 10px;
  transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* CTA */

.about-page-cta {
  padding: 90px 70px;
  background: linear-gradient(
    135deg,
    rgba(16, 43, 84, 0.98),
    rgba(27, 72, 138, 0.95)
  );
  color: #ffffff;
  text-align: center;
}

.about-page-cta-container {
  max-width: 920px;
  margin: 0 auto;
}

.about-page-cta-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b8d3ff;
  margin-bottom: 14px;
}

.about-page-cta h2 {
  font-size: 42px;
  line-height: 1.18;
  margin-bottom: 16px;
}

.about-page-cta p {
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 28px;
}

.about-page-cta-buttons {
  display: flex;
  justify-content: center;
  text-decoration: none;
  gap: 16px;
  flex-wrap: wrap;
}

.about-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  background: #ffffff;
  color: #153a74;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

.about-page-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
}

/* services */
.section-mini-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2c5aa0;
  margin-bottom: 16px;
}

.section-line {
  width: 78px;
  height: 4px;
  border-radius: 50px;
  background: linear-gradient(90deg, #2c5aa0, #7aa7e8);
}

.about-section-header {
  text-align: left;
  max-width: 900px;
  margin: 0 0 50px 0;
}

.about-section-header h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #16345f;
  margin-bottom: 14px;
}

.about-section-header p {
  font-size: 17px;
  line-height: 1.8;
  color: #66758a;
}

@media (max-width: 768px) {
  .about-section-header {
    margin-bottom: 36px;
  }

  .about-section-header h2 {
    font-size: 28px;
  }

  .about-section-header p {
    font-size: 15px;
    line-height: 1.8;
  }
}

/* why choose */
.why-choose-section {
  padding: 100px 70px;
  background: linear-gradient(135deg, #f7faff, #edf3fa);
}

.why-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-left h2 {
  font-size: 42px;
  line-height: 1.2;
  margin: 15px 0;
  color: #16345f;
}

.why-description {
  font-size: 17px;
  line-height: 1.8;
  color: #5c6c80;
}

.why-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-card {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(18, 47, 95, 0.08);
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(18, 47, 95, 0.12);
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2c5aa0, #163c7a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.why-card h4 {
  margin-bottom: 6px;
  color: #16345f;
  font-size: 18px;
}

.why-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #5c6c80;
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 70px 18px;
  }

  .why-container {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
  }

  .why-left {
    text-align: center;
  }

  .why-left h2 {
    font-size: 28px;
    line-height: 1.2;
    margin: 12px 0;
  }

  .why-description {
    font-size: 15px;
    line-height: 1.8;
  }

  .why-right {
    gap: 14px;
  }

  .why-card {
    padding: 18px 16px;
    gap: 14px;
    border-radius: 16px;
  }

  .why-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    font-size: 16px;
  }

  .why-card h4 {
    font-size: 16px;
    margin-bottom: 4px;
    line-height: 1.3;
  }

  .why-card p {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* whatsapp */

/* .whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  background: #20c75a;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 22px;
    bottom: 18px;
    right: 18px;
  }
} */

/* Sticky Social Icons */

.sticky-social-right {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

.sticky-social-right a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.sticky-social-right a:hover {
  width: 58px;
}

.social-whatsapp {
  background: #25d366;
}
.social-call {
  background: #163c7a;
}

.social-email {
  background: #2c5aa0;
}
.social-instagram {
  background: #e1306c;
}
.social-facebook {
  background: #0165e1;
}
.social-linkedin {
  background: #0a66c2;
}

@media (max-width: 768px) {
  .sticky-social-right {
    top: auto;
    bottom: 90px;
    right: 10px;
    transform: none;
  }

  .sticky-social-right a {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}
