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

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

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #3a3a3a;  /* Darkened from the original #828c91 for better legibility, while still leaving a clear, obvious shift to saffron on hover/active */
  --nav-hover-color: #f35c2b; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #555555; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f35c2b; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header .header-social-links {
  padding-left: 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}

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

  .header .header-social-links {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}

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

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: normal;
    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: 250px;
        width: 250px;
  }

  .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;
  }

  /* Keep visited nav links on-theme: without this, a link the visitor has
     already clicked falls back to the browser's own default visited-link
     color (which can render as an off-brand green/purple) instead of the
     site's saffron accent. */
  .navmenu a:visited {
    color: var(--nav-color);
  }

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

  .navmenu .dropdown ul a:visited {
    color: var(--nav-dropdown-color);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  background-color: color-mix(in srgb, var(--background-color), white 5%);
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 30px 0;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
 /* background: color-mix(in srgb, var(--default-color), transparent 92%);*/
     background: #ffffff;
    box-shadow: inset 0 0 4px;
  color: var(--accent-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  text-decoration: none;
}

/*--------------------------------------------------------------
# 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: 40px;
  height: 40px;
  border-radius: 4px;
  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;
}

/*--------------------------------------------------------------
# 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);*/
    color: white;
    background-color: var(--background-color);
    padding: 20px 0;
    position: relative;
    background: linear-gradient(45deg, rgb(0 0 0 / 63%), rgb(0 0 0 / 52%), transparent), url(../img/banner_home_img2.jpg);
    min-height: 30vh;
    display: flex;
    align-items: center;
    background-position: center;
}

.page-title h1 {
  font-size: 38px;
  font-weight: 700;
  margin: 0;
      color: white;
    text-transform: uppercase;
}

.page-title .breadcrumbs ol {
  display: none;
  /*display: flex;*/
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  /* background: url(../img/hero-bg.png) right center no-repeat; */
  /*background: linear-gradient(270deg, rgb(0 0 0 / 50%), rgb(255 255 255 / 0%)), url(../img/banner_home_img2.jpg);*/
  background: linear-gradient(45deg, rgb(0 0 0 / 80%), rgb(0 0 0 / 50%), transparent), url(../img/banner_home_img2.jpg);
  background-size: cover;
  width: 100%;
  min-height: 88vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 40px;
}

.about .content h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
}

.about .content h2 {
  font-size: 24px;
  font-weight: 700;
}

.about .content p {
  margin: 15px 0 30px 0;
  line-height: 24px;
}

.about .content .btn-read-more {
  color: var(--contrast-color);
  background: var(--accent-color);
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}

.about .content .btn-read-more span {
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.about .content .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.about .content .btn-read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  color: var(--heading-color);
  padding: 15px 0;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 575px) {
  .features .nav-link h4 {
    font-size: 16px;
  }
}

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link.active {
  background-color: var(--background-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 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 Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
}

.services .service-item .icon {
  margin-bottom: 10px;
}

.services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: 0.3s;
}

.services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  transform: translateY(-10px);
}

.services .service-item:hover h4 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# 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(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.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: var(--accent-color);
}

.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);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 120px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.call-to-action h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: var(--contrast-color);
  background: var(--accent-color);
}

.call-to-action .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid var(--background-color);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  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 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.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: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}

.team .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background-color: var(--background-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
}

.pricing .featured .pricing-item {
  background: var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured .pricing-item {
    transform: scale(1.02, 1.1);
  }
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
  color: var(--contrast-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--background-color), transparent 92%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  transition: 0.3s;
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
}

.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: color-mix(in srgb, var(--background-color), transparent 50%);
  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], .btn2 {
        background: var(--accent-color);
        color: var(--contrast-color);
        border: 0;
        padding: 10px 30px;
        transition: 0.4s;
        border-radius: 4px;
    }

        .contact .php-email-form button[type=submit]:hover,
        .btn2:hover {
            background: color-mix(in srgb, var(--accent-color), transparent 20%);
            color: white;
            transform: translateY(-4px);
        }

