
@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #35211f; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #200f0d; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f95e4d; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #f95e4d; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #35211f; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f95e4d; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #faf9f6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #031013;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: rgba(0, 0, 0, 0.26);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.85);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/* ============ FOOTER BASE STYLES ============ */
.footer {
  color: var(--default-color);
  background: var(--background-color);
  font-size: 14px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

/* ============ FOOTER CONTENT ============ */
.footer .footer-content .logo {
  line-height: 1;
}

.footer .footer-content .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

/* Paragraph styling */
.footer .footer-content p {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  transition: color 0.3s ease;
}
.footer .footer-content p:hover {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
}

/* Animation & Hover Motion */
.footer-content {
  transition: all 0.4s ease;
}
.footer-content:hover {
  transform: translateY(-5px);
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============ NEWSLETTER FORM ============ */
.footer .newsletter-form {
  margin-top: 30px;
}

.footer .newsletter-form h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.footer .newsletter-form .input-group {
  position: relative;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

/* Email Input */
.footer .newsletter-form input[type=email] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}
.footer .newsletter-form input[type=email]:focus {
  outline: none;
  box-shadow: none;
}
.footer .newsletter-form input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

/* Subscribe Button */
.footer .newsletter-form .btn-subscribe {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.3s;
}
.footer .newsletter-form .btn-subscribe:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: scale(1.05);
}
.footer .newsletter-form .btn-subscribe i {
  font-size: 16px;
}

/* Feedback Messages */
.footer .newsletter-form .loading,
.footer .newsletter-form .error-message,
.footer .newsletter-form .sent-message {
  font-size: 13px;
  margin-top: 8px;
}

/* ============ FOOTER LINKS ============ */
.footer h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  font-family: var(--heading-font);
}
.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.footer .footer-links ul li:hover {
  transform: translateX(5px);
}
.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.3s;
}
.footer .footer-links ul a:hover {
  color: var(--accent-color);
}
.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 12px;
  color: var(--accent-color);
}

/* ============ CONTACT SECTION ============ */
.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.footer .footer-contact .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}
.footer .footer-contact .contact-item .contact-icon i {
  color: var(--accent-color);
  font-size: 16px;
}
.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.5;
}

/* ============ SOCIAL LINKS ============ */
.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}
.footer .social-links a {
  width: 42px;
  height: 42px;
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}
.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}
.footer .social-links a i {
  font-size: 16px;
}

/* ============ FOOTER BOTTOM ============ */
.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}
.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.footer-bottom-links{
  display: flex;
  justify-content: center; /* centers them horizontally */
  gap: 20px; /* adjust space as needed */
}

/* RESPONSIVE STYLES */
@media (max-width: 991px) {
  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }
  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
  .footer .footer-bottom .copyright p,
  .footer .footer-bottom,
  .footer .footer-bottom .credits {
    text-align: center;
    margin-bottom: 10px;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Travel Hero Section
--------------------------------------------------------------*/
.travel-hero {
  background: linear-gradient(color-mix(in srgb, var(--background-color), transparent 30%), color-mix(in srgb, var(--background-color), transparent 30%)), url("../img/ruralvillage.jpg") center center no-repeat;
  background-size: cover;
  padding: 120px 0;
  min-height: 80vh;
  display: grid;
  place-content: center;
}

.travel-hero .content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.travel-hero .content .lead {
  font-size: 1.25rem;
  max-width: 1200px;
}

.travel-hero .btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.travel-hero .btn.btn-primary {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
}

.travel-hero .btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.travel-hero .btn.btn-outline-light {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.travel-hero .btn.btn-outline-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.travel-hero .booking-form {
  background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.travel-hero .booking-form label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.travel-hero .booking-form .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 12px 15px;
  height: auto;
  background-color: transparent;
  color: var(--default-color);
}

.travel-hero .booking-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.travel-hero .booking-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.travel-hero .booking-form .btn-accent {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px;
  font-weight: 600;
  border-radius: 8px;
}

.travel-hero .booking-form .btn-accent:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .travel-hero {
    padding: 80px 0;
  }

  .travel-hero .content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .travel-hero .content {
    text-align: center;
  }

  .travel-hero .content h1 {
    font-size: 2rem;
  }

  .travel-hero .content .lead {
    font-size: 1rem;
  }

  .travel-hero .d-flex {
    justify-content: center !important;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 5%) 0%, color-mix(in srgb, var(--accent-color), transparent 5%) 100%);
  position: relative;
  overflow: hidden;
}

