* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
  max-width: 100%;
  scroll-behavior:smooth;
}

body {
  overflow-x: hidden;
  max-width: 100%;
  margin: 0;
  font-family: Arial;
  background: linear-gradient(135deg, #021024, #0b3d91);
  color: white;
}

/* NAV */
/* .nav {
      max-width: 100%;
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 15px;
  backdrop-filter: blur(10px);
} */

/* .nav a {
  margin: 0 10px;
  color: white;
} */

/* HERO */
/* .hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
} */

/* GLASS */
.glass {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 10px;
}

/* SERVICES */
.grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  padding: 40px;
}

.card {
  padding: 20px;
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

/* FORM */
form {
  width: 300px;
  margin: auto;
}

input, textarea {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
/* TOP BAR */
.topbar {
  display: flex;
  justify-content:space-between;
  padding: 8px 10px;
  background: #0b3d91;
  color: white;
  font-size: 13px;
  width: 100%;
  max-width: 100%;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 20px;
  background: #0b3d91;
  color: white;
  box-sizing: border-box;
}

.bottombar {
  display: flex;
  justify-content:space-between;
  padding: 8px 10px;
  background: #0b1f3a;
  color: white;
  font-size: 13px;
  width: 100%;
  max-width: 100%;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 20px;
  color: white;
  box-sizing: border-box;
}

/* NAVBAR */
/* .nav {
    max-width: 100%;
    width:100%;
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  background: white;
  align-items: center;
} */

/* .nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
} */

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  background: url("HeaderPic.jpeg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,50,0.7), rgba(0,200,200,0.5));
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn {
  background: white;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}

/* WAVE */
.wave {
  position: absolute;
  bottom: 0;
  width: 100%;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
  }

  .topbar {
    flex-direction: column;
    text-align: center;
  }
}

/* ABOUT INTRO */
.about-intro {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(to right, #f5f7fa, #e0f0f3);
}

/* CONTAINER */
.about-container {
  max-width: 800px;
  margin: auto;
}

/* BADGE */
.badge {
  display: inline-block;
  background: #dbe9ee;
  color: #0b3d91;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 20px;
}

/* HEADING */
.about-intro h2 {
  font-size: 42px;
  margin: 0;
  color: #0b1f3a;
}

/* HIGHLIGHT */
.about-intro span {
  color: #2f8f9d;
}

/* UNDERLINE */
.underline {
  width: 80px;
  height: 4px;
  background: #2f8f9d;
  margin: 20px auto 0;
  border-radius: 2px;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-intro h2 {
    font-size: 28px;
  }
}

/* ABOUT DETAILS SECTION */
.about-details {
  padding: 40px 20px 80px;
  background: #f4f7fb;
}

/* MAIN CARD */
.about-card {
  max-width: 1000px;
  margin: auto;
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* TOP CONTENT */
.about-top {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* LOGO */
.about-logo {
  width: 70px;
  border-radius: 10px;
}

/* HEADING */
.about-top h3 {
  margin: 0;
  font-size: 24px;
  color: #0b1f3a;
}

.about-top span {
  color: #2f8f9d;
}

/* TEXT */
.about-top p {
  margin-top: 10px;
  color: #555;
  line-height: 1.6;
}

/* MISSION BOX */
.mission-box {
  margin-top: 25px;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(to right, #dbe9ee, #cde3e8);
}

.mission-box h4 {
  margin: 0 0 10px;
  color: #0b1f3a;
}

.mission-box p {
  margin: 0;
  color: #444;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* STATS SECTION */
.stats-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #eaf2f5, #dbe9ee);
}

/* GRID */
.stats-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.stat-card {
  background: white;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

/* HOVER EFFECT */
.stat-card:hover {
  transform: translateY(-8px);
}

/* ICON */
.stat-icon {
  width: 60px;
  height: 60px;
  margin: auto;
  background: linear-gradient(135deg, #1e8a9e, #0b3d91);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-size: 24px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  
}

/* hover animation */
.stat-card:hover .stat-icon {
     transform: translateY(-6px) scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(30, 138, 158, 0.4);
}

/* NUMBER */
.stat-card h2 {
  margin: 0;
  font-size: 32px;
  color: #0b1f3a;
}

/* TEXT */
.stat-card p {
  margin-top: 8px;
  color: #666;
}

/* MOBILE */
@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
}

/* CAPABILITIES SECTION */
.capabilities {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(to right, #f5f7fa, #e0f0f3);
}

/* CONTAINER */
.cap-container {
  max-width: 800px;
  margin: auto;
}

/* BADGE */
.cap-badge {
  display: inline-block;
  background: #dbe9ee;
  color: #0b3d91;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 20px;
}

/* HEADING */
.capabilities h2 {
  font-size: 42px;
  margin: 0;
  color: #0b1f3a;
}

/* HIGHLIGHT TEXT */
.capabilities span {
  color: #2f8f9d;
}

/* UNDERLINE */
.cap-line {
  width: 80px;
  height: 4px;
  background: #2f8f9d;
  margin: 20px auto;
  border-radius: 2px;
}

/* PARAGRAPH */
.capabilities p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
  .capabilities h2 {
    font-size: 28px;
  }
}

/* CARDS SECTION */
.cap-cards {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #eaf2f5, #dbe9ee);
}

/* GRID */
.cards-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD BASE */
.card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.logo-card {
  background: rgba(241, 240, 240, 0.945);
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* ICON */
.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e8a9e, #0b3d91);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-size: 24px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}


.card-icon:hover {
  transform: scale(1.05);
}

/* TEXT */
.card h3 {
  margin: 10px 0;
  color: #0b1f3a;
}

.card p {
  color: #666;
}

/* 🔥 HOVER EFFECT (IMPORTANT) */
.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* 🔥 BORDER ANIMATION LIKE ORIGINAL */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: 0.3s;
}

.card:hover::before {
  border: 2px solid #2f8f9d;
}

/* HIGHLIGHT CARD */
.highlight {
  border: 2px solid #2f8f9d;
}

/* MOBILE */
@media (max-width: 768px) {
  .cards-container {
    grid-template-columns: 1fr;
  }
}

.cards-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CTA SECTION */
.cta-section {
  padding: 60px 20px;
  background: #f4f7fb;
}

/* CONTAINER */
.cta-container {
  max-width: 1100px;
  margin: auto;
  background: linear-gradient(135deg, #0b3d91, #1e8a9e);
  color: white;
  padding: 40px;
  border-radius: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* TEXT */
.cta-text h2 {
  margin: 0;
  font-size: 28px;
}

.cta-text p {
  margin-top: 10px;
  color: #dbe9ee;
}

/* BUTTON */
.cta-btn {
  background: white;
  color: #0b1f3a;
  padding: 14px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.cta-btn:hover {
  transform: scale(1.05);
}

/* WAVE EFFECT (BOTTOM CURVE) */
.cta-container::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

/* FOOTER */
.footer {
  background: #0b1f3a;
  color: white;
  padding-top: 20px;
}

/* WAVE */
.footer-wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  display: block;
  width: 100%;
}

/* CONTAINER */
.footer-container {
  max-width: 1100px;
  margin: auto;
  padding: 20px 10px;
  display:grid;
  grid-template-columns:repeat(4, 1);    /*repeat(4, 2fr); */
  gap: 10px;
}

/* HEADINGS */
.footer h3, .footer h4 {
  margin-bottom: 10px;
}

/* TEXT */
.footer p {
  color: #cbd5e1;
  font-size: 14px;
}

/* LIST */
.footer ul {
  list-style: none;
  padding: 0;
}

.footer li {
  margin-bottom: 8px;
  color: #cbd5e1;
  cursor: pointer;
}

/* SOCIAL ICONS */
.socials {
  margin-top: 15px;
}

.socials span {
  margin-right: 10px;
  background: rgba(255,255,255,0.1);
  padding: 8px;
  border-radius: 8px;
  display: inline-block;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* TOPBAR */
/*.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 500;
  transition: transform 0.3s ease;
}*/


/* HIDE TOPBAR */
.topbar.hide {
  transform: translateY(-100%);
}

/* NAVBAR (always visible, below topbar) */
.nav {
  max-width: 100%;
  background: transparent;
  position: fixed;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  backdrop-filter: blur(10px);
  padding: 15px 30px;
  align-items: center;
  transition: color 0.3s ease;
}

/* TEXT COLOR ON HERO */
.nav a {
 margin: 0 10px;
  text-decoration: none;

  /* ✅ WHITE AT TOP */
  color: rgb(255, 255, 255);

  transition: color 0.3s ease;
}

/* SCROLL STATE */
/* nav.scrolled { */
  /* background: rgba(255,255,255,0.92); */
  /* backdrop-filter: blur(12px); */

  /* box-shadow: 0 5px 20px rgba(0,0,0,0.08); */
/* } */

.nav.scrolled a {
   /* color: #4f11e0; */
   color: #2f8f9d;
}

/* HERO SECTION */
.about-hero {
  position: relative;
  height: 100vh;
  background: url("HeaderPic.jpeg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* DARK GRADIENT OVERLAY */
.about-overlay {
 position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,50,0.7), rgba(0,200,200,0.5));

  /*position: absolute;
  width: 100%;
  height: 100%;
   background: linear-gradient(120deg,
    rgba(11, 31, 58, 0.95),
    rgba(20, 100, 120, 0.85),
    rgba(47, 143, 157, 0.75) 
  );*/
}

/* CONTENT */
.about-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
}

/* GLASS BADGE */
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;

  background: rgba(48, 38, 38, 0.12);
  backdrop-filter: blur(12px);

  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

/* HEADING */
.about-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin: 0;
}

/* GRADIENT TEXT */
.about-content span {
  background: linear-gradient(90deg, #7fd0d8, #2f8f9d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* LINE */
.about-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #7fd0d8, #2f8f9d);
  margin: 20px auto;
  border-radius: 3px;
}

/* SUBTEXT */
.about-content p {
  font-size: 18px;
  color: #dbe9ee;
  margin-top: 10px;
}

/* WAVES */
.about-wave {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.about-wave svg {
  display: block;
  width: 100%;
}

.wave-2 {
  margin-top: -40px;
  opacity: 0.6;
}

/* NAVBAR OVER HERO (important) */
/* .nav {
  max-width: 100%;
  background: transparent;
  position: fixed;
  width: 100%;
  z-index: 999;
} */

/* TEXT COLOR ON HERO */
/* .nav a {
  margin: 0 10px;
  text-decoration: none;

  /* ✅ WHITE AT TOP 
  color: white;

  transition: color 0.3s ease;
} */

/* SCROLL STATE
.nav.scrolled {
   backdrop-filter: blur(12px);

  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  /* background: white; 
}

.nav.scrolled a {
  color: #0b1f3a;
} */

/* MOBILE */
@media (max-width: 768px) {
  .about-content h1 {
    font-size: 34px;
  }
}
/* SECTION */
.about-content-section {
  padding: 80px 20px;
  background: #f4f7fb;
}

/* CONTAINER */
.about-container {
  max-width: 800px;
  margin: auto;
}

/* TAG */
.about-tag {
  display: inline-block;
  background: #dbe9ee;
  color: #0b3d91;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 15px;
}

/* HEADING */
.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #0b1f3a;
}

.about-text span {
  color: #2f8f9d;
}

/* PARAGRAPH */
.about-text p {
  color: #555;
  line-height: 1.6;
}

/* HIGHLIGHT BOX */
.highlight {
  border-left: 4px solid #2f8f9d;
  padding-left: 15px;
  margin-bottom: 15px;
}

/* FEATURES */
.about-features {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

/* FEATURE CARD */
.feature-box {
  background: white;
  padding: 15px;
  border-radius: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  flex: 1;
}

/* ICON */
.feature-icon {
  background: linear-gradient(135deg, #1e8a9e, #0b3d91);
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

/* IMAGE */
.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* MOBILE */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-text h2 {
    font-size: 26px;
  }

  .about-features {
    flex-direction: column;
  }
}
/* CONTAINER */
.service-item {
  display: flex;
  align-items: center;
  gap: 15px;

  background: #f1f3f5;
  padding: 15px 20px;
  border-radius: 15px;

  transition: all 0.3s ease;
  cursor: pointer;
}

/* ICON */
.check-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2f8f9d, #0b3d91);
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;
  font-size: 18px;

  transition: all 0.3s ease;
}

/* TEXT */
.service-item span {
  font-size: 16px;
  color: #333;
  transition: 0.3s;
}

/* 🔥 HOVER EFFECT */
.service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  background: #ffffff;
}

/* ICON ANIMATION */
.service-item:hover .check-icon {
  transform: scale(1.15) rotate(5deg);
}

/* TEXT COLOR CHANGE */
.service-item:hover span {
  color: #0b3d91;
}

/* GRID LAYOUT */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

/* CARD */
.feature-card {
  display: flex;
  gap: 15px;
  align-items: center;

  background: #f1f3f5;
  padding: 15px 18px;
  border-radius: 15px;

  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

/* ICON */
.feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2f8f9d, #0b3d91);
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;
  font-size: 16px;
  flex-shrink: 0;

  transition: all 0.3s ease;
}

/* TEXT */
.feature-card h4 {
  margin: 0;
  font-size: 16px;
  color: #0b1f3a;
}

.feature-card p {
  margin: 2px 0 0;
  font-size: 13px;
  color: #666;
}

/* HOVER EFFECT */
.feature-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* ICON ANIMATION */
.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

/* MOBILE */
@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION */
.mission-section {
  padding: 80px 20px;
  background: #f4f7fb;
  text-align: center;
}

/* HEADER */
.mission-header .tag {
  display: inline-block;
  background: #dbe9ee;
  color: #0b3d91;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 15px;
}

.mission-header h2 {
  font-size: 36px;
  color: #0b1f3a;
}

.mission-header span {
  color: #2f8f9d;
}

.underline {
  width: 80px;
  height: 4px;
  background: #2f8f9d;
  margin: 15px auto 40px;
  border-radius: 2px;
}

/* GRID */
.mission-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.mission-card {
  position: relative;
  background: linear-gradient(180deg, #eaf2f5, #dbe9ee);
  padding: 30px;
  border-radius: 20px;
  text-align: left;

  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* DECORATIVE SHAPE */
.mission-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
}

/* ICON */
.icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e8a9e, #0b3d91);
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 15px;
  font-size: 24px;
  margin-bottom: 15px;

  transition: 0.3s;
}

/* TEXT */
.mission-card h3 {
  margin: 10px 0;
  color: #0b1f3a;
}

.mission-card p {
  color: #555;
  line-height: 1.6;
}

/* BOTTOM LINK */
.bottom-link {
  margin-top: 15px;
  color: #2f8f9d;
  font-weight: 500;
}

/* HOVER EFFECT */
.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ICON ANIMATION */
.mission-card:hover .icon {
  transform: scale(1.1) rotate(5deg);
}

/* MOBILE */
@media (max-width: 768px) {
  .mission-container {
    grid-template-columns: 1fr;
  }

  .mission-header h2 {
    font-size: 26px;
  }
}

/* HERO */
.contact-hero {
  position: relative;
  height: 75vh;
  background: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-hero .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(11,31,58,0.9), rgba(47,143,157,0.75));
}

.hero-content {
  position: relative;
  color: white;
  z-index: 2;
  max-width: 800px;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  margin-bottom: 15px;
}

.hero-content h1 {
  font-size: 42px;
}

.hero-content span {
  color: #7fd0d8;
}

.line {
  width: 80px;
  height: 4px;
  background: #7fd0d8;
  margin: 15px auto;
}

/* WAVE */
.wave {
  position: absolute;
  bottom: 0;
  width: 100%;
}

/* CONTACT SECTION */
.contact-section {
  padding: 80px 20px;
  background: #f4f7fb;
}

.card-section {
  padding: 80px 20px;
   background: linear-gradient(to right, #f5f7fa, #e0f0f3);
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* INFO */
.contact-info h2 {
  color: #0b1f3a;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.info-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #1e8a9e, #0b3d91);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

/* FORM */
.contact-form {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.form-row {
  display: flex;
  gap: 10px;
}

button {
  margin-top: 15px;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #1e8a9e, #0b3d91);
  color: white;
  cursor: pointer;
}

/* MAP */
.map-section iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }
}

/* CONTAINER */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

/* CARD BASE */
.contact-card {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  background: #f4f7fb;

  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

/* HOVER */
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* PHONE CARD (LIGHT) */
.phone-card {
    text-align: center;
  background: linear-gradient(180deg, #f5f6f8, #e3eef3);
}

/* EMAIL CARD (DARK GLASS STYLE) */
.email-card {
    text-align: center;
  background: linear-gradient(180deg, #f5f6f8, #e3eef3);
}

/* ICON */
.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1e8a9e, #0b3d91);
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 20px;
  font-size: 26px;

  margin-bottom: 20px;

  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: 0.3s;
}

/* ICON HOVER */
.contact-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

/* TITLE */
.contact-card h3 {
  margin: 10px 0;
  font-size: 20px;
  color:midnightblue;
}

/* VALUE BOX */
.card-value {
  background: rgba(228, 210, 210, 0.05);
  padding: 12px;
  border-radius: 10px;
  margin: 15px 0;
  text-align: center;
  color: #2e7ce9;
}

.phone-card .card-value {
  background: rgba(111, 153, 170, 0.2);
}

/* EMAIL CARD VALUE */
.email-card .card-value {
    background: rgba(111, 153, 170, 0.2);
}

/* NOTE */
.card-note {
  font-size: 13px;
  opacity: 0.8;
  color: #15488f;
}

/* ACTIONS */
.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

/* BUTTON */
.contact-btn {
  flex: 1;
  padding: 12px;
  border-radius: 25px;
  border: none;

  background: linear-gradient(135deg, #1e8a9e, #0b3d91);
  color: white;

  cursor: pointer;
  transition: 0.3s;
}

/* BUTTON HOVER */
.contact-btn:hover {
  transform: scale(1.05);
}

/* COPY BUTTON */
.copy-btn {
  width: 45px;
  height: 45px;
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,0.05);
  cursor: pointer;
}

.phone-card .copy-btn {
  background: rgba(255,255,255,0.2);
}
/* EMAIL COPY BUTTON */
.email-card .copy-btn {
  background: rgba(255,255,255,0.2);
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

.company-name {
  font-size: 65px;
  font-family :'Playfair Display Extra Bold';
  /* color:white; */
  text-align: left;
  justify-content: space-between;
  transition: color 0.3s ease;
}

.company-name.scrolled{
  /* color: #4f11e0; */
  color: #2f8f9d;
}
.company-slogan {
  font-size: 25px;
  font-family:'Playfair Display Extra Bold';
}


/* SERVICE SECTION */
.service-hero {
  position: relative;
  height: 100vh;
  background: url("HeaderPic.jpeg") center/cover;
  /* background: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e") center/cover no-repeat; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


/* DARK GRADIENT OVERLAY */
.service-overlay {
 position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,50,0.7), rgba(0,200,200,0.5));

  /*position: absolute;
  width: 100%;
  height: 100%;
   background: linear-gradient(120deg,
    rgba(11, 31, 58, 0.95),
    rgba(20, 100, 120, 0.85),
    rgba(47, 143, 157, 0.75) 
  );*/
}


/* CONTENT */
.service-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
}


/* HEADING */
.service-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin: 0;
}

/* GRADIENT TEXT */
.service-content span {
  background: linear-gradient(90deg, #7fd0d8, #2f8f9d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTEXT */
.service-content p {
  font-size: 18px;
  color: #dbe9ee;
  margin-top: 10px;
}


/* MOBILE */
@media (max-width: 768px) {
  .service-content h1 {
    font-size: 34px;
  }
}
/* SECTION */
.service-content-section {
  padding: 80px 20px;
  background: #f4f7fb;
}

.catalog-link{
    display:inline-block;
    padding:14px 30px;
    background:linear-gradient(135deg,#138aa0,#0b1f3a);
    color:white;
    text-decoration:none;
    border-radius:40px;
    font-weight:bold;
}

.li {
  color:white;
}

.social-icon-facebook{

  width:25px;
   height:25px;

   background:#1877f2;

   color:white;

   display:flex;
   align-items:flex-end;
   justify-content:center;

   border-radius:15%;

   text-decoration:none;

   transition:0.3s;
}

.social-icon-instagram{

    width:25px;
   height:25px;

   background:#1877f2;

   color:white;

   display:flex;
   align-items:center;
   justify-content:center;

   border-radius:15%;

   text-decoration:none;

   transition:0.3s;
}

.social-icon-linkedin{

  width:25px;
   height:25px;

   background:#1877f2;

   color:white;

   display:flex;
   align-items:center;
   justify-content:center;

   border-radius:15%;

   text-decoration:none;

   transition:0.3s;
}

.social-icon-facebook:hover{

   transform:translateY(-5px);

   box-shadow:
   0 10px 20px rgba(243, 1, 1, 0.2);
}

.footer{

    background:#041d45;

    color:white;

    padding:70px 8%;

    display:grid;

    grid-template-columns:
    repeat(5,1fr);

    gap:50px;
}

/* COLUMN */

.footer-col h2,
.footer-col h3{

    margin-bottom:20px;
}

/* TEXT */

.footer-text{

    line-height:1.8;

    color:#d9e4f0;
}

/* LINKS */

.footer-col ul{

    list-style:none;
}

.footer-col ul li{

    margin-bottom:14px;
}

.footer-col ul li a{

    color:#d9e4f0;

    text-decoration:none;

    transition:0.3s;
}

.footer-col ul li a:hover{

    color:#3bb4c1;

    padding-left:5px;
}

/* SOCIAL */

.social-icons{

    display:flex;

    gap:15px;
}

.social-icons a{

    width:45px;
    height:45px;

    background:#0f5b7a;

    color:white;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:12px;

    text-decoration:none;

    transition:0.3s;
}

.social-icons a:hover{

    transform:translateY(-5px);

    background:#138aa0;
}

/* CONTACT */

.footer-col p{

    line-height:1.8;

    color:#d9e4f0;
}

/* MOBILE */

@media(max-width:1100px){

    .footer{

        grid-template-columns:
        repeat(2,1fr);
    }
}

@media(max-width:768px){

    .footer{

        grid-template-columns:1fr;
    }
}

.hero{
    position: relative;
}

/* BOTTOM RIGHT TEXT */

.hero-bottom-text{

    position: absolute;

    right: 90px;
    
    bottom: 60px;

    font-family: 'Playfair Display Extra Bold';
    
    font-size: 38px;

    font-weight: 700;

    line-height: 1.2;

    text-align: center;

    color: white;

    max-width: 800px;

    z-index: 10;

    text-shadow:
    0 5px 20px rgba(0,0,0,0.35);
}

@media(max-width:768px){

   .hero-bottom-text{

      right: 30px;
      left: 30px;

      bottom: 40px;

      text-align: center;

      font-size: 24px;
   }
}