.text-p2 {
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# 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 .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  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);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.portfolio2 .portfolio-content img {
   height: 35vh;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.register-section {
    position: relative;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin-top: -40px;
    padding: 0 15px;
    height: 90px;
}

.register-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f35c2b;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.register-btn:hover {
    background: #8e351b;
    color: #fff;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .register-section {
        margin-top: -28px;
        height: 55px;
    }

    .register-btn {
        min-width: 240px;
        height: 50px;
        padding: 0 20px;
        font-size: 14px;
        border-width: 6px;
    }
}
/*--------------------------------------------------------------
# Bharat Parv 2026 nav badge
# A tricolour (saffron / white / green) pill badge with a slowly
# travelling gradient border and a single soft shimmer sweep every
# few seconds - replaces the old flash-and-fade text glow with a
# quieter, more premium "ribbon badge" treatment.
--------------------------------------------------------------*/
.navmenu a.bp2026-glow {
    position: relative;
    display: inline-block !important;
    padding: 6px 24px !important;
    border-radius: 14px;
    line-height: 1.25;
    background:
        linear-gradient(#fffdf8, #fffdf8) padding-box,
        linear-gradient(90deg, #ff9933, #ffffff, #128807, #ffffff, #ff9933) border-box;
    background-size: 100% 100%, 300% 100%;
    border: 1.5px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    isolation: isolate;
    animation:
        bp2026BorderFlow 8s linear infinite,
        bp2026Breathe 4.5s ease-in-out infinite;
}

@keyframes bp2026BorderFlow {
    to {
        background-position: 0 0, 300% 0;
    }
}

@keyframes bp2026Breathe {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    50% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 0 12px rgba(255, 153, 51, 0.3);
    }
}

/* one soft light sweep across the badge, then a quiet pause */
.navmenu a.bp2026-glow::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.85) 50%, transparent 60%);
    background-size: 250% 100%;
    background-position: 150% 0;
    animation: bp2026Shimmer 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes bp2026Shimmer {
    0% {
        background-position: 150% 0;
    }
    35%, 100% {
        background-position: -50% 0;
    }
}

/*--------------------------------------------------------------
# Header logo event date tag (below "EKTA DIWAS 2026" in the logo)
--------------------------------------------------------------*/
.header .logo {
    position: relative;
}

.header .logo .logo-date-tag {
    position: absolute;
    left: 48.8%;
    top: 73%;
    white-space: nowrap;
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: 17px;
    line-height: 1;
    letter-spacing: 0.4px;
    color: #111111;
    text-transform: uppercase;
}

.header .logo .logo-date-tag sup {
    font-size: 60%;
    top: -0.5em;
}

@media (max-width: 575px) {
    .header .logo .logo-date-tag {
        font-size: 12px;
    }
}

/*--------------------------------------------------------------
# Rashtriya Ekta Diwas Grand Parade page (REDParadeDetails2026)
# - clickable hotspots on the circular infographic
# - "lucrative" card styling for the event write-ups
--------------------------------------------------------------*/
html {
    scroll-behavior: smooth;
}

.red-parade-hero {
    position: relative;
    display: block;
}

.red-parade-hero img {
    display: block;
    /*width: 100%;*/
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    margin: 0 auto;
}

.red-parade-hotspot {
    position: absolute;
    display: block;
    width: 10%;
    height: 14%;
    border-radius: 50%;
    background: transparent;
    border: none;
    box-shadow: none;
    cursor: pointer;
    transition: box-shadow .5s ease, background .5s ease;
}

/* Always-on gentle saffron "breathing" cue — without this, nothing on the
   infographic signals that these 7 spots are clickable until a visitor
   happens to hover over one. Pauses the instant a hotspot IS hovered/focused,
   handing off cleanly to the fuller reveal below. Each hotspot is given a
   slightly different delay (via .rp-hotspot-N) so they don't all pulse in
   lockstep — a more lively, "alive" cue across the artwork. */
.red-parade-hotspot:not(:hover):not(:focus-visible) {
    animation: rpHotspotBreathe 3.2s ease-in-out infinite;
}

@keyframes rpHotspotBreathe {
    0%, 100% {
        background: radial-gradient(circle,
            rgba(255, 255, 255, 0.22) 0%,
            rgba(255, 200, 140, 0.14) 35%,
            rgba(255, 153, 51, 0.08) 62%,
            rgba(255, 153, 51, 0) 90%);
        box-shadow:
            0 0 16px 6px rgba(255, 153, 51, 0.16),
            0 0 32px 16px rgba(255, 153, 51, 0.07);
    }
    50% {
        background: radial-gradient(circle,
            rgba(255, 255, 255, 0.42) 0%,
            rgba(255, 200, 140, 0.26) 35%,
            rgba(255, 153, 51, 0.16) 62%,
            rgba(255, 153, 51, 0) 90%);
        box-shadow:
            0 0 28px 12px rgba(255, 153, 51, 0.32),
            0 0 54px 28px rgba(255, 153, 51, 0.15);
    }
}