.call-to-action::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("../img/travel/misc-5.webp") center/cover no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.call-to-action .container {
  position: relative;
  z-index: 1;
}

.call-to-action h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .call-to-action h2 {
    font-size: 2.2rem;
  }
}

.call-to-action p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  line-height: 1.6;
}

.call-to-action .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

@media (max-width: 576px) {
  .call-to-action .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.call-to-action .cta-buttons .btn-primary,
.call-to-action .cta-buttons .btn-secondary {
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  display: inline-block;
}

.call-to-action .cta-buttons .btn-primary {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border-color: var(--contrast-color);
}

.call-to-action .cta-buttons .btn-primary:hover {
  background-color: transparent;
  color: var(--contrast-color);
  border-color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 70%);
}

.call-to-action .cta-buttons .btn-secondary {
  background-color: transparent;
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.call-to-action .cta-buttons .btn-secondary:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 70%);
}

.call-to-action .feature-item {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 90%);
  backdrop-filter: blur(10px);
  padding: 2rem 1.5rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
}

.call-to-action .feature-item:hover {
  transform: translateY(-10px);
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 80%);
}

.call-to-action .feature-item .icon {
  width: 70px;
  height: 70px;
  background-color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.call-to-action .feature-item .icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.call-to-action .feature-item h4 {
  color: var(--contrast-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.call-to-action .feature-item p {
  color: color-mix(in srgb, var(--contrast-color), transparent 25%);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.call-to-action .stats-section {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 90%);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem 2rem;
  margin-top: 3rem;
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
}

@media (max-width: 768px) {
  .call-to-action .stats-section {
    padding: 2rem 1rem;
  }
}

.call-to-action .stat-item {
  padding: 1rem 0;
}

.call-to-action .stat-item .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .call-to-action .stat-item .stat-number {
    font-size: 2rem;
  }
}

.call-to-action .stat-item .stat-label {
  display: block;
  font-size: 1rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 25%);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .call-to-action .feature-item {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .call-to-action {
    padding: 80px 0;
  }

  .call-to-action .stats-section {
    margin-top: 2rem;
  }
}

/*--------------------------------------------------------------
# About Section                   NEW 13112025
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: 300;
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .about .content h2 {
    font-size: 2rem;
  }
}

.about .content .lead {
  font-size: 1.125rem;
  font-weight: 300;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
}

.about .content p {
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.about .stat-item {
  padding: 1.5rem 0;
}

.about .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.about .stat-item .stat-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about .btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  background: none;
  border: none;
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about .btn-learn-more span {
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.3s ease;
}

.about .btn-learn-more i {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}

.about .btn-learn-more:hover {
  color: var(--accent-color);
}

.about .btn-learn-more:hover span {
  border-bottom-color: var(--accent-color);
}

.about .btn-learn-more:hover i {
  transform: translateX(4px);
}

.about .image-stack {
  position: relative;
}

.about .image-stack .image-main {
  position: relative;
  z-index: 1;
}

.about .image-stack .image-main img {
  border-radius: 8px;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .image-stack .image-overlay {
  position: absolute;
  bottom: -40px;
  right: -40px;
  z-index: 2;
  max-width: 200px;
}

@media (max-width: 768px) {
  .about .image-stack .image-overlay {
    bottom: -20px;
    right: -20px;
    max-width: 150px;
  }
}

.about .image-stack .image-overlay img {
  border-radius: 8px;
  border: 4px solid var(--background-color);
  box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .feature-item {
  padding: 2.5rem 1.5rem;
  transition: transform 0.3s ease;
}

.about .feature-item:hover {
  transform: translateY(-5px);
}

.about .feature-item .feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.about .feature-item .feature-icon i {
  font-size: 2rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.about .feature-item h5 {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.about .feature-item p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.about .feature-item:hover .feature-icon {
  background: var(--accent-color);
  transform: scale(1.05);
}

.about .feature-item:hover .feature-icon i {
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .about {
    padding: 40px 0;
  }

  .about .image-stack {
    margin-top: 3rem;
  }

  .about .stat-item {
    padding: 1rem 0;
  }

  .about .stat-item .stat-number {
    font-size: 2rem;
  }
}

/* only apply initial hidden state when AOS has initialized (aos-init) */
.aos-init[data-aos="fade-right"] {
  transform: translateX(-30px);
  opacity: 0;
  transition: all 0.8s ease;
}
.aos-init[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
  opacity: 1;
}

.aos-init[data-aos="fade-left"] {
  transform: translateX(30px);
  opacity: 0;
  transition: all 0.8s ease;
}
.aos-init[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
  opacity: 1;
}

.aos-init[data-aos="fade-up"] {
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.8s ease;
}
.aos-init[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

/* Hover zoom for feature icons (works without JS) */
.about .feature-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about .feature-item:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
}

/*--------------------------------------------------------------
# Gallery Slider Section   NEW 13112025
--------------------------------------------------------------*/
.gallery-slider {
  overflow: hidden;
  background: linear-gradient(to bottom, #f9fafb, #eef3f8);
}

.gallery-slider .gallery-container {
  padding: 20px 0 40px;
  position: relative;
}

.gallery-slider .swiper-wrapper {
  align-items: center;
  padding: 30px 0;
}

.gallery-slider .gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform: perspective(800px) rotateY(0deg);
  transition: all 0.5s ease;
}

.gallery-slider .gallery-item:hover {
  transform: perspective(800px) rotateY(5deg) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.gallery-slider .gallery-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.8s ease;
  transform-origin: center;
}

.gallery-slider .gallery-img:hover img {
  transform: scale(1.15);
}

.gallery-slider .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-slider .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-slider .gallery-caption {
  color: #fff;
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-top: 2px solid var(--accent-color);
  border-radius: 0 0 15px 15px;
}

.gallery-slider .gallery-caption h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 600;
  color: #e75353;
}

.gallery-slider .gallery-caption p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.85;
}

