* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p {
  font-family: "Open Sans", sans-serif;
}

h1,
h2,
h3 {
  font-family: "Raleway", sans-serif;

}



/* ================= TOP BAR ================= */
.top-bar {
  background: #030049;
  color: #fff;
  font-size: 14px;
  padding: 6px 0;
}

/* ================= HEADER ================= */
.main-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Navbar spacing */
.navbar {
  padding: 14px 0;
}

/* NAV LINKS */
.navbar-nav .nav-link {
  font-weight: 600;
  color: #0b1a3a !important;
  margin: 0 18px;
  /* ðŸ”¹ Home & About gap increased */
}

/* LOGO CENTER (DESKTOP) */
.navbar-brand {
  position: relative;
  top: 8px;
  /* ðŸ”¹ Logo neeche */
}

/* GET A QUOTE BUTTON */
.quote-btn {
  background: #030049;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

/* ================= HAMBURGER ICON ================= */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ================= MOBILE RESPONSIVE ================= */
/* ================= LOGO OVERLAP EFFECT ================= */

/* Desktop logo positioning */
@media (min-width: 992px) {
  .main-header {
    position: relative;
    z-index: 10;
  }

  .main-header .navbar-brand {
    position: absolute;
    top: 50%;
    /* header ke neeche */
    transform: translateY(-50%);
    /* half header + half banner */
    z-index: 99;
  }

  .main-header .navbar-brand img {
    background: #fff;
    height: 52px;
    /* padding: 10px 16px; */
    border-radius: 15px;
    /* box-shadow: 0 6px 20px rgba(0,0,0,0.15); */
  }
}

/* Mobile: normal logo (no overlap) */
@media (max-width: 991px) {
  .main-header .navbar-brand {
    position: static;
    transform: none;
  }

  .main-header .navbar-brand img {
    box-shadow: none;
    padding: 0;
    background: transparent;
  }
}


/* ================= BANNER ================= */
.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: url("/img/banner.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,0.65); */
}

.banner-section {
  padding-right: 15%;
}

.hero-content {
  position: relative;
  color: #fff;
  z-index: 2;
}

.hero-content h1 {
  font-weight: 600;
  font-size: 42px;
  line-height: 1.3;
}

.hero-content .cta-btn {
  background: #030049;
  color: #fff;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}

/* FORM BOX */
.eligibility-form {
  background: #3b3a3699;
  padding: 30px 6px;
  border-radius: 10px;
  border: 1px solid #726362;
  /* box-shadow: 0 10px 30px rgba(119, 119, 119, 0.1); */
}

.form-title {
  text-align: center;
  font-weight: 500;
  font-size: 30px;
  font-family: "Raleway", sans-serif;
  margin-bottom: 25px;
}


/* FIELD BOX */
.field-box {
  display: flex;
  align-items: center;
  border: 1px solid #2b5469;
  border-radius: 4px;
  overflow: hidden;
  background: #35353147;
}

/* ICON BOX */
.icon-box {
  width: 45px;
  min-width: 45px;
  height: 40px;
  background: #030049;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* INPUT / SELECT */
.field-box input,
.field-box select {
  border: none;
  outline: none;
  padding: 10px 12px;
  width: 100%;
  background-color: #d3d3d300;
  font-size: 14px;
}

/* TEXTAREA */
.textarea-box {
  align-items: stretch;
}

.textarea-box textarea {
  border: none;
  outline: none;
  padding: 10px 12px;
  width: 100%;
  height: 90px;
  resize: none;
  background-color: #35353147;
  font-size: 14px;
}

/* SUBMIT BUTTON */
.btn-submit {
  width: 100%;
  background: #030049;
  color: #fff;
  padding: 14px;
  border: 1px solid #8b8b8c;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-submit:hover {
  background: rgba(250, 250, 250, 0.815);
  color: #030049;
  border: 2px solid #030049;
}


/* ================= WIKI INFO SECTION ================= */
.wiki-info-section {
  padding: 50px 0;
}

.wiki-info-section .about-heading {
  color: #030049;
  font-weight: 700;
  font-size: 29px;
  font-family: "Raleway", sans-serif;
  line-height: 1.5;
}

/* IMAGE */
.wiki-img {
  width: 90%;
  box-shadow: none;
  border-radius: 0;
}

/* TEXT CONTENT */
.wiki-info-section h2 {
  font-size: 42px;
  font-weight: 800;
  color: #030049;
  line-height: 1.3;
  margin-bottom: 20px;
}

.wiki-info-section p {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}

/* BUTTON */
.btn-chat {
  display: inline-block;
  background: #030049;
  color: #fff;
  padding: 12px 35px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 15px;
  transition: 0.3s;
}

.btn-chat:hover {
  background: rgba(250, 250, 250, 0.815);
  color: #030049;
  border: 2px solid #030049;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .wiki-info-section {
    padding: 60px 0;
  }

  .wiki-info-section h2 {
    font-size: 28px;
  }
}

/* Section */
.services-section {
  padding: 40px 0;
  background: #ebebeb;
}

/* Headings */
.small-title {
  color: #d6d6d6;
  font-size: 18px;
  margin-bottom: 5px;
}

.main-title {
  font-weight: 700;
  color: #030049;
}

/* Card */
.service-card {
  background: #fff;
  padding: 30px 25px 40px;
  border-radius: 10px;
  margin: 0;
  position: relative;
  height: 100%;
  transition: all 0.3s ease;
}

/* Bottom cut corner */
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-width: 0 0 60px 60px;
  border-style: solid;
  border-color: transparent transparent #eaeaea transparent;
}

/* Hover */
.service-card:hover {
  transform: translateY(-8px);
}


/* Icon Image */
.service-icon {
  width: 45px;
  height: 45px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* Title */
.service-title {
  font-size: 28px;
  width: 80%;
  line-height: 1.2;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  color: #111;
  margin-bottom: 12px;
}

/* Description */
.service-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}


.wiki-section {
  padding: 70px 0;
  font-family: "Georgia", serif;
}

/* TEXT (UNCHANGED) */
.main-heading {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

.wiki-section .para-heading {
  font-size: 26px;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  margin-bottom: 20px;
  line-height: 1.4;
}

.sub-heading {
  font-size: 22px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.wiki-section .small-heading {
  font-size: 20px;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  margin-top: 25px;
  margin-bottom: 10px;
}

.wiki-section p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

/* RIGHT COLUMN */
.right-content {
  padding-left: 40px;
}

/* SCROLL WRAPPER (DESKTOP + MOBILE BOTH) */
.wiki-scroll-wrapper {
  position: relative;
  max-height: 360px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 10px;
}

/* FORCE CONTENT HEIGHT (DESKTOP ONLY) */
.wiki-inner {
  min-height: 900px;
}

/* SCROLLBAR */
.wiki-scroll-wrapper::-webkit-scrollbar {
  width: 8px;
}

.wiki-scroll-wrapper::-webkit-scrollbar-track {
  background: #e0e0e0;
}

.wiki-scroll-wrapper::-webkit-scrollbar-thumb {
  background: #030049;
}

@media (max-width: 991px) {

  .wiki-scroll-wrapper {
    height: 70vh;
    /* ðŸ”¥ mobile par visible scroll */
    overflow-y: auto;
    /* ðŸ”¥ force scroll */
    -webkit-overflow-scrolling: touch;
    /* ðŸ”¥ smooth mobile scroll */
  }

  .right-content {
    padding-left: 0;
    margin-top: 30px;
  }

  /* MOBILE TEXT CENTER */
  .wiki-section {
    text-align: center;
  }
}


/* Main Hero Section */
.wp-hero-section {
  position: relative;
  padding: 35px 0;
  background: url("/img/divider-banner.jpg") no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

/* Blue Overlay */
.wp-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(20, 85, 200, 0.85); */
  z-index: 1;
}

/* Content above overlay */
.wp-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

/* Small top text */
.wp-hero-tagline {
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  opacity: 0.9;
}

/* Heading */
.wp-hero-heading {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
}

/* Buttons wrapper */
.wp-hero-buttons .btn {
  padding: 11px 32px;
  font-size: 14px;
  font-weight: 600;
  margin: 0 8px;
  border-radius: 4px;
}

.wp-btn-secondary {
  border: 2px solid #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .wp-hero-heading {
    font-size: 18px;
  }

  .wp-hero-buttons .btn {
    margin-bottom: 10px;
  }
}


/* FAQ SECTION BACKGROUND */
.faq-section {
  position: relative;
  padding: 50px 0;
  background: #fff;
}



/* TITLE */
.faq-title {
  color: #030049;
  font-size: 32px;
  margin-top: 35px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ACCORDION STYLE */
.faq-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  color: #4e4e4e;
  border: 1px solid #323232 !important;
  box-shadow: none !important;
  background: #fff;
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.accordion-button:hover {
  background: #f0f4ff;
  color: #070374d8;
}

/* OPEN STATE */
.accordion-button:not(.collapsed) {
  background: #03004ebe;
  color: #fff;
}

.accordion-button::after {
  filter: brightness(0);
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(1);
}

/* BODY */
.accordion-body {
  background: #fff;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  color: #4e4e4e;
}

/* MOBILE */
@media (max-width: 991px) {
  .faq-title {
    font-size: 26px;
  }
}

.reviews-section {
  background: #fafafa;
}

.reviews-title {
  font-size: 30px;
  font-weight: 700;
  color: #0a0a5a;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px 22px 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  height: 260px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stars {
  color: #f4b400;
  font-size: 14px;
}

.google-icon {
  width: 22px;
}

.review-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 15px 0;
  flex-grow: 1;
}

.author {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

/* INNER SCROLL (ONLY ONE BOX) */
.scroll-card p {
  overflow-y: auto;
  max-height: 120px;
  padding-right: 6px;
}

.scroll-card p::-webkit-scrollbar {
  width: 4px;
}

.scroll-card p::-webkit-scrollbar-thumb {
  background: #dfd599;
  border-radius: 10px;
}

/* DOUBLE QUOTE */
.quote-icon {
  position: absolute;
  bottom: 0px;
  right: 18px;
  font-size: 70px;
  color: #dfd599;
  line-height: 1;
}

/* ARROWS */
.review-arrow {
  position: absolute;
  top: 15px;
  width: 40px;
  height: 40px;
  /* background: #fff; */
  border-radius: 50%;
  /* box-shadow: 0 5px 15px rgba(0,0,0,0.15); */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.prev-arrow {
  left: -20px;
}

.next-arrow {
  right: -20px;
}



.blog-section {
  background-color: #f7f7f7;
}

.blog-title {
  font-size: 28px;
  font-weight: 700;
  color: #0a0a5a;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
  position: relative;
  transition: all 0.3s ease;

  /* REAL CUT SHAPE */
  clip-path: polygon(0 0,
      100% 0,
      100% calc(95% - 40px),
      calc(95% - 40px) 100%,
      0 100%);
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 22px 22px 30px;
  position: relative;
}

.blog-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-date {
  font-size: 13px;
  color: #888;
  display: block;
  margin-bottom: 8px;
}

.blog-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.read-more {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* Diagonal Cut Effect */
/* .blog-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border-width: 0 0 65px 65px;
    border-style: solid;
    border-color: transparent transparent #f5f5f5 transparent;
} */



/* ================= PROMO STRIP ================= */
.promo-strip {
  position: relative;
  padding: 40px 0;
  background: url("/img/reconization-service-background.jpg") center/cover no-repeat;
}

.promo-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(13, 110, 253, 0.85); */
}

.promo-strip-title {
  color: #fff;
  font-size: 34px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  padding: 0px 16%;
}

.promo-btn-group {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.promo-strip-btn {
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 6px;
}


/* ================= MOBILE ================= */
@media (max-width: 991px) {
  .promo-strip-title {
    font-size: 26px;
  }
}

/* ================= FOOTER ================= */
.footer-section {
  background: #e9e8e6;
  color: #333;
  padding: 60px 0 20px;
  font-size: 14px;
}

.footer-second-services{
    margin-top: 3%;
  }

.footer-logo {
  max-width: 220px;
  margin-bottom: 10px;
}

.footer-brand p {
  line-height: 1.7;
  color: #333;
}

/* TITLES */
.footer-title {
  color: #030049;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

/* LISTS */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  position: relative;
  display: flex;
  color: #333;
  /* ALIGN ARROW WITH TEXT */
  align-items: center;
  /* VERTICAL CENTER */
  gap: 8px;
  /* space between arrow & text */
  margin-bottom: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* ARROW */
.footer-list li::before {
  content: "▸";
  color: #333;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-link {
  color: #333 !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* HOVER EFFECT (TEXT + ARROW) */
.footer-list li:hover .footer-link,
.footer-contact li:hover .footer-link,
.footer-list li:hover::before {
  color: #030049 !important;
  transform: translateX(6px);
}

.footer-list li:hover::before,
.footer-contact li:hover::before {
  color: #030049;
}

/* Footer Contact List */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  font-size: 14px;
  color: #333;
  line-height: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  /* spacing between icon and text */
}

/* Optional: icon color */
.footer-contact li i {
  color: #333;
  min-width: 20px;
  /* align icons vertically */
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.226);
  margin-top: 40px;
  padding-top: 15px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #333;
}

/* MOBILE */
@media (max-width: 991px) {
  .footer-section .col-lg-3 {
    margin-bottom: 30px;
  }
}


@media (min-width: 1600px) {

  .hero-content h1 {
    font-size: 48px;
  }

  .wiki-info-section h2 {
    font-size: 46px;
  }
}


@media (max-width: 1599px) and (min-width: 1400px) {
  .hero-content h1 {
    font-size: 44px;
  }

  .wiki-info-section h2 {
    font-size: 40px;
  }
}


@media (max-width: 1399px) and (min-width: 1200px) {
  .navbar-nav .nav-link {
    margin: 0 14px;
  }

  .hero-content h1 {
    font-size: 35px;
  }

  /* .service-card {
    width: 320px;
  } */
   .service-title {
    font-size: 26px;
   }
   .wp-hero-heading {
    font-size: 33px;
   }
}


@media (max-width: 1199px) and (min-width: 992px) {

  .navbar-nav .nav-link {
    margin: 0 0px;
  }

  .form-title {
    font-size: 24px;
  }

  .hero-section {
    min-height: 85vh;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .wiki-info-section h2 {
    font-size: 34px;
  }

  .service-card {
    width: 95%;
  }

  .right-content {
    padding-left: 20px;
  }
  .service-title {
    font-size: 26px;
    width: 100%;
  }
  .wp-hero-heading {
    font-size: 28px;
  }
  .footer-contact li {
    font-size: 12px;
  }
}

@media (max-width: 991px) and (min-width: 768px) {

  .navbar-nav .nav-link {
    margin: 10px 0;
    text-align: center;
  }

  .banner-section {
    padding-right: 0%;
  }

  .hero-section {
    min-height: 60vh;
    text-align: center;
  }

  .reviews-slider .swiper-wrapper {
    align-items: stretch;
  }

  .reviews-slider .swiper-slide {
    display: flex;
    justify-content: center;
    height: auto;
  }

  .review-card {
    width: 100%;
    max-width: 420px;
    height: auto;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .eligibility-form {
    margin-top: 30px;
  }

  .wiki-info-section {
    text-align: center;
  }

  .service-card {
    width: 90%;
    margin-bottom: 20px;
  }

  .promo-strip-title {
    font-size: 28px;
  }

  .small-title {
    font-size: 16px;
    padding-top: 24px;
  }

  .list {
    text-align: left;
  }
}



@media (max-width: 767px) {

  body {
    overflow-x: hidden;
  }

  .hero-section {
    min-height: auto;
    padding: 60px 0;
    text-align: center;
  }

  .banner-section {
    padding-right: 0%;
  }


  navbar-nav .nav-link {
    padding-bottom: 25px;
  }

  .hero-content h1 {
    font-size: 26px;
    line-height: 1.4;
  }

  .hero-content p {
    font-size: 14px;
  }

  .eligibility-form {
    padding: 20px;
  }

  .wiki-info-section h2 {
    font-size: 22px;
  }

  .wiki-info-section .about-heading {
    font-size: 20px;
  }

  .service-card {
    width: 100%;
  }

  .promo-strip-title {
    font-size: 22px;
  }

  .wp-hero-tagline {
    font-size: 18px;
  }

  .reviews-title {
    font-size: 24px;
  }

  .main-heading {
    font-size: 20px;
  }

  .wiki-section .para-heading {
    font-size: 18px;
  }


  .footer-section {
    text-align: left;
  }

  

  .footer-title {
    color: #030049;
    font-size: 18px;
    text-align: left;
  }

  .service-title {
    font-size: 22px;
  }

  .list {
    text-align: left;
  }

  
.promo-strip-btn {
    margin-bottom: 10px;
}

.promo-strip-title{
  margin-bottom: 0px;
}
}

.inner-section-image {
  width: 100%;
}


.field-box input::placeholder {
  color: #ffffffdb;
  /* change color */
  opacity: 1;
  /* fix fading in some browsers */
  font-size: 14px;
  /* change size */
}


.field-box textarea::placeholder {
  color: #fff;
  /* white */
  opacity: 1;
}

.field-box select option[hidden] {
  color: #fff;
}

.inner-section-image img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  object-fit: contain;
}

/* Extra control for very small screens */
@media (max-width: 480px) {
  .inner-section-image img {
    object-fit: contain;
    width: 100%;
    height: auto;
  }
}

.field-box select {
  color: #fff;
  /* white text when closed */
  background: transparent;
}

/* Placeholder (hidden option) styling */
.field-box select option[hidden] {
  color: #fff;
}

/* Dropdown options color */
.field-box select option {
  color: #000;
  /* black text in dropdown list */
}

.field-box input {
  color: #fff;
  /* typed text will be white */
}

.field-box textarea {
  color: #fff;
  /* typed text will be white */
}



/* ============= MODAL OVERLAY ============= */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  overflow: hidden;
  animation: fadeIn 0.3s ease-in;
}

.modal-overlay.show {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Modal Container */
.modal-content-custom {
  background: linear-gradient(135deg, rgb(3 0 73 / 95%) 0%, rgba(3, 0, 73, 0.3) 100%);
  border: 1px solid rgba(100, 150, 255, 0.2);
  border-radius: 8px;
  animation: slideUp 0.4s ease-out;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  width: 95%;
  max-width: 550px;
  margin: 20px auto;
  position: relative;
  z-index: 10000;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  backdrop-filter: blur(10px);
}

/* Modal Top Bar (Close Button Area) */
.modal-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  margin-left: -40px;
  margin-right: -40px;
  margin-top: -40px;
  padding: 15px 40px;
  border-bottom: 1px solid rgba(100, 150, 255, 0.15);
}

/* Modal Body Wrapper */
.modal-body-wrapper {
  padding: 0;
}

/* Close Button */
.modal-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.modal-close:hover {
  color: rgba(255, 255, 255, 0.9);
  transform: rotate(90deg);
}

/* Modal Header */
.modal-header-custom {
  text-align: center;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(100, 150, 255, 0.2);
}

.modal-header-custom h2 {
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 5px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.modal-header-custom p {
  color: #ffffff;
  font-size: 24px;
  letter-spacing: 0.3px;
  margin: 0;
  font-weight: 700;
}

/* Modal Form */
.modal-form {
  width: 100%;
}

/* Form Row */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row-full {
  grid-template-columns: 1fr;
}

.form-submit {
  margin-top: 5px;
  margin-bottom: 0;
}

/* Form Column */
.form-col {
  width: 100%;
}

/* Form Group */
.form-group {
  margin-bottom: 0;
  position: relative;
}

/* Form Input Container with Icon */
.form-input-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.form-input-icon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  background: linear-gradient(135deg, #1a2d5c 0%, #0f1f3f 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border-radius: 4px 0 0 4px;
  z-index: 2;
  border-right: 2px solid rgba(100, 150, 255, 0.3);
}

/* Form Inputs */
.form-input {
  width: 100%;
  padding: 13px 18px 14px 15px;
  background: rgba(30, 40, 80, 0.6);
  border: 1px solid rgba(100, 150, 255, 0.3);
  border-left: 4px solid #1a3a8f;
  color: #ffffff;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
  background: rgba(40, 60, 120, 0.8);
  border-color: rgba(100, 150, 255, 0.6);
  border-left: 4px solid #4169e1;
  box-shadow: 0 0 15px rgba(65, 105, 225, 0.3);
  color: #ffffff;
  outline: none;
  background-color: none !important;
}

/* Select Dropdown */
.form-select-custom {
  cursor: pointer;
  appearance: none;
  padding-right: 49px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  background-color: rgba(30, 40, 80, 0.6);
  padding-left: 15px;
  color: #ffffff;
}

.form-select-custom option {
  background: #1a2d5c;
  color: #ffffff;
  padding: 10px;
}

.form-select-custom:focus {
  background-color: rgba(40, 60, 120, 0.8);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
}

/* Textarea */
.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-size: 14px;
  padding: 14px 18px 14px 20px;
  font-family: inherit;
  color: #ffffff;
}

/* Submit Button */
.submit-btn {
  background: linear-gradient(135deg, #030049 0%, #0f2659 100%);
  color: white;
  border: 1px solid rgba(100, 150, 255, 0.3);
  padding: 16px 35px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(65, 105, 225, 0.3);
}

.submit-btn:hover {
  background: linear-gradient(135deg, #0f2659 0%, #0a1940 100%);
  box-shadow: 0 6px 30px rgba(65, 105, 225, 0.5);
  border-color: rgba(100, 150, 255, 0.6);
  transform: translateY(-2px);
  color: white;
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  background: rgba(100, 100, 100, 0.5);
  cursor: not-allowed;
  box-shadow: none;
  border-color: rgba(100, 100, 100, 0.3);
}

/* Info Text */
.modal-info {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-align: center;
  margin-top: 20px;
  line-height: 1.6;
}

.modal-info span {
  color: #4169e1;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 768px) {
  .modal-content-custom {
    width: 90%;
    margin: 20px auto;
    padding: 30px 25px;
  }

  .modal-top-bar {
    margin-left: -25px;
    margin-right: -25px;
    margin-top: -30px;
    padding: 15px 25px;
  }

  .form-input-wrapper {
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .modal-content-custom {
    width: 92%;
    margin: 15px auto;
    padding: 25px 20px;
  }

  .modal-top-bar {
    margin-left: -20px;
    margin-right: -20px;
    margin-top: -25px;
    padding: 12px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .modal-header-custom h2 {
    font-size: 22px;
  }

  .modal-header-custom p {
    font-size: 20px;
  }

  .modal-header-custom {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }

  .submit-btn {
    font-size: 14px;
    padding: 14px 25px;
    letter-spacing: 0.5px;
  }

  .form-input {
    font-size: 16px;
    padding: 12px 15px 12px 50px;
  }

  .form-input-icon {
    width: 45px;
    font-size: 16px;
  }

  .form-select-custom {
    padding-left: 50px;
  }

  .form-textarea {
    font-size: 16px;
    min-height: 100px;
    padding: 12px 15px 12px 50px;
  }
}

.form-submit {
  display: flex;
  justify-self: center;
}