:root {
    --brand-color: rgb(40, 75, 117);
    --accent-color: rgb(5, 73, 156);
    --light-bg: #f8f9fa;
    --highlight-bg: #e7f3ff;
    --text-light: #ffffff;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --radius: 15px;
    --transition: all 0.25s ease-in-out;

    /* Typography Variables */
    --font-body: "Montserrat",  sans-serif;
    --font-heading: "Lora",sans-serif; /* Premium & readable */
    --font-size-base: 14px;
    --font-size-h1: 38px;
    --font-size-h2: 32px;
    --font-size-h3: 24px;
    --font-size-h4: 20px;
    --font-size-h5: 18px;
    --font-size-h6: 16px;
    --line-height-base: 1.6;
}

/* Global Reset */
body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #333;
}
.rounded {
	border-radius:  var(--radius);
}
p {
    margin-bottom: 0;
    font-size: var(--font-size-base);
    color: #666666;
    line-height: 30px;
}

a {
    text-decoration: none !important;
}
a:focus,
a:visited {
    outline: none;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--brand-color);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }

a.viewmore-button {
  background-color: #481d76;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 30px;
  display: inline-block;
  transition: all 0.3s;
}
a.viewmore-button:hover {
  background-color: #ffd603;
  color: #000;
}

a.filled-button {
  background-color: #ffd603;
  color: #000;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 30px;
  display: inline-block;
  transition: all 0.3s;
}

a.filled-button:hover {
  background-color: #481d76;
  color: #fff;
}

a.border-button {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 30px;
  display: inline-block;
  transition: all 0.3s;
}

a.border-button:hover {
  background-color: #fff;
  color: #ffd603;
}
/* Header Style */
 /* ===== Generic Section Styling ===== */
.section {
  padding: 4rem 0; /* Vertical spacing */
  position: relative;
  background-color: var(--light-bg);
}

.section .section-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--brand-color);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section .section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 50%;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.section p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.5rem;
}

.section .btn {
  border-radius: 30px;
  padding: 0.7rem 1.6rem;
  font-weight: 600;
  transition: var(--transition);
}

.section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--shadow-medium);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section {
    padding: 3rem 1rem;
  }
  .section p {
    text-align: center;
  }
  .section .section-title {
    text-align: center;
  }
  .section .section-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
  }
}

.section-title {
  text-align: left;
  font-size: 2rem;
  margin-bottom:4px;
  color: var(--brand-color); 
  font-weight: bold;
}
	h3 {
	margin-bottom:3px;
	color: var(--brand-color); 
	font-weight: bold;
	}
.lead-box {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}
.lead-box h3 {
	font-size:1.35rem ;
	font-weight:600;
	}

/* Dark Theme Overrides */
body.dark-theme {
  background-color: #121212;
  color: #e0e0e0;
}

body.dark-theme .lead-box {
  background-color: #1e1e1e;
  color: #e0e0e0;
}

body.dark-theme footer {
  background-color: #0d0d0d;
  color: #ccc;
}
.bg-brand {
	background-color: var(--brand-color);
}
/* Responsive Typography */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
    padding: 30px 0 10px;
  }
	h3 { 
	 font-size: 1.15rem;; 
	font-weight: bold;
	}
  .hero-section {
    padding: 60px 20px;
  }

  .lead-box {
    padding: 20px;
  }
}
/* Footer Style */

footer {
  background-color: var(--brand-color);
  padding: 80px 0px;
  color: #fff;
}

footer h4 {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.25px;
  margin-bottom: 35px;
}
footer p {
  color: #fff;
}

footer ul.social-icons {
  margin-top: 25px;
}

footer ul.social-icons li {
  display: inline-block;
  margin-right: 5px;
}

footer ul.social-icons li:last-child {
  margin-right: 0px;
}

footer ul.social-icons li a {
  width: 34px;
  height: 34px;
  display: inline-block;
  line-height: 34px;
  text-align: center;
  background-color: #fff;
  color: #232323;
  border-radius: 50%;
  transition: all 0.3s;
}

footer ul.social-icons li a:hover {
  background-color: #ffd603;
}

footer ul.menu-list li {
  margin-bottom: 13px;
}

footer ul.menu-list li:last-child {
  margin-bottom: 0px;
}