.gallery-slider .swiper-pagination-bullet {
  background: transparent;
  border: 2px solid var(--accent-color);
  opacity: 0.7;
  transition: 0.3s;
}

.gallery-slider .swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
  transform: scale(1.3);
}

.gallery-slider .swiper-button-next,
.gallery-slider .swiper-button-prev {
  color: var(--accent-color);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  width: 45px;
  height: 45px;
  transition: 0.3s;
}

.gallery-slider .swiper-button-next:hover,
.gallery-slider .swiper-button-prev:hover {
  background: var(--accent-color);
  color: #fff;
  transform: scale(1.1);
}

.gallery-slider:hover .swiper-button-next,
.gallery-slider:hover .swiper-button-prev {
  opacity: 1;
}

@media (max-width: 991px) {
  .gallery-slider .swiper-button-next,
  .gallery-slider .swiper-button-prev {
    display: none;
  }
}

/*--------------------------------------------------------------
# Gallery Section NEW 13112025
--------------------------------------------------------------*/
.gallery {
  padding: 70px 0;
  background: linear-gradient(to bottom, #f9fafb, #eef4f9);
}

.gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}

@media (min-width: 576px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
  }
}

.gallery .gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: perspective(800px) rotateY(0deg) translateY(0);
  transition: all 0.5s ease;
}

.gallery .gallery-item.featured {
  grid-row: span 2;
}

@media (min-width: 768px) {
  .gallery .gallery-item.featured {
    grid-column: span 2;
  }
}

.gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.gallery .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transition: opacity 0.5s ease;
}

.gallery .caption {
  color: #fff;
  text-align: center;
  padding: 20px;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.gallery .caption h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #e75353;
}

.gallery .caption p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin: 0;
}

.gallery .gallery-item:hover {
  transform: perspective(800px) rotateY(5deg) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.gallery .gallery-item:hover img {
  transform: scale(1.15);
}

.gallery .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery .gallery-item:hover .caption {
  transform: translateY(0);
}

.gallery .btn-view-more {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent-color), #ff6969);
  color: var(--contrast-color);
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.gallery .btn-view-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.gallery .btn-view-more:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

.gallery .btn-view-more:hover i {
  transform: translateX(6px);
}

/*--------------------------------------------------------------
# Team Hero Section          NEW 13112025
--------------------------------------------------------------*/
/* Team Section Styling */
.team {
  padding: 80px 0;
  background: #f8f9fa;
}

.team .section-title h2 {
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 10px;
}

.team .section-title p {
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.team .member {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-align: center;
}

.team .member:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.team .member-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team .member-info {
  padding: 20px;
}

.team .member-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #1d3b68;
}

.team .member-info span {
  font-size: 15px;
  display: block;
  color: #888;
  margin-bottom: 10px;
}

.team .member-info p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .team .member-img img {
    height: 250px;
  }
}

