:root {
  --primary-color: #22437d;
  --secondary-color: #22437d;
  --accent-color: #2980b9;
  --text-light: #858698;
  --text-muted: #b0b8c1;
  --bg-dark: #0f1419;
}

.seo-hidden-content{
position:absolute;
left:-9999px;
top:auto;
width:1px;
height:1px;
overflow:hidden;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #fff;
  color: var(--text-light);
  line-height: 1.6;
  padding-top: 0;
  position: relative;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mobile-overlay.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.logo img {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo {
  display: flex;
  align-items: center;
}

.top-bar {
  background: transparent;
  padding: 0.8rem 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.info-group {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.icon {
  color: #fff;
  flex-shrink: 0;
}
.navbar {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  z-index: 1001;
  box-shadow: none;
}

.nav-content {
  background-color: white;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 62px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 8px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  flex: 1;
  justify-content: end;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--secondary-color);
}

.nav-cta {
  background: var(--secondary-color);
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}
.nav-cta,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.hero {
  position: relative;
  min-height: 100vh;
  color: white;
  padding: 180px 0 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #1a2332;
}

.hero-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide:nth-child(1) {
  background-image: url("./img/bannerImage.png");
}

.hero-slide:nth-child(2) {
  background-image:
    linear-gradient(135deg, rgba(20, 30, 48, 0.5) 80%, rgba(36, 59, 85, 0.5) 100%), url("./img/no-contactbanner.png");
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.dot.active {
  background: white;
  width: 14px;
  height: 14px;
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-overlay {
  display: none;
}

.hero-content {
  max-width: 650px;
  position: relative;
  z-index: 10;
}

.hero-tagline {
  font-size: 0.85rem;
  color: #205bc1;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
  letter-spacing: -1px;
  color: white;
  font-family: "Outfit", sans-serif;
}

.hero-title .highlight {
  color: #205bc1;
  display: block;
}

.hero-description {
  font-size: 1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 550px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-button {
  background: var(--secondary-color);
  color: white;
  border: none;
  padding: 1.2rem 2.8rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-button:hover {
  background: var(--accent-color);
}

.cta-button:active {
  transform: translateY(-1px);
}

.hero-quote {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.scroll-indicators {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 10;
}
.hero-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.scroll-btn {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.scroll-btn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: scale(1.1);
}

.scroll-btn:active {
  transform: scale(0.95);
}

.wave-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 120px;
  z-index: 1;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1000;
  position: relative;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 3px;
  display: block;
}

.mobile-sidebar {
  display: none;
}
.desktop-only {
  display: flex;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero .container {
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Outfit", sans-serif;
}
.hero-title .highlight {
  color: #205bc1;
}
.icon-box {
  width: 70px;
  height: 70px;
  background: rgba(34, 67, 125, 0.1);
  border-radius: 12px;
  position: relative;
  flex-shrink: 0;
}

.icon-box::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.card-1 .icon-box::before {
  background-image: url("./img/Marketing-icon.png");
}

.card-2 .icon-box::before {
  background-image: url("./img/Marketing-icon2.png");
}

.card-3 .icon-box::before {
  background-image: url("./img/Marketing-icon3.png");
}

.marketing-section {
  padding: 100px 0;
  background: #ffffff;
}

.marketing-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 60px;
}

.marketing-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.marketing-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-size: 16px;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  width: 350px;
  border: 1px solid #e6e7f3;
  transition: 0.3s ease;
}

.marketing-card:hover {
  transform: translateY(-8px);
}

.card-content h2 {
  font-size: 18px;
  margin-bottom: 10px;
  font-family: "Outfit", sans-serif;
  color: var(--primary-color);
}

.card-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666;
}

.comparison-section {
  position: relative;
  padding: 100px 0;
  min-height: 700px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comparison-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 95%;
  min-height: 550px;
  background-image: url("./img/comparison-bg.png");
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.95;
}

.comparison-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 1;
  pointer-events: none;
}

.comparison-section .container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.comparison-title {
  text-align: center;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 60px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.comparison-box {
  background: linear-gradient(135deg, #37507a 600%, #d0d0d0 10%, #374f79 60%);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 50px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-col {
  flex: 1;
}

.comparison-col h3 {
  color: #efdddd;
  margin-bottom: 25px;
  font-size: 1.5rem;
  font-weight: 600;
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.comparison-list li {
  color: #cecece;
  font-size: 20px;
  position: relative;
  padding-left: 35px;
  line-height: 1.6;
}

.cross::before,
.check::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
}

.cross::before {
  background-image: url("./img/Frame.png");
}
.check::before {
  background-image: url("./img//check.png");
}

.divider {
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
  align-self: stretch;
}

.services-section {
  padding: 100px 20px;
  background: #fff;
}

.services-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #22437d;
  margin-bottom: 80px;
}

.services-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 30px;
  background: white;
  padding: 20px 50px;
  border-radius: 16px;
  border: 2px solid #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  max-width: 570px;
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card:nth-child(1) {
  align-self: flex-start;
  margin-left: 0;
}

.service-card:nth-child(2) {
  align-self: flex-end;
  margin-right: 0;
}

.service-card:nth-child(3) {
  align-self: flex-start;
  margin-left: 0;
}

.service-icon-box {
  width: 80px;
  height: 80px;
  background: #22437d;
  border-radius: 12px;
  position: relative;
  flex-shrink: 0;
  margin-left: -90px;
}

.service-icon-box::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-1::before {
  background-image: url("./img/service-icon.png");
}

.icon-2::before {
  background-image: url("./img/service-icon2.png");
}

.icon-3::before {
  background-image: url("./img/service-icon3.png");
}

.card-content {
  flex: 1;
}

.card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #22437d;
  margin-bottom: 12px;
}

.card-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
}

.do-not-contact-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  overflow: hidden;
}

.do-not-contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./img/no-contactbanner.png") center center / cover no-repeat;
  z-index: 0;
}

.do-not-contact-section::after {
  content: "";
  position: absolute;
  inset: 0;

  z-index: 1;
}

.do-not-contact-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  color: white;
}