footer ul.menu-list li a {
  font-size: 14px;
  color: #fff;
  transition: all 0.3s;
}

footer ul.menu-list li a:hover {
  color: #ffd603;
}

footer .contact-form input {
  border-radius: 20px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  padding: 0px 15px;
  color: #aaa !important;
  background-color: #01311c;
  font-size: 13px;
  text-transform: none;
  box-shadow: none;
  border: none;
  margin-bottom: 15px;
}

footer .contact-form input:focus {
  outline: none;
  box-shadow: none;
  border: none;
  background-color: #343434;
}

footer .contact-form textarea {
  border-radius: 20px;
  height: 120px;
  max-height: 200px;
  min-height: 120px;
  display: inline-block;
  padding: 15px;
  color: #aaa !important;
  background-color: #01311c;
  font-size: 13px;
  text-transform: none;
  box-shadow: none;
  border: none;
  margin-bottom: 15px;
}

footer .contact-form textarea:focus {
  outline: none;
  box-shadow: none;
  border: none;
  background-color: #343434;
}

footer .contact-form ::-webkit-input-placeholder {
  /* Edge */
  color: #aaa;
}
footer .contact-form :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #aaa;
}
footer .contact-form ::placeholder {
  color: #aaa;
}

footer .contact-form button.filled-button {
  background-color: transparent;
  color: #fff;
  background-color: #01311c;
  border: none;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 30px;
  display: inline-block;
  transition: all 0.3s;
  outline: none;
  box-shadow: none;
  text-shadow: none;
  cursor: pointer;
}

footer .contact-form button.filled-button:hover {
  background-color: #fff;
  color: #ffd603;
}

/* Sub-footer Style */

.sub-footer {
  background-color: var(--accent-color);
  text-align: center;
  padding: 25px 0px;
}

.sub-footer p {
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.sub-footer a {
  color: #fff;
}
/*Address Con*/
.address-con p {
  width: 100%;
  display: inline-block;
}
.address-con span {
  margin-left: 8px;
  font-size: 13px;
  float: left;
  width: 88%;
}
.address-con i {
  width: 34px;
  height: 34px;
  float: left;
  line-height: 34px;
  text-align: center;
  background-color: #fff;
  color: #232323;
  border-radius: 50%;
  transition: all 0.3s;
  font-size: 23px;
  margin-bottom: 5px;
}
/* Responsive Style */
@media (max-width: 768px) {
   footer {
    padding: 80px 0px 20px 0px;
  }
  footer .footer-item {
    border-bottom: 1px solid #343434;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  footer .last-item {
    border-bottom: none;
  }

}

/* ========================
   Service Page Styles
   ======================== */
.service-content {
    background-color: #fff;
    padding: 10px 8px;
}
/* Styling service-content lists */
.service-content ul {
  list-style: none; /* remove default bullets */
  margin: 1rem 0;
  padding: 0;
  display: grid;
  gap: 10px; /* spacing between list items */
}

.service-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #fff, var(--light-bg));
  border-radius: var(--radius);
  border: 1px solid rgba(53, 21, 61, 0.06);
  box-shadow: 0 2px 6px var(--shadow-light);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--brand-color);
  transition: var(--transition);
  line-height: 1.4;
}

/* Decorative checkmark icon before each list item */
.service-content ul li::before {
  content: "";
  flex: 0 0 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(255, 92, 0, 0.1);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF5C00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

/* Hover/tap interaction */
.service-content ul li:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-medium);
  border-color: rgba(53, 21, 61, 0.1);
}

/* Mobile adjustments */
@media (max-width: 576px) {
  .service-content ul li {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
}

 .service-content.service-image {
    max-height: 350px;
    object-fit: cover;
}

/* ========================
   Modal Styles
   ======================== */
.aihramodal {
    border-radius: var(--radius);
    border: none;
    box-shadow: 0 10px 30px rgba(53, 21, 61, 0.3);
    font-family: "Noto Serif", serif;
}

.aihramodal .modal-header {
    background-color: var(--brand-color);
    color: var(--text-light);
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
    padding: 1rem 1.5rem;
}

.aihramodal .modal-body {
    padding: 1.5rem;
    background: #faf7fb;
}

.aihramodal .form-control {
    border-radius: 16px;
    border: 1px solid #ccc;
    transition: var(--transition);
}

.aihramodal .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 92, 0, 0.25);
}