@media (max-width: 767px) {
  .team .member-info h4 {
    font-size: 17px;
  }
  .team .member-info p {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .team {
    padding: 50px 0;
  }
  .team .member {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Team Post Section            NEW 13112025
--------------------------------------------------------------*/
/* ======= Village Overview Section CSS ======= */
.village-overview {
  padding: 60px 0;
  background-color: #f9fafc;
}

.village-overview .section-title h2 {
  font-weight: 700;
  color: #eb3d22;
}

.village-overview .description-title {
  font-weight: 600;
  color: #ee3423;
}

.village-overview .village-details h3 {
  font-weight: 600;
  color: #004080;
  margin-bottom: 15px;
}

.village-overview ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.village-overview ul i {
  margin-right: 8px;
}

.dev-card {
  background: #fff;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.dev-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
}

.dev-card h5 {
  color: #cf1313;
  font-weight: 600;
  margin-bottom: 10px;
}

.dev-card p {
  font-size: 15px;
  color: #444;
}

.village-vision h4 {
  color: #d60f0f;
  font-weight: 700;
}

.village-vision p {
  font-style: italic;
  color: #333;
}

/* ======= Responsive Design ======= */
@media (max-width: 768px) {
  .village-overview .village-details ul li {
    font-size: 15px;
  }

  .village-overview img {
    width: 100%;
    border-radius: 10px;
  }

  .dev-card {
    margin-bottom: 20px;
  }
}
/*--------------------------------------------------------------
# Contact Section           NEW 13112025
--------------------------------------------------------------*/
.contact .container {
  max-width: 1280px;
}

.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}

.contact .contact-info-panel {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 40%));
  color: var(--contrast-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-panel .contact-info-header {
  margin-bottom: 30px;
}

.contact .contact-info-panel .contact-info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .contact-info-panel .contact-info-header p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

.contact .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .info-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.contact .info-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact .info-card .icon-container {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .info-card .icon-container i {
  font-size: 20px;
  color: var(--contrast-color);
}

.contact .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--contrast-color);
}

.contact .info-card .card-content p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.8;
}

.contact .social-links-panel {
  margin-top: 35px;
}

.contact .social-links-panel h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .social-links-panel .social-icons {
  display: flex;
  gap: 12px;
}

.contact .social-links-panel .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--contrast-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact .social-links-panel .social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.contact .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .map-container {
  width: 100%;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact .form-container {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.contact .form-container h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(120deg, var(--heading-color), color-mix(in srgb, var(--heading-color), var(--accent-color) 30%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -text-fill-color: transparent;
}

.contact .form-container p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 25px;
}

.contact .form-container .form-floating {
  margin-bottom: 20px;
}

.contact .form-container .form-floating .form-control {
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 24px 20px 8px 20px;
  height: calc(3.5rem + 3px);
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .form-container .form-floating .form-control:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  background-color: var(--surface-color);
}

.contact .form-container .form-floating .form-control::placeholder {
  color: transparent;
}

.contact .form-container .form-floating label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 1rem 1.25rem 2.5rem 1.25rem;
}

.contact .form-container .form-floating label::after {
  background-color: transparent;
}

.contact .form-container .btn-submit {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 30%));
  color: var(--contrast-color);
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .form-container .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .form-container .btn-submit i {
  transition: transform 0.3s ease;
}

.contact .form-container .btn-submit:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .contact .contact-info-panel {
    padding: 30px 25px;
  }

  .contact .form-container {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .contact .social-links-panel .social-icons {
    flex-wrap: wrap;
  }
}

/*--------------------------------------------------------------
# Starter Section Section New 13112025
--------------------------------------------------------------*/
.bookbtn{
  background-color:#b22222;
  color:#fff; 
}

/*-------- Why Us Section ----------------*/
/* -----------------------------------
   SECTION BASE STYLING
----------------------------------- */
#about-us h3,
#about-us h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #b30000;
}

