@charset "UTF-8";
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
  padding: 0 15px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    max-width: 768px;
  }
}
@media (max-width: 767px) {
  .container {
    width: 90%;
  }
}

.footer-links a:hover {
  color: #0d1b3d;
  text-shadow: 0 0 5px #0d1b3d, 0 0 10px #0d1b3d, 0 0 20px #0d1b3d;
  box-shadow: 0 0 10px rgba(13, 27, 61, 0.6), 0 0 20px rgba(13, 27, 61, 0.4);
}

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

body {
  font-family: "Segoe UI", sans-serif;
  background-color: linear-gradient(135deg, #d9f5f7, rgba(192, 238, 244, 0.8588235294));
  color: #0d1b3d;
  line-height: 1.6;
}

.navbar {
  background: linear-gradient(135deg, #ffffff, #e6faff);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #0d1b3d;
}
.navbar .logo {
  display: flex;
}
.navbar .logo img {
  height: 70px;
}
.navbar .nav-links {
  display: flex;
  gap: 2rem;
}
.navbar .nav-links a {
  color: #0d1b3d;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 18px;
}
.navbar .nav-links a:hover {
  color: #0d1b3d;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero {
  position: relative;
  background: linear-gradient(rgba(13, 27, 61, 0.5882352941), rgba(0, 0, 0, 0.93)), url("../images/hero-bg.jpg") center/cover;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .highlight {
  color: #d0efff;
}
.hero .service-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 40px;
}
.hero .service-buttons a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  color: #d0efff;
  border: 1px solid #d0efff;
  background: transparent;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  border-radius: 0 30px 0 30px;
  cursor: pointer;
  transition: color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
  font-size: 30px;
  text-decoration: none;
}
.hero .service-buttons a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #0d1b3d;
  transition: width 0.4s ease-out;
  z-index: -2;
}
.hero .service-buttons a span,
.hero .service-buttons a p,
.hero .service-buttons a strong {
  position: relative;
  z-index: 1;
}
.hero .service-buttons a:hover {
  background-color: #0f75a3;
  box-shadow: #001f24 5px 10px;
  box-shadow: rgba(116, 148, 153, 0.231372549) 20px 13px 20px 2px;
}
.hero .service-buttons a:hover::before {
  width: 100%;
}
.hero h1 {
  font-size: 60px;
  line-height: 1.3;
  font-weight: 400;
  color: #d0efff;
}

.about-wrapper {
  padding: 4rem 0;
}

.about-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 5rem;
  color: #fff;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

.about-video {
  flex: 1;
  overflow: hidden;
}

.about-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  flex: 2;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1;
  color: #0d1b3d; /* neon heading */
  margin-bottom: 2rem;
  color: #0d1b3d;
  font-size: 2.5rem;
}

.about-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.about-content strong {
  color: #0d1b3d; /* neon green accent */
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }
  .about-video {
    height: 250px; /* fixed height for mobile */
  }
}
/* General Section Styling */
.services {
  padding: 60px 20px;
  text-align: center;
  background: #f9faff;
  font-family: "Segoe UI", sans-serif;
}

.service-title {
  font-size: 32px;
  font-weight: 700;
  color: #0d1b3d;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #444;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.section-heading {
  font-size: 22px;
  font-weight: 600;
  margin: 40px 0 20px;
  color: #0d1b3d;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 55px;
  margin-top: 20px;
}

/* Service Card */
.service-card-home {
  display: flex;
  background: #0f75a3;
  border: 1px solid #0f75a3;
  border-radius: 0 30px 0 30px;
  padding: 40px 25px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
  align-items: center;
  justify-content: space-between;
}

.service-card-home h4 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.service-card-home p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.service-card-home .arrow {
  right: 20px;
  bottom: 20px;
  font-size: 18px;
  color: white;
  transition: transform 0.3s;
}

.service-card-home:hover {
  border-color: #0d1b3d;
  box-shadow: 0 6px 20px rgba(74, 91, 220, 0.15);
  transform: translateY(-5px);
}