/* ========================
   Buttons
   ======================== */
.aihrabtn { 
    border: none;
    font-weight: bold;
	border:var(--accent-color)1px solid;
     font-size: 1rem;   
 	padding: 12px 30px;
  	border-radius: 30px;
    transition: var(--transition);
}

.aihrabtn:hover {
    background-color: #fff;
}
 
.view-all-btn {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.view-all-btn .aihrabtn {
  background-color: var(--brand-color);
  border: none;
  font-weight: bold;
  color: var(--text-light); 
  font-size: 1.05rem;  
  padding: 12px 30px;
  border-radius: 30px;
  transition: var(--transition);
}

.view-all-btn .aihrabtn:hover {
  background-color:  var(--accent-color);
}

.faq-section .section-title {
  color: var(--brand-color);
  font-weight: bold;
}

.faq-section .accordion-button {
  background-color: var(--light-bg);
  color: var(--brand-color);
  font-weight: 700;
  transition: var(--transition);
}

.faq-section .accordion-button:hover {
  background-color: var(--accent-color);
  color: var(--text-light);
}

.faq-section .accordion-body {
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

.faq-section .accordion-item {
  border: none;
  box-shadow: 0 2px 8px var(--shadow-light);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.assistance-section {
  background: var(--light-bg);
  border-radius: var(--radius);
  box-shadow: 0 6px 20px var(--shadow-light);
  border: 1px solid #00ccff33;
  transition: var(--transition);
}
.assistance-section:hover {
  box-shadow: 0 8px 25px var(--shadow-medium);
}

.assistance-section .section-title {
  font-weight: 700;
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: var(--brand-color);
}

.assistance-section .lead {
  color: var(--brand-color);
  font-size: 1.05rem;
}

.assistance-btn {
  border-radius: 50px;
  padding: 0.8rem 1.6rem;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.assistance-btn i {
  font-size: 1.2rem;
}

.assistance-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 12px var(--shadow-medium);
}

@media (max-width: 576px) {
  .assistance-section {
    padding: 1.5rem;
  }
  .assistance-btn {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }
}
.about-img {
  max-width: 100%;
  height: auto;
  transition: var(--transition);
}
.about-img:hover {
  transform: scale(1.03);
}

.section-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--brand-color);
}

.about-text {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

@media (max-width: 768px) {
  #about .section-title {
    text-align: center;
  }
  .about-text {
    text-align: center;
  }
}
/* Fun Facts */

.fun-facts {
  margin-top: 60px;
  background-image: url(../images/fun-facts-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 140px 0px;
  color: #fff;
}

.fun-facts span {
  text-transform: uppercase;
  font-size: 15px;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.fun-facts h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 35px;
  color:#FFFFFF;
}

.fun-facts em {
  font-style: normal;
  color: #ffd603;
}

.fun-facts p {
  color: #fff;
  margin-bottom: 40px;
}

.fun-facts .left-content {
  margin-right: 45px;
}

.count-area-content {
  text-align: center;
  background-color: rgba(250, 250, 250, 0.1);
  padding: 25px 30px 35px 30px;
  margin: 15px 0px;
}

.count-digit {
  margin: 5px 0px;
  color: #ffd603;
  font-weight: 700;
  font-size: 36px;
}
.count-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}
#preloader {
  overflow: hidden;
  background: #00854a;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 9999999;
  color: #fff;
}

#preloader .jumper {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  position: absolute;
  margin: auto;
  width: 50px;
  height: 50px;
}

#preloader .jumper > div {
  background-color: #fff;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  opacity: 0;
  width: 50px;
  height: 50px;
  -webkit-animation: jumper 1s 0s linear infinite;
  animation: jumper 1s 0s linear infinite;
}

#preloader .jumper > div:nth-child(2) {
  -webkit-animation-delay: 0.33333s;
  animation-delay: 0.33333s;
}

#preloader .jumper > div:nth-child(3) {
  -webkit-animation-delay: 0.66666s;
  animation-delay: 0.66666s;
}

@-webkit-keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

#preloader {display:none !important;}