* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:'Poppins', sans-serif;
}

body {
  background: #0b2a3a;
  color: #fff;
}

.features .small {
  padding-top: 10px;
  font-size: 13px;
}
/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}


/* ================= HEADER ================= */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background: #fff;
  color: #000;
  position: relative;
}

.logo img{
  width: 260px;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Buttons */
.btn {
  padding: 10px 15px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
}

.btn.white {
 background: #ffffff;
 border: 2px solid #1aa36f;
}

.btn.white:hover{
  background: #1aa36f;
  color: white;
}

.btn.green {
  background: #1aa36f;
  color: #fff;
  border: 2px solid #1aa36f;
}

.btn.green:hover {
  background: #ffffff;
  color: #1aa36f;
}


/* Blue Menu Button */
.menu-btn {
  background: #0b2a5a;
  color: #fff;
  padding: 2px 18px;
  cursor: pointer;
  font-size: 26px;
  border-radius: 4px;
  border: 2px solid #0b2a5a;
}

.menu-btn:hover {
  background: white;
  border: 2px solid #0b2a5a;
  color: #0b2a5a;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}


/* Overlay */
#overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1000;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: #111;
  color: #fff;
  padding: 20px;
  transition: 0.4s ease;
  z-index: 1002;
}

/* Active State */
.sidebar.active {
  right: 0;
}

#overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Close Button */
.close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  float: right;
}

/* Menu Items */
.sidebar ul {
  list-style: none;
  padding: 50px 0;
}

.sidebar ul li {
  margin: 50px 0;
}

.sidebar ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.sidebar ul li a:hover {
  color: #ff6600;
}

/* Overlay */
#overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1000;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: #0b2a3a;
  color: #fff;
  padding: 20px;
  transition: 0.4s ease;
  z-index: 1002;
}

/* Active State */
.sidebar.active {
  right: 0;
}

#overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Close Button */
.close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  float: right;
}

.close-btn:hover{
  color: #1aa36f;
}

/* Menu Items */
.sidebar ul {
  list-style: none;
  padding: 50px 0;
}

.sidebar ul li {
  margin: 20px 0;
}

.sidebar ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
  padding-left: 20px;
}

.sidebar ul li a:hover {
  color: #1aa36f;
}

/* ================= HERO ================= */
/* Hero Wrapper (adds white space around) */
/* HERO WRAPPER */
.hero-wrapper {
  background: #fff;
  padding: 0 40px 40px;
}

/* HERO SLIDER */
.hero-slider {
  width: 100%;
  height: 70vh;
  overflow: hidden;
  position: relative;
}

/* SLIDES CONTAINER */
.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

/* EACH SLIDE */
.slide {
  min-width: 100%;
  height: 70vh;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: #000; /* 🔥 prevents gray flash */
}

/* OVERLAY */
.overlay {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 80px;
  background: rgba(0,0,0,0.4);
}

/* TEXT */
.hero-content h1 {
    font-size: 54px;
  font-weight: 500;
  font-family: 'Playfair Display', serif;
}

.hero-content h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  margin: 10px 0;
  font-family: 'Playfair Display', serif;
}

.hero-content p {
  max-width: 500px;
  font-size: 18px;
  font-weight: 400;
}

/* ================= FEATURES ================= */
/* Features Section */
.features {
  display: flex;
  justify-content: end;
  margin-top: -120px;
  padding: 0 20px;
  position: relative;
  right: 120px;
  z-index: 1;
  pointer-events: none;
}

/* Outer Box */
.feature-box {
  display: flex;
  background: #fff;
  border: 5px solid #1aa36f;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  overflow: hidden;
}

/* Each Item */
.feature-item {
  position: relative;
  padding: 20px 30px;
  text-align: center;
  color: #000;
  min-width: 250px;
  max-width: 250px;
}

/* Custom Divider */
.feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 80px; /* 👈 control divider length here */
  width: 2px;
  background: #ccc;
}


/* Numbers */
.feature-item h3 {
  color: #1aa36f;
  font-size: 22px;
  margin-bottom: 8px;
}

/* Text */
.feature-item p {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
}

/* ================= FOOTER ================= */
/* TOP LINKS */
.footer-top-links{
  padding: 10px 0;
  margin-top: -40px;
}

.footer-top-links a{
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  cursor: pointer;
}

.footer-top-links span{
  color: #ffffff;
  font-size: 18px;
  margin: 10px;
}