.section-badge,
.badge.text-bg-danger {
  font-weight: 600;
  border-radius: 30px;
  padding: 6px 16px;
  background-color: #dc3545 !important;
  color: #fff !important;
  box-shadow: 0 2px 6px rgba(220, 53, 69, 0.2);
}

/* -----------------------------------
   FEATURE BOX STYLING (Small Info Cards)
----------------------------------- */
#about-us .feature-box,
.focus-box {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #dc3545;
}

#about-us .feature-box:hover,
.focus-box:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.2);
}

.focus-box i,
#about-us .feature-box i {
  transition: all 0.3s ease;
}

.focus-box:hover i,
#about-us .feature-box:hover i {
  transform: rotate(10deg) scale(1.1);
}

/* -----------------------------------
   ABOUT CARD STYLING
----------------------------------- */
.about-card {
  position: relative;
  background: #fff;
  border-radius: 15px;
  border-left: 5px solid #dc3545;
  padding: 30px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(220, 53, 69, 0.15);
}

/* About Header & Paragraphs */
.about-card .about-header h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #b30000;
}

.about-card p {
  line-height: 1.8;
  font-size: 16px;
  color: #444;
  transition: color 0.3s ease;
}

.about-card p:hover {
  color: #8c0a0a;
}

/* -----------------------------------
   LIST ITEM EFFECTS
----------------------------------- */
.info-item {
  transition: transform 0.3s ease, color 0.3s ease;
  color: #444;
  font-weight: 500;
}

.info-item:hover {
  transform: translateX(8px);
  color: #b30000;
}

/* -----------------------------------
   ANIMATION EFFECTS
----------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-delay {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

.fade-in-delay:nth-child(1) {
  animation-delay: 0.3s;
}

.fade-in-delay:nth-child(2) {
  animation-delay: 0.6s;
}

/* Reusable Fade Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade {
  animation: fadeIn 1s ease-in-out;
}

.animate-slide {
  animation: fadeIn 1s ease-in-out 0.3s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.animate-fade-delay {
  animation: fadeIn 1.2s ease-in-out 0.6s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* -----------------------------------
   RESPONSIVE FIXES
----------------------------------- */
@media (max-width: 991px) {
  .about-card {
    padding: 20px;
  }
  .about-card h3 {
    font-size: 20px;
  }
  .about-card p {
    font-size: 15px;
  }
  #about-us .feature-box,
  .focus-box {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .focus-box h5,
  #about-us .feature-box h5 {
    font-size: 16px;
  }
  .focus-box p,
  #about-us .feature-box p {
    font-size: 14px;
  }
}

/*-------- village-highlights----------------*/
/* -----------------------------------
   VILLAGE HIGHLIGHTS SECTION
----------------------------------- */
.village-highlights .highlight-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.4s ease;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  position: relative;
}

/* Hover glow and lift */
.village-highlights .highlight-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 25px rgba(220,53,69,0.15);
}

/* Image wrapper animation */
.village-highlights .highlight-card .image-wrapper {
  overflow: hidden;
  border-radius: 10px;
}

.village-highlights .highlight-card img {
  width: 100%;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.village-highlights .highlight-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

/* Heading & Paragraph */
.village-highlights .highlight-card h4 {
  margin-top: 15px;
  color: #b22222;
  font-weight: 600;
  transition: color 0.3s ease;
}

.village-highlights .highlight-card:hover h4 {
  color: #8c0a0a;
}

.village-highlights .highlight-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 10px 0;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.village-highlights .highlight-card:hover p {
  color: #333;
}

/* Tag Styling */
.village-highlights .highlight-card .tag {
  font-weight: 500;
  margin-top: 10px;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}

.village-highlights .highlight-card:hover .tag {
  opacity: 0.9;
}

/* Buttons */
.village-highlights .btn {
  transition: all 0.3s ease;
}

.village-highlights .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(220,53,69,0.3);
}

/* Entry Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade {
  animation: fadeIn 1s ease-in-out;
}

.animate-slide {
  animation: fadeIn 1s ease-in-out 0.3s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.animate-fade-delay {
  animation: fadeIn 1.2s ease-in-out 0.6s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
  .village-highlights .highlight-card {
    padding: 15px;
  }
  .village-highlights h4 {
    font-size: 1.1rem;
  }
  .village-highlights p {
    font-size: 0.9rem;
  }
}

/*-------- About Avashi Grampanchayat Section----------------*/
/* Avashi Grampanchayat Section (Enhanced Marathi Version) */
.about-avashi {
  padding: 80px 0;
  background: #fff8f8;
}

