/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
p{
  font-family: "Open Sans", sans-serif;
}

h1,h2,h3{
      font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}

body {
  color: #333;
  line-height: 1.6;
}



/* Topbar Styles */
.topbar {
  background-color: #fff;
  color: #000;
  padding: 8px 0;
  font-size: 14px;
}


.topbar-icon {
    width: 18px;
    height: 18px;
    margin-right: 5px;
    object-fit: contain;
    cursor: pointer;
}
.topbar-right span a {
    text-decoration: none !important;
}

.social-icons a {
  color: #ecf0f1;
  margin-left: 12px;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #3498db;
}

/* Header Styles */
.header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-logo {
    height: 60px;        
    width: auto;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #2c3e50;
  padding: 10px 15px !important;
  transition: all 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #3366cc;
}

.navbar-nav .nav-link i {
  margin-right: 5px;
}

.chat-btn {
  background-color: #3366cc;
  color: white !important;
  /* border-radius: 5px; */
  padding: 8px 15px !important;
}

.chat-btn:hover {
  background-color: #2980b9;
}

/* Dropdown and Subdropdown Styles */
.dropdown-menu {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 5px 5px;
}

.dropdown-item {
  padding: 10px 20px;
  transition: all 0.3s;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #3498db;
}

/* Subdropdown styles */
.dropdown-submenu {
  position: relative;
}

.subdropdown-menu {
  position: absolute;
  left: 100%;
  top: 0;
  display: none;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  border-radius: 0 5px 5px 5px;
  z-index: 1001;
}

.dropdown-submenu:hover .subdropdown-menu {
  display: block;
}

/* Adjust subdropdown for mobile */
@media (max-width: 991.98px) {
  .subdropdown-menu {
    position: static;
    box-shadow: none;
    border-left: 3px solid #3366cc;
    margin-left: 20px;
    display: none;
  }

  .dropdown-submenu:hover .subdropdown-menu {
    display: block;
  }
}

.hero-banner {
  background: url("/img/banner.jpg") center/cover no-repeat;
  padding: 80px 0;
  position: relative;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(255, 255, 255, 0.85); */
}

.hero-banner .container {
  position: relative;
  z-index: 2;
}

/* LEFT CONTENT */
.small-title {
  color: #3366cc;
  font-size: 20px;
  margin-bottom: 15px;
}

.banner-content h1 {
  font-size: 31px;
  font-weight: 800;
  line-height: 1.2;
}

.banner-content h1 span {
  color: #3366cc;
}

.desc {
  margin: 20px 0 30px;
  font-size: 18px;
  color: #333333;
}

.banner-buttons .btn {
  padding: 12px 30px;
  margin-right: 10px;
  font-weight: 600;
  border-radius: 0px;
}

/* FORM BOX */
.eligibility-form {
  background: #ffffff66;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

 .form-title {
  text-align: center;
  font-weight: 700;
  font-size: 30px;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  margin-bottom: 25px;
}

@media (max-width: 991px) {
  .form-title {
    font-size: 24px;
  }
}

.form-title span  {
  color: #3366cc;
}

/* FIELD BOX */
.field-box {
  display: flex;
  align-items: center;
  border: 1px solid #3366cc;
  border-radius: 4px;
  overflow: hidden;
  background: #dedddb17;
}

/* ICON BOX */
.icon-box {
  width: 45px;
  min-width: 45px;
  height: 50px;
  background: #3366cc;
  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: #dedddb17;
  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: #dedddb17;
  font-size: 14px;
}

/* SUBMIT BUTTON */
.btn-submit {
  width: 100%;
  background: #3366cc;
  color: #fff;
  padding: 14px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #244ea2;
}


/* RESPONSIVE */
@media (max-width: 991px) {
  .banner-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .banner-content h1 {
    font-size: 30px;
  }
}


.wiki-cta {
  padding: 75px 0;
  background: #fff;
}


.img-fluid {
    max-width: 90%;
    height: auto;
}

.cta-content .cta-content-heading {
  font-size: 35px;
  color: #3366cc;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.2;
}


@media (max-width: 912px) {
  .cta-content .cta-content-heading {
  font-size: 30px;
  margin-top: 14px;
 
}
}
@media (max-width: 576px) {
  .cta-content .cta-content-heading {
  font-size: 24px;
  margin-top: 10px;
}
}


.cta-content h2 span {
  color: #3366cc;
}

.cta-content p {
  font-size: 18px;
  line-height: 1.5;
  color: #333333;
  margin-bottom: 25px;
}

.wiki-consultants {
  padding-bottom: 60px;
  background-color: #ffffff;
  text-align: center;
}

.wiki-consultants-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #2c3e50;
}