/* FOOTER */
.footer {
  background: #0b2a3a;
  padding: 40px 0 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left p, h3{
  margin-bottom: 16px;
}

.footer-left h3{
  font-size: 26px;
  font-family: 'Playfair Display', serif;;
}

.footer-left .fa-solid {
  color: #1aa36f;
  margin-right: 10px;
}
.footer-gallery img {
  width: 400px;
  object-fit: cover;
  margin-left: 10px;
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 20px;
  padding: 10px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  color: #aaa;
}
.footer-bottom a{
  text-decoration: none;
  color: #1aa36f;
}
/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 900px) {
  .header {
    padding: 15px 20px;
  }

  .btn {
    display: none; /* hide big buttons */
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content h2 {
    font-size: 20px;
  }

  .overlay {
    padding: 30px;
  }

  .dropdown {
    right: 20px;
  }
}

/* Mobile */
@media (max-width: 500px) {
  .hero {
    height: 70vh;
  }

  .hero-content p {
    font-size: 13px;
  }

  .card {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-wrapper {
    padding-top: 0px;
    padding-right: 16px;
    padding-left: 16px;
    padding-bottom: 16px;
  }

  .hero {
    height: 60vh;
  }
}

@media (max-width: 768px) {
  .logo img{
    width: 240px;
  }
  .feature-box {
    flex-direction: column;
    width: auto;
  }

  .feature-item {
    border-right: none !important;
    border-bottom: 1px solid #ddd;
  }

  .feature-item:last-child {
    border-bottom: none;
  }
  .feature-item:not(:last-child)::after {
    display: none;
  }
  .footer-top-links {
    margin-top: 50px;
    margin-left: 10px;
  }
  .footer-content{
  display: flex;
  flex-direction: column;
  }
  .footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  }
  .footer-gallery img{
    width: 100%;
    margin-left: 0%;
  }
  .feature-item {
    text-align: center;
  }
  .features{
    left: 0;
    padding: 0px 16px;
    justify-content: center;
  }
}




/* Layout */
.page {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: white;
}

/* Sidebar */
.gal-sidebar {
  width: 230px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #1aa36f;
}

.gal-sidebar h3 {
  margin: 15px 0 10px;
  color: #000;
}

.gal-sidebar label {
  display: block;
  margin-bottom: 8px;
  cursor: pointer;
  color: black;
}

/* Content */
.content {
  flex: 1;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* Card */
.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  cursor: pointer;
}

.card img {
  width: 100%;
  display: block;
}

.card p {
  padding: 10px;
  font-weight: 500;
  color: black;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* CTA */
.cta {
  margin-top: 20px;
  background: linear-gradient(90deg, #0b2a3a, #1aa36f);
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  font-size: 20px;
}

/* Banner */
.banner {
  padding: 20px 40px;
  border-radius: 12px;
  background: linear-gradient(90deg, #0b1f2a, #123949);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Centered Text */
.banner-content {
  text-align: center;
  flex: 1;
}

.banner-content p {
  font-size: 13px;
  margin: 0;
  opacity: 0.8;
}

.banner-content h3 {
  margin: 5px 0 0;
  font-size: 26px;
  font-weight: 600;
}

/* Signature Button */
.signature-btn {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: linear-gradient(135deg, #00c853, #00e676);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none; 
  color: #ffffff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Glow Effect */
.signature-btn::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: rgba(255,255,255,0.2);
  top: -100%;
  left: -100%;
  transform: rotate(45deg);
  transition: 0.5s;
}

/* Hover Effects */
.signature-btn:hover::before {
  top: 100%;
  left: 100%;
}

.signature-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0,255,150,0.7);
}

/* Arrow Animation */
.signature-btn span {
  transition: transform 0.3s;
}

.signature-btn:hover span {
  transform: translateX(5px);
}

/* Responsive */
@media(max-width: 900px) {
  .page {
    flex-direction: column;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 500px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.clear-btn {
  color: white;
  border: #1aa36f;
  background: #1aa36f;
  border-radius: 5px;
  padding: 5px;
}


/* ===== TOP SECTION ===== */
.about-wrapper {
  width: 100%;
  margin: 0;              
  background: #fff;
  overflow: hidden;
  box-shadow: none;   
}

.about-top {
  position: relative;
}

.about-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

/* About Us Heading Underline */
.about-card h2 {
  font-family:'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  color: #000;
}

/* Custom underline */
.about-card h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 3px;
  background: #2ecc71;
}

/* Updated Card Border (Right + Bottom) */
.about-card {
  position: absolute;
  top: 60px;
  right: 80px;
  width: 560px;
  background: rgba(255,255,255,0.95);
  padding: 35px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);

  /* NEW BORDER STYLE */
  border-right: 5px solid #2ecc71;
  border-bottom: 5px solid #2ecc71;
}

.about-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.5;
}

.about-card ul {
  padding-left: 15px;
}

.about-card ul li {
  font-size: 13px;
  margin-bottom: 6px;
}

/* ===== BOTTOM SECTION ===== */
.about-bottom {
  display: flex;
}

.commitment-box {
  flex: 1;
  background: #fff;
  padding: 80px 100px;
}

.commitment-box h3 {
  font-family:'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 10px;
  color: #000;
}
.commitment-box h4 {
  font-family:'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 10px;
  color: #000;
}

.commitment-box p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.commitment-box ul {
  padding-left: 15px;
}

.commitment-box ul li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #555;
}

.meeting-image {
  flex: 1;
}

.meeting-image img {
  width: 100%;
  height: 100%;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 768px) {
  .about-bottom {
    flex-direction: column;
  }

  .about-card {
    position: static;
    width: 90%;
    margin: 0px auto 20px;
  }

  .about-image {
    height: 250px;
  }
  .commitment-box{
    padding: 40px 50px;
  }
  .gal-sidebar {
    width: 100%;
  }
  .card{
    flex-direction: column;
  }
  .vault-cards .card-content {
    width: 100%;
    text-align: center;
  }
  .vault-cards {
    padding: 40px 20px 0px
  }
  .contact-section .grid-container {
    grid-template-columns: none;
  }
}


/* CONTACT SECTION (clean background) */
.contact-section {
  padding: 10px 40px 40px 40px;
  background: #ffffff;
}

/* WRAPPER WITH BACKGROUND IMAGE */
.contact-wrapper {
  
  margin: auto;
  overflow: hidden;
  position: relative;

  background: url('./images/hero.png');
  background-size: cover;
  background-position: center;
}

/* DARK OVERLAY (important for white text visibility) */
.contact-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

/* CONTENT ABOVE OVERLAY */
.contact-content {
  position: relative;
  z-index: 2;
  padding: 40px;
}

/* TITLE */
.contact-title {
  text-align: center;
  margin-bottom: 40px;
}

.contact-title h1 {
  font-size: 36px;
  color: #fff;
}

.contact-title p {
  color: #ddd;
}

/* GRID */
.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* FORM */
.contact-form {
  background: rgba(255, 255, 255, 0.15); /* transparent glass */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.25);
  padding: 25px;
  border-radius: 12px;

  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  color: #fff;
}

.contact-form h2 {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;

  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;

  color: #fff;
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.7);
}

