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

/* Body Text */
body,
p,
span,
a,
li,
input,
textarea,
button {
  font-family: "Inter", sans-serif;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.section-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background: #E9F1FB;
  color: #2A4354;
  line-height: 1.6;
  overflow-x: hidden;
}

.cursor {
  width: 26px;
  height: 26px;
  border: 2px solid #0092F9;
  background: transparent;
  border-radius: 50%;
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 3px rgba(0, 146, 249, 0.12);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.cursor::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #0092F9;
  opacity: 0.9;
  transition: transform 0.2s ease;
}
.cursor.cursor-hover {
  width: 42px;
  height: 42px;
  border-color: rgb(0, 110.1156626506, 187.8);
  box-shadow: 0 0 0 5px rgba(0, 146, 249, 0.12);
}
.cursor.cursor-hover::after {
  transform: scale(0.4);
  background: rgb(0, 110.1156626506, 187.8);
}

.btn {
  padding: 12px 28px;
  background: #001D32;
  color: #ffffff;
  border: 2px solid #001D32;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0092F9;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: -1;
}
.btn:hover {
  color: #ffffff;
  border-color: #0092F9;
  transform: translateY(-2px);
}
.btn:hover::before {
  transform: scaleX(1);
}
.btn:active {
  transform: translateY(0);
}

.container {
  width: 95% !important;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.header {
  padding: 20px 0;
  background: #E9F1FB;
  overflow: visible;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}
.header::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  top: -200px;
  right: -200px;
  background: rgba(0, 146, 249, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.header-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  height: 70px;
  width: 100%;
  position: relative;
}

.header-logo {
  width: 150%;
  height: 150%;
  position: relative;
  justify-self: start;
}
.header-logo img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 150px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  pointer-events: none;
}

.header-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  grid-column: 2;
}
.header-title h2 {
  color: #001D32;
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.hamburger {
  justify-self: end;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  flex-shrink: 0;
  justify-self: end;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: #0092F9;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
  background: #0092F9;
}

.menu-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}