/* Title Styling */
.about-avashi .section-title h2 {
  font-weight: 700;
  color: #b22222;
  animation: fadeInDown 1s ease;
}

.about-avashi .description-title {
  color: #d72638;
  font-weight: 600;
}

.about-avashi .subtitle {
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 10px auto 30px;
  animation: fadeIn 1s ease;
}

/* Image Effects */
.about-avashi .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-avashi .image-wrapper img {
  transition: transform 0.6s ease, filter 0.3s ease;
}

.about-avashi .image-wrapper:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.about-avashi .image-overlay {
  position: absolute;
  bottom: 0;
  background: rgba(183, 28, 28, 0.75);
  color: #fff;
  width: 100%;
  padding: 12px;
  text-align: center;
}

/* Text Content */
.about-avashi .content h3 {
  color: #b22222;
  font-weight: 700;
  animation: fadeInUp 1s ease;
}

.about-avashi .content p {
  color: #333;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.about-avashi .content p:hover {
  color: #a31515;
}

/* Key Points */
.about-avashi .key-points .point {
  font-size: 0.95rem;
  background: #fdeaea;
  padding: 10px 15px;
  border-radius: 8px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.about-avashi .key-points .point:hover {
  background: #fcd4d4;
  transform: translateX(6px);
}

.about-avashi .key-points i {
  color: #d72638;
  margin-right: 8px;
}

/* Buttons */
.about-avashi .btn {
  border-radius: 6px;
  padding: 10px 22px;
  font-weight: 600;
  transition: all 0.3s;
}

.about-avashi .btn-primary {
  background: #b22222;
  border: none;
  color: #fff;
}

.about-avashi .btn-primary:hover {
  background: #d72638;
  transform: translateY(-2px);
}

.about-avashi .btn-outline {
  border: 2px solid #b22222;
  color: #b22222;
}

.about-avashi .btn-outline:hover {
  background: #b22222;
  color: #fff;
}

/* Info Cards */
.about-avashi .info-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s, box-shadow 0.4s;
}

.about-avashi .info-card:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 6px 20px rgba(183, 28, 28, 0.15);
}

.about-avashi .info-card i {
  font-size: 2rem;
  color: #d72638;
  margin-bottom: 10px;

}

.about-avashi .info-card:hover i {
  transform: rotate(10deg) scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade { animation: fadeInUp 1s ease; }
.animate-slide { animation: fadeInDown 1s ease; }
.animate-fade-delay { animation: fadeInUp 1.3s ease; }

/* Responsive */
@media (max-width: 991px) {
  .about-avashi .content { text-align: center; }
  .about-avashi .image-wrapper { margin-bottom: 20px; }
}

.animate-fade, .animate-slide, .animate-fade-delay, .fade-in-delay {
  animation-fill-mode: forwards !important;
}

/*---------Governance and Key Officials Section--------*/
/* Governance Section */
.village-governance {
  padding: 80px 0;
  background: #fff8f8;
  overflow-x: hidden;
}

.village-governance .section-title h2 {
  font-weight: 700;
  color: #a31515;
}

.village-governance .description-title {
  color: #d72638;
  font-weight: 600;
}

.village-governance .subtitle {
  color: #555;
  max-width: 800px;
  margin: 10px auto 30px;
}

/* Official Cards */
.official-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  border-top: 4px solid #d72638;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeInUp 1s ease forwards;
}

.official-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 25px rgba(183, 28, 28, 0.2);
}

.official-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #d72638;
  transition: all 0.4s ease;
}

.official-card:hover img {
  transform: rotate(5deg) scale(1.05);
}

.official-card h4 {
  font-weight: 600;
  color: #a31515;
}

.official-card h6 {
  color: #555;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.official-card p {
  font-size: 0.9rem;
  color: #444;
}

/* Vision & Mission Blocks */
.governance-block {
  background: #fff;
  border-left: 5px solid #d72638;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  animation: fadeInUp 1s ease forwards;
}