.contact-form button {
  background: rgba(255,255,255,0.9);
  color: #0b2c3d;
  font-weight: 500;

  padding: 12px;
  border: none;
  border-radius: 6px;
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #fff;
}
.contact-form {
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* INFO */
.contact-info {
  color: #fff;
}

.contact-info h2 {
  margin-bottom: 15px;
}

.info-box p {
  color: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* MAP */
.map {
  margin-top: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.map iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 12px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .contact-section {
    padding: 6px 10px 10px 10px; !important
  }
}



.blog-section {
  background: #0a0f1a;
  padding: 80px 20px;
  color: #fff;
}

/* TITLE */
.blog-title {
  text-align: center;
  margin-bottom: 50px;
}

/* FILTER CARD */
.filter-card {
  max-width: 1100px;
  margin: 40px auto; /* center properly */
  padding: 20px 25px;
  border-radius: 12px;

  display: flex;
  align-items: center;       /* vertical alignment */
  justify-content: space-between; /* proper spacing */

  gap: 20px; /* reduce gap */
  flex-wrap: wrap;

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

/* SEARCH + CATEGORY WIDTH FIX */
.search-box {
  flex: 1;
  min-width: 250px;
}

.category-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.search-box input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: none;
  outline: none;
}

/* LABEL */
.filter-card label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #aaa;
}

/* SEARCH */
.search-box input {
  width: 90%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  outline: none;
}

/* CATEGORY BUTTONS */
.category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-buttons button {
  padding: 8px 14px;
  border-radius: 20px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.category-buttons button.active {
  background: #fff;
  color: #000;
}

/* GRID */
.blog-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* CARD */
.blog-card {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 15px;
}

.blog-content p {
  color: #aaa;
}

/* READ MORE BUTTON */
.read-more {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: 6px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-size: 14px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}


.blog-detail {
  
  background: #0a0f1a;
  padding: 60px 20px;
  color: #fff;
}

/* HERO */
.blog-detail-hero {
  text-align: center;
  margin-bottom: 40px;
}

.blog-detail-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}


/* CONTAINER */
.blog-detail-container {
  max-width: 1100px;
  margin: auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

/* IMAGE */
.blog-detail-image img {
  width: 100%;
  border-radius: 12px 12px 0px 0px;
  margin-bottom: 30px;
}

/* CONTENT */
.blog-detail-content {
  padding: 25px;
  border-radius: 12px;
  line-height: 1.7;
}

.blog-detail-content h3 {
  margin-top: 20px;
}

.blog-detail-content ul {
  padding-left: 20px;
}

.blog-detail-content li {
  margin-bottom: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .blog-detail-hero h1 {
    font-size: 26px;
  }

  .blog-detail-content {
    padding: 20px;
  }
}


    /* PAGE */
.services-page {
  background: #071a2f;
  color: #fff;
  font-family: sans-serif;
}

/* HERO */
.services-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* SIDE IMAGES */
.hero-img {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  object-fit: cover;
}

.hero-img.left {
  left: 0;
}

.hero-img.right {
  right: 0;
}

/* DARK OVERLAY */
.services-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(7, 26, 47, 0.25) 0%,
    rgba(7, 26, 47, 0.5) 25%,
    rgba(7, 26, 47, 0.97) 50%,
    rgba(7, 26, 47, 0.5) 75%,
    rgba(7, 26, 47, 0.25) 100%
  );
}



