
:root {
  --default-font: "Poppins",  system-ui, -apple-system, "Segoe UI", Poppins, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Roboto",  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 */
/* 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: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #600000; /* Color for headings, subheadings and title throughout the website - Maroon */
  --accent-color: #d4af37; /* Accent color - Gold/Yellow (used sparingly) */
  --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. */
  --maroon-color: #600000; /* Primary maroon color */
  --navy-color: #273d4e; /* Navy blue for minor accents only */
}

/* 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 - White */
  --nav-hover-color: #d4af37; /* Applied to main navmenu links when they are hovered over or active - Gold */
  --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: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #600000; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over - Maroon */
}

/* 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: #f9f7f4;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #600000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #600000;
  --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);
  background-size: cover;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(96, 0, 0, 0.02) 0%, rgba(212, 175, 55, 0.01) 100%);
  pointer-events: none;
}

@media (min-width: 1366px) {
  body {
    background-attachment: fixed;
  }
}

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);
}
p {
  color: rgb(30, 30, 36);
text-align: justify;}

/* Custom Button Styles
------------------------------*/
.btn-brochure {
  background: linear-gradient(135deg, #d4af37, #e6c54f);
  border-color: #d4af37;
  color: #600000;
  font-weight: 600;
  padding: 12px 30px;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(212, 175, 55, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-brochure:hover {
  background: linear-gradient(135deg, #e6c54f, #d4af37);
  border-color: #d4af37;
  color: #600000;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
  text-decoration: none;
}

/* 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(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 12px 0;
  transition: all 0.5s;
  z-index: 997;
}

@media (max-width: 1199px) {
  .header {
    padding: 10px 0;
  }
}

@media (max-width: 991px) {
  .header {
    padding: 8px 0;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 6px 0;
  }
}

.header .logo {
  line-height: 1;
  gap: 12px;
}

.header .logo .logo-img {
  max-height: 50px;
  width: auto;
}

@media (max-width: 1199px) {
  .header .logo .logo-img {
    max-height: 40px;
  }
}

@media (max-width: 991px) {
  .header .logo .logo-img {
    max-height: 35px;
  }
}

@media (max-width: 768px) {
  .header .logo .logo-img {
    max-height: 30px;
  }
}


.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(73, 4, 4, 0.95);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop 1200px+ */
@media (min-width: 1400px) {
  .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 18px;
    font-size: 15px;
    font-family: var(--nav-font);
    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;
    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 - Laptop 1200-1399px */
@media (min-width: 1200px) and (max-width: 1399px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 14px 11px;
    font-size: 12px;
    font-family: var(--nav-font);
    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: 11px;
    line-height: 0;
    margin-left: 3px;
    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: 8px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 10px;
    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: 160px;
  }

  .navmenu .dropdown ul a {
    padding: 8px 16px;
    font-size: 12px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 11px;
  }

  .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: -85%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -95%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 26px;
    line-height: 0;
    margin-right: 8px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 55px 15px 20px 15px;
    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);
    max-height: 80vh;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 12px 18px;
    font-family: var(--nav-font);
    font-size: 15px;
    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: 8px 0;
    margin: 8px 18px;
    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: 30px;
    top: 12px;
    right: 12px;
    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 */
/* ===================== */

.footer {
  background-color: #600000; /* Maroon */
  color: #ffffff;            /* White text */
  font-size: 14px;
  padding: 40px 0 0 0;
  position: relative;
  margin-bottom: 0;
  text-align: center;        /* ✅ Center everything */
}

/* Headings */
.footer h4,
.footer h3 {
  color: #d4af37;            /* Gold */
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

/* Paragraph text */
.footer p {
  color: #ffffff;
  margin-bottom: 6px;
  text-align: center;
}

/* ===================== */
/* FOOTER BOTTOM */
/* ===================== */

.footer-bottom {
  text-align: center !important;
}

.footer-bottom p {
  color: #ffffff;
  margin: 6px 0;
}

/* ===================== */
/* COPYRIGHT */
/* ===================== */

.footer .copyright {
  text-align: center !important;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 215, 150, 0.35);
}

.footer .copyright p {
  color: #ffffff;
  margin: 0;
}

/* ===================== */
/* LINKS */
/* ===================== */

.footer a {
  color: #d4af37; /* Gold */
  text-decoration: none;
  font-weight: 500;
}

.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ===================== */
/* MARQUEE CREDIT BAR */
/* ===================== */

.footer-marquee {
  background-color: #600000; /* Dark maroon */
  color: #d4af37;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  margin: 0;
  border-top: 1px solid rgba(255, 215, 150, 0.35);
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: footer-marquee 18s linear infinite;
  font-size: 13px;
}

/* Marquee animation */
@keyframes footer-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ===================== */
/* MAP */
/* ===================== */

.footer iframe {
  width: 100%;
  height: 230px;
  border: 0;
  border-radius: 8px;
  margin-top: 10px;
}

/* ===================== */
/* REMOVE BOTTOM GAP */
/* ===================== */

body {
  margin-bottom: 0 !important;
}

footer {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}



/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 100px 0;
  scroll-margin-top: 90px;
  overflow: clip;
  position: relative;
  transition: background-color 0.3s ease;
  margin: 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  section,
  .section {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
  section,
  .section {
    padding: 40px 12px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 25px 0;
  margin-bottom: 45px;
  position: relative;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
  color: #600000;
  letter-spacing: 2px;
  word-spacing: 5px;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, #600000, transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}
/* ========================= */
/* HERO / BANNER SECTION */
/* ========================= */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
}


/* Dark Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* Content */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
  padding-top: 90px;
  overflow-y: auto;
  max-height: 100vh;
}

@media (max-width: 1199px) {
  .hero-content {
    padding-top: 80px;
  }
}

@media (max-width: 991px) {
  .hero-content {
    padding-top: 70px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding-top: 60px;
  }
}
.carousel-item {
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

.carousel-fade .carousel-item {
  opacity: 0;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

.hero-bg {
  height: 100vh;
  object-fit: cover;
}

/* Title */
.hero-title {
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.4;
}

/* Subtitle */
.hero-subtitle {
  font-size: 21px;
  line-height: 1.6;
  margin: 0 0 12px 0;
  color: #ffffff;
  text-align: center;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Date & Location */
.hero-meta {
  font-size: 19px;
  margin-bottom: 18px;
  color: #ffffff;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.meta-item i {
  color: #d4af37;
  font-size: 18px;
}

/* Countdown Box */
.countdown-wrapper {
  border: 2px solid #d4af37;
  padding: 20px 30px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.countdownd4af37 {
  color: #ffb806;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* Timer */
.countdown-timer {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 12px;
}

.time-box span {
  font-size: 36px;
  font-weight: 700;
  color: #d4af37;
}

.time-box small {
  display: block;
  font-size: 12px;
  color: #ffffff;
}

/* Timer Button */
.countdown-wrapper .btn {
  background: linear-gradient(135deg, #d4af37, #e6c54f);
  border-color: #d4af37;
  color: #600000;
  font-weight: 600;
  padding: 12px 30px;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(212, 175, 55, 0.3);
}

.countdown-wrapper .btn:hover {
  background: linear-gradient(135deg, #e6c54f, #d4af37);
  border-color: #d4af37;
  color: #600000;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

/* Large Laptop / Desktop (1920px+) */
@media (min-width: 1920px) {
  .header .logo .logo-img {
    max-height: 55px;
  }

  .hero-title {
    font-size: 48px;
    letter-spacing: 2.5px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .hero-meta {
    font-size: 20px;
  }
}

/* Standard Laptop 15-17" (1680px - 1919px) */
@media (max-width: 1919px) and (min-width: 1680px) {
  .header .logo .logo-img {
    max-height: 52px;
  }

  .hero-title {
    font-size: 44px;
    letter-spacing: 2.2px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-meta {
    font-size: 19px;
  }
}

/* Standard Laptop 14-15" (1440px - 1679px) */
@media (max-width: 1679px) and (min-width: 1440px) {
  .header .logo .logo-img {
    max-height: 48px;
  }

  .hero-title {
    font-size: 40px;
    letter-spacing: 2px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-meta {
    font-size: 18px;
  }
}

/* Laptop 13-14" / HD (1280px - 1439px) */
@media (max-width: 1439px) and (min-width: 1280px) {
  .header .logo .logo-img {
    max-height: 45px;
  }

  .hero-title {
    font-size: 36px;
    letter-spacing: 1.8px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-meta {
    font-size: 16px;
  }
}

/* Laptop / Tablet Large (1024px - 1279px) */
@media (max-width: 1279px) and (min-width: 1024px) {
  .header .logo .logo-img {
    max-height: 42px;
  }

  .hero-title {
    font-size: 32px;
    letter-spacing: 1.4px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-meta {
    font-size: 14px;
  }
}


/* Tablet / iPad (992px - 1023px) */
@media (max-width: 1023px) and (min-width: 992px) {
  .hero-content {
    padding: 35px 20px;
  }

  .hero-title {
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    line-height: 1.4;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .hero-meta {
    font-size: 14px !important;
    margin-bottom: 20px;
    flex-direction: column;
    gap: 10px;
  }
}

/* Tablet / iPad Vertical (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .hero-content {
    padding: 30px 15px;
  }

  .hero-title {
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    line-height: 1.4;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .hero-meta {
    font-size: 12px !important;
    margin-bottom: 20px;
    flex-direction: column;
    gap: 8px;
  }

  .meta-item {
    justify-content: center;
    white-space: normal;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .meta-item i {
    font-size: 16px;
    flex-shrink: 0;
  }

  .countdown-timer {
    flex-wrap: wrap;
    gap: 12px;
  }

  .time-box span {
    font-size: 28px;
  }

  .countdown-wrapper {
    padding: 20px 25px;
  }

  .countdown-wrapper .btn {
    padding: 10px 25px;
    font-size: 13px;
  }
}

@media (max-width: 992px) {
  .hero-content {
    padding: 35px 20px;
  }

  .hero-title {
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    line-height: 1.4;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .hero-meta {
    font-size: 16px !important;
    margin-bottom: 20px;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 30px 15px;
  }

  .hero-title {
    font-size: 22px;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
    line-height: 1.4;
  }

  .hero-subtitle {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .hero-meta {
    font-size: 12px !important;
    margin-bottom: 20px;
    flex-direction: column;
    gap: 8px;
  }

  .meta-item {
    justify-content: center;
    white-space: normal;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .meta-item i {
    font-size: 16px;
    flex-shrink: 0;
  }

  .countdown-wrapper {
    padding: 20px 25px;
  }

  .countdown-wrapper .btn {
    padding: 10px 25px;
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding: 25px 12px;
    justify-content: center;
    padding-bottom: 35px;
  }

  .hero-title {
    font-size: 18px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .hero-meta {
    font-size: 10px !important;
    margin-bottom: 15px;
    flex-direction: column;
    gap: 8px;
  }

  .meta-item {
    white-space: normal;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .meta-item i {
    font-size: 14px;
    flex-shrink: 0;
  }

  .countdown-wrapper {
    padding: 15px 15px;
  }

  .countdown-wrapper .btn {
    padding: 10px 25px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 20px 12px;
    justify-content: center;
    padding-bottom: 40px;
  }

  .hero-title {
    font-size: 20px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .hero-meta {
    font-size: 14px !important;
    margin-bottom: 15px;
    flex-direction: column;
    gap: 8px;
  }

  .meta-item {
    white-space: normal;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .meta-item i {
    font-size: 16px;
    flex-shrink: 0;
  }

  .countdown-wrapper {
    padding: 15px 15px;
    margin: 0 -5px;
  }

  .countdown-timer {
    gap: 8px;
  }

  .time-box span {
    font-size: 22px;
  }

  .time-box small {
    font-size: 10px;
  }

  .countdown-wrapper .btn {
    padding: 8px 20px;
    font-size: 12px;
  }
}

@media (max-width: 767.98px) {
  .hero .feature-boxes .feature-box {
    padding: 1.25rem;
  }

  .hero .feature-boxes .feature-box .feature-icon {
    width: 50px;
    height: 50px;
  }

  .hero .feature-boxes .feature-box .feature-icon i {
    font-size: 1.5rem;
  }

  .hero .feature-boxes .feature-box .feature-title {
    font-size: 1.125rem;
  }

  .hero .feature-boxes .feature-box .feature-text {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

.hero .feature-boxes {
  margin-top: 3rem;
}

.hero .feature-boxes .feature-box {
  padding: 1.5rem;
  border-radius: 12px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 576px) {
  .hero .feature-boxes .feature-box {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
}
/* ============================= */
/* BOOTSTRAP CAROUSEL FIX */
/* ============================= */

.carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-item {
  position: absolute;
  inset: 0;
  width: 100%;
  transition: opacity 0.6s ease-in-out;
}

.carousel-item.active {
  position: relative;
  opacity: 1;
  z-index: 1;
}


/* Ensure image fills */
.hero-bg {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  opacity: 0.8;
  transition: opacity 0.3s ease;
  z-index: 5;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 30px;
  height: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 50px;
  height: 50px;
  background-size: contain;
  filter: invert(0.4);
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

/* Hide carousel controls on mobile */
@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 2rem;
  }
}

.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about .feature-list li i {
  color: #600000;
  font-size: 1.25rem;
}

.about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about .profile .profile-position {
  color: #600000;
  margin: 0;
  font-size: 0.875rem;
}

.about .contact-info {
  padding: 1rem 1.5rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about .contact-info i {
  color: #600000;
  font-size: 1.5rem;
}

.about .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.about .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .read-more {
  background: linear-gradient(135deg, #600000, #800000);
  color: #ffffff;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 14px 35px;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  text-transform: uppercase;
  box-shadow: 0 6px 12px rgba(96, 0, 0, 0.2);
}

.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .read-more:hover {
  background: linear-gradient(135deg, #800000, #600000);
  padding-right: 40px;
  box-shadow: 0 10px 25px rgba(96, 0, 0, 0.3);
  transform: translateY(-2px);
}

.about .read-more:hover i {
  margin-left: 10px;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    margin-left: 0;
  }
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}

.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: var(--accent-color);
  color: #252525;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
  .about .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}

.about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.stats .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 60px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #600000;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, #600000, transparent 80%);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  background: #600000;
  border-color: var(--accent-color);
  box-shadow: 0 16px 50px rgba(96, 0, 0, 0.25);
  transform: translateY(-8px);
}

.services .service-item:hover .icon {
  background: var(--surface-color);
}

.services .service-item:hover .icon i {
  color: #600000;
}

.services .service-item:hover .icon::before {
  background: color-mix(in srgb, var(--background-color), transparent 70%);
}

.services .service-item:hover h3,
.services .service-item:hover p {
  color: var(--contrast-color);
}


table.tableizer-table {
  font-size: 16px;
  border: 1px solid #d4af37;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  margin: 0;
}

.tableizer-table td {
  padding: 18px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  text-align: center;
}

.tableizer-table th {
  background: linear-gradient(135deg, #600000 0%, #800000 100%);
  color: #ffffff;
  font-weight: 700;
  padding: 18px;
  border: 1px solid #d4af37;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  table.tableizer-table {
    font-size: 14px;
  }

  .tableizer-table td,
  .tableizer-table th {
    padding: 12px 8px;
  }
}

@media (max-width: 480px) {
  table.tableizer-table {
    font-size: 12px;
  }

  .tableizer-table td,
  .tableizer-table th {
    padding: 10px 6px;
  }

  .tableizer-table th {
    font-size: 11px;
  }
}


/*--------------------------------------------------------------
# services-3 Section
--------------------------------------------------------------*/
.services-3 .service-item {
  background-color: var(--surface-color);
  text-align: left;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 50px;
  transition: all ease-in-out 0.3s;
  height: 100%;
}

.services-3 .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.services-3 .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services-3 .service-item .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.services-3 .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services-3 .service-item p {
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}
.services-3 .service-item ul.li {
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}
.services-3 .service-item:hover {
  background: #600000;
  border-color: #600000;
  box-shadow: 0 10px 40px rgba(96, 0, 0, 0.3);
  transform: translateY(-5px);
}

.services-3 .service-item:hover .icon {
  background: var(--surface-color);
}

.services-3 .service-item:hover .icon i {
  color: #600000;
}

.services-3 .service-item:hover .icon::before {
  background: color-mix(in srgb, var(--background-color), transparent 70%);
}

.services-3 .service-item:hover h3,
.services-3 .service-item:hover p,
.services-3 .service-item:hover ul,
.services-3 .service-item:hover ul li {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  background-color: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }

  .features .nav-link i {
    font-size: 24px;
  }
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 26px;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: 0.3s;
}

.services-2 .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

.services-2 .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
  color: #600000;
}

.services-2 .service-item .title a {
  color: var(--heading-color);
}

.services-2 .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
  color: #252525;
}

.services-2 .service-item:hover {
  border-color: #600000;
}

.services-2 .service-item:hover .title a {
  color: #600000;
}
.services-2 ul.li {
  text-align: justify;}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
  background: #600000;
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 1rem;
  margin-top: 0;
}

.call-to-action .content h2,
.call-to-action .content p {
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta {
  background-color: #d4af37;
  color: #600000;
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid #d4af37;
  position: relative;
  z-index: 2;
  font-weight: 600;
}

.call-to-action .btn-cta:hover {
  background-color: #ffffff;
  color: #600000;
  border-color: #ffffff;
}

.call-to-action .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .shape svg {
  width: 100%;
  height: 100%;
}

.call-to-action .shape svg path {
  fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.call-to-action .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  opacity: 0.1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.call-to-action .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.call-to-action .dots svg {
  width: 100%;
  height: 100%;
}

.call-to-action .dots-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: 0.15;
  transform: rotate(-10deg);
}

@keyframes shapes-float {

  0%,
  100% {
    transform: scale(0.8) rotate(45deg) translateY(0);
  }

  50% {
    transform: scale(0.8) rotate(45deg) translateY(-20px);
  }
}

@media (max-width: 992px) {
  .call-to-action .container {
    padding: 3rem 1.5rem;
  }

  .call-to-action .shape-1 {
    width: 200px;
    height: 200px;
  }

  .call-to-action .shape-2 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .shape-3 {
    width: 100px;
    height: 100px;
  }

  .call-to-action .dots-1 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .dots-2 {
    width: 120px;
    height: 120px;
  }

  .call-to-action .dots-3 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 575px) {
  .call-to-action .container {
    border-radius: 0;
  }
}

 .agent-card {
  margin-top: 20px;
  background: var(--surface-color);
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.2);
  width: 360px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

 .agent-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(96, 0, 0, 0.2);
  border-color: var(--accent-color);
}

 .agent-card .agent-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

 .agent-card .agent-profile .agent-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
  border: 4px solid var(--accent-color);
  background-color: #f9f7f4;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(212, 175, 55, 0.2);
}

 .agent-card .agent-profile .agent-info h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
}

 .agent-card .agent-profile .agent-info p {
  margin: 0 0 8px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

 .agent-card .agent-profile .agent-info .agent-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

 .agent-card .agent-profile .agent-info .agent-rating .stars {
  display: flex;
  gap: 2px;
}

 .agent-card .agent-profile .agent-info .agent-rating .stars i {
  color: #ffc107;
  font-size: 11px;
}

 .agent-card .agent-profile .agent-info .agent-rating .rating-text {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-weight: 600;
}



 .agent-card .contact-agent-btn i {
  font-size: 16px;
}
@media (max-width: 992px) 
{
   .agent-card {
    width: auto;
    padding: 18px;
  }

   .agent-card .agent-profile .agent-photo {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
   .agent-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    width: 100%;
    margin: 15px 0;
  }

   .agent-card .agent-profile {
    flex-direction: column;
    text-align: center;
    width: 100%;
  }

   .agent-card .agent-profile .agent-info {
    text-align: center;
  }

   .agent-card .agent-profile .agent-info h4 {
    text-align: center;
  }

   .agent-card .agent-profile .agent-info p {
    text-align: center;
  }

   .agent-card .agent-profile .agent-info .agent-rating {
    text-align: center;
    justify-content: center;
  }

   .agent-card .agent-profile .agent-info .agent-rating .rating-text {
    text-align: center;
  }

   .agent-card .agent-profile .agent-photo {
    width: 90px;
    height: 90px;
  }
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
  background: #600000;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(128, 0, 0, 0.7);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: #600000;
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: #d4af37;
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}


/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .menu-filters {
  margin-bottom: 50px;
}

.menu .menu-filters .nav-pills {
  gap: 20px;
}

.menu .menu-filters .nav-pills .nav-link {
  background-color: transparent;
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.menu .menu-filters .nav-pills .nav-link i {
  font-size: 18px;
}

.menu .menu-filters .nav-pills .nav-link:hover {
  background-color: #600000;
  color: var(--contrast-color);
  border-color: #600000;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px color-mix(in srgb, #600000, transparent 70%);
}

.menu .menu-filters .nav-pills .nav-link.active {
  background-color: #600000;
  color: var(--contrast-color);
  border-color: #600000;
  box-shadow: 0 5px 20px color-mix(in srgb, #600000, transparent 60%);
}

@media (max-width: 768px) {
  .menu .menu-filters .nav-pills {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .menu .menu-filters .nav-pills .nav-link {
    width: 200px;
    justify-content: center;
  }
}

.menu .menu-item {
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.menu .menu-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px color-mix(in srgb, var(--default-color), transparent 70%);
}

.menu .menu-item .menu-item-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.menu .menu-item .menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.menu .menu-item .menu-item-image:hover img {
  transform: scale(1.1);
}

.menu .menu-item .menu-item-image .special-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #d4af37, color-mix(in srgb, #d4af37, #600000 30%));
  color: #600000;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px color-mix(in srgb, #d4af37, transparent 50%);
}

.menu .menu-item .menu-item-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.menu .menu-item .menu-item-content .menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.menu .menu-item .menu-item-content .menu-item-header h4 {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  flex-grow: 1;
  margin-right: 15px;
  line-height: 1.3;
}

.menu .menu-item .menu-item-content .menu-item-header .dietary-tags {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.menu .menu-item .menu-item-content .menu-item-header .dietary-tags .tag {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.menu .menu-item .menu-item-content .menu-item-header .dietary-tags .tag.spicy {
  background-color: #ff6b6b;
  color: white;
}

.menu .menu-item .menu-item-content .menu-item-header .dietary-tags .tag.vegetarian {
  background-color: #51cf66;
  color: white;
}

.menu .menu-item .menu-item-content .menu-item-header .dietary-tags .tag.vegan {
  background-color: #69db7c;
  color: white;
}

.menu .menu-item .menu-item-content .menu-item-header .dietary-tags .tag.gluten-free {
  background-color: #74c0fc;
  color: white;
}

.menu .menu-item .menu-item-content .menu-item-header .dietary-tags .tag.premium {
  background-color: #ffd43b;
  color: var(--heading-color);
}

.menu .menu-item .menu-item-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.menu .menu-item .menu-item-content .menu-item-footer {
  margin-top: auto;
}

.menu .menu-item .menu-item-content .menu-item-footer .price {
  font-size: 24px;
  font-weight: 800;
  color: #600000;
  display: block;
  text-align: right;
}

.menu .btn-download {
  background: linear-gradient(135deg, #600000, color-mix(in srgb, #600000, transparent 30%));
  color: var(--contrast-color);
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 8px 30px color-mix(in srgb, #600000, transparent 70%);
  transition: all 0.3s ease;
}

.menu .btn-download i {
  font-size: 18px;
}

.menu .btn-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px color-mix(in srgb, #600000, transparent 50%);
  color: var(--contrast-color);
  background: #600000;
}

@media (max-width: 768px) {
  .menu .menu-item .menu-item-content .menu-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .menu .menu-item .menu-item-content .menu-item-header h4 {
    margin-right: 0;
  }

  .menu .menu-item .menu-item-content .menu-item-header .dietary-tags {
    align-self: flex-end;
  }
}
/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 30px;
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.team .member:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(96, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.team .member img {
  border-radius: 50%;
  width: 180px;
  height: 180px;
  object-fit: contain;
  object-position: center;
  border: 4px solid var(--accent-color);
  margin: 30px 0;
  background-color: #f9f7f4;
  box-shadow: 0 12px 24px rgba(96, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.team .member .member-content {
  padding: 0 20px 30px 20px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 22px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}






/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.4s ease;
}

.contact .info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 45px rgba(96, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.contact .info-item i {
  font-size: 28px;
  color: var(--accent-color);
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid var(--accent-color);
  margin-bottom: 20px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: white;
}

.contact .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: #600000;
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #600000;
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Timeline Section Styling
--------------------------------------------------------------*/

.timeline-container {
  position: relative;
  padding: 20px 0;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-container::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: #d4af37;
  border-radius: 2px;
}

.timeline-item {
  margin-bottom: 35px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  padding-right: 50%;
  padding-left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  padding-left: 50%;
  padding-right: 0;
  text-align: left;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #600000, #800000);
  border: 3px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #d4af37;
  box-shadow: 0 4px 12px rgba(96, 0, 0, 0.25);
  z-index: 10;
  transition: all 0.4s ease;
}

.timeline-item:hover .timeline-marker {
  background: linear-gradient(135deg, #800000, #600000);
  box-shadow: 0 6px 20px rgba(96, 0, 0, 0.35);
  transform: translateX(-50%) scale(1.1);
}

.timeline-content {
  background: white;
  padding: 25px 28px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  border-left: 4px solid #d4af37;
  transition: all 0.4s ease;
}

.timeline-item:even .timeline-content {
  border-left: 4px solid #d4af37;
  border-right: none;
}

.timeline-item:odd .timeline-content {
  border-right: 4px solid #d4af37;
  border-left: none;
}

.timeline-item:hover .timeline-content {
  box-shadow: 0 8px 25px rgba(96, 0, 0, 0.1);
  transform: translateY(-3px);
}

.timeline-date {
  font-size: 0.9rem;
  color: #d4af37;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.timeline-content h4 {
  font-size: 1.2rem;
  color: #600000;
  margin: 0 0 10px 0;
  font-weight: 700;
  font-family: var(--heading-font);
}

.timeline-content p {
  color: #666;
  line-height: 1.5;
  margin: 0;
  font-size: 0.9rem;
}

/* Mobile Timeline */
@media (max-width: 768px) {
  .timeline-container::before {
    left: 20px;
    transform: translateX(-50%);
  }

  .timeline-item {
    padding-left: 80px;
    padding-right: 0;
    text-align: left;
    margin-bottom: 30px;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding-left: 80px;
    padding-right: 0;
    text-align: left;
  }

  .timeline-marker {
    left: 20px;
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .timeline-content {
    padding: 22px;
    border-left: 4px solid #d4af37;
    border-right: none;
  }

  .timeline-item:odd .timeline-content {
    border-left: 4px solid #d4af37;
    border-right: none;
  }

  .timeline-content h4 {
    font-size: 1.1rem;
  }

  .timeline-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .timeline-container {
    padding: 20px 0;
  }

  .timeline-item {
    padding-left: 70px;
    margin-bottom: 25px;
  }

  .timeline-marker {
    left: 15px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .timeline-content {
    padding: 18px;
    font-size: 0.85rem;
  }

  .timeline-date {
    font-size: 0.85rem;
  }
}

/*--------------------------------------------------------------
# Registration Card Styling
--------------------------------------------------------------*/

.registration-card {
  background: white;
  padding: 45px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-top: 5px solid #d4af37;
  transition: all 0.4s ease;
}

.registration-card:hover {
  box-shadow: 0 16px 60px rgba(96, 0, 0, 0.12);
  border-top: 5px solid #800000;
  transform: translateY(-5px);
}

.registration-note {
  margin-top: 25px;
  padding: 20px;
  background: rgba(212, 175, 55, 0.08);
  border-left: 4px solid #d4af37;
  border-radius: 6px;
}

.registration-note p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.registration-note i {
  color: #d4af37;
  margin-top: 2px;
  flex-shrink: 0;
}

/*--------------------------------------------------------------
# Payment & Accommodation Styling
--------------------------------------------------------------*/

.payment-steps {
  margin: 20px 0 0 0;
  padding-left: 25px;
  text-align: left;
  list-style: decimal;
}

.payment-steps li {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #333;
  font-size: 0.95rem;
}

.payment-content-wrapper {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.payment-left {
  flex: 1;
}

.payment-right {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 200px;
  margin-top: 30px;
}

.payment-qr-code {
  max-width: 180px;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.payment-link {
  color: #d4af37;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.payment-link:hover {
  color: #600000;
  border-bottom: 2px solid #d4af37;
}

.payment-info-box {
  margin-top: 25px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(96, 0, 0, 0.03));
  border: 1px solid #d4af37;
  border-radius: 8px;
}

.payment-info-box p {
  margin: 0;
  color: #600000;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-info-box i {
  font-size: 1.2rem;
  color: #d4af37;
}

.accommodation-content {
  text-align: left;
}

.accommodation-content > p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.accommodation-box {
  background: white;
  border-left: 4px solid #d4af37;
  padding: 18px;
  margin-bottom: 18px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.accommodation-box:hover {
  box-shadow: 0 8px 20px rgba(96, 0, 0, 0.08);
  transform: translateX(4px);
}

.accommodation-box h5 {
  color: #600000;
  margin: 0 0 10px 0;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--heading-font);
}

.accommodation-box p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.accommodation-box-accent {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(96, 0, 0, 0.03));
  border-left: 4px solid #800000;
  border-right: 1px solid #d4af37;
}

@media (max-width: 768px) {
  .registration-card,
  .info-card {
    padding: 30px 20px;
  }

  .accommodation-box {
    padding: 15px;
    margin-bottom: 15px;
  }

  .payment-steps {
    font-size: 0.9rem;
  }

  .payment-steps li {
    margin-bottom: 10px;
  }

  .payment-content-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .payment-right {
    margin-top: 20px;
    min-width: auto;
    width: 100%;
    justify-content: center;
  }

  .payment-qr-code {
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .registration-card {
    padding: 20px 15px;
    border-top: 3px solid #d4af37;
  }

  .info-card {
    padding: 20px 15px;
  }

  .section-subheading {
    font-size: 1.15rem;
  }

  .payment-info-box p {
    font-size: 0.85rem;
  }

  .accommodation-content > p {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Combined About Section Styling
--------------------------------------------------------------*/

#about {
  background: linear-gradient(180deg, #ffffff 0%, #f9f7f4 100%);
}

.about-intro-card {
  margin-bottom: 60px;
}

.intro-card-content {
  background: white;
  padding: 50px 45px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.4s ease;
  border-left: 5px solid #d4af37;
}

.intro-card-content:hover {
  box-shadow: 0 16px 60px rgba(96, 0, 0, 0.12);
  border-left: 5px solid #800000;
}

.intro-title {
  font-size: 1.8rem;
  color: #600000;
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.about-institutes-section {
  margin-bottom: 80px;
}

.institute-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(212, 175, 55, 0.15);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.institute-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(96, 0, 0, 0.15);
  border-color: #d4af37;
}

.institute-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.institute-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.institute-card:hover .institute-image img {
  transform: scale(1.08);
}

.institute-content {
  padding: 40px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.institute-card h4 {
  font-size: 1.5rem;
  color: #600000;
  margin: 0 0 20px 0;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.institute-card p {
  color: #555;
  line-height: 1.8;
  margin: 0 0 25px 0;
  flex-grow: 1;
}

.about-departments-section {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.departments-title {
  text-align: center;
  margin-bottom: 40px;
}

.departments-title h5 {
  font-size: 1.6rem;
  color: #600000;
  font-weight: 700;
  margin: 0;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.dept-mini-card {
  background: white;
  padding: 35px;
  border-radius: 10px;
  border-left: 4px solid #d4af37;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.dept-mini-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(96, 0, 0, 0.12);
  border-left: 4px solid #800000;
}

.dept-icon {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 15px;
  display: inline-block;
}

.dept-mini-card h5 {
  font-size: 1.2rem;
  color: #600000;
  margin: 0 0 12px 0;
  font-weight: 700;
  font-family: var(--heading-font);
}

.dept-mini-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .intro-card-content {
    padding: 30px 25px;
  }

  .intro-title {
    font-size: 1.5rem;
  }

  .institute-content {
    padding: 30px 25px;
  }

  .institute-card h4 {
    font-size: 1.3rem;
  }

  .dept-mini-card {
    padding: 25px 20px;
  }

  .about-departments-section {
    margin-top: 40px;
    padding-top: 40px;
  }
}

/*--------------------------------------------------------------
# Call for Papers Section
--------------------------------------------------------------*/
#cfp {
  background: linear-gradient(135deg, #800000 0%, #4d0000 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

#cfp .section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

#cfp .section-title span {
  position: absolute;
  top: 4px;
  color: rgba(235, 221, 176, 0.08);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 2px;
}

#cfp .section-title h2 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  position: relative;
  z-index: 2;
}

.topics-section {
  margin: 60px 0;
}

.topics-heading {
  font-family: 'Roboto', sans-serif;
  font-size: 1.8rem;
  color: #d4af37;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .topics-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.topic-item {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.8;
  padding: 12px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.topic-item:hover {
  color: #d4af37;
  padding-left: 8px;
  background: rgba(212, 175, 55, 0.05);
  padding: 12px 8px;
  border-radius: 4px;
}

.submission-box-single {
  background: rgba(212, 175, 55, 0.08);
  padding: 40px 35px;
  border-radius: 12px;
  border: 2px solid #d4af37;
  text-align: center;
  margin-top: 50px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.12);
  transition: all 0.4s ease;
}

.submission-box-single:hover {
  border-color: #800000;
  box-shadow: 0 10px 30px rgba(96, 0, 0, 0.15);
  transform: translateY(-3px);
}

.submission-title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.4rem;
  color: #d4af37;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.submission-deadline {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 600;
}

.btn-submit-cfp {
  display: inline-block;
  background-color: #d4af37;
  color: #800000;
  padding: 14px 45px;
  border: 2px solid #d4af37;
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  text-decoration: none;
  transition: all 0.4s ease;
}

.btn-submit-cfp:hover {
  background-color: #ca9f32;
  border-color:#ca9f32;
  transform: translateY(-3px);
  color: #800000;
}

@media (max-width: 768px) {
  #cfp {
    padding: 80px 0;
  }

  .cfp-buttons-container {
    gap: 8px !important;
  }

  .btn-submit-cfp {
    padding: 8px 15px;
    font-size: 0.75rem;
    display: inline-block;
    margin: 0;
    white-space: nowrap;
    flex: 0 1 auto;
  }

  .topics-heading {
    font-size: 1.5rem;
  }

  .submission-box-single {
    padding: 30px 25px;
    margin-top: 40px;
  }

  .submission-title {
    font-size: 1.2rem;
  }
}

/*--------------------------------------------------------------
# About Department Section
--------------------------------------------------------------*/
#departments {
  background: linear-gradient(135deg, #f0ede9 0%, #fdfcf9 100%);
}

#departments .section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

#departments .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
  color: #600000;
}

#departments .section-title span {
  position: absolute;
  top: 4px;
  color: rgba(96, 0, 0, 0.08);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

#departments .row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

@media (max-width: 768px) {
  #departments .row {
    flex-direction: column;
    gap: 20px;
  }
}

#departments .col-lg-6 {
  flex: 1;
  min-width: 0;
}

#departments .service-item {
  background: white;
  padding: 45px;
  border-radius: 4px;
  border: 1px solid #ddd;
  box-shadow: 15px 15px 0px #d4af37;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1024px) {
  #departments .service-item {
    padding: 35px;
    box-shadow: 12px 12px 0px #d4af37;
  }
}

@media (max-width: 768px) {
  #departments .service-item {
    padding: 25px;
    box-shadow: 10px 10px 0px #d4af37;
  }
}

@media (max-width: 480px) {
  #departments .service-item {
    padding: 20px;
    box-shadow: 6px 6px 0px #d4af37;
  }
}

#departments .service-item:before {
  display: none;
}

#departments .service-item:hover {
  transform: translate(-5px, -5px);
  box-shadow: 20px 20px 0px #600000;
}

#departments .service-item h4 {
  font-size: 1.4rem;
  color: #600000;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: block;
}

#departments .service-item h4:before {
  display: none;
}

#departments .service-item p {
  color: #555555;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  text-align: justify;
}

@media (max-width: 768px) {
  #cfp ul li {
    font-size: 14px;
    padding: 8px 0;
    padding-left: 20px;
  }

  #cfp h4 {
    font-size: 20px;
  }

  #departments .service-item {
    margin-bottom: 20px;
  }

  .team .member img {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 480px) {
  .team .member img {
    width: 120px;
    height: 120px;
  }

  .team .member {
    padding: 25px 20px;
  }
}
/*--------------------------------------------------------------
# Combined Section Styling
--------------------------------------------------------------*/

.combined-section-container {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.info-card {
  background: white;
  padding: 45px;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #d4af37;
  transition: all 0.4s ease;
  height: 100%;
}

.info-card:hover {
  box-shadow: 0 16px 50px rgba(96, 0, 0, 0.12);
  border-left: 5px solid #800000;
  transform: translateY(-5px);
}

.section-subheading {
  font-size: 1.4rem;
  font-weight: 700;
  color: #600000;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.logistics-item {
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.logistics-item:last-child {
  margin-bottom: 0;
}

.logistics-item-accent {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(96, 0, 0, 0.03));
  border: 1px solid #d4af37;
}

.logistics-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #600000;
  margin: 0 0 12px 0;
  font-family: var(--heading-font);
}

.logistics-list {
  margin: 0;
  padding-left: 25px;
  text-align: left;
}

.logistics-list li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: #333;
}

.logistics-list a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.logistics-list a:hover {
  color: #600000;
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Opportunity Cards
--------------------------------------------------------------*/

.opportunity-card {
  background: white;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.opportunity-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #600000, #d4af37, #600000);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.opportunity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(96, 0, 0, 0.15);
  border-color: #d4af37;
}

.opportunity-card:hover::before {
  opacity: 1;
}

.opportunity-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #600000, #800000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 40px;
  color: #d4af37;
  box-shadow: 0 8px 20px rgba(96, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.opportunity-card:hover .opportunity-icon {
  transform: scale(1.1) rotateZ(5deg);
  background: linear-gradient(135deg, #d4af37, #800000);
  color: white;
}

.opportunity-card h4 {
  font-size: 1.5rem;
  color: #600000;
  margin: 0 0 20px 0;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.opportunity-card p {
  color: #555;
  line-height: 1.8;
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .info-card {
    padding: 35px 25px;
  }

  .opportunity-card {
    padding: 35px 25px;
  }

  .section-subheading {
    font-size: 1.2rem;
  }

  .logistics-item {
    margin-bottom: 20px;
    padding: 18px;
  }

  .combined-section-container {
    margin-top: 60px;
    padding-top: 40px;
  }
}

/*--------------------------------------------------------------
# How to Reach Section Styling
--------------------------------------------------------------*/
.reach-content {
  height: 100%;
}

.reach-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.reach-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.reach-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.reach-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.reach-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #600000 0%, #800000 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 1.5rem;
}

.reach-text {
  flex-grow: 1;
}

.reach-text h5 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.reach-text p {
  margin: 0 0 5px 0;
  color: #666;
  font-size: 0.95rem;
}

.reach-text small {
  color: #999;
  font-size: 0.85rem;
  display: block;
  margin-top: 3px;
}

.reach-button-group {
  margin-top: 30px;
  display: flex;
  gap: 12px;
}

.reach-button-group .btn {
  padding: 12px 28px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.reach-button-group .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.reach-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reach-map iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 12px;
}

@media (max-width: 992px) {
  .reach-card {
    padding: 25px;
  }

  .reach-details {
    gap: 20px;
  }

  .reach-map {
    margin-top: 20px;
  }

  .reach-map iframe {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .reach-card {
    padding: 20px;
  }

  .reach-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .reach-text h5 {
    font-size: 1rem;
  }

  .reach-button-group {
    flex-direction: column;
  }

  .reach-button-group .btn {
    width: 100%;
    justify-content: center;
  }

  .reach-map iframe {
    height: 300px;
  }
}

/*--------------------------------------------------------------
# Contact Information Styling
--------------------------------------------------------------*/
.contact-unified {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-block:last-child {
  margin-bottom: 0;
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #600000 0%, #800000 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 1.5rem;
}

.contact-details h4 {
  margin: 0 0 15px 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: #333;
}

.contact-details p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-details a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #764ba2;
}

.coordinator {
  margin-bottom: 12px;
}

.coordinator:last-child {
  margin-bottom: 0;
}

.coordinator p {
  margin: 0;
}

@media (max-width: 768px) {
  .contact-unified {
    padding: 30px;
  }

  .contact-block {
    gap: 15px;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .contact-details h4 {
    font-size: 1.05rem;
  }
}

/* Guidelines Section Styles */
.guidelines-section-box {
  background-color: var(--surface-color);
  border-top: 3px solid var(--heading-color);
  border-radius: 0;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(96, 0, 0, 0.05);
}

.guidelines-header {
  margin-bottom: 25px;
  padding-bottom: 0;
  border-bottom: none;
}

.guidelines-header h4 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: 0.5px;
}

.guidelines-content {
  padding: 0;
}

.guidelines-detailed-list {
  list-style: none;
  padding: 0;
  margin: 0;
  column-count: 1;
}

.guidelines-detailed-list li {
  display: block;
  margin-bottom: 18px;
  color: var(--default-color);
  line-height: 1.8;
  padding: 0 0 0 0;
  font-size: 0.95rem;
  text-align: justify;
}

.guidelines-detailed-list li:last-child {
  margin-bottom: 0;
}

.guidelines-detailed-list li:before {
  content: "▪ ";
  color: var(--heading-color);
  font-weight: bold;
  margin-right: 10px;
}

.guidelines-link {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--accent-color);
  transition: color 0.2s ease;
}

.guidelines-link:hover {
  color: var(--heading-color);
  border-bottom-color: var(--heading-color);
}