body {
  font-family: Arial, sans-serif;
}

/* ---------------- Navbar ---------------- */

/* .navbar-brand img {
  border-radius: 50%;
  object-fit: cover;
}
.navbar .btn-primary {
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  background: rgb(2, 35, 56);
  border-color: rgb(2, 35, 56);
}
.navbar .btn-primary:hover {
  background: #031e2e;
  border-color: #031e2e;
  transform: translateY(-2px);
} */





/* ---------------- Hero Section ---------------- */
/* ----------------------
   HERO BASE STYLING
-----------------------*/
.hero-section {
  background-color: #fff;
  color: #000;
  padding: 120px 20px;
  font-family: 'Poppins', sans-serif;
}

.hero-section .headline {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  font-family: 'Playfair Display', serif;
}

.hero-sub {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.6rem;
  margin-top: 10px;
  font-weight: 700;
}

/* Highlight Section */
.hero-section .highlight {
  font-weight: 800;
  color: #000;
  padding: 0 6px;
  position: relative;

  background: linear-gradient(
    to bottom,
    transparent 55%,
    rgb(244, 203, 128),
    rgb(250, 194, 90),
    rgb(249, 185, 66)
  );

  border-radius: 10px;
  transition: 0.3s ease;
}

/* Premium soft underline glow */
.hero-section .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #b1ace7, #b2a6e6);
  opacity: 0.22;
  filter: blur(3px);
  border-radius: 6px;
  z-index: -1;
}

.hero-section .subtext {
  font-size: 1.15rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.hero-section .btn {
  padding: 12px 32px;
  border-radius: 28px;
  font-weight: 900;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.hero-section .btn-dark {
  background-color: rgb(249, 185, 66);
  color: black;
}

.hero-section .btn-dark:hover {
  background-color: #002b5b;
  transform: translateY(-3px);
}

/* BRAND LOGO EFFECTS */
.brand-logos img {
  height: 55px;           /* Bigger height → clarity increase */
  width: auto;            /* Auto width → logo stretch nahi hoga */
  object-fit: contain;    /* Always fit inside box */
  padding: 6px 10px;      /* Clean spacing */
  background: transparent;
  transition: all 0.3s ease;
}


.brand-logos img:hover {
  transform: scale(1.1);
  filter: none;
}

/* ----------------------
   ANIMATIONS
-----------------------*/
.fade-up {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 1s ease-out forwards;
}

.fade-delay {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

.fade-delay2 {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.6s;
}

.fade-delay3 {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.9s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ======================================================
   ✅ MOBILE RESPONSIVE FIXES (YOUR REQUEST)
====================================================== */
@media (max-width: 576px) {

  .hero-section {
    padding: 80px 15px;
  }

  .hero-section .headline {
    font-size: 1.9rem;
    line-height: 1.25;
  }

  .hero-sub {
    font-size: 1.1rem !important;
  }

  .subtext {
    font-size: 0.98rem !important;
  }

  /* Break the headline into 3 lines */
  .highlight {
    display: inline-block;
    text-align: center;
    width: 100%;
    line-height: 1.3;
  }

  .highlight .line1,
  .highlight .line2 {
    display: block;
  }

  .highlight .plus-sign {
    display: block;
    font-size: 1.9rem;
    font-weight: 900;
    margin: 4px 0;
  }
}


/* ---------------- About Section ---------------- */
.text-primary {
  color: #002b5b !important;
}
.bg-primary {
  background-color: #002b5b !important;
}
.btn-primary {
  background-color: #002b5b !important;
  border-color: #002b5b !important;
}
.btn-primary:hover {
  background-color: #002b5b !important;
  border-color: #002b5b !important;
}

/* ---------------- Services Section ---------------- */
.services-section {
  background: linear-gradient(135deg, #f9fafc, #eef3f7);
}

.section-subtitle {
  text-transform: uppercase;
  font-weight: 600;
  color: rgb(2, 35, 56);
  letter-spacing: 2px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
}
.section-title span {
  color: rgb(2, 35, 56);
}

/* Card Styling */
.service-card {
  border: none;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.35s ease-in-out;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Icon Styling */
.icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgb(2, 35, 56), #031e2e);
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.4s ease-in-out;
}
.service-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 6px 18px rgba(2,35,56,0.3);
}

/* Title & Text */
.service-card .card-title {
  font-weight: 600;
  margin-top: 10px;
  color: rgb(2, 35, 56);
}
.service-card .card-text {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Button */
.custom-btn {
  background: rgb(2, 35, 56);
  color: #fff !important;
  border-radius: 30px;
  padding: 10px 24px;
  font-weight: 500;
  transition: all 0.35s ease-in-out;
}
.custom-btn:hover {
  background: #031e2e;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 18px rgba(2,35,56,0.3);
}






/* ---------------- Blog Section ---------------- */
/* Blog Section */
.blog-section {
  background: #f9fafc;
}

.blog-card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.4s ease-in-out;
  background: #fff;
}
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Image wrapper */
.blog-img {
  width: 100%;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
  position: relative;
}

.blog-img img {
  width: 100%;
  height: auto;        /* Auto height for responsiveness */
  display: block;
  object-fit: cover;   /* Prevents distortion */
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.05); /* Smooth zoom effect */
}

/* Overlay with button */
.blog-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.blog-card:hover .blog-overlay {
  opacity: 1;
}

.blog-btn {
  background: rgb(2, 35, 56);
  color: #fff !important;
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.blog-btn:hover {
  background: #031e2e;
  transform: translateY(-3px) scale(1.05);
}

/* Blog Content */
.blog-content {
  text-align: left;
}
.blog-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgb(2, 35, 56);
  margin-bottom: 10px;
}
.read-more {
  color: rgb(2, 35, 56);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.read-more:hover {
  color: #031e2e;
  text-decoration: underline;
}


/* --------------footer ----------- */



/* service page  */

.services-section {
  font-family: 'Poppins', sans-serif;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 28px rgba(0,0,0,0.12);
}

.service-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.service-content {
  padding: 22px;
}

.service-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #002b5b;
}

.service-content p {
  color: #555;
  font-size: 0.95rem;
  margin-top: 8px;
  margin-bottom: 16px;
}

.learn-btn {
  display: inline-flex;
  align-items: center;
  background: #002b5b;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.3s ease;
}

.learn-btn:hover {
  background: #000;
  transform: translateX(4px);
}

.arrow {
  margin-left: 8px;
  font-size: 1.2rem;
}
/* ---------------- End of service page ---------------- */