.menu-card {
  min-width: 120px;
  padding: 10px 15px;
  text-decoration: none;
  text-align: center;
  background: #001D32;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  transition: all 0.35s ease;
}
.menu-card span {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  display: block;
}
.menu-card:hover {
  transform: translateY(-8px);
  background: rgba(0, 146, 249, 0.12);
  border-color: #0092F9;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.header.scrolled {
  background: rgba(0, 20, 35, 0.97);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding: 15px 0;
}
.header.scrolled .header-logo img {
  width: 46px;
  height: 46px;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }
  .menu-grid {
    display: none;
    width: 100%;
    margin-top: 20px;
  }
  .menu-grid.active {
    display: grid;
  }
  .header {
    padding: 15px 0;
  }
  .header-logo {
    width: 90px;
    height: 90px;
  }
  .header-logo img {
    width: 110px;
    height: 110px;
  }
  .header-title h2 {
    font-size: 22px;
  }
  .menu-grid.active {
    gap: 8px;
  }
  .menu-card {
    min-width: 110px;
    padding: 10px 12px;
  }
  .menu-card span {
    font-size: 15px;
  }
}
/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .header {
    padding: 10px 0;
  }
  .header-logo {
    width: 65px;
    height: 65px;
  }
  .header-logo img {
    width: 80px;
    height: 80px;
  }
  .header-title h2 {
    font-size: 18px;
  }
  .menu-grid.active {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 100%;
  }
  .menu-card {
    min-width: auto;
    width: 100%;
    padding: 12px;
  }
  .menu-card span {
    font-size: 14px;
  }
}
/* ================= SMALL PHONES ================= */
@media (max-width: 480px) {
  .header {
    padding: 10px 0;
  }
  .header-logo {
    width: 50px;
    height: 50px;
  }
  .header-logo img {
    width: 60px;
    height: 60px;
  }
  .header-title h2 {
    font-size: 15px;
  }
  .menu-grid.active {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .menu-card {
    padding: 12px 15px;
    border-radius: 12px;
  }
  .menu-card span {
    font-size: 14px;
  }
}
@media (max-width: 992px), (hover: none) and (pointer: coarse) {
  .cursor {
    display: none !important;
  }
}
.hero {
  margin-top: 150px;
  height: 100vh;
  position: relative;
  background: #001D32;
}
.hero .swiper {
  height: 100%;
  width: 100%;
}
.hero .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
.hero .slide1 {
  background: linear-gradient(rgba(0, 29, 50, 0.72), rgba(0, 29, 50, 0.55)), url("../images/slide_1.jpg") center center/cover no-repeat;
}
.hero .slide2 {
  background: linear-gradient(rgba(0, 29, 50, 0.72), rgba(0, 29, 50, 0.55)), url("../images/slide_2.jpg") center center/cover no-repeat;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  top: 70%;
  left: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(0, 146, 249, 0.35);
  pointer-events: none;
  z-index: 5;
}
.hero::before {
  width: 620px;
  height: 620px;
  margin: -310px 0 0 -310px;
  animation: apertureSpin 60s linear infinite, apertureConverge 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero::after {
  width: 460px;
  height: 460px;
  margin: -230px 0 0 -230px;
  border-color: rgba(255, 255, 255, 0.25);
  animation: apertureSpinReverse 45s linear infinite, apertureConverge 1.4s 0.15s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero .content {
  max-width: 800px;
  padding: 0 20px;
  z-index: 10;
  animation: focusIn 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero .content span.eyebrow {
  display: inline-block;
  color: #0092F9;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero .content h1 {
  font-size: 62px;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffffff;
}
.hero .content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 22px;
  margin-bottom: 30px;
  font-weight: 300;
  letter-spacing: 0.3px;
}
.hero .content .btn {
  display: inline-block;
  background: #0092F9;
  color: #ffffff;
  border: 2px solid #0092F9;
}
.hero .content .btn::before {
  background: #ffffff;
}
.hero .content .btn:hover {
  color: #0092F9;
  border-color: #ffffff;
}
.hero .swiper-pagination {
  bottom: 30px !important;
  z-index: 10;
}
.hero .swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  width: 10px;
  height: 10px;
  transition: all 0.3s;
}
.hero .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #0092F9;
  width: 28px;
  border-radius: 6px;
}

.stats {
  padding: 120px 0;
  background: #001D32;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -250px;
  right: -250px;
  background: rgba(0, 146, 249, 0.08);
  border-radius: 50%;
  filter: blur(80px);
}
.stats .stats-header {
  text-align: center;
  margin-bottom: 60px;
}
.stats .stats-header span {
  display: inline-block;
  color: #0092F9;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}
.stats .stats-header h2 {
  color: #ffffff;
  font-size: 42px;
  max-width: 700px;
  margin: 0 auto;
}
.stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  position: relative;
  z-index: 2;
}
.stats .stat-box {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 35px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.35s ease;
}
.stats .stat-box:hover {
  transform: translateY(-8px);
  border-color: #0092F9;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
.stats .stat-icon {
  width: 75px;
  height: 75px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(0, 146, 249, 0.12);
  border: 1px solid rgba(0, 146, 249, 0.25);
}
.stats .stat-icon i {
  color: #0092F9;
  font-size: 30px;
}
.stats .stat-content h3 {
  color: #ffffff;
  font-size: 46px;
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 700;
}
.stats .stat-content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .stats .stats-grid {
    grid-template-columns: 1fr;
  }
  .stats .stats-header h2 {
    font-size: 34px;
  }
}
@media (max-width: 576px) {
  .stats .stat-box {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
  .stats .stat-content h3 {
    font-size: 38px;
  }
}
.about {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(233, 241, 251, 0.98) 0%, rgba(233, 241, 251, 0.95) 100%);
  text-align: center;
}
.about .about-content {
  max-width: 900px;
  margin: 0 auto 50px;
}
.about .about-content span {
  color: #0092F9;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}
.about .about-content h2 {
  font-size: 52px;
  line-height: 1.2;
  color: #001D32;
  margin: 0;
}
.about .about-image {
  max-width: 1000px;
  margin: 0 auto 50px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 146, 249, 0.2);
}
.about .about-image img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.about .about-image:hover img {
  transform: scale(1.04);
}
.about .about-text {
  max-width: 850px;
  margin: 0 auto;
}
.about .about-text p {
  font-size: 18px;
  line-height: 1.9;
  color: #2A4354;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .about {
    padding: 80px 0;
  }
  .about .about-content h2 {
    font-size: 36px;
  }
  .about .about-text p {
    font-size: 16px;
  }
}
.section-title {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #001D32;
  position: relative;
  display: inline-block;
  width: 100%;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 2px;
  background: #0092F9;
  box-shadow: -22px 0 0 rgb(85.8, 185.0096385542, 255), 22px 0 0 rgb(85.8, 185.0096385542, 255);
}