/* Card */
.consultant-profile {
  background-color: #f5f5f5;
  padding: 40px 20px 30px;
  border-radius: 6px;
  width: 100%;
  min-height: 420px;
  transition: all 0.3s ease;
}

/* Hover */
.consultant-profile:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.consultant-name{
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 28px;
  font-weight: 600;
}


/* Image */
.consultant-image {
  width: 280px;
  height: 280px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  padding: 2px;
}

@media (max-width: 1024px) {
  .consultant-image {
  width: 100%;
  height: auto;
}
}

.consultant-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}



/* Main Hero Section */
.wp-hero-section {
  position: relative;
  padding: 35px 0;
  background: url("/img/divider-banner.png") 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;
}

@media (max-width: 991px) {
  .wp-hero-tagline {
    font-size: 22px;
  }
}

/* Heading */
.wp-hero-heading {
  font-size: 39px;
  font-weight: bold;
  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: 0px;
}

.wp-btn-secondary {
  border: 2px solid #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .wp-hero-heading {
    font-size: 20px;
  }

  .wp-hero-buttons .btn {
    margin-bottom: 10px;
  }
}


/* Section */
.wp-services {
  padding: 50px 0;
  background: #ffffff;
}

/* Headings */
.wp-services-subtitle {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}

.wp-services-title {
  font-size: 40px;
  font-weight: 700;
  color: #000;
}

/* Service Box */
.wp-service-box {
  background: #f9f9f9;
  padding: 21px 10px;
  text-align: center;
  height: 100%;
  border-radius: 6px;
  transition: all 0.3s ease;
}

 .wp-service-box .service-title{
  font-size: 24px;
  color: #101418;
  font-weight: bold;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}

.wp-service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Icon Circle */
.wp-icon {
  width: 65px;
  height: 65px;
  /* background: #1f5bd8; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.wp-icon img {
  width: 75px;
}

/* Box Content */
.wp-service-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.wp-service-box p {
  font-size: 14px;
  color: #202020;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .wp-services-title {
    font-size: 24px;
  }
}


.testimonials-section {
  padding: 40px 0;
  background: #eaf2ff;
}

.section-title {
  text-align: center;
  font-size: 39px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f2b4d;
}

@media (max-width: 991px) {
  .section-title {
    font-size: 20px;
  }
}

.testimonial-card {
  padding: 20px;
  height: 100%;
}

.testimonial-content {
  background: #ffffff;
  padding: 35px 30px;
  position: relative;
  min-height: 240px;
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.12);
}

/* Bubble Tail */
.testimonial-content::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 60px;
  border-left: 3px solid transparent;
  border-right: 37px solid transparent;
  border-top: 40px solid #ffffff;
}

/* Text Flow */
.testimonial-text {
  display: inline;
  position: relative;
}

.quote-img{
    width: 38px;
    height: auto;
    margin-top: -20px;
    display: inline-block !important;
    vertical-align: middle;
    margin-right: 0px;
}


.stars {
  color: #f4c150;
  font-size: 22px;
  margin-right: 8px;
  letter-spacing: 2px;
}

.testimonial-message {
  font-size: 16px;
  color: #202020;
  line-height: 1.7;
}

/* User */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 35px;
  padding-left: 10px;
}

.testimonial-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-name {
  margin: 0;
  font-size: 15px;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-weight: 600;
  color: #1f2937;
}

.user-date {
  font-size: 13px;
  color: #202020;
}


.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;
}


@media (max-width: 991px) {
  .main-heading {
    font-size: 20px;
  }
}

.wiki-section .para-heading {
  font-size: 26px;
  font-weight: 700;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, 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: "Palatino Linotype", "Book Antiqua", Palatino, 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: #3366cc;
}

@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;
  }
}




/* FAQ SECTION BACKGROUND */
.faq-section {
  position: relative;
  padding: 50px 0;
  background: url("/img/faq-background.jpg") center/cover no-repeat;
}