.service-card-home:hover .arrow {
  transform: translateX(5px);
}

/* View More Button */
.view-more {
  margin-top: 40px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: #0d1b3d;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.btn:hover {
  background: #1d2e58;
}

.stories {
  padding: 4rem 2rem;
}
.stories .section-title {
  text-align: center;
  margin-bottom: 2rem;
  color: #0d1b3d;
  font-size: 2.5rem;
}
.stories .carousel-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}
.stories .carousel-wrapper .nav-arrow {
  background: none;
  border: 1px solid #0d1b3d;
  color: #0d1b3d;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.stories .carousel-wrapper .nav-arrow:hover {
  background: #0d1b3d;
  color: linear-gradient(135deg, #0a0f1a, #001f24);
}
.stories .carousel-wrapper .carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1.5rem;
  padding: 1rem;
}
.stories .carousel-wrapper .carousel .story-card {
  min-width: 300px;
  border-radius: 8px;
  overflow: hidden;
  padding: 1rem;
}
.stories .carousel-wrapper .carousel .story-card.light {
  background-color: linear-gradient(135deg, #d9f5f7, rgba(192, 238, 244, 0.8588235294));
}
.stories .carousel-wrapper .carousel .story-card.dark {
  background-color: linear-gradient(135deg, #0a0f1a, #001f24);
}
.stories .carousel-wrapper .carousel .story-card img {
  margin-top: 1rem;
  width: 100%;
  border-radius: 6px;
}

.clients {
  padding: 4rem 2rem;
}
.clients .section-title {
  text-align: center;
  margin-bottom: 2rem;
  color: #0d1b3d;
  font-size: 2.5rem;
}
.clients .clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
}
.clients .clients-grid .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background-color: #0d1b3d;
  border-radius: 8px;
}
.clients .clients-grid .client-logo img {
  max-height: 60px;
  filter: brightness(0) invert(1);
}

.process {
  padding: 4rem 2rem;
}
.process .section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: #0d1b3d;
  font-size: 2.5rem;
}
.process .process-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.process .process-content .process-image img {
  max-width: 300px;
}
.process .process-content .process-steps {
  flex: 1;
}
.process .process-content .process-steps .step-box {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: linear-gradient(135deg, #d9f5f7, rgba(192, 238, 244, 0.8588235294));
  border-radius: 6px;
}
.process .process-content .process-steps .step-box .step-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0d1b3d;
}