.services {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(233, 241, 251, 0.98) 0%, rgba(233, 241, 251, 0.95) 100%);
}
.services .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 146, 249, 0.2);
  padding: 40px;
  border-radius: 8px;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #0092F9;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(0, 146, 249, 0.5);
  box-shadow: 0 20px 40px rgba(0, 146, 249, 0.15);
  transform: translateY(-8px);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover h3 {
  color: #0092F9;
}
.service-card:hover h3 img {
  transform: rotate(-8deg) scale(1.05);
}
.service-card h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #001D32;
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.service-card h3 img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: invert(47%) sepia(74%) saturate(2359%) hue-rotate(185deg) brightness(101%) contrast(103%);
}
.service-card h3 span {
  line-height: 1.2;
}
.service-card p {
  color: #2A4354;
  line-height: 1.8;
  font-size: 16px;
}

.technologies {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(233, 241, 251, 0.98) 0%, rgba(233, 241, 251, 0.95) 100%);
}
.technologies .tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.tech-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 146, 249, 0.2);
  padding: 28px;
  border-radius: 8px;
  text-align: center;
  color: #001D32;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: default;
}
.tech-card:hover {
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-8px);
  border-color: rgba(0, 146, 249, 0.5);
  box-shadow: 0 20px 40px rgba(0, 146, 249, 0.15);
  color: #0092F9;
}

.portfolio {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(233, 241, 251, 0.98) 0%, rgba(233, 241, 251, 0.95) 100%);
}
.portfolio .swiper {
  width: 100%;
}
.portfolio .swiper-slide {
  padding: 10px;
}

.portfolio-card {
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 146, 249, 0.2);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  position: relative;
}
.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 146, 249, 0.5);
  box-shadow: 0 20px 40px rgba(0, 146, 249, 0.15);
}
.portfolio-card:hover img {
  transform: scale(1.08);
  filter: grayscale(0%);
}
.portfolio-card:hover h3 {
  color: #0092F9;
}
.portfolio-card img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: grayscale(35%);
}
.portfolio-card h3 {
  padding: 22px 25px;
  font-size: 19px;
  color: #001D32;
  font-weight: 600;
  transition: color 0.3s ease;
  text-align: center;
}

.testimonials {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(233, 241, 251, 0.98) 0%, rgba(233, 241, 251, 0.95) 100%);
}
.testimonials .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 146, 249, 0.2);
  border-left: 3px solid rgb(85.8, 185.0096385542, 255);
  padding: 40px;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-left-color: #0092F9;
  box-shadow: 0 20px 40px rgba(0, 146, 249, 0.15);
}
.testimonial-card p {
  color: #2A4354;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card h4 {
  color: #001D32;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-card .rating {
  display: flex;
  align-items: center;
  gap: 2px;
}
.testimonial-card .rating img {
  width: 14px;
  height: 14px;
  -o-object-fit: contain;
     object-fit: contain;
}

.why-us {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(233, 241, 251, 0.98) 0%, rgba(233, 241, 251, 0.95) 100%);
}
.why-us .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  gap: 30px;
}

.contact {
  padding: 120px 0;
  background: #001D32;
  position: relative;
}
.contact .section-title {
  color: #ffffff;
  text-align: center;
  margin-bottom: 60px;
}
.contact .section-title::after {
  background: #0092F9;
  box-shadow: -22px 0 0 rgb(85.8, 185.0096385542, 255), 22px 0 0 rgb(85.8, 185.0096385542, 255);
}
.contact .contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-form {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  margin-bottom: 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  transition: all 0.3s ease;
}
.contact-form input::-moz-placeholder, .contact-form textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0092F9;
  background: rgba(255, 255, 255, 0.06);
}
.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}
.contact-form .btn {
  width: 100%;
  background: #0092F9;
  border-color: #0092F9;
  color: #ffffff;
}
.contact-form .btn:hover {
  opacity: 0.9;
}