/* dead-centre darkens into an exact soft circle, then saffron smoke radiates
   outward from it — no ring, no crisp edge, anywhere */
.red-parade-hotspot:hover,
.red-parade-hotspot:focus-visible {
    background: radial-gradient(circle,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 250, 240, 0.62) 20%,
        rgba(255, 210, 150, 0.48) 40%,
        rgba(255, 160, 60, 0.36) 58%,
        rgba(255, 153, 51, 0.18) 76%,
        rgba(255, 153, 51, 0) 96%);
    box-shadow:
        0 0 24px 14px rgba(255, 153, 51, 0.5),
        0 0 52px 30px rgba(255, 153, 51, 0.3),
        0 0 92px 52px rgba(255, 153, 51, 0.15);
    outline: none;
}

/* precise centres, pinned to the middle of each clip-art element */
/* left arc — 30th October cultural celebrations */
.rp-hotspot-1 { left: 30.2%;   top: 28.2%; animation-delay: 0s;    }   /* India's Glorious Journey (theatre/dance) */
.rp-hotspot-2 { left: 25%;   top: 46.0%; animation-delay: 0.45s; }   /* Anand Math */
.rp-hotspot-3 { left: 21%;   top: 65.7%; animation-delay: 0.9s;  }   /* The Journey of Mother India (rocket) */

/* right arc — 31st October grand parade (all link to the same section) */
.rp-hotspot-4 { left: 62%;   top: 27.2%; animation-delay: 1.35s; }   /* saluting soldiers */
.rp-hotspot-5 { left: 69.3%; top: 43.5%; animation-delay: 1.8s;  }   /* participant stats (donut chart) */
.rp-hotspot-6 { left: 79%;   top: 61.2%; animation-delay: 2.25s; }   /* aerial & musical spectacle */
.rp-hotspot-7 { left: 79%;   top: 82.2%; animation-delay: 2.7s;  }   /* Prime Minister's address */

/* scroll targets so the sticky header never covers the heading */
#event-anand-math,
#event-glorious-journey,
#event-mother-india,
#grand-parade-31oct {
    scroll-margin-top: 110px;
}