.careers-section {
  padding: 4rem 2rem;
  background: #f9faff;
}
.careers-section .careers-heading {
  text-align: center;
  color: #0d1b3d;
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-size: 2.5rem;
}
.careers-section .careers-subtext {
  text-align: center;
  font-size: 22px;
}
.careers-section .careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.careers-section .careers-grid .career-box {
  border: 1px solid #0d1b3d;
  padding: 1.5rem;
  border-radius: 6px;
  transition: background 0.3s ease;
}
.careers-section .careers-grid .career-box:hover {
  background-color: linear-gradient(135deg, #d9f5f7, rgba(192, 238, 244, 0.8588235294));
}
.careers-section .careers-grid .career-box p {
  text-align: justify;
}
.careers-section .career-cta {
  display: block;
  text-align: center;
  margin-top: 2rem;
  padding: 0.8rem 1.5rem;
  background-color: #0d1b3d;
  color: #d0efff;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.careers-section .career-cta:hover {
  background-color: rgba(13, 27, 61, 0.85);
}

.site-footer {
  background-color: #0a0a5e;
  padding: 3rem 2rem;
}
.site-footer .footer-container {
  gap: 2rem;
  display: flex;
  justify-content: space-between;
}
.site-footer .footer-container h3,
.site-footer .footer-container h4 {
  color: white;
}
.site-footer .footer-container p {
  color: white;
}
.site-footer .footer-container a {
  color: white;
  text-decoration: none;
}
.site-footer .footer-container a:hover {
  color: rgb(107, 189, 244);
}
.site-footer .footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid linear-gradient(135deg, #d9f5f7, rgba(192, 238, 244, 0.8588235294));
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.site-footer .footer-bottom p {
  color: white;
}
.site-footer .footer-bottom .footer-links a {
  margin-left: 1rem;
  color: #9a9a9a;
}
.site-footer .footer-bottom .footer-links a:hover {
  color: #0d1b3d;
}
.site-footer ul {
  padding: 0;
}
.site-footer .footer-col ul li {
  margin-bottom: 8px;
  font-size: 15px;
  list-style: none;
}
.site-footer .footer-col ul li::before {
  content: none !important;
}

/* Banner */
.contact-banner {
  position: relative;
  background: url("../images/ai-generated-9729348_1280.jpg") top, left/cover no-repeat;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  background: rgba(0, 0, 0, 0.31);
  padding: 20px 40px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
}

.banner-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.banner-overlay p {
  font-size: 1.2rem;
}

/* Contact Form */
.contact {
  padding: 50px 20px;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.contact-container form {
  display: flex;
  flex-direction: column;
}

.contact-container input,
.contact-container textarea {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-container button {
  border: none;
  padding: 12px;
  border-radius: 5px;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-container button:hover {
  background: #00cca3;
}

/* Map Section */
.contact-container input,
.contact-container button {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #0d1b3d;
  background-color: transparent;
  color: black;
  font-size: 1rem;
  outline: none;
  transition: 0.3s ease;
}

/* Glow effect on focus */
.contact-container input:focus {
  border-color: #0d1b3d;
  box-shadow: 0 0 10px rgba(13, 27, 61, 0.8509803922);
}

/* Button style */
.contact-container button {
  background: #0d1b3d;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.contact-container button:hover {
  background-color: rgba(13, 27, 61, 0.8431372549);
  color: white;
}

.choose-card {
  opacity: 0;
  transform: translateX(100px); /* start from right */
  animation: slideInRight 0.8s ease forwards;
}

/* ek ek card delay ke sath aaye */
.choose-card:nth-child(1) {
  animation-delay: 0.2s;
}

.choose-card:nth-child(2) {
  animation-delay: 0.4s;
}

.choose-card:nth-child(3) {
  animation-delay: 0.6s;
}

.choose-card:nth-child(4) {
  animation-delay: 0.8s;
}

.choose-card:nth-child(5) {
  animation-delay: 1s;
}

.choose-card:nth-child(6) {
  animation-delay: 1.2s;
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Banner Section */
.about-banner {
  position: relative;
  background: url("../images/about-banner.jpg") center/cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures video fully covers */
  z-index: -1; /* keep video behind */
}

.banner-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px 40px;
  border-radius: 10px;
  text-align: center;
  color: white;
}

.banner-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.banner-overlay p {
  font-size: 1.2rem;
  color: #fff;
}

/* About Content */
.about-content {
  padding: 50px 20px;
  color: #fff;
}

.about-content h2 {
  color: #0d1b3d;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #0d1b3d;
}

/* Responsive */
@media (max-width: 768px) {
  .banner-overlay h1 {
    font-size: 2rem;
  }
  .banner-overlay p {
    font-size: 1rem;
  }
}
.stats {
  display: flex;
  justify-content: center;
  gap: 100px;
  padding: 60px 0;
  background: #f9faff;
  color: #0d1b3d;
  text-align: center;
}

.stat-box {
  font-size: 1.2rem;
  font-weight: bold;
}

.stat-box .counter {
  font-size: 3rem;
  font-weight: 900;
  display: inline-block;
  color: #0d1b3d;
}

.about-content {
  padding: 50px 20px;
  color: #fff;
}

.about-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-image {
  flex: 1;
  display: flex;
}
.about-image img {
  width: 100%;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  color: linear-gradient(135deg, #d9f5f7, rgba(192, 238, 244, 0.8588235294));
  margin-bottom: 15px;
}

.about-text p {
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
.industries-section {
  text-align: center;
  padding: 80px 20px;
  background: #f9faff; /* Tumhara dark bg */
}

.industries-title {
  font-size: 2.5rem;
  color: linear-gradient(135deg, #d9f5f7, rgba(192, 238, 244, 0.8588235294));
  margin-bottom: 40px;
}

.industries-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.industries-list .industry-card {
  font-size: 1.7rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.industry-card:hover {
  color: #00ffcc; /* Hover pe white */
}

.why-choose {
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #0d1b3d;
  margin-bottom: 40px;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.choose-card {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #0d1b3d;
  transition: transform 0.3s ease;
}

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

.choose-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #0d1b3d;
}

.choose-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #0d1b3d;
}

/* Responsive */
@media (max-width: 992px) {
  .choose-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .choose-grid {
    grid-template-columns: 1fr;
  }
}
.services-section {
  padding: 80px 20px;
  background: #f9faff;
  text-align: center;
}

.service-banner {
  position: relative;
  background: url("../images/about-banner.jpg") center/cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px 40px;
  border-radius: 10px;
  text-align: center;
  color: white;
}

.banner-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.banner-overlay p {
  font-size: 1.2rem;
  color: #fff;
}

.services-title {
  font-size: 3rem;
  font-weight: 700;
  color: #0d1b3d; /* Neon Cyan */
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Always 3 columns */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #111;
  background: #fff;
  border: 1px solid #0d1b3d;
  border-radius: 12px;
  padding: 30px 20px;
  font-size: 1.3rem; /* Font size bigger */
  font-weight: 600;
  color: #0d1b3d;
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

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

/* Banner */
.career-banner {
  background: url("../images/carrier.jpg") center/cover no-repeat;
  text-align: center;
  padding: 120px 20px;
  color: #fff;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px 40px;
  border-radius: 10px;
  text-align: center;
  color: white;
}

.career-banner h1 {
  font-size: 3.5rem;
  color: rgb(0, 255, 204); /* Neon Cyan */
}

.career-banner p {
  font-size: 1.4rem;
  margin-top: 10px;
}

/* Intro */
.career-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 10%;
  flex-wrap: wrap;
}

.career-content {
  flex: 1;
  color: #fff;
}

.career-content h2 {
  font-size: 2.5rem;
  color: #0d1b3d;
  margin-bottom: 20px;
}

.career-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #0d1b3d;
}

.career-image {
  flex: 1;
}

.career-image img {
  width: 100%;
  border-radius: 12px;
}

/* Intro two */
.career-intro-two {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 10%;
  flex-wrap: wrap;
}

.career-content-two {
  flex: 1;
  color: #fff;
}

.career-content-two h2 {
  font-size: 2.5rem;
  color: #0d1b3d;
  margin-bottom: 20px;
}

.career-content-two p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #0d1b3d;
}

.career-image-two {
  flex: 1;
}

.career-image-two img {
  width: 100%;
  border-radius: 12px;
}

/* Opportunities */
.career-opportunities {
  background: #f9faff;
  text-align: center;
  padding: 80px 20px;
}

.career-opportunities h2 {
  font-size: 3rem;
  color: rgb(0, 255, 204);
  margin-bottom: 50px;
}

.opportunities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.opportunity-card {
  border: 1px solid #0d1b3d;
  border-radius: 12px;
  padding: 30px 20px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.opportunity-card:hover {
  background: rgb(0, 255, 204);
  color: #000;
  transform: translateY(-8px);
}

/* Career Openings */
.career-openings {
  padding: 80px 10%;
}

.career-openings h2 {
  font-size: 2.8rem;
  color: #0d1b3d;
  text-align: center;
  margin-bottom: 50px;
}

.openings-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.opening-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #0d1b3d;
  padding: 25px 30px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

.job-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0d1b3d;
}

.job-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #0d1b3d;
}

.details-btn {
  background: #0d1b3d;
  color: #f9faff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.details-btn:hover {
  background: rgba(13, 27, 61, 0.8862745098);
  transform: scale(1.05);
}

.about-client {
  background-color: #f9faff;
  padding: 60px 20px;
}
.about-client .wrapper-client .section-title {
  text-align: center;
}
.about-client .wrapper-client .wrapper-logo {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.about-client .wrapper-client .logo-cl {
  border: 1px solid #0d1b3d;
  padding: 20px 30px;
  border-radius: 3px;
}

.z-careers {
  background-color: #f9faff;
  padding: 80px 0;
}

.z-header {
  gap: 18px;
  margin-bottom: 24px;
}

.z-badge {
  background: #0d1b3d;
  color: white;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 14px;
}

.z-title {
  text-align: center;
}
.z-title h2 {
  font-size: 2.5rem;
  margin: 0 0 6px 0;
}
.z-title p {
  font-size: 1.2rem;
  margin: 0;
  color: #6b7280;
}

.z-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 900px) {
  .z-grid {
    grid-template-columns: 1fr;
  }
}

.z-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.03);
  min-height: 150px;
}

.z-card .heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.z-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: white;
  background: #0d1b3d;
  flex: 0 0 44px;
}

.z-card h3 {
  margin: 0;
  font-size: 16px;
}

.z-card p {
  margin: 8px 0 0 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.45;
}

.specs {
  margin-top: 12px;
  padding-left: 18px;
}

.specs li {
  margin-bottom: 8px;
  color: #16383b;
}

.z-card--wide {
  grid-column: span 2;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .z-card--wide {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
  }
}

.celebration-actions {
  display: flex;
  gap: 12px;
}

.btn {
  padding: 10px 14px;
  border-radius: 10px;
  border: 0;
  font-weight: 600;
  cursor: pointer;
}

.btn--primary {
  background: #0d1b3d;
  color: white;
}

.btn--alt {
  background: transparent;
  border: 1px solid rgba(11, 110, 90, 0.12);
  color: #0d1b3d;
}

.meta-row {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  color: #6b7280;
  font-size: 13px;
}

.z-card:hover {
  transform: translateY(-4px);
  transition: transform 0.18s ease;
}

.services-section-page {
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.services-section-page .service-page-container {
  background-color: #f9faff;
  padding: 40px 0;
}

.services-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #0d1b3d;
}

.tab-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 20px;
}

.tab-button {
  border: 2px solid #0d1b3d;
  background: transparent;
  padding: 30px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 22px;
  color: #0d1b3d;
  transition: 0.2s;
}

.tab-button.active,
.tab-button:hover {
  background: #0d1b3d;
  color: #fff;
}

.tab-content {
  display: none;
  padding: 16px;
  border-top: 1px solid #e2e8f0;
  font-size: 15px;
  transition: all 0.4s ease; /* smooth animation */
}

.tab-content.active {
  display: block;
}

.tab-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}