.contact-info {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.contact-info h3,
.contact-info > p,
.contact-info .social-links {
  grid-column: 1/-1;
}
.contact-info h3 {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 10px;
}
.contact-info > p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.info-item i {
  width: 50px;
  height: 50px;
  background: rgba(0, 146, 249, 0.12);
  border: 1px solid rgba(0, 146, 249, 0.4);
  border-radius: 50%;
  color: #0092F9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-item h4 {
  color: #ffffff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.info-item p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}
.social-links a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: #0092F9;
  border-color: #0092F9;
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .contact {
    padding: 80px 0;
  }
  .contact-form,
  .contact-info {
    padding: 25px;
  }
  .contact-info {
    grid-template-columns: 1fr;
  }
}
.policy {
  margin-top: 60px;
  padding: 100px 0 120px;
  background: linear-gradient(135deg, rgba(233, 241, 251, 0.98) 0%, rgba(233, 241, 251, 0.95) 100%);
  color: #2A4354;
  min-height: 80vh;
}
.policy h1 {
  font-size: 40px;
  margin-bottom: 10px;
  color: #001D32;
}
.policy .updated {
  color: #0092F9;
  font-weight: 600;
  margin-bottom: 40px;
  display: block;
}
.policy h2 {
  font-size: 24px;
  margin: 40px 0 15px;
  color: #001D32;
}
.policy p,
.policy li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #2A4354;
}
.policy ul {
  padding-left: 22px;
  margin-bottom: 15px;
}
.policy a {
  color: #0092F9;
}
.policy .back-link {
  margin-top: 30px;
  color: #ffffff;
}

.footer {
  text-align: center;
  padding: 36px 20px;
  background: #001D32;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
.footer a {
  color: rgba(255, 255, 255, 0.7);
}
.footer p {
  margin: 0;
}

@keyframes focusIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
@keyframes apertureConverge {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.4);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes apertureSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg) scale(1);
  }
}
@keyframes apertureSpinReverse {
  from {
    transform: translate(-50%, -50%) rotate(360deg) scale(1);
  }
  to {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
}
[data-aos] {
  visibility: hidden;
}

[data-aos].aos-animate {
  visibility: visible;
  animation: focusIn 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

[data-aos=fade-down].aos-animate {
  animation: focusInDown 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

[data-aos=zoom-in].aos-animate {
  animation: focusZoom 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes focusInDown {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.98);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
@keyframes focusZoom {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 992px) {
  .hero::before,
  .hero::after {
    display: none;
  }
  .hero .content h1 {
    font-size: 40px;
  }
  .stats-grid,
  .service-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .about-grid {
    grid-template-columns: 1fr !important;
  }
  .section-title {
    font-size: 34px;
  }
}
@media (max-width: 768px) {
  .hero {
    margin-top: 70px;
  }
  .hero .content h1 {
    font-size: 30px;
  }
  .hero .content p {
    font-size: 16px;
  }
  .stats-grid,
  .service-grid,
  .testimonial-grid {
    grid-template-columns: 1fr !important;
  }
  .section-title {
    font-size: 26px;
  }
  .policy {
    padding: 90px 0 80px;
  }
  .policy h1 {
    font-size: 30px;
  }
  .policy h2 {
    font-size: 21px;
    margin: 32px 0 12px;
  }
  .policy p,
  .policy li {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .container {
    width: 95%;
  }
  .hero .content h1 {
    font-size: 24px;
  }
  .policy h1 {
    font-size: 26px;
  }
  .policy .updated {
    font-size: 13px;
  }
  .policy ul {
    padding-left: 18px;
  }
}
/* ================= CRITICAL FIX FOR SMALL MOBILE (375px) ================= */
@media (max-width: 380px) {
  .container {
    width: 100% !important;
    padding-left: 12px;
    padding-right: 12px;
  }
  .header .nav {
    padding: 0 12px;
  }
  .hero,
  .stats,
  .about,
  .services,
  .technologies,
  .portfolio,
  .testimonials,
  .why-us,
  .contact,
  .policy {
    padding-left: 0;
    padding-right: 0;
  }
  .header .menu {
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
  }
  .swiper {
    width: 100% !important;
  }
  .portfolio-card img {
    width: 100% !important;
  }
  .section-title {
    padding: 0 15px;
  }
}/*# sourceMappingURL=style.css.map */