.governance-block:hover {
  background: #fff0f0;
  transform: translateY(-6px);
}

.governance-block h3 {
  color: #a31515;
  margin-bottom: 10px;
  font-weight: 600;
}

.governance-block i {
  margin-right: 8px;
  color: #d72638;
}

/* Services Cards */
.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.4s, box-shadow 0.4s;
  animation: fadeInUp 1s ease forwards;
}

.service-card:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 8px 25px rgba(183, 28, 28, 0.2);
}

.service-card i {
  font-size: 2rem;
  color: #d72638;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.service-card:hover i {
  transform: scale(1.2) rotate(10deg);
}

.service-card h5 {
  color: #a31515;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-card p {
  color: #555;
  font-size: 0.9rem;
}

/* Animation Effects */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade,
.animate-slide,
.animate-fade-delay {
  animation-fill-mode: forwards !important;
}

/* Responsive */
@media (max-width: 991px) {
  .official-card img {
    width: 100px;
    height: 100px;
  }
  .governance-block {
    margin-bottom: 20px;
  }
}

/*--------------- Helpline Section----------------- */
/* Helpline Section */
.helpline {
  background: #f9f9f9;
  padding: 80px 0;
  overflow-x: hidden;
}

.helpline .section-title h2 {
  color: #9f1f1f;
  font-weight: 700;
}

.helpline .description-title {
  color: #8a1717;
  font-weight: 600;
}

.helpline .subtitle {
  color: #570d0d;
  font-weight: bold;
  max-width: 850px;
  margin: 10px auto 30px;
  font-size: 1rem;
  line-height: 1.7;
}

/* Helpline Cards */
.helpline-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 25px 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  border-top: 5px solid #c13131; /* neutral border */
  transition: all 0.4s ease;
  animation: fadeInUp 1s ease forwards;
}

.helpline-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  background: #fdfdfd;
}

.helpline-card h4 {
  color: #a21515;
  font-weight: 600;
  margin-bottom: 15px;
  transition: color 0.3s;
}

.helpline-card:hover h4 {
  color: #a21515;
}

.helpline-card i {
  color: #c61c1c;
  margin-right: 6px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.helpline-card:hover i {
  transform: rotate(10deg) scale(1.2);
  color: #c61c1c;
}

/* Helpline List */
.helpline-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.helpline-list li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: #b42929;
  border-bottom: 1px dashed #eee;
  transition: color 0.3s, transform 0.3s;
}
.helpline-list li strong {
  color: #b42929;
}
.helpline-list li:hover {
  color: #b42929;
  transform: translateX(5px);
}

/* CTA Section */
.helpline-cta {
  background: linear-gradient(135deg, #555, #333);
  color: #bd1a1a;
  padding: 45px 35px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.25);
  transition: all 0.4s ease;
  animation: fadeInUp 1s ease forwards;
}

.helpline-cta:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.helpline-cta h3 {
  font-weight: 700;
  margin-bottom: 15px;
}

.helpline-cta p {
  color: #f2ecec;
  margin-bottom: 20px;
}

.helpline-cta .btn {
  border-radius: 30px;
  padding: 10px 25px;
  margin: 5px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.helpline-cta .btn-primary {
  background: #f9f7f7;
  color: #e41919;
  border: none;
}
.helpline-cta .btn-primary:hover {
  background: #e41919 ;
  color: #f9f7f7;
  transform: scale(1.05);
}

.helpline-cta .btn-outline {
  border: 2px solid #e41919;
  color: #f9f7f7;
}
.helpline-cta .btn-outline:hover {
  background: #f9f7f7;
  color: #e41919;
  transform: scale(1.05);
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Animations */
.animate-fade,
.animate-slide,
.animate-fade-delay {
  opacity: 0;
  animation-fill-mode: forwards;
}

.animate-fade {
  animation: fadeInUp 1s ease forwards;
}

.animate-slide {
  animation: fadeInUp 1s ease 0.3s forwards;
}

.animate-fade-delay {
  animation: fadeInUp 1s ease 0.6s forwards;
}

/* Responsive */
@media (max-width: 991px) {
  .helpline-card {
    margin-bottom: 20px;
  }
  .helpline-cta {
    padding: 30px 20px;
  }
  .helpline-cta h3 {
    font-size: 1.3rem;
  }
}