/* TITLE */
.faq-title {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}

/* 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;
  background: #fff;
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.accordion-button:hover {
  background: #f0f4ff;
  color: #3366cc;
}

/* OPEN STATE */
.accordion-button:not(.collapsed) {
  background: #3366cc;
  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;
  }
}


/* ================= BLOG SECTION ================= */
.blog-section {
  padding: 40px 0;
}


.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}


.blog-title {
  font-size: 32px;
  font-weight: 600;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;  
}

/* CARD */
.blog-card {
  background: #fff;
  /* border-radius: 6px; */
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.blog-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* TEXT AREA FLEX */
.blog-flex {
  display: flex;
  gap: 5px;
  align-items: flex-start;
  padding: 0px;
}

/* DATE INLINE */
.blog-date-inline {
  background: #3366cc;
  color: #fff;
  min-width: 55px;
  text-align: center;
  /* border-radius: 4px; */
  padding: 13px 0;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* ✅ vertically center */
  align-items: center;
  /* ✅ horizontally center */
}




.blog-date-inline span {
  font-size: 11px;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  text-transform: uppercase;
}

/* TITLE */
.blog-text p {
  font-size: 14px;
  font-weight: 600;
  padding-left: 5px;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  margin: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* MOBILE */
@media (max-width: 991px) {
  .blog-card {
    margin-bottom: 25px;
  }
}

/* ================= PROMO STRIP ================= */
.promo-strip {
  position: relative;
  padding: 40px 0;
  background: url("/img/legacy-lives-forevers.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: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-weight: 700;
  line-height: 1.4;
}

.promo-strip-btn {
  font-weight: 600;
  padding: 10px 25px;
  font-size: 18px;
  border-radius: 0px;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {
  .promo-strip-title {
    font-size: 20px;
  }
}

/* ================= FOOTER ================= */
.footer-section {
  background: #000;
  color: #ccc;
  padding: 60px 0 20px;
  font-size: 14px;
}

.footer-logo {
    max-width: 220px;   
    margin-bottom: 10px;
}

.footer-brand p {
  line-height: 1.7;
  color: #bfbfbf;
}

/* TITLES */
.footer-title {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* LISTS */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li{
  position: relative;
  display: flex;
  /* 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;
}

.footer-link{
  color: #fff !important;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1.8;
}


/* ARROW */
.footer-list li::before{
  content: "▸";
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}

/* HOVER EFFECT (TEXT + ARROW) */
.footer-list li:hover .footer-link,
.footer-contact li:hover .footer-link{
  color: #3366cc !important;
  transform: translateX(6px);
}

.footer-list li:hover::before,
.footer-contact li:hover::before {
  color: #3366cc;
}

/* Footer Contact List */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    font-size: 14px;
    color: #bfbfbf;
    line-height: 2;
    display: flex;
    align-items: center;
    gap: 8px; /* spacing between icon and text */
}

/* Optional: icon color */
.footer-contact li i {
    color: #ffffff;
    min-width: 20px; /* align icons vertically */
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 15px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #aaa;
}
ul.footer-list.second-list {
    margin-top: 14%;
}

/* MOBILE */
@media (max-width: 991px) {
  .footer-section .col-lg-3 {
    /* margin-bottom: 30px; */
  }
}

/* .footer-section {
  background: url("footer-bg.jpg") center/cover no-repeat;
} */


/* Mobile devices (phones, 768px and down) */
@media (max-width: 768px) {
  .navbar-logo {
    height: 45px !important; /* original 60px se chhota */
    width: auto;
  }
  
  .navbar-brand img {
    height: 45px !important;
  }
}

/* Small mobile devices (phones in portrait, 480px and down) */
@media (max-width: 480px) {
  .navbar-logo {
    height: 35px !important; /* aur bhi chhota */
    width: auto;
  }
  
  .navbar-brand img {
    height: 35px !important;
  }
}

/* Extra small devices (320px and down) */
@media (max-width: 320px) {
  .navbar-logo {
    height: 30px !important;
    width: auto;
  }
  
  .navbar-brand img {
    height: 30px !important;
  }
}


.inner-section-image {
    width: 100%;
    margin-top: 42px !important;
}

.inner-section-image img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: contain;
    margin-top: 22px;
}

/* Extra control for very small screens */
@media (max-width: 480px) {
    .inner-section-image img {
        object-fit: contain;
        width: 100%;
        height: auto;
    }
}


/* ============= 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.6);
    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: #ffffff;
    border: none;
    border-radius: 8px;
    animation: slideUp 0.4s ease-out;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    width: 95%;
    max-width: 550px;
    margin: 20px auto;
    position: relative;
    z-index: 10000;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
}

/* 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 #f0f0f0;
}

/* Modal Body Wrapper */
.modal-body-wrapper {
    padding: 0;
}

/* Close Button */
.modal-close {
    background: none;
    border: none;
    color: #999;
    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: #1e5eb8;
    transform: rotate(90deg);
}

/* Modal Header */
.modal-header-custom {
    text-align: center;
    padding-bottom: 0px;
    margin-bottom: 30px;
	line-height: 33px;
}

.modal-header-custom h2 {
    color: #1e5eb8;
    font-size: 26px;
    margin-bottom: 5px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.modal-header-custom p {
    color: #1e5eb8;
    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, #1e5eb8 0%, #1643a8 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 4px 0 0 4px;
    z-index: 2;
}

/* Form Inputs */
.form-input {
    width: 100%;
    padding: 14px 18px 14px 15px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-left: 4px solid #1e5eb8;
    color: #333;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input::placeholder {
    color: #999;
}

.form-input:focus {
    background: #fff;
    border-color: #1e5eb8;
    border-left: 4px solid #1e5eb8;
    box-shadow: 0 0 0 3px rgba(30, 94, 184, 0.1);
    color: #333;
    outline: none;
}

/* Select Dropdown */
.form-select-custom {
    cursor: pointer;
    appearance: none;
    padding-right: 50px;
    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='%231e5eb8' 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: #f8f9fa;
    padding-left: 15px;
}

.form-select-custom option {
    background: #fff;
    color: #333;
    padding: 10px;
}

.form-select-custom:focus {
    background-color: #fff;
    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='%231e5eb8' 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 15px;
    font-family: inherit;
	color: #8b8b8b;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #1e5eb8 0%, #1643a8 100%);
    color: white;
    border: none;
    padding: 13px 45px;
    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 15px rgba(30, 94, 184, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #1643a8 0%, #12327a 100%);
    box-shadow: 0 6px 25px rgba(30, 94, 184, 0.4);
    transform: translateY(-2px);
    color: white;
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

/* Info Text */
.modal-info {
    color: #999;
    font-size: 12px;
    text-align: center;
    margin-top: 20px;
    line-height: 1.6;
}

.modal-info span {
    color: #1e5eb8;
}

/* ============= 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;
} 



@media only screen and (min-width: 100px) and (max-width: 1199px) {
.navbar-logo {
    height: 50px;
    
}


.cta-content .cta-content-heading {
    font-size: 28px;
   
}

.wiki-consultants-title {
    font-size: 33px;
}
    
    .wp-hero-heading {
    font-size: 33px;

}

.section-title {

    font-size: 33px;
}

ul.footer-list.second-list {
    margin-top: 18%;
}

}


@media only screen and (min-width: 100px) and (max-width: 991px) {

.wiki-consultants-title {
        font-size: 28px;
    }

        .wp-hero-heading {
        font-size: 28px;
    }

    .wp-services-title {
    font-size: 28px;
   
    
}
    .section-title {
        font-size: 28px;
    }

        ul.footer-list.second-list {
        margin-top: 0%;
    }
  
}



@media only screen and (min-width: 100px) and (max-width: 540px) {

      .consultant-image {
        width: 80%;
      
    }

        .wp-hero-heading {
        font-size: 24px;
    }

}




@media only screen and (min-width: 100px) and (max-width: 430px) {

  .hero-banner {
    padding: 40px 0;
   }
   
       .banner-content h1 {
        font-size: 26px;
    }

        .form-title {
        font-size: 22px;
    }

        .cta-content .cta-content-heading {
        font-size: 24px;
        margin-top: 20px;
    }

        .wiki-consultants-title {
        font-size: 26px;
    }

        .wp-hero-heading {
        font-size: 22px;
    }

        .wp-services-title {
        font-size: 26px;
    }

        .section-title {
        font-size: 26px;
    }


    .blog-title {
    font-size: 26px;
   
}


.footer-title {

   margin-top: 15px;
}
}