/* =========================
   GLOBAL STYLES
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f4f8ff;
  color: #0d1b3d;
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 90px 0;
}

img {
  width: 100%;
  display: block;
}

/* =========================
   HEADER
========================= */

.header {
  width: 100%;
  background: #ffffff;
  padding: 6px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* NAVBAR */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  position: relative;
}

/* LOGO */

.logo-area img {
  width: 128px;
  height: auto;
  object-fit: contain;
}

/* NAV LINKS */

nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav a {
  text-decoration: none;
  color: #0d1b3d;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  transition: 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 3px;
  background: #ff2d2d;
  border-radius: 20px;
  transition: 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #ff2d2d;
}

/* CALL BUTTON */

.call-btn {
  text-decoration: none;
  background: linear-gradient(135deg, #005eff, #ff2d2d);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 94, 255, 0.18);

  display: flex;
  align-items: center;
  gap: 8px;
}

.call-btn:hover {
  transform: translateY(-3px);
}

/* HAMBURGER */

.menu-toggle {
  display: none;
  font-size: 24px;
  color: #0d1b3d;
  cursor: pointer;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .call-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: white;

    flex-direction: column;
    align-items: flex-start;
    gap: 22px;

    padding: 25px;

    box-shadow: 0 12px 30px rgba(0,0,0,0.08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);

    transition: 0.3s ease;
  }

  nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  nav a {
    font-size: 16px;
  }

  .logo-area img {
    width: 115px;
  }
}

@media (max-width: 576px) {

  .header {
    padding: 4px 0;
  }

  .nav {
    min-height: 60px;
  }

  .logo-area img {
    width: 105px;
  }

  nav {
    top: 68px;
  }
}
/* =========================
   HERO SECTION
========================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
  padding-top: 100px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(0, 94, 255, 0.08);
  border-radius: 50%;
  top: -120px;
  right: -100px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255, 45, 45, 0.08);
  border-radius: 50%;
  bottom: -120px;
  left: -100px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.tag {
  display: inline-block;
  background: rgba(0, 94, 255, 0.08);
  color: #005eff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
}

.hero-text h1 {
  font-size: 62px;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #0d1b3d;
  font-weight: 700;
}

.hero-text h1 span {
  color: #ff2d2d;
}

.hero-text p {
  color: #5f6b84;
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 35px;
  max-width: 650px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* =========================
   BUTTONS
========================= */

.primary-btn,
.secondary-btn {
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.primary-btn {
  background: linear-gradient(135deg, #005eff, #ff2d2d);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 94, 255, 0.2);
}

.secondary-btn {
  border: 2px solid #005eff;
  color: #005eff;
  background: white;
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-4px);
}

/* =========================
   HERO CARD
========================= */

.hero-card {
  display: flex;
  justify-content: center;
}

.glass-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  padding: 50px;
  text-align: center;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  animation: float 4s ease-in-out infinite;
}

.glass-card i {
  font-size: 72px;
  color: #005eff;
  margin-bottom: 25px;
}

.glass-card h3 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #0d1b3d;
}

.glass-card p {
  color: #5f6b84;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

/* =========================
   SECTION TITLE
========================= */

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title.left {
  text-align: left;
}

.section-title h2 {
  font-size: 42px;
  color: #0d1b3d;
  margin-bottom: 15px;
}

.section-title p {
  color: #5f6b84;
  font-size: 17px;
}

/* =========================
   SERVICES
========================= */

.services {
  background: #ffffff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 24px;
  transition: 0.4s ease;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0, 94, 255, 0.12);
}

.service-card i {
  font-size: 48px;
  color: #ff2d2d;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #0d1b3d;
}

.service-card p {
  color: #5f6b84;
  line-height: 1.8;
}

/* =========================
   ABOUT SECTION
========================= */

.about {
  background: #f7faff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 55px; /* shifts image slightly down */
}

.about-image img {
  width: 100%;
  max-width: 500px;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content .section-title {
  margin-bottom: 25px; /* reduced title gap */
}
.about-content .section-title h2 {
  margin-bottom: 0;
  line-height: 1.2;
}

.about-content p {
  color: #5f6b84;
  line-height: 1.9;
  margin-bottom: 30px;
  font-size: 16px;
}

.features {
  display: grid;
  gap: 18px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.feature i {
  color: #005eff;
  font-size: 18px;
}

.feature span {
  font-weight: 500;
  color: #0d1b3d;
}
/* RESPONSIVE */

@media (max-width: 992px) {

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image {
    padding-top: 0;
  }

  .about-image img {
    max-width: 100%;
    height: auto;
  }

  .about-content {
    text-align: center;
  }
}
/* =========================
   CONTACT SECTION
========================= */

.contact {
  background: white;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.contact-card {
  background: #f7faff;
  padding: 45px 35px;
  border-radius: 24px;
  text-align: center;
  transition: 0.4s ease;
  box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}

.contact-card:hover {
  transform: translateY(-8px);
}

.contact-card i {
  font-size: 46px;
  color: #ff2d2d;
  margin-bottom: 20px;
}

.contact-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #0d1b3d;
}

.contact-card p {
  color: #5f6b84;
  line-height: 1.9;
}

.small-btn {
  margin-top: 22px;
}

/* =========================
   FOOTER
========================= */

footer {
  background: #0d1b3d;
  padding: 25px;
  text-align: center;
  color: white;
  font-size: 15px;
}

/* =========================
   FLOATING CALL BUTTON
========================= */

.floating-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #005eff, #ff2d2d);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 992px) {

  .hero-content,
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin: auto auto 35px;
  }

  .section-title.left {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 48px;
  }

  nav {
    display: none;
  }
}

@media (max-width: 768px) {

  .hero {
    padding-top: 120px;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .section-title h2 {
    font-size: 34px;
  }

  .glass-card {
    padding: 40px 30px;
  }
}

@media (max-width: 576px) {

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    justify-content: center;
  }

  .call-btn {
    display: none;
  }

  .section {
    padding: 70px 0;
  }

  .service-card,
  .contact-card {
    padding: 35px 25px;
  }

  .floating-call {
    width: 58px;
    height: 58px;
    font-size: 22px;
  }
}
/* =========================
   CONTACT SECTION
========================= */

.contact {
  background: #f7faff;
}

.contact-main {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-box {
  display: flex;
  gap: 18px;
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-5px);
}

.contact-box .icon {
  min-width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #005eff, #ff2d2d);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-box .icon i {
  color: white;
  font-size: 22px;
}

.contact-box h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #0d1b3d;
}

.contact-box p {
  color: #5f6b84;
  line-height: 1.8;
}

.contact-btn {
  width: fit-content;
  margin-top: 10px;
}

/* MAP */

.map-wrapper {
  border-radius: 24px;
  overflow: hidden;
  min-height: 100%;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
}

/* =========================
   FOOTER
========================= */

.footer {
  background: #081b4b;
  padding-top: 70px;
  color: white;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}

/* FOOTER BRAND */

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  text-align: left;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 70px;
  height: auto;
  object-fit: contain;
  background: white;
  padding: 6px;
  border-radius: 12px;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
}

.footer-brand-text h2 {
  font-size: 24px;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.footer-brand-text span {
  color: #c8d4f0;
  font-size: 13px;
  letter-spacing: 1px;
  margin-top: 3px;
}

.footer-desc {
  color: #d0d8ec;
  line-height: 2;
  font-size: 15px;
  max-width: 320px;
  text-align: left;
}

/* FOOTER LINKS */

.footer-links {
  text-align: left;
}

.footer-links h3 {
  margin-bottom: 24px;
  font-size: 22px;
  color: #ffffff;
}

.footer-links a,
.footer-links p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #d0d8ec;
  text-decoration: none;
  margin-bottom: 15px;
  transition: 0.3s ease;
  line-height: 1.8;
  font-size: 15px;
}

.footer-links a:hover {
  color: #ff3d3d;
  padding-left: 5px;
}

.footer-links i {
  color: #ff3d3d;
  margin-top: 4px;
  min-width: 18px;
}

/* FOOTER BOTTOM */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  text-align: center;
}

.footer-bottom p {
  color: #d0d8ec;
  font-size: 15px;
  margin: 0;
}

/* RESPONSIVE */

@media (max-width: 768px) {

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-about,
  .footer-links {
    text-align: left;
    align-items: flex-start;
  }

  .footer-brand {
    justify-content: flex-start;
  }

  .footer-desc {
    margin: 0;
  }
}
/* SERVICES RESPONSIVE */

@media (max-width: 992px) {

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 576px) {

  .service-grid {
    grid-template-columns: 1fr;
  }

}
/* =========================
   GALLERY SECTION
========================= */

.gallery {
  background: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* =========================
   REVIEWS SECTION
========================= */

.reviews {
  background: #f7faff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: white;
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
}

.review-user h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #0d1b3d;
}

.stars {
  margin-bottom: 20px;
}

.stars i {
  color: #ffb400;
  margin-right: 3px;
}

.review-card p {
  color: #5f6b84;
  line-height: 1.9;
  font-size: 15px;
}

/* RESPONSIVE */

@media (max-width: 992px) {

  .gallery-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 576px) {

  .gallery-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 240px;
  }

}