/* event write-up cards */
.event-card {
    background: linear-gradient(180deg, #fff8f0 0%, #ffffff 100%);
    border-left: 5px solid #f35c2b;
    border-radius: 12px;
    padding: 22px 26px;
    margin: 24px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: box-shadow .3s ease;
}

.event-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.event-card.numbered-event ol {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
}

.event-card.numbered-event ol li {
    font-family: var(--heading-font);
    font-size: 1.35rem;
    /*font-weight: 800;*/
    color: #c1440e;
    letter-spacing: .2px;
    padding-bottom: 8px;
    border-bottom: 2px solid #ffe1cf;
    margin-bottom: 12px;
}

/* other ordered lists inside event cards (e.g. Important Information for Visitors)
   keep their native numbering, just styled to match the theme */
.event-card:not(.numbered-event) ol {
    margin: 0 0 12px;
    padding-left: 1.4rem;
}

.event-card:not(.numbered-event) ol li {
    padding-bottom: 6px;
    margin-bottom: 10px;
}

.event-card:not(.numbered-event) ol li::marker {
    color: #1f7a3f;
    font-weight: 800;
}

.event-card p {
    margin-bottom: 10px;
}

.event-card ul {
    margin-bottom: 6px;
}

.event-card ul li {
    padding: 3px 0;
}

.event-card ul li::marker {
    color: #f35c2b;
    font-weight: 700;
}

.grand-parade-card {
    border-left-color: #1f7a3f;
    background: linear-gradient(180deg, #f2fbf5 0%, #ffffff 100%);
}

.grand-parade-card > p[align="center"] > strong {
    font-family: var(--heading-font);
    font-size: 1.35rem;
    color: #1f7a3f;
}

/* general intro card (before the day-specific sections) */
.intro-card {
    border-left-color: #1a4f8b;
    background: linear-gradient(180deg, #eef6ff 0%, #ffffff 100%);
}

.intro-card > p[align="center"] > strong {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    color: #1a4f8b;
}

/* "CULTURAL CELEBRATIONS: 30th October" day-header card, matches the numbered event cards */
.day-header-card > p[align="center"] > strong {
    font-family: var(--heading-font);
    font-size: 1.35rem;
    color: #c1440e;
}

.day-header-card p {
    text-align: center;
}

/* closing call-to-action card */
.cta-card {
    border-left: none;
    border-radius: 14px;
    text-align: center;
    background: linear-gradient(135deg, #fff3e8 0%, #fdeeea 50%, #eef8f0 100%);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.cta-card > p:first-child > strong {
    font-family: var(--heading-font);
    font-size: 1.6rem;
    color: #c1440e;
    letter-spacing: .3px;
}

.cta-card .cta-note {
    font-size: 0.9rem;
    color: #6b6b6b;
    font-style: italic;
    margin-top: 10px;
}

/*--------------------------------------------------------------
# Site-wide "lucrative" content-card theme
# Same family as the RED Parade .event-card cards above, reused for
# the descriptive text write-ups on other pages (Bharat Parv history,
# Ekta Prakash Parv, past RED Parade years, tourism/hotel notices).
# Forms, tables and photo galleries are left in their native layout.
--------------------------------------------------------------*/
.content-card {
    background: linear-gradient(180deg, #fff8f0 0%, #ffffff 100%);
    border-left: 5px solid #f35c2b;
    border-radius: 12px;
    padding: 24px 28px;
    margin: 22px 0 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: box-shadow .3s ease;
}

.content-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.content-card h1,
.content-card h2,
.content-card h3 {
    font-family: var(--heading-font);
    color: #c1440e;
    margin-bottom: 14px;
}

.content-card p {
    margin-bottom: 12px;
    text-align: justify;
}

.content-card .text-center img,
.content-card img.img-fluid {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* colour variants — same palette used across the RED Parade page */
.content-card-blue {
    border-left-color: #1a4f8b;
    background: linear-gradient(180deg, #eef6ff 0%, #ffffff 100%);
}

.content-card-blue h1,
.content-card-blue h2,
.content-card-blue h3 {
    color: #1a4f8b;
}

.content-card-green {
    border-left-color: #1f7a3f;
    background: linear-gradient(180deg, #f2fbf5 0%, #ffffff 100%);
}

.content-card-green h1,
.content-card-green h2,
.content-card-green h3 {
    color: #1f7a3f;
}

.content-card-orange {
    border-left-color: #f35c2b;
    background: linear-gradient(180deg, #fff3e8 0%, #ffffff 100%);
}

.content-card-orange h1,
.content-card-orange h2,
.content-card-orange h3 {
    color: #c1440e;
}

.content-card-teal {
    border-left-color: #0f7a72;
    background: linear-gradient(180deg, #eafbf9 0%, #ffffff 100%);
}

.content-card-teal h1,
.content-card-teal h2,
.content-card-teal h3 {
    color: #0f7a72;
}

/* short single-line lead-in banner, used just before a table */
.content-note {
    display: block;
    background: linear-gradient(180deg, #eef6ff 0%, #ffffff 100%);
    border-left: 5px solid #1a4f8b;
    border-radius: 10px;
    padding: 14px 22px;
    margin: 4px 0 24px;
    font-size: 1.02rem;
    color: #333333;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

/* centred "coming soon" placeholder card */
.coming-soon-card {
    text-align: center;
    padding: 46px 28px;
}

.coming-soon-card h1 {
    margin-bottom: 0;
    font-size: 2rem;
    letter-spacing: .5px;
}

/* ======================================================
   Plan Your Visit wizard (Registration/PlanYourVisit.html)
   ====================================================== */
.pv-wizard {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #eef1f5;
}

.pv-wizard-head {
    background: linear-gradient(135deg, #fff8f0 0%, #f0f8ff 100%);
    padding: 34px 40px 26px;
    border-bottom: 1px solid #eef1f5;
    text-align: center;
}

.pv-wizard-head h2 {
    margin: 0 0 10px;
    font-size: 1.65rem;
    color: #1a1a1a;
}

.pv-wizard-head p {
    max-width: 720px;
    margin: 0 auto 24px;
    color: #555;
    font-size: 0.98rem;
    line-height: 1.6;
}

.pv-stepper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
}

.pv-step {
    flex: 1;
    position: relative;
    text-align: center;
}

.pv-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 17px;
    left: 58%;
    width: 84%;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.pv-step.completed:not(:last-child)::after {
    background: #f35c2b;
}

.pv-step-circle {
    position: relative;
    z-index: 1;
    width: 34px;
    height: 34px;
    line-height: 34px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #999;
    font-weight: 700;
    margin: 0 auto 8px;
    transition: all 0.25s ease;
    border: 2px solid #f0f0f0;
}

.pv-step.active .pv-step-circle {
    background: #f35c2b;
    border-color: #f35c2b;
    color: #fff;
    box-shadow: 0 0 0 5px rgba(243, 92, 43, 0.15);
}

.pv-step.completed .pv-step-circle {
    background: #1f7a3f;
    border-color: #1f7a3f;
    color: #fff;
}

.pv-step-label {
    font-size: 0.82rem;
    color: #888;
    font-weight: 600;
}

.pv-step.active .pv-step-label {
    color: #f35c2b;
}

.pv-step.completed .pv-step-label {
    color: #1f7a3f;
}

.pv-body {
    padding: 36px 40px 44px;
}

.pv-panel {
    display: none;
}

.pv-panel.active {
    display: block;
    animation: pvFadeIn 0.35s ease;
}

@keyframes pvFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pv-panel h3 {
    font-size: 1.22rem;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.pv-note {
    background: #f5f9ff;
    border-left: 4px solid #1a4f8b;
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 22px;
    line-height: 1.55;
}

.pv-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 8px;
}

.pv-form-group {
    flex: 1 1 260px;
}

.pv-form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 8px;
}

.pv-form-group .form-select {
    border-radius: 10px;
    border: 1.5px solid #e0e0e0;
    padding: 10px 14px;
    font-size: 0.95rem;
}

.pv-form-group .form-select:focus {
    border-color: #f35c2b;
    box-shadow: 0 0 0 3px rgba(243, 92, 43, 0.12);
}

.pv-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.pv-option-card {
    border: 1.5px solid #e6e6e6;
    border-radius: 14px;
    padding: 20px 20px 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.pv-option-card:hover {
    border-color: #f6b98f;
    box-shadow: 0 6px 18px rgba(243, 92, 43, 0.1);
    transform: translateY(-2px);
}

.pv-option-card.selected {
    border-color: #f35c2b;
    background: #fff9f6;
    box-shadow: 0 6px 20px rgba(243, 92, 43, 0.18);
}

.pv-option-card h4 {
    font-size: 1.02rem;
    margin: 10px 0 8px;
    color: #1a1a1a;
}

.pv-option-card p {
    font-size: 0.87rem;
    color: #555;
    margin-bottom: 6px;
    line-height: 1.5;
}

.pv-option-meta {
    font-size: 0.78rem !important;
    color: #888 !important;
}

.pv-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .3px;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.pv-badge-blue {
    background: #e7f0fb;
    color: #1a4f8b;
}

.pv-badge-orange {
    background: #fdece3;
    color: #c1440e;
}

.pv-badge-green {
    background: #e7f6ec;
    color: #1f7a3f;
}

.pv-summary {
    background: #f8f9fb;
    border-radius: 12px;
    padding: 18px 24px;
    max-width: 520px;
    margin: 0 auto 26px;
}

.pv-summary p {
    margin: 6px 0;
    font-size: 0.95rem;
    color: #333;
}

#pv-action-primary {
    text-align: center;
    margin-bottom: 26px;
}

.pv-secondary-action {
    text-align: center;
    border-top: 1px dashed #e0e0e0;
    padding-top: 20px;
    margin-bottom: 20px;
}

.pv-secondary-action p {
    font-size: 0.87rem;
    color: #777;
    margin-bottom: 10px;
}

.pv-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pv-btn-next,
.pv-btn-primary {
    background: #f35c2b;
    color: #fff !important;
}

.pv-btn-next:hover,
.pv-btn-primary:hover {
    background: #d94f22;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(243, 92, 43, 0.28);
}

.pv-btn-prev {
    background: #f0f0f0;
    color: #555 !important;
}

.pv-btn-prev:hover {
    background: #e2e2e2;
}

.pv-btn-outline {
    background: transparent;
    color: #1a4f8b !important;
    border: 1.5px solid #1a4f8b;
}

.pv-btn-outline:hover {
    background: #1a4f8b;
    color: #fff !important;
}

.pv-btn-group {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #f0f0f0;
    padding-top: 22px;
    margin-top: 4px;
}

@media (max-width: 700px) {
    .pv-wizard-head {
        padding: 26px 20px 20px;
    }

    .pv-body {
        padding: 26px 20px 32px;
    }

    .pv-options {
        grid-template-columns: 1fr;
    }

    .pv-form-row {
        flex-direction: column;
        gap: 16px;
    }

    .pv-step-label {
        font-size: 0.72rem;
    }
}


/* ============================================================
   Bharat Parv 2026 - "Coming Soon" placeholder
   Same tricolour-ribbon language as the nav badge, scaled into a
   full anticipation panel: a slow travelling tricolour border, an
   ambient saffron glow that breathes behind the card, a shimmer
   sweep across the heading, a gradient-animated headline, and a
   small pulsing tricolour dot row that reads as "more is on its
   way" - built so visitors want to come back and check again.
   ============================================================ */
.bp2026-comingsoon {
    position: relative;
    padding: 6px;
    border-radius: 26px;
    background:
        linear-gradient(#fffdf8, #fffdf8) padding-box,
        linear-gradient(90deg, #ff9933, #ffffff, #128807, #ffffff, #ff9933) border-box;
    background-size: 100% 100%, 300% 100%;
    border: 2px solid transparent;
    animation: bpCSBorderFlow 8s linear infinite, bpCSAmbientGlow 3.6s ease-in-out infinite;
    isolation: isolate;
}

@keyframes bpCSBorderFlow {
    to { background-position: 0 0, 300% 0; }
}

@keyframes bpCSAmbientGlow {
    0%, 100% { box-shadow: 0 0 30px 4px rgba(255, 153, 51, 0.18); }
    50%      { box-shadow: 0 0 54px 10px rgba(255, 153, 51, 0.32); }
}

.bp2026-comingsoon-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 28px 52px;
    border-radius: 20px;
    overflow: hidden;
}

.bp2026-comingsoon-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.9) 50%, transparent 60%);
    background-size: 250% 100%;
    background-position: 150% 0;
    animation: bpCSShimmer 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes bpCSShimmer {
    0% { background-position: 150% 0; }
    35%, 100% { background-position: -50% 0; }
}

.bp2026-comingsoon-tag {
    position: relative;
    z-index: 2;
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c1440e;
    background: #fdece3;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.bp2026-comingsoon-inner h1 {
    position: relative;
    z-index: 2;
    margin: 0 0 14px;
    font-size: 2.6rem;
    letter-spacing: .5px;
    font-weight: 800;
    background: linear-gradient(90deg, #ff9933, #b34700, #128807, #b34700, #ff9933);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: bpCSTextGradient 6s ease-in-out infinite;
}

@keyframes bpCSTextGradient {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

.bp2026-comingsoon-sub {
    position: relative;
    z-index: 2;
    max-width: 520px;
    margin: 0 auto 26px;
    color: #555;
    font-size: 1.02rem;
    line-height: 1.6;
}

.bp2026-comingsoon-dots {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 14px;
}

.bp2026-comingsoon-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    animation: bpCSDotPulse 1.4s ease-in-out infinite;
}

.bp2026-comingsoon-dots span:nth-child(1) { background: #ff9933; animation-delay: 0s; }
.bp2026-comingsoon-dots span:nth-child(2) { background: #cfcfcf; animation-delay: 0.2s; }
.bp2026-comingsoon-dots span:nth-child(3) { background: #128807; animation-delay: 0.4s; }

@keyframes bpCSDotPulse {
    0%, 80%, 100% { transform: scale(0.7); opacity: .5; }
    40%           { transform: scale(1.15); opacity: 1; }
}

@media (max-width: 600px) {
    .bp2026-comingsoon-inner { padding: 44px 20px 40px; }
    .bp2026-comingsoon-inner h1 { font-size: 2rem; }
}


/* ======================================================
   TCGL Accommodation page (Home/TourismHotelDetails.html)
   Photo gallery + accommodation category cards
   Professional Government-page treatment: clean cards,
   no flashy motion, consistent with site's content-card /
   content-note palette (saffron + govt blue).
   ====================================================== */
.tcgl-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 6px 0 34px;
}

.tcgl-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background: #f5f5f5;
    aspect-ratio: 4 / 3;
}

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

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

.tcgl-gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 14px 9px;
    font-size: .88rem;
    line-height: 1.25;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(0deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.82) 55%, rgba(0,0,0,0) 100%);
}

.tcgl-book-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4px 0 32px;
}

.tcgl-category {
    background: #ffffff;
    border: 1px solid #eef1f5;
    border-left: 5px solid #1a4f8b;
    border-radius: 12px;
    padding: 24px 28px;
    margin: 0 0 26px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.tcgl-category-alt {
    border-left-color: #f35c2b;
}

.tcgl-category-title {
    font-family: var(--heading-font);
    color: #1a4f8b;
    font-size: 1.25rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tcgl-category-alt .tcgl-category-title {
    color: #c1440e;
}

.tcgl-category-title i {
    color: #f35c2b;
}

.tcgl-category-desc {
    color: #444;
    margin-bottom: 16px;
}

.tcgl-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff8f0;
    border-left: 5px solid #f35c2b;
    border-radius: 10px;
    padding: 14px 20px;
    margin: 10px 0 4px;
    font-size: .95rem;
    color: #5a3a20;
}

.tcgl-note i {
    color: #f35c2b;
    margin-top: 2px;
    font-size: 1.1rem;
}

@media (max-width: 600px) {
    .tcgl-gallery { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
    .tcgl-category { padding: 20px 18px; }
    .tcgl-category-title { font-size: 1.1rem; }
}


/*--------------------------------------------------------------
# Other Accommodations — hotel booking tiles
# OYO / MakeMyTrip-style listing cards for the independent hotels,
# resorts, tents and guest houses near Ekta Nagar. Kept in the
# site's saffron accent family with a soft glow-lift on hover.
--------------------------------------------------------------*/
.hotel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 26px 0 8px;
}

@media (max-width: 991px) {
    .hotel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hotel-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.hotel-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f1e2d6;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    display: flex;
    flex-direction: column;
}

    .hotel-card:hover {
        transform: translateY(-6px);
        border-color: color-mix(in srgb, var(--accent-color), transparent 45%);
        box-shadow: 0 16px 36px rgba(243, 92, 43, 0.24), 0 0 0 1px rgba(243, 92, 43, 0.1);
    }

.hotel-card-media {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffb46b, #f35c2b 65%, #c1440e);
}

    .hotel-card-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .5s ease;
    }

.hotel-card:hover .hotel-card-media img {
    transform: scale(1.08);
}

.hotel-card-media-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hotel-card-media-placeholder > i {
        font-size: 3.2rem;
        color: rgba(255, 255, 255, 0.85);
    }

.hotel-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(20, 20, 20, 0.55);
    backdrop-filter: blur(3px);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: .3px;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 999px;
}

    .hotel-card-badge i {
        color: #ffb347;
    }

.hotel-card-body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.hotel-card-title {
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: 1.12rem;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.hotel-card-address {
    display: flex;
    gap: 7px;
    font-size: 0.85rem;
    color: #6b6b6b;
    line-height: 1.45;
    margin-bottom: 16px;
    flex-grow: 1;
}

    .hotel-card-address i {
        color: var(--accent-color);
        flex-shrink: 0;
        margin-top: 3px;
    }

.hotel-card-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.hotel-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 9px 4px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    line-height: 1.15;
    transition: all .25s ease;
    border: 1.5px solid transparent;
    cursor: pointer;
}

    .hotel-btn i {
        font-size: 1.05rem;
    }

.hotel-btn-book {
    background: linear-gradient(135deg, #f68a4e, #f35c2b);
    color: #fff;
    box-shadow: 0 4px 12px rgba(243, 92, 43, 0.3);
}

    .hotel-btn-book:hover {
        background: linear-gradient(135deg, #f35c2b, #c1440e);
        color: #fff;
        box-shadow: 0 6px 18px rgba(243, 92, 43, 0.45);
        transform: translateY(-2px);
    }

.hotel-btn-directions {
    background: #fff6ef;
    color: #c1440e;
    border-color: #f6c9a8;
}

    .hotel-btn-directions:hover {
        background: #ffe9d8;
        border-color: var(--accent-color);
        color: #c1440e;
        transform: translateY(-2px);
    }

.hotel-btn-call {
    background: #fff;
    color: #1f7a3f;
    border-color: #cfe8d7;
}

    .hotel-btn-call:hover {
        background: #f2fbf5;
        border-color: #1f7a3f;
        transform: translateY(-2px);
    }

.hotel-btn-disabled {
    background: #f5f5f5;
    color: #a8a8a8;
    border-color: #e6e6e6;
    cursor: default;
    pointer-events: none;
}

.text-justify{
    text-align:justify
}