.tab-content.active {
  opacity: 1;
  max-height: 100%; /* enough height for content */
}

.tabs {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  border-bottom: 2px solid #ddd;
}

.tab-btn {
  background: none;
  border: none;
  padding: 14px 25px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #555;
  transition: all 0.3s;
}

.tab-btn.active {
  color: #0d47a1;
  border-bottom: 3px solid #0d47a1;
}

/* ==== Tabs Content ==== */
.tab-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ==== Service Section ==== */
.services-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.services-container h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #1a237e;
}

.services-container p {
  text-align: center;
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
  text-align: center;
}

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

.service-card img {
  width: 60px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #0d47a1;
}

.service-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.service-card ul li {
  margin: 8px 0;
  padding-left: 20px;
  position: relative;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}

.service-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2e7d32;
  font-weight: bold;
}

.services-tab {
  margin: 0 auto;
  background: #f9faff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.services-tab h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #0d1b3d;
  text-align: center;
}

.services-tab p {
  font-size: 20px;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

.sub-heading {
  font-size: 22px;
  color: #0d1b3d;
  margin-top: 18px;
  margin-bottom: 8px;
  font-weight: bold;
}

ul {
  margin: 0;
  padding-left: 20px;
}

ul li {
  margin-bottom: 8px;
  font-size: 20px;
  color: #111827;
  position: relative;
}

ul li::before {
  content: "✔";
  color: #0d1b3d;
  font-weight: bold;
  position: absolute;
  left: -20px;
}