.do-not-contact-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: white;
  line-height: 1.2;
}
.do-not-points-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 60px;
  text-align: left;
}

.do-not-point {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-size: 1.3rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.cross-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
  background-image: url("./img/cross.png");
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: center;
}
.do-not-footer {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #bcbcbc;
  max-width: 750px;
  text-align: left;
}

.footer {
  color: white;
  font-family: "Poppins", sans-serif;
  background-color: var(--primary-color);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.footer-top {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-flex {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.newsletter-text h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.newsletter-form {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  width: 520px;
}

.phone-input {
  flex: 1;
  display: flex;
  align-items: center;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
}

/* + sign */
.country-code {
  padding: 0 14px;
  color: #333;
  font-weight: 500;
  border-right: 1px solid #ddd;
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
}

#countryCode {
  width: 70px;
  max-width: 70px;
  text-align: center;
  border-right: 1px solid #ddd;
}

#mobileNumber {
  flex: 1;
  width: 100%;
}

.phone-input input {
  border: none;
  outline: none;
  background: transparent;
  padding: 14px 14px;
  font-size: 14px;
}

.newsletter-form button {
  background: #1e2a78;
  color: white;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  flex: 0 0 auto;
  padding: 0 25px;
  border: 0;
}

.newsletter-form button:hover {
  background: #16205c;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}
.footer-middle {
  padding: 80px 0;
  text-align: center;
}

.footer-middle h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 42px;
}

.footer-middle p {
  font-size: 15px;
  max-width: 600px;
  margin: auto;
  opacity: 0.8;
  line-height: 1.6;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.social-icons a:focus {
  outline: none;
}
.social-icons a::before {
  content: "";
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.facebook::before {
  background-image: url("./img//facebook.png");
}

.instagram::before {
  background-image: url("./img/instragram.png");
}

.youtube::before {
  background-image: url("./img/youtube.png");
}
.linkedin::before {
  background-image: url("./img/linkdin.png");
  width: 28px;
  height: 28px;
  filter: brightness(0) saturate(100%) invert(83%) sepia(7%) saturate(380%) hue-rotate(199deg) brightness(95%)
    contrast(92%);
}
.footer-bottom {
  text-align: center;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
  opacity: 0.8;
}

.phone-input {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 50px;
  overflow: hidden;
}

.country-code {
  padding: 0 15px;
  font-weight: 400;
  color: #333;
  border-right: 1px solid #ddd;
  font-size: 14px;
}

.phone-input input {
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.phone-input input:-webkit-autofill,
.phone-input input:-webkit-autofill:hover,
.phone-input input:-webkit-autofill:focus,
.phone-input input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: #000 !important;
  caret-color: #000;
  transition: background-color 9999s ease-in-out 0s;
}
@media (max-width: 992px) {
  .marketing-section {
    padding: 80px 0;
  }
  .logo {
    display: flex;
    align-items: center;
  }

  .marketing-title {
    font-size: 2rem;
    margin-bottom: 50px;
  }

  .marketing-cards {
    gap: 25px;
  }

  .marketing-card {
    width: 100%;
    max-width: 450px;
  }

  .comparison-section {
    padding: 80px 0;
    min-height: auto;
    background: linear-gradient(135deg, #0a1628 0%, #1a2d4d 100%);
  }

  .comparison-section::before {
    max-width: 100%;
    width: 90%;
    height: 85%;
    min-height: 500px;
    opacity: 0.8;
  }

  .comparison-section .container {
    padding: 0 20px;
    max-width: 900px;
  }

  .comparison-title {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 50px;
  }

  .comparison-box {
    flex-direction: column;
    gap: 40px;
    padding: 40px 35px;
  }

  .divider {
    width: 100%;
    height: 2px;
  }
  .services-section {
    padding: 80px 20px;
  }

  .services-title {
    font-size: 2.2rem;
    margin-bottom: 60px;
  }

  .services-container {
    gap: 50px;
  }

  .service-card {
    max-width: 100%;
    padding: 25px 30px;
    align-self: center !important;
    margin: 0 !important;
  }

  .service-card:nth-child(2) {
    align-self: center !important;
  }

  .service-icon-box {
    margin-left: -70px;
  }
  .do-not-contact-section {
    padding: 80px 20px;
    min-height: 500px;
  }

  .do-not-contact-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }

  .do-not-points-list {
    gap: 20px;
    margin-bottom: 50px;
  }

  .do-not-point {
    font-size: 1.2rem;
  }

  .do-not-footer {
    font-size: 1.05rem;
  }

  .top-bar {
    display: none;
  }

  @media (max-width: 992px) {
    .top-bar {
      display: none;
    }

    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 9999;
      background: transparent;
    }
    .navbar .container {
      width: 100%;
      max-width: 100%;
      padding: 0;
      margin: 0;
    }

    .nav-content {
      width: 100%;
      background: #fff;
      border-radius: 0;
      padding: 12px 16px;
      gap: 12px;
      min-height: 64px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
      display: flex;
      align-items: center;
    }

    .mobile-menu-toggle {
      display: flex;
      flex: 0 0 auto;
    }
    .mobile-menu-toggle span {
      background: #22437d;
    }

    .logo {
      margin-left: auto;
      display: flex;
      align-items: center;
    }
    .logo img {
      height: 38px;
      width: auto;
      display: block;
    }

    .desktop-only {
      display: none !important;
    }

    body {
      padding-top: 64px;
    }

    .hero {
      padding-top: 80px;
    }
  }

  .mobile-menu-toggle {
    display: flex;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  }
  .desktop-only {
    display: none !important;
  }
  .mobile-sidebar {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100dvh;
    background: #ffffff;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
    transition: left 0.3s ease;
    z-index: 1002;
    overflow-x: hidden;
    overscroll-behavior: contain;
    pointer-events: none;
    opacity: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-sidebar.active {
    left: 0;
    pointer-events: auto;
    opacity: 1;
  }

  .mobile-sidebar-header {
    padding: 25px 25px 20px;
    border-bottom: 2px solid #22437d;
    background: linear-gradient(135deg, #22437d, #2980b9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 10;
  }

  .mobile-sidebar-header h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
  }

  .mobile-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
  }

  .mobile-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
  }

  .mobile-close-btn svg {
    color: white;
  }

  .mobile-sidebar .nav-links {
    position: static;
    width: 100%;
    height: auto;
    background: #ffffff;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 0;
    margin: 0;
    gap: 0;
    box-shadow: none;
    transition: none;
    list-style: none;
    overflow-y: visible;
    min-height: min-content;
  }

  .mobile-sidebar .nav-links li {
    width: 100%;
    border-bottom: 1px solid #e8e8e8;
    background: #ffffff;
  }

  .mobile-sidebar .nav-links a {
    display: block;
    padding: 20px 25px;
    font-size: 16px;
    color: #000000;
    font-weight: 600;
    transition: all 0.2s ease;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    background: #ffffff;
    border: none;
    outline: none;
  }

  .mobile-sidebar .nav-links a:hover,
  .mobile-sidebar .nav-links a:active {
    background: #e8f4f8;
    padding-left: 35px;
    color: #22437d;
  }

  .mobile-contact-info {
    flex: 0 0 auto;
    padding: 25px;
    background: #f5f7fa;
    border-top: 2px solid #e0e0e0;
    margin-top: 0;
  }

  .mobile-contact-info h4 {
    color: #000000;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .mobile-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 500;
  }

  .mobile-info-item:last-child {
    margin-bottom: 0;
  }

  .mobile-info-item .icon {
    color: #22437d;
    flex-shrink: 0;
    margin-top: 2px;
    stroke-width: 2.5;
  }

  .mobile-info-item span {
    flex: 1;
  }

  .mobile-sidebar .nav-cta {
    flex: 0 0 auto;
    position: static;
    width: calc(100% - 50px);
    margin: 25px;
    padding: 16px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    display: block;
    cursor: pointer;
    user-select: none;
    background: #22437d;
    color: white;
    border: none;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
  }

  .mobile-sidebar .nav-cta:hover {
    transform: translateY(-2px);
    background: #2980b9;
    box-shadow: 0 4px 12px rgba(34, 67, 125, 0.3);
  }

  .mobile-sidebar .nav-cta:active {
    transform: translateY(0);
  }

  .hero {
    padding: 80px 0 80px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .slider-dots {
    bottom: 30px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .dot.active {
    width: 12px;
    height: 12px;
  }

  .scroll-indicators {
    right: 20px;
  }

  .scroll-btn {
    width: 45px;
    height: 45px;
  }

  .footer-flex {
    flex-wrap: wrap;
    gap: 25px;
  }

  .newsletter-form {
    width: 100%;
    max-width: 500px;
  }

  .footer-middle h2 {
    font-size: 32px;
    line-height: 38px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .top-bar-content {
    gap: 0.5rem;
  }

  .info-group {
    gap: 0.8rem;
  }

  .info-item {
    font-size: 0.8rem;
  }

  .mobile-sidebar {
    width: 300px;
  }

  .mobile-sidebar .nav-cta {
    width: calc(100% - 40px);
    margin: 20px;
  }

  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-tagline {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 0.85rem;
    width: 100%;
    max-width: 350px;
  }

  .hero-quote {
    font-size: 0.85rem;
  }

  .slider-dots {
    bottom: 20px;
    gap: 10px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .dot.active {
    width: 10px;
    height: 10px;
  }

  .scroll-indicators {
    display: none;
  }

  .wave-decoration {
    height: 60px;
  }
  .marketing-section {
    padding: 60px 0;
  }

  .marketing-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
    padding: 0 15px;
  }

  .marketing-card {
    width: 100%;
    max-width: 100%;
    padding: 20px 15px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .icon-box {
    width: 60px;
    height: 60px;
  }

  .icon-box::before {
    width: 40px;
    height: 40px;
  }

  .card-content h3 {
    font-size: 1.1rem;
  }

  .card-content p {
    font-size: 0.9rem;
  }
  .comparison-section {
    padding: 60px 0;
    min-height: auto;
    background: linear-gradient(135deg, #1a2d4d 0%, #0f1b2e 100%);
  }
  .comparison-section::before {
    display: none;
  }

  .comparison-section .container {
    padding: 0 15px;
  }

  .comparison-title {
    font-size: 1.6rem;
    margin-bottom: 40px;
    padding: 0 10px;
  }

  .comparison-box {
    padding: 30px 20px;
    gap: 35px;
    background: rgba(55, 80, 122, 0.4);
  }

  .comparison-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
  }

  .comparison-list {
    gap: 20px;
  }

  .comparison-list li {
    font-size: 0.95rem;
    padding-left: 30px;
  }

  .cross::before,
  .check::before {
    width: 18px;
    height: 18px;
    background-size: 14px 14px;
  }
  .services-section {
    padding: 60px 15px;
  }

  .services-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .services-container {
    gap: 40px;
  }

  .service-card {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .service-icon-box {
    width: 70px;
    height: 70px;
    margin-left: 0;
    margin-bottom: 15px;
  }

  .service-icon-box::before {
    width: 35px;
    height: 35px;
  }

  .card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .card-content p {
    font-size: 0.95rem;
  }

  .do-not-contact-section {
    padding: 60px 15px;
    min-height: 450px;
  }

  .do-not-contact-content {
    max-width: 100%;
  }

  .do-not-contact-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .do-not-points-list {
    gap: 18px;
    margin-bottom: 40px;
  }

  .do-not-point {
    font-size: 1.05rem;
    gap: 15px;
  }

  .cross-icon {
    width: 28px;
    height: 28px;
    background-size: 16px 16px;
  }

  .do-not-footer {
    font-size: 1rem;
    text-align: center;
  }

  .footer-top {
    padding: 30px 0;
  }

  .footer-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;

    gap: 25px;
  }

  .newsletter-text h3 {
    font-size: 18px;
    line-height: 1.4;
  }

  .newsletter-form {
    width: 100%;
    max-width: 100%;
    flex-direction: row;
  }

  .newsletter-form input {
    padding: 14px 18px;
    font-size: 14px;
    flex: 1;
  }

  .newsletter-form button {
    padding: 14px 25px;
    font-size: 12px;
    white-space: nowrap;
  }

  .social-icons {
    justify-content: center;
    width: 100%;
  }

  .footer-middle {
    padding: 60px 0;
  }

  .footer-middle h2 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 15px;
  }

  .footer-middle p {
    font-size: 14px;
    padding: 0 15px;
  }

  .footer-bottom {
    font-size: 12px;
    padding: 12px 0;
  }
}

@media (max-width: 480px) {
  .marketing-section {
    padding: 50px 0;
  }

  .marketing-title {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 30px;
  }

  .marketing-card {
    padding: 18px 12px;
  }

  .card-content h3 {
    font-size: 1rem;
  }

  .card-content p {
    font-size: 0.85rem;
  }

  .comparison-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #0f1b2e 0%, #1a2d4d 100%);
  }
  .comparison-section::before {
    display: none;
  }

  .comparison-section .container {
    padding: 0 10px;
  }

  .comparison-title {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .comparison-box {
    padding: 25px 15px;
    gap: 30px;
    background: rgba(55, 80, 122, 0.35);
  }

  .comparison-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .comparison-list {
    gap: 18px;
  }

  .comparison-list li {
    font-size: 0.85rem;
    padding-left: 28px;
  }

  .cross::before,
  .check::before {
    width: 16px;
    height: 16px;
    background-size: 12px 12px;
  }

  .services-section {
    padding: 50px 10px;
  }

  .services-title {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .services-container {
    gap: 30px;
  }

  .service-card {
    padding: 18px 15px;
    gap: 0;
  }

  .service-icon-box {
    width: 60px;
    height: 60px;
  }

  .service-icon-box::before {
    width: 30px;
    height: 30px;
  }

  .card-content h3 {
    font-size: 16px;
  }

  .card-content p {
    font-size: 0.85rem;
  }

  .do-not-contact-section {
    padding: 50px 10px;
    min-height: 400px;
  }

  .do-not-contact-title {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .do-not-points-list {
    gap: 15px;
    margin-bottom: 30px;
  }

  .do-not-point {
    font-size: 0.95rem;
    gap: 12px;
  }

  .cross-icon {
    width: 26px;
    height: 26px;
    background-size: 14px 14px;
    margin-top: 2px;
  }

  .do-not-footer {
    font-size: 0.9rem;
  }

  .container {
    padding: 0 1rem;
  }

  .top-bar {
    padding: 0.5rem 0;
  }

  .info-group {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .info-item {
    font-size: 0.75rem;
  }

  .mobile-sidebar {
    width: 85%;
    max-width: 300px;
  }

  .mobile-sidebar-header {
    padding: 20px;
  }

  .mobile-sidebar-header h3 {
    font-size: 1.3rem;
  }

  .mobile-sidebar .nav-links a {
    padding: 15px 20px;
    font-size: 15px;
  }

  .mobile-contact-info {
    padding: 20px;
  }

  .mobile-contact-info h4 {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .mobile-info-item {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }

  .mobile-sidebar .nav-cta {
    width: calc(100% - 40px);
    margin: 20px;
    padding: 12px 18px;
    font-size: 0.85rem;
  }

  .hero {
    padding: 70px 0 50px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .cta-button {
    padding: 0.9rem 1.5rem;
    font-size: 0.8rem;
    width: 100%;
  }

  .wave-decoration {
    height: 40px;
  }

  .footer-top {
    padding: 25px 15px;
  }

  .newsletter-text h3 {
    font-size: 16px;
    line-height: 1.3;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    gap: 0;
  }

  .newsletter-form input {
    padding: 14px 15px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0;
  }

  .newsletter-form button {
    padding: 14px 20px;
    font-size: 12px;
    border-radius: 0;
    width: 100%;
  }

  .social-icons {
    width: 100%;
    justify-content: center;
    gap: 15px;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
  }

  .social-icons a::before {
    width: 16px;
    height: 16px;
  }

  .footer-middle {
    padding: 50px 0;
  }

  .footer-middle h2 {
    font-size: 18px;
    line-height: 24px;
  }

  .footer-middle p {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 11px;
    padding: 10px 15px;
  }
}