/* TEXT */
.hero-cont {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
}

.hero-cont h1 {
  font-size: 38px;
  margin-bottom: 15px;
}

.hero-cont p {
  color: #ccc;
  margin-bottom: 20px;
}

/* BUTTON */
.btn-primary {
  padding: 10px 25px;
  border: 2px solid #00c37a;
  border-radius: 25px;
  color: #00c37a;
  text-decoration: none;
}

/* SERVICES ROW */
.services-row {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px 80px 20px;
  gap: 20px;
}

/* BOX */
.service-box {
  position: relative;
  padding-top: 30px;
}

/* DIVIDER LINES */
.service-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 20px;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.2);
}

.service-box h2,
.service-box img {
  display: inline-block;
  vertical-align: middle;
}

.service-box h2 {
  font-size: 70px;
  color: #4fd1a5;
  margin-right: 15px;
  opacity: 0.3;
}

.service-box img {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 110px;
}

/* NUMBER */
.service-box h2 {
  font-size: 60px;
  color: #00c37a;
  margin-bottom: 10px;
}

/* ICON */
.service-box img {
  width: 200px;
  margin-bottom: 10px;
}

/* TITLE */
.service-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 30px;
}

/* TEXT */
.service-box p {
  color: #aaa;
  margin-bottom: 10px;
}

/* LIST */
.service-box ul {
  padding-left: 18px;
}

.service-box li {
  color: #ccc;
  margin-bottom: 5px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-row {
    flex-direction: column;
    padding: 10px 20px 80px 20px;
  }

  .service-box::after {
    display: none;
  }

  .hero-img {
    display: none;
  }
}


/* ================= HEADER ================= */
.vault-header {
  padding: 80px 20px 40px;
  text-align: center;
}

.vault-header h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.vault-header h2 {
  color: #cbd5e1;
  font-weight: 400;
  margin-bottom: 20px;
}

.vault-header p {
  max-width: 850px;
  margin: auto;
  color: #94a3b8;
}

/* FEATURES */
.features1 {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  gap: 10px;
  max-width: 280px;
  text-align: left;
}

.feature .num {
  color: #00ff9c;
  font-size: 28px;
  font-weight: bold;
}

/* ================= CARDS ================= */
.vault-cards {
  padding: 40px 20px 80px;
  max-width: 1100px;
  margin: auto;
}

.vault-section {
  background: #071a2f;
  padding-bottom: 80px;
}

.vault-cards .card {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  margin-bottom: 30px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}

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

/* IMAGE */
.card-img {
  width: 40%;
  position: relative;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) brightness(0.7);
}

.lock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: #00ff9c;
  color: #000;
  padding: 10px;
  border-radius: 50%;
}

/* CONTENT */
.card-content {
  width: 60%;
  padding: 30px;
}

.step {
  font-size: 36px;
  color: #00ff9c;
  font-weight: bold;
}

.card-content h3 {
  margin: 10px 0;
}

.card-content p {
  color: #cbd5e1;
}

/* ================= POPUP ================= */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
}

.popup.active {
  display: flex;
}

.popup-box {
  background: #0c2d48;
  padding: 30px;
  border-radius: 12px;
  width: 380px;   /* control overall width */
  max-width: 90%;
  margin: auto;
  box-sizing: border-box;
}

/* FIX INPUT SIZE */
.popup-box input,
.popup-box textarea {
  width: 100%;
  padding: 12px 14px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
  box-sizing: border-box;   /* 🔥 IMPORTANT FIX */
  font-size: 14px;
}

.popup-box h2 {
  margin-bottom: 15px;
}


.popup-box button {
  background: #00ff9c;
  border: none;
  padding: 10px;
  width: 100%;
  margin-top: 10px;
  border-radius: 5px;
}

.close {
  margin-top: 10px;
  background: red;
  color: #fff;
}

@media (max-width: 768px) {
  .card-img{
    width: 100%;
  }
}