@charset "UTF-8";
/* ================= THEME COLORS ================= */
/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #0f172a;
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f9fc;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ================= HEADER ================= */
header {
  position: sticky;
  z-index: 120;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 22px;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}
header .brand {
  display: flex;
  align-items: center;
}
header .logo {
  width: 180px;
  height: 70px;
  object-fit: contain;
}

/* ================= MENU TOGGLE ================= */
/* Desktop par hidden */
.menu-toggle {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: none;
  z-index: 300;
  font-size: 32px;
  color: #0f172a;
  cursor: pointer;
  user-select: none;
}

/* Slide open hone par bhi visible rahe */
body.nav-open .menu-toggle {
  color: #ffffff;
}

/* ================= NAVIGATION (DESKTOP) ================= */
nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}
nav ul li a {
  position: relative;
  color: #0f172a;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s ease;
}
nav ul li a:hover {
  color: #2563eb;
}
nav ul li a::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  background: #2563eb;
  transition: width 0.3s ease;
}
nav ul li a:hover::after {
  width: 100%;
}

nav ul.nav-list {
  margin: 0;
  display: flex;
  align-items: center;
  padding: 0;
  gap: 24px;
  list-style: none;
}

/* CONTACT + WHATSAPP INLINE (Desktop) */
.contact-item {
  display: flex;
  align-items: center;
  gap: 30px;
  /* Contact aur WhatsApp ke beech space */
}

.whatsapp-inline {
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 40px;
  background: #25D366;
  text-decoration: none;
  /* IMPORTANT */
  outline: none;
  transition: none;
  -webkit-tap-highlight-color: transparent;
  /* mobile blue remove */
}

/* hover, focus, active – sab same */
.whatsapp-inline:hover,
.whatsapp-inline:focus,
.whatsapp-inline:active {
  color: #fff;
  background: #25D366;
  outline: none;
  box-shadow: none;
}

/* MOBILE – WhatsApp Contact ke niche */
@media (max-width: 768px) {
  .contact-item {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
/* ================= MOBILE SLIDE MENU ================= */
@media (max-width: 768px) {
  /* Sirf mobile par toggle */
  .menu-toggle {
    display: block;
  }
  nav {
    position: fixed;
    z-index: 200;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    padding-top: 110px;
    background: #0f172a;
    transition: right 0.3s ease;
  }
  nav ul {
    flex-direction: column;
    padding-left: 30px;
    gap: 22px;
  }
  nav ul li a {
    color: #ffffff;
    font-weight: 500;
    font-size: 22px;
  }
  nav ul li a::after {
    background: #ffffff;
  }
  /* MENU OPEN STATE */
  body.nav-open nav {
    right: 0;
  }
}
/* ================= OVERLAY ================= */
body::before {
  position: fixed;
  z-index: 100;
  content: "";
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

body.nav-open::before {
  opacity: 1;
  visibility: visible;
}

/*--------Hero section*/
.hero {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  min-height: 90vh;
  background: url("/image/warehouse.png") center center/cover no-repeat;
}
.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 31, 70, 0.9), rgba(0, 0, 0, 0.75));
  backdrop-filter: blur(2px);
}
.hero .hero-container {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 900px;
  text-align: center;
  animation: fadeUp 0.8s ease-in-out;
}
.hero .hero-container .tagline {
  margin-bottom: 10px;
  color: #9ec8ff;
  font-size: 34px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero .hero-container .title {
  font-weight: 800;
  font-size: clamp(1.5rem, 6vw, 4rem);
  line-height: 1.2;
}
.hero .hero-container .title span {
  margin-top: 5px;
  display: block;
  color: #7bd3ff;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}
.hero .hero-container .desc {
  margin: 1rem auto 2rem;
  color: #dbe8ff;
  font-size: 1.05rem;
  max-width: 650px;
  line-height: 1.6;
}
.hero .hero-container .cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.hero .hero-container .cta .btn {
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 12px 26px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hero .hero-container .cta .btn.primary {
  color: #fff;
  background: #2fa7ff;
  box-shadow: 0 8px 20px rgba(47, 167, 255, 0.35);
}
.hero .hero-container .cta .btn.primary:hover {
  background: #1893ea;
  transform: translateY(-2px);
}
.hero .hero-container .cta .btn.outline {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}
.hero .hero-container .cta .btn.outline:hover {
  color: #003b71;
  background: #ffffff;
  transform: translateY(-2px);
}

/* Smooth Fade Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive Tweaks */
@media (max-width: 768px) {
  .hero .desc {
    font-size: 0.95rem;
  }
  .hero .cta .btn {
    width: 100%;
    text-align: center;
  }
}
/*-----about section ---------*/
.about {
  padding: 6rem 1.5rem;
  background: #ffffff;
}
.about .about-container {
  margin: auto;
  display: grid;
  align-items: center;
  max-width: 1150px;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}
.about .label {
  margin-bottom: 0.8rem;
  color: #2fa7ff;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.about h2 {
  margin-bottom: 1.2rem;
  color: #0c2c50;
  font-weight: 900;
  font-size: clamp(2.4rem, 4vw, 3.3rem);
  line-height: 1.2;
}
.about .text {
  margin-bottom: 1.2rem;
  color: #3a4558;
  font-size: 1.1rem;
  line-height: 1.95;
  max-width: 850px;
}
/* .about {
  /* ===== RIGHT IMAGE CIRCLE ===== *
} */
.about .about-right {
  display: flex;
  justify-content: center;
}
.about .about-right .circle {
  position: relative;
  border-radius: 50%;
  width: 310px;
  height: 310px;
  overflow: hidden;
}
.about .about-right .circle::before {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  inset: -6px;
  background: linear-gradient(135deg, #9cd8ff, #2fa7ff);
  filter: blur(1px);
}
.about .about-right .circle img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.5s ease;
}
.about .about-right .circle:hover img {
  transform: scale(1.05);
}
.about .about-right .circle {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
/* .about {
  /* ===== TABLET & MOBILE ===== 
} */
@media (max-width: 900px) {
  .about {
    padding: 4rem 1.2rem;
  }
  .about .about-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  /* .about {
    /* --- ORDER FIX --- *
  } */
  .about .about-left {
    order: 1;
    /* text first */
  }
  .about .about-right {
    order: 2;
    /* image second */
  }
  .about .text {
    font-size: 1rem;
    margin-inline: auto;
  }
}
/* .about {
  /* ===== SMALL MOBILE ===== *
} */
@media (max-width: 480px) {
  .about .about-right .circle {
    width: 220px;
    height: 220px;
  }
  .about h2 {
    font-size: 2rem;
  }
}

/*------vison----*/
.vision {
  padding: clamp(30px, 6vw, 80px) 0;
  background: #f8f9fb;
}
.vision .vision-container {
  margin: auto;
  display: flex;
  align-items: center;
  padding: 0 clamp(10px, 4vw, 20px);
  max-width: 1200px;
  gap: clamp(20px, 5vw, 60px);
}
@media (max-width: 992px) {
  .vision .vision-container {
    flex-direction: column;
  }
}
/* .vision {
  /* IMAGE 
} */
.vision .vision-left {
  width: 100%;
  display: flex;
  justify-content: center;
}
.vision .vision-left .vision-image {
  border-radius: clamp(8px, 3vw, 14px);
  width: 420px;
  height: 320px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.vision .vision-left .vision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* .vision {
  /* CONTENT *
} */
.vision .vision-right {
  width: 100%;
}
.vision .vision-right h2 {
  margin-bottom: clamp(12px, 3vw, 24px);
  color: #0b2c4d;
  font-size: clamp(20px, 6vw, 36px);
  line-height: 1.2;
  word-break: break-word;
}
.vision .vision-right h3 {
  margin: clamp(12px, 3vw, 22px) 0 clamp(6px, 2vw, 10px);
  color: #123c63;
  font-size: clamp(16px, 5vw, 22px);
}
.vision .vision-right .text {
  margin-bottom: clamp(10px, 3vw, 16px);
  color: #555;
  font-size: clamp(13px, 4vw, 16px);
  line-height: 1.7;
}
.vision .vision-right .vision-points {
  padding-left: 0;
  list-style: none;
}
.vision .vision-right .vision-points li {
  position: relative;
  margin-bottom: clamp(8px, 2.5vw, 12px);
  padding-left: 22px;
  font-size: clamp(12px, 4vw, 15px);
  line-height: 1.6;
  word-break: break-word;
}
.vision .vision-right .vision-points li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #1a73e8;
  font-size: clamp(10px, 3vw, 14px);
  content: "✔";
}

/* EXTRA SAFETY FOR VERY SMALL SCREENS */
@media (max-width: 280px) {
  .vision {
    padding: 20px 0;
  }
  .vision .vision-right h2 {
    font-size: 18px;
  }
  .vision .vision-right h3 {
    font-size: 15px;
  }
}
.services {
  padding: clamp(3.5rem, 6vw, 6rem) 1.5rem;
  color: #314957;
  background: rgba(238, 237, 237, 0.4862745098);
}
.services .services-container {
  margin: auto;
  display: grid;
  align-items: start;
  max-width: 1180px;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(2rem, 4vw, 4rem);
}
/* .services {
  /* -------- LEFT -------- 
} */
.services .small-title {
  margin-bottom: 0.5rem;
  color: #2fa7ff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.services .big-title {
  margin-bottom: 1.8rem;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
}
/* .services {
  /* FEATURE IMAGE — premium frame 
} */
.services .service-main-image {
  position: relative;
  border-radius: 22px;
  padding: 6px;
  max-width: 480px;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, #e7edf1, #b3dcf5);
}
.services .service-main-image img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
/* .services .service-main-image {
  /* floating tag */
  /* soft oval ground shadow *
} */
.services .service-main-image::after {
  position: absolute;
  bottom: -22px;
  left: 50%;
  border-radius: 50%;
  width: 80%;
  height: 24px;
  content: "";
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.24);
  filter: blur(14px);
  opacity: 0.45;
}
.services .service-main-image {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.services .service-main-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.18);
}
/* .services {
  /* -------- RIGHT MODERN CARDS -------- 
} */
.services .service-card {
  position: relative;
  margin-bottom: 1.8rem;
  border: 1px solid #d3e2ec;
  border-radius: 22px;
  display: grid;
  align-items: center;
  padding: 2rem 1.8rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  grid-template-columns: 1fr 160px;
  gap: 1.6rem;
  transition: all 0.28s ease;
  /* angled color strip */
}
.services .service-card::before {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 22px 0 0 22px;
  width: 6px;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, #2fa7ff, #6fcfff);
}
.services .service-card:hover {
  border-color: #c3d8e6;
  transform: translateY(-6px);
  box-shadow: 0 26px 46px rgba(0, 0, 0, 0.14);
}
.services .service-card h3 {
  margin-bottom: 0.55rem;
  color: #0c2f42;
  font-weight: 900;
  font-size: 1.32rem;
}
.services .service-card ul {
  padding-left: 1.1rem;
}
.services .service-card ul li {
  margin-bottom: 0.35rem;
  color: #435568;
  font-size: 0.98rem;
}
/* .services .service-card {
  /* IMAGE RIGHT *
} */
.services .service-card .card-img {
  border: 1px solid #d7e5ef;
  border-radius: 14px;
  width: 100%;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(160deg, #eef6fb, #dae9f2);
  overflow: hidden;
}
.services .service-card .card-img img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  transition: transform 0.35s ease;
}
.services .service-card:hover .card-img img {
  transform: scale(1.07);
}
/* .services {
  /* -------- RESPONSIVE -------- *
} */
@media (max-width: 1000px) {
  .services .services-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .services .service-main-image {
    margin-inline: auto;
  }
}
@media (max-width: 520px) {
  .services .service-card {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .services .service-card .card-img {
    margin-top: 0.8rem;
    height: 150px;
  }
  .services .big-title {
    font-size: 2.35rem;
  }
}

.why-notebook {
  padding: clamp(3rem, 6vw, 6rem) 1.5rem;
  color: #1b2733;
  font-family: "Inter", system-ui, Arial;
  background: #ffffff;
}
.why-notebook .note-container {
  margin: auto;
  max-width: 1050px;
}
.why-notebook .note-label {
  margin-bottom: 6px;
  color: #2a70c9;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.why-notebook .note-title {
  margin-bottom: 28px;
  padding-bottom: 10px;
  color: #0a1f33;
  font-weight: 900;
  font-size: clamp(28px, 4.2vw, 44px);
  border-bottom: 2px solid rgba(0, 0, 0, 0.15);
}
.why-notebook .note-block {
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 4px solid #2a70c9;
  transition: 0.25s ease;
  opacity: 0;
  animation: fadein 0.6s ease-out forwards;
}
.why-notebook .note-block:hover {
  border-left-color: #0a1f33;
  transform: translateX(3px);
}
.why-notebook .note-block h3 {
  margin-bottom: 6px;
  color: #0a1f33;
  font-weight: 800;
  font-size: clamp(18px, 2.6vw, 22px);
}
.why-notebook .note-block p {
  color: #2a3542;
  font-size: clamp(15px, 2.6vw, 17px);
  line-height: 1.9;
  word-spacing: 1px;
  letter-spacing: 0.2px;
}
/* .why-notebook {
  /* Paragraph Highlight Effect 
} */
.why-notebook .note-block:hover p {
  color: #0f2233;
}
/* .why-notebook {
  /* Website Link 
} */
.why-notebook .note-footer {
  margin-top: 24px;
}
.why-notebook .note-footer a {
  color: #2a70c9;
  font-weight: 600;
  text-decoration: none;
}
.why-notebook .note-footer a:hover {
  color: #0a1f33;
}

/* Smooth Fade Animation */
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .why-notebook .note-container {
    max-width: 95%;
  }
  .why-notebook .note-block {
    margin-bottom: 20px;
    padding-left: 12px;
  }
  .why-notebook .note-block:hover {
    transform: none;
  }
  .why-notebook .note-title {
    margin-bottom: 20px;
  }
}
/* 📱 SMALL MOBILE */
@media (max-width: 480px) {
  .why-notebook .note-title {
    font-size: 28px;
    text-align: left;
  }
  .why-notebook .note-block h3 {
    font-size: 18px;
  }
  .why-notebook .note-block p {
    font-size: 15px;
    line-height: 1.85;
  }
}
/* ------- Industries we serve section -----------*/
.industries-same {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Inter", system-ui, Arial;
  /* cover full page */
  background: #ffffff;
}

/* ------------WHITE PANEL + 3D SHADOW------------*/
.ind-wrapper {
  position: relative;
  width: 100%;
  padding: 100px 0;
  background: #ffffff;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.15), 0 10px 28px rgba(0, 0, 0, 0.08), inset 0 0 35px rgba(0, 0, 0, 0.04);
}

/* ---------CENTER GRID------------ */
.ind-inner {
  margin: auto;
  width: 100%;
  display: grid;
  padding: 0 100px;
  max-width: 1200px;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* -----------CENTER DIAMOND--------------- */
.ind-wrapper::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  width: 300px;
  height: 100%;
  content: "";
  transform: translateX(-50%);
  background: #e9f0f6;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

/*-------------CONTENT LAYERS----------------- */
.ind-left,
.ind-right {
  position: relative;
  z-index: 10;
}

/* -------LEFT SIDE — CLEAN BULLETS--------- */
.ind-left {
  text-align: left;
}
.ind-left .list {
  margin: 0;
  padding: 0;
  list-style: disc inside;
}
.ind-left .list li {
  margin-bottom: 6px;
  color: #1f2937;
  font-size: 20px;
}

/* ---------RIGHT SIDE — FORMATTED BULLETS---------------*/
.ind-right {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 520px;
}

/* remove browser bullets */
.industries-list {
  margin: 0;
  padding: 0;
}
.industries-list li {
  position: relative;
  margin-bottom: 10px;
  padding-right: 18px;
  color: #1f2937;
  font-size: 20px;
}

/* -----------------HEADINGS------------------ */
.big-heading {
  color: #0a3a78;
  font-weight: 900;
  font-size: 60px;
  line-height: 1.05;
}

.sub-heading {
  margin-top: 26px;
  color: #0a3a78;
  font-weight: 900;
  font-size: 22px;
}

.vision-text {
  margin-top: 18px;
  color: #111827;
  font-size: 20px;
  line-height: 1.9;
}

/*-------------------IMAGE---------- */
.machine {
  margin-top: 20px;
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.25));
}

/* ------------RESPONSIVE---------------------- */
@media (max-width: 900px) {
  .ind-inner {
    padding: 0 20px;
    grid-template-columns: 1fr;
  }
  .ind-wrapper::before {
    display: none;
  }
  .ind-right {
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
  }
  .industries-list li {
    padding-right: 0;
    padding-left: 18px;
  }
  .industries-list li::before {
    right: auto;
    left: 0;
  }
  .big-heading {
    font-size: 40px;
  }
}
/*---------------gallery------------*/
.gallery {
  padding: clamp(3.5rem, 6vw, 6rem) 1.5rem;
  background: #ffffff;
}
.gallery .gallery-title {
  margin-bottom: 2.8rem;
  color: #0b2945;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  text-align: center;
  letter-spacing: 0.5px;
}
.gallery .gallery-grid {
  margin: auto;
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
@media (max-width: 1100px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 780px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.gallery .gallery-item {
  position: relative;
  border: 2px solid #d3e2ef;
  border-radius: 18px;
  aspect-ratio: 1/1;
  /* always perfect square */
  overflow: hidden;
  background: linear-gradient(135deg, #948989, #eef3f7);
  /* 3D depth feel */
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.gallery .gallery-item img {
  border-radius: 14px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
/* .gallery .gallery-item {
  /*  Elegant hover — real 3D effect *
} */
.gallery .gallery-item:hover {
  border-color: #2fa7ff;
  transform: translateY(-6px) rotateX(6deg) rotateY(-6deg);
}
.gallery .gallery-item:hover img {
  transform: scale(1.07);
}

.pro-contact {
  display: flex;
  justify-content: center;
  padding: clamp(3.5rem, 6vw, 6rem) 1.5rem;
  background: linear-gradient(145deg, #f8f9fa, #e4eff7);
}

.pro-contact-box {
  border: 1.5px solid #d2e0eb;
  border-radius: 22px;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 3rem);
  max-width: 820px;
  background: #ffffff;
  gap: 1.5rem;
}
.pro-contact-box h2 {
  margin-bottom: 0.4rem;
  color: #0b2945;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.6rem);
  text-align: center;
}
.pro-contact-box .sub {
  margin-bottom: 0.3rem;
  color: #4a5a6b;
  text-align: center;
}
.pro-contact-box .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
@media (max-width: 700px) {
  .pro-contact-box .row {
    grid-template-columns: 1fr;
  }
}
.pro-contact-box .field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.pro-contact-box .field label {
  color: #1c314c;
  font-weight: 700;
  font-size: 0.9rem;
}
.pro-contact-box .field input,
.pro-contact-box .field textarea {
  border: 2px solid #cfe0ec;
  border-radius: 14px;
  width: 100%;
  padding: 1rem;
  color: #0c2f42;
  font-size: 0.98rem;
  background: #f7fbff;
  outline: none;
  transition: border 0.2s ease, background 0.2s ease;
}
.pro-contact-box .field input:focus,
.pro-contact-box .field textarea:focus {
  border-color: #2fa7ff;
  background: #ffffff;
}
.pro-contact-box .field textarea {
  resize: none;
}
.pro-contact-box button {
  margin-top: 0.5rem;
  border: none;
  border-radius: 16px;
  padding: 1.1rem;
  color: #ffffff;
  font-weight: 900;
  font-size: 1.05rem;
  background: #2fa7ff;
  cursor: pointer;
  transition: 0.25s ease;
}
.pro-contact-box button:hover {
  background: #118dde;
}

/* ================= MAP SECTION ================= */
.map-section {
  width: 100%;
  padding: 0 1.5rem 4rem;
  background: #f8f9fa;
}

.map-section iframe {
  border: 0;
  border-radius: 20px;
  width: 100%;
  height: 420px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* ================= Footer SCSS ================= */
.footer {
  width: 100%;
  padding: 40px 16px 16px;
  color: #e8eff6;
  background: linear-gradient(150deg, #0c2f42, #0f324f);
  /* -------- Desktop Grid -------- */
}
.footer .footer-container {
  margin: auto;
  display: grid;
  max-width: 1180px;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
}
/* .footer {
  /* -------- Headings -------- 
} */
.footer h3 {
  margin-bottom: 12px;
  color: #fff;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.5px;
}
.footer h4 {
  margin-bottom: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
}
/* .footer {
  /* -------- Text paragraph -------- 
} */
.footer p {
  color: #dbe6f2;
  font-size: 15px;
  line-height: 1.6;
}
/* .footer {
  /* -------- Lists -------- 
} */
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer ul li {
  margin-bottom: 8px;
  color: #cfdceb;
  font-size: 15px;
}
.footer ul li a {
  color: #d6e3f0;
  text-decoration: none;
  transition: 0.2s;
}
.footer ul li a:hover {
  color: #2fa7ff;
}
/* .footer {
  /* -------- Footer Column -------- 
} */
.footer .footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* -------- Footer Social Icons (JUST BELOW paragraph) -------- */
}
.footer .footer-col .footer-social {
  margin-top: 14px;
  display: flex;
  gap: 12px;
}
.footer .footer-col .footer-social a {
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #e8eff6;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.footer .footer-col .footer-social a:hover {
  color: #0c2f42;
  transform: translateY(-3px);
  background: #2fa7ff;
}
.footer .footer-col .footer-social a i {
  line-height: 1;
}
/* .footer {
  /* -------- Contact List -------- 
} */
.footer .contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer .contact-list li {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  color: #e8eff6;
  font-size: 15px;
  gap: 14px;
}
.footer .contact-list i {
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  color: #e8f2f3;
  font-size: 16px;
  background: #1973af;
}
/* .footer {
  /* -------- Footer Bottom -------- 
} */
.footer .footer-bottom {
  margin-top: 24px;
  padding-top: 12px;
  color: #b9c8d8;
  font-size: 14px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer .tripledot {
  color: #bedcfc;
  font-weight: 600;
  text-decoration: none;
}
/* .footer {
  /* -------- Tablet -------- 
} */
@media (max-width: 950px) {
  .footer .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}
/* .footer {
  /* -------- Mobile -------- 
} */
@media (max-width: 650px) {
  .footer .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer .footer-col {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .footer .footer-col:last-child {
    border-bottom: none;
  }
  .footer .footer-col .footer-social {
    justify-content: center;
  }
  .footer h3,
  .footer h4 {
    margin-bottom: 6px;
  }
}

/*# sourceMappingURL=main.css.map */
