@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
@font-face {
  font-family: 'Monologue DEMO';
  src: url('https://be-inspired.in/assets/fonts/Monologue DEMO.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --default-font: "Protipo", sans-serif;
  --heading-font: "Monologue DEMO", sans-serif;
  --nav-font: "Protipo", 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: #FFFDF7; /* Background color for the entire website, including individual sections */
  --default-color: #181547; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #181547; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #F58220; /* 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: rgba(255, 255, 255, 0.6);  /* The default color of the main navmenu links */
  --nav-hover-color: #e07844; /* 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: #352a26; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #e07844; /* 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: #FFFDF7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #FFFDF7;
  --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: "Protipo", sans-serif;
  cursor: url("https://be-inspired.in/assets/img/cursor.svg"), auto;
}
.site-orange-color{
    color:#FCAF17;
}
.site-orange-bgcolor{
    background:#FCAF17;
}
a {
  font-family: "Protipo", sans-serif;
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
  font-size: clamp(14px, 1vw, 16px);
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}
p{
  font-family: "Protipo", sans-serif;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 400;
  margin-bottom: 0;
}
span{
  font-family: "Protipo", sans-serif;
}

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


/*Paragraphs 
-----------------------------*/
.p-16-500{
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 500;

}
.p-16-700{
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 700;

}
.p-18{
  font-size: clamp(14px, 1.4vw, 18px);
  line-height:28px;
  font-weight: 500;
}
.p-20{
  font-size: clamp(18px, 1.4vw, 20px);
  line-height:32px;
}
.p-22{
  font-size: clamp(20px, 1.8vw, 22px);
  font-weight: 700;
}
.p-22-orange{
  font-size: clamp(20px, 1.8vw, 22px);
  font-weight: 700;
  color:#F48020;
}
.p-24{
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 700;
}
.p-28{
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
}
.p-32-bold{
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
}
.p-38-bold{
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
}
.p-40-hero{
  font-size: clamp(30px, 3.2vw, 40px);
  font-weight: 700;
}
.p-56-hero-color{
  font-family: "pf-videotext", sans-serif;    
  font-size: clamp(42px, 3.2vw, 56px);
  font-weight: 700;
  color:#FCAF17;
  text-transform: uppercase;
}
.p-40{
  font-size: clamp(30px, 3.2vw, 40px);
  font-weight: 400;
  line-height:40px;
  
}
.p-48{
  font-size: clamp(36px, 3.2vw, 48px);
  font-weight: 700;
}
.p-56-hero{
  font-size: clamp(42px, 5vw, 56px);
  font-weight: 700;
  line-height: 60px;
}
.p-64-reg{
  font-size: 64px;
  font-weight: 700;
  line-height: 100%;
}
.p-b-40{
    padding-bottom: 40px;
}

/*Headings 
-----------------------------*/
h1{
  font-size: clamp(48px, 6vw, 64px);
  font-weight: 400;
  color: #181547;
  text-transform: uppercase;
}
h2{
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 400;
  color: #181547;
  text-transform: uppercase;
}
h3{
  font-size: clamp(30px, 3.2vw, 40px);
  font-weight: 400;
  text-transform: uppercase;
}
h5{
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 700;
}
.h-16{
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 500;
  color: #FCAF17;
  text-transform: uppercase;
  font-family: "Protipo", sans-serif;
}

.page-heading-title{
    bottom: 150px;
    left: 0px;
    color: #fff;
    text-align: center;
    position: relative;
}

/* Button Design
------------------------------*/
.white-border-btn{
  position: relative;
  display: inline-block;
  height: 48px; 
  padding: clamp(10px, 2vw, 14px) 
           clamp(18px, 4vw, 28px);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 600;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 99px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap; 
  z-index: 1;
}
.black-border-btn {
  position: relative;
  display: inline-block;
  height: 48px; 
  padding: clamp(10px, 2vw, 14px) 
           clamp(18px, 4vw, 28px);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 600;
  color: #000;
  border: 2px solid #000;
  border-radius: 99px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap; 
  z-index: 1;
}

.moving-border-btn {
  position: relative;
  display: inline-flex;      
  align-items: center;
  justify-content: center;
  height: 48px;  
  padding: clamp(10px, 2vw, 14px) 
           clamp(18px, 4vw, 28px);
  font-size: clamp(13px, 3.5vw, 16px);
  font-weight: 600;
  color: #000;
  border-radius: 99px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap; 
  z-index: 1;
}

/* Mobile full-width (optional) */
@media (max-width: 576px) {
  .moving-border-btn {
    width: 100%;
    max-width: 260px;
  }
}

/* BORDER ANIMATION ONE-SIDE */
.moving-border-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 99px;
  padding: 2px;
  background: linear-gradient(90deg, #7C449A, #EB4535);
  background-size: 200% 100%;
  animation: borderFlow 4s linear infinite;

  /* hollow border effect */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  z-index: -1;
}

@keyframes borderFlow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}


/* 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);
  }
}


/*--------------------------------------------------------------
# Fullscreen intro screen
--------------------------------------------------------------*/

/* Fullscreen Cover */

#intro-screen{
  position: fixed;
  inset: 0;
  background:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  z-index:9999;
}

/* PLAY ICON */
.intro-play{
  display:flex;
  gap:18px;
  animation: playZoom 1.0s infinite ease-in-out;
}

.intro-play span{
  width:0;
  height:0;
  border-top:11px solid transparent;
  border-bottom:11px solid transparent;
  border-left:18px solid #fff;
  opacity:0;
  animation: arrowMove 1.6s infinite ease-in-out;
}

/* stagger delay */
.intro-play span:nth-child(1){ animation-delay:0s; }
.intro-play span:nth-child(2){ animation-delay:.2s; }
.intro-play span:nth-child(3){ animation-delay:.4s; }
.intro-play span:nth-child(4){ animation-delay:.6s; }

/* arrows animation */
@keyframes arrowMove{
  0%{ opacity:0; transform:scale(.6); }
  30%{ opacity:1; transform:scale(0.8);}
  70%{ opacity:1; transform:scale(1);}
  100%{ opacity:0; transform:scale(0.8); }
}

/* zoom effect */
@keyframes playZoom{
  0%{ transform:scale(0.6); }
  50%{ transform:scale(1.2); }
  100%{ transform:scale(0.6); }
}
/* LOGO */
.intro-logo{
  opacity:0;
  transform:scale(.6);
  margin-top:40px;
}

.intro-logo {
  width: 300px;
  margin-top: 20px;
  opacity: 0;
  transform: scale(2);
}

#hero {
  opacity: 0;
  transform: scale(0.98);
  transition: all 2.8s ease;
}


@keyframes zoomIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}

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

.header .topbar {
  background-color: var(--background-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

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

.header .branding {
  min-height: 90px;
  background-color: #00000066;
}

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

.header .logo img {
  padding:12px;
}

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

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  background-color: #181547;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
/* Home Tab */
.primary-tabs {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.primary-tabs li {
  margin-right: 20px;
}

.primary-tabs li a {
  color: #fff;
  font-weight: 600;
}

/* Hamburger Always Visible */
.mobile-nav-toggle {
  font-size: 24px;
  cursor: pointer;
  position:relative;
  display: block !important;
  z-index: 10001;
  color: #fff;
  background: #ff3800;
  padding: 0px 6px;
  border-radius: 8px;
}
.mobile-nav-toggle.bi-x {
  left: 100px;
}

/* Sidebar Menu */
.navmenu {
  position: fixed;
  right: -260px;
  top: 0;
  width: 260px;
  height: 100vh;
  background: #fff;
  padding: 30px;
  transition: 0.4s;
  z-index: 10000;
  overflow-y: auto;
}

.navmenu.active {
  right: 0;
}

.navmenu ul {
  list-style: none;
  padding: 0;
}

.navmenu li {
  margin-bottom: 18px;
}

.navmenu .dropdown ul {
  display: none;
  padding-left: 15px;
}

.navmenu .dropdown.active ul {
  display: block;
}
/* Home ko toggle ke paas lane ke liye */
.branding .container {
  display: flex;
  align-items: center;
  justify-content: flex-start !important;
  gap: 20px; /* spacing optional */
}

/* Logo left me rakho */
.logo {
  margin-right: auto;
}

/* Home + Toggle group ko inline rakho */
.primary-tabs,
.mobile-nav-toggle {
  display: flex;
  align-items: center;
}

.primary-tabs {
  margin: 0 10px 0 0; /* Home ko toggle ke bilkul pass lane ka spacing */
}

@media (max-width:1200px){
  .mobile-nav-toggle.bi-x {
    left: 10px;
  }                                 
}

.mobile-sticky-footer {
    display: none;
}

@media only screen and (max-width: 768px) {
    .primary-tabs{
        display:none;
    }
    .mobile-sticky-footer {
        display: flex;      
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%; 
        height: 48px;  
        z-index: 9999;
        background: white;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }

    .footer-link-header {
        flex: 1;                   /* Forces both buttons to take 50% width each */
        display: flex;
        align-items: center;       /* Vertical center text */
        justify-content: center;   /* Horizontal center text */
        text-align: center;
        text-decoration: none;
        font-weight: bold;
        font-size: 12px;           /* Adjusted for long text on small screens */
        padding: 0 5px;
        text-transform: uppercase;
    }

    /* Distinct Colors for each button */
    .festival-link {
        background: #0e0d2b; 
        color: #ffffff;
    }

    .pitch-link {
        background: #FCAF17; 
        color: #000000;
    }

    body {
        margin-bottom: 48px; 
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

.footer {
  background-image: url("https://be-inspired.in/assets/img/backgrounds/footer.png");
  background-size: cover;        /* image fits full section */
  background-position: center;   /* center crop */
  background-repeat: no-repeat;  /* no repeat */
  width: 100%;
  font-size: clamp(14px, 1vw, 16px);
  padding: 80px 0 0;
  position: relative;
}
.footer a , .footer p, .footer h3, .footer h4 {
  color:#fff!important;
} 
.sitename{
  font-size: clamp(48px, 6vw, 64px);
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}

.footer .footer-content .logo {
  line-height: 1;
}

.footer .footer-content .logo span {
  color: #fff;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  text-align: left;
}

.footer .newsletter-form {
  margin-top: 30px;
  margin-left: 30%;
  margin-right: 30%;
  max-width: 550px;
}

.footer .newsletter-form h5 {
  color: #fff;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

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

.footer .newsletter-form input[type=email] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background-color: var(--surface-color);
  color: #fff;
  font-size: 14px;
}

.footer .newsletter-form input[type=email]:focus {
  outline: none;
  box-shadow: none;
}

.footer .newsletter-form input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.footer .newsletter-form .btn-subscribe {
  background-color: var(--accent-color);
  border: none;
  position: relative;
  right: 40px;
  border-radius: 24px;
  padding: 12px 40px;
  cursor: pointer;
  transition: 0.3s;
  z-index:10;
}

.footer .newsletter-form .btn-subscribe:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.footer .newsletter-form .btn-subscribe i {
  font-size: 16px;
}

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

.partition-hr{
  color: #fff;
  border-top: 1px solid #fff;
  opacity: 1;
}

.footer h4 {
  font-size: clamp(18px, 1.4vw, 20px);
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  font-family: var(--heading-font);
}

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

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: clamp(14px, 1vw, 16px);
  transition: 0.3s;
}

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

.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 12px;
  color: var(--accent-color);
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer .footer-contact .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.footer .footer-contact .contact-item .contact-icon i {
  color: var(--accent-color);
  font-size: 16px;
}

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.5;
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer .social-links a {
  width: 42px;
  height: 42px;
  background-color: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.footer .social-links a i {
  font-size: 16px;
  color:#000;
}

.footer .footer-bottom {
  margin-top: 40px;
  padding: 24px 0;
  border-top:1px solid #fff;
}

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
  margin-bottom: 8px;
}

.footer .footer-bottom .footer-bottom-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: clamp(14px, 1vw, 16px);
  margin-left: 20px;
  text-decoration: none;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
  margin-left: 0;
}

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

.footer .footer-bottom .credits {
  text-align: right;
  font-size: clamp(18px, 1.4vw, 20px);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .copyright p {
    text-align: center;
    margin-bottom: 15px;
  }
  .footer .footer-bottom .footer-bottom-links {
    text-align: center;
    margin-bottom: 10px;
  }
  .footer .footer-bottom .footer-bottom-links a {
    margin: 0 10px;
  }
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

.footer .footer-bottom .credits a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer .footer-bottom .credits a:hover {
  text-decoration: underline;
}

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

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
  .footer .newsletter-form {
    margin-top: 30px;
    margin-left: 0px;
    margin-right: 0px;
    max-width: 350px;
  }
}

input[type=text],
input[type=email],
textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  border-color: var(--accent-color);
}

input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
@media(max-width: 1200px){
  .php-email-form{
    width: 50%;
  }
}
@media(max-width: 767px){
  .php-email-form{
    width: 50%;
    margin-left: -7%;
    display:none;
  }
}

/*--------------------------------------------------------------
#Cookie storage
-------------------------------------------------------------*/
.cookie-container {
    position: fixed;
    bottom: -100%; /* Initially hidden below the screen */
    left: 0;
    width: 100%;
    background: #222;
    color: #fff;
    z-index: 99999;
    padding: 20px 0;
    transition: 0.5s ease-in-out;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
}

/* Jab active class add hogi toh banner upar aayega */
.cookie-container.active {
    bottom: 0;
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    padding-right: 20px;
}

.cookie-content a {
    color: #ffd700; /* Gold color */
    text-decoration: underline;
}

.cookie-btn {
    background: #FCAF17;
    color: #000;
    border: none;
    padding: 10px 25px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    white-space: nowrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-content p {
        padding-right: 0;
        margin-bottom: 15px;
        font-size: 13px;
    }
}

/*--------------------------------------------------------------
# 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);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

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

.page-title h1 {
  font-size: clamp(32px, 3.4vw, 42px);
  font-weight: 700;
  margin-bottom: 10px;
}

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

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

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

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding-bottom: 96px;
  overflow: clip;
  position: relative;
}

@media (max-width: 1199px) {

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

.main-inner-page{
    margin-top:156px;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 120px;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-bottom: 120px;
}

.hero .hero-content {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero .hero-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, #000, transparent 50%);
}

.hero .hero-text .tagline {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 15px;
  font-family: var(--nav-font);
}

.hero .hero-text .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .hero .hero-text .hero-title {
    font-size: 2.5rem;
  }
}

.hero .hero-text .hero-description {
  font-size: clamp(14px, 3.4vw, 18px);
  line-height: 1.6;
  margin-bottom: 35px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  max-width: 580px;
}

@media (max-width: 768px) {
  .hero .hero-text .hero-description {
    font-size: clamp(14px, 1vw, 16px);
  }
}

.hero-actions {
  display: flex;
  gap: 20px;
}

@media (max-width: 576px) {
  .hero .hero-text .hero-actions {
    flex-direction: column;
    gap: 15px;
  }
}

.hero .hero-text .hero-actions .btn {
  padding: 15px 30px;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 160px;
  text-align: center;
}

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

.hero .hero-text .hero-actions .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.hero .hero-text .hero-actions .btn.btn-outline {
  background-color: transparent;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.hero .hero-text .hero-actions .btn.btn-outline:hover {
  transform: translateY(-2px);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.hero .hero-text .hero-features {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero .hero-text .hero-features {
    gap: 20px;
  }
}

.hero .hero-text .hero-features .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero .hero-text .hero-features .feature-item i {
  font-size: clamp(18px, 1.4vw, 20px);
  color: var(--accent-color);
  flex-shrink: 0;
}

.hero .hero-text .hero-features .feature-item .feature-text {
  display: flex;
  flex-direction: column;
}

.hero .hero-text .hero-features .feature-item .feature-text .label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2px;
}

.hero .hero-text .hero-features .feature-item .feature-text .value {
  font-size: 14px;
  font-weight: 500;
}

.hero .booking-card {
  background: color-mix(in srgb, var(--surface-color), transparent 70%);
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 90%);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

@media (max-width: 992px) {
  .hero .booking-card {
    margin-top: 50px;
    padding: 30px;
  }
}

.hero .booking-card h3 {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}

.hero .booking-card .form-control,
.hero .booking-card select {
  padding: 12px 15px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  color: var(--default-color);
  background-color: transparent;
}

.hero .booking-card .form-control:focus,
.hero .booking-card select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

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

.hero .booking-card select {
  cursor: pointer;
}

.hero .booking-card textarea {
  resize: vertical;
  min-height: 80px;
}

.hero .booking-card .btn-primary {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
  padding: 15px;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hero .booking-card .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.hero .scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--contrast-color);
}

.hero .scroll-indicator .scroll-text {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
}

.hero .scroll-indicator .scroll-arrow {
  animation: bounce 2s infinite;
}

.hero .scroll-indicator .scroll-arrow i {
  font-size: 20px;
  color: var(--accent-color);
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-content h2 {
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
}

.about .about-content .fst-italic {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.about .about-content .feature-item {
  margin-bottom: 1.5rem;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about .about-content .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about .about-content .feature-item i {
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-bottom: 12px;
  display: inline-block;
}

.about .about-content .feature-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.about .about-content .feature-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.about .about-content .signature .chef-name {
  font-weight: 600;
  font-style: italic;
  margin-bottom: 5px;
}

.about .about-content .signature img {
  max-width: 180px;
  height: auto;
  margin-top: 5px;
}

.about .about-gallery {
  position: relative;
}

.about .about-gallery .years-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 2;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 25px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about .about-gallery .years-badge .number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about .about-gallery .years-badge .text {
  font-size: 0.9rem;
  font-weight: 500;
}

.about .about-gallery img {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.about .about-gallery img:hover {
  transform: scale(1.02);
}

.read-more-btn {
   cursor: pointer;
  font-weight: 600;
  color: #F58220;
  text-decoration: underline;
  margin-left: 6px;
}

.read-more-content {
  /*display: none;*/
  margin-top: 10px;
}

.read-more-content.active {
  display: block;
}

@media (max-width: 992px) {
  .about .about-gallery {
    margin-top: 2rem;
  }

  .about .about-gallery .years-badge {
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
  }

  .about .about-gallery .years-badge .number {
    font-size: 2rem;
  }

  .about .about-gallery .years-badge .text {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .about .about-gallery .years-badge {
    bottom: 15px;
    right: 15px;
  }

  .about .about-content .signature img {
    max-width: 150px;
  }
}

#typewriter {
  white-space: nowrap;
  border-right: 3px solid #fcaf17;
  width: fit-content;
  overflow: hidden;
  min-height:75px;
}

/*--------------------------------------------------------------
# Statistics Section
--------------------------------------------------------------*/

.statistics-section {
  background-image: url("https://be-inspired.in/assets/img/backgrounds/statistics.png");
  background-size: cover;        /* image fits full section */
  background-position: center;   /* center crop */
  background-repeat: no-repeat;  /* no repeat */
  width: 100%;
  padding: 96px 0;              /* section height control */
}
.section-tag {
  font-size: clamp(14px, 1vw, 16px);
  letter-spacing: 1px;
}

.section-title {
  font-weight: 700;
  letter-spacing: 1px;
}

.stat-box {
  padding: 40px 16px;
  border-bottom:1px solid #ffffff38;
}
.project-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}
.project-item .project-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    opacity: 0;
    padding-top: 60px;
    transition: 0.5s;
}
.project-item:hover .project-overlay {
  opacity: 1;
  padding-top: 0;
}

/*--------------------------------------------------------------
# Fulcrum Section
--------------------------------------------------------------*/
.fulcrum-section{
    margin-top:96px;
}

/*--------------------------------------------------------------
# Speakers Section
--------------------------------------------------------------*/
.coverflow-slider .item {
  transform: scale(0.7);       /* Side images small */
  transition: 0.4s ease;
  opacity: 0.5;                /* Side images opacity low */
}
.coverflow-slider .center .item {
  transform: scale(1);         /* Center image full size */
  opacity: 1;
  z-index: 5;
}
.coverflow-slider img {
  border-radius: 16px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 24px;
  border-radius: 8px;
  transition: all 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 16px;
  color: #f7b50d;
}

.testimonials .testimonial-item .stars i {
  font-size: 18px;
  margin: 0 2px;
}

.testimonials .testimonial-item p {
  font-size: clamp(14px, 1vw, 16px);
  font-style: italic;
  margin: 0 0 20px 0;
}

.testimonials .testimonial-item .profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonials .testimonial-item .profile .testimonial-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials .testimonial-item .profile .info h4 {
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 600;
  margin: 0 0 4px 0;
}

.testimonials .testimonial-item .profile .info h4 i {
  font-size: 14px;
  color: var(--accent-color);
  margin-left: 4px;
}

.testimonials .testimonial-item .profile .info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.testimonials .swiper-wrapper {
  height: auto !important;
}

.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  width: 20px;
  border-radius: 4px;
}

@media (max-width: 1199.98px) {
  .testimonials .testimonial-item {
    margin: 0;
  }
}

/*--------------------------------------------------------------
# registration Section
--------------------------------------------------------------*/
.registration-row{
  background: #70CDDD;
  background-image: url("https://be-inspired.in/assets/img/backgrounds/registration-cta.png");
  background-size: cover;        /* image fits full section */
  background-position: center;   /* center crop */
  background-repeat: no-repeat;  /* no repeat */
  padding: 2rem;
  border-radius: 32px;
}
/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .seasonal-hero {
  text-align: center;
  position: relative;
  padding: 3rem 0;
}

.events .seasonal-hero .seasonal-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
  color: var(--contrast-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.events .seasonal-hero h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.events .seasonal-hero p {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.events .seasonal-hero .festival-dates {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
}

.events .seasonal-hero .festival-dates i {
  font-size: 1.2rem;
}

.events .feature-card {
  background-color: var(--surface-color);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.events .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.events .feature-card .feature-visual {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.events .feature-card .feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.events .feature-card .feature-visual .feature-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--surface-color);
  color: var(--accent-color);
  padding: 0.8rem 1.2rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.events .feature-card .feature-visual .feature-badge i {
  font-size: 1rem;
}

.events .feature-card .feature-visual:hover img {
  transform: scale(1.1);
}

.events .feature-card .feature-content {
  padding: 2.5rem;
}

.events .feature-card .feature-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.events .feature-card .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.events .feature-card .feature-content .feature-highlights {
  margin-bottom: 2rem;
}

.events .feature-card .feature-content .feature-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.events .feature-card .feature-content .feature-highlights .highlight-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.events .feature-card .feature-content .feature-highlights .highlight-item span {
  font-weight: 500;
}

.events .feature-card .feature-content .feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.events .feature-card .feature-content .feature-link:hover {
  gap: 1.2rem;
  color: color-mix(in srgb, var(--accent-color), #000 20%);
}

.events .feature-card .feature-content .feature-link i {
  transition: transform 0.3s ease;
}

.events .feature-card .feature-content .feature-link:hover i {
  transform: translateX(5px);
}

.events .schedules-section .schedules-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.events .schedules-section .schedules-content p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.events .schedules-section .schedules-grid {
  display: block;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.events .schedules-section .schedules-grid .schedule-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background-color: #18154708;
  margin-bottom:1rem;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.events .schedules-section .schedules-grid .schedule-item:hover {
  transform: translateY(-5px);
}

.events .schedules-section .schedules-grid .schedule-item .schedule-icon {
  width: 130px;
  height: 140px;
  background: #181547;
  border-radius: 16px 0px 0px 16px;
  align-items: center;
  padding-top: 16px;    
}

.events .schedules-section .schedules-grid .schedule-item .schedule-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.events .schedules-section .schedules-grid .schedule-item .schedule-details h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.events .schedules-section .schedules-grid .schedule-item .schedule-details span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.schedule-time, .schedule-venue{
    background: #1815470F;
    padding: 5px 10px;
    border-radius: 16px;
}

.events .community-section {
  margin: 5rem 0;
}

.events .community-section .community-card,
.events .community-section .sustainability-card {
  background-color: var(--surface-color);
  border-radius: 25px;
  padding: 3rem;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.events .community-section .community-header,
.events .community-section .sustainability-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.events .community-section .community-header .community-icon,
.events .community-section .community-header .sustainability-icon,
.events .community-section .sustainability-header .community-icon,
.events .community-section .sustainability-header .sustainability-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #28a745 20%));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.events .community-section .community-header .community-icon i,
.events .community-section .community-header .sustainability-icon i,
.events .community-section .sustainability-header .community-icon i,
.events .community-section .sustainability-header .sustainability-icon i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.events .community-section .community-header h3,
.events .community-section .sustainability-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.events .community-section .community-header p,
.events .community-section .sustainability-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.events .community-section .community-stats .stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.events .community-section .community-stats .stat-row:last-child {
  margin-bottom: 0;
}

.events .community-section .community-stats .stat-row .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-radius: 15px;
}

.events .community-section .community-stats .stat-row .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.events .community-section .community-stats .stat-row .stat-item .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 1.3;
}

.events .community-section .sustainability-features .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.events .community-section .sustainability-features .feature-item:last-child {
  border-bottom: none;
}

.events .community-section .sustainability-features .feature-item i {
  font-size: 1.3rem;
  color: var(--accent-color);
}

.events .community-section .sustainability-features .feature-item span {
  font-weight: 500;
}

@media (max-width: 992px) {
  .events .seasonal-hero h2 {
    font-size: 2.8rem;
  }

  .events .schedules-section {
    padding: 3rem 2rem;
  }

  .events .schedules-section .schedules-grid {
    grid-template-columns: 1fr;
  }

  .events .community-section .community-stats .stat-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .events .seasonal-hero h2 {
    font-size: 2.2rem;
  }

  .events .seasonal-hero p {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Flip Slider Section
--------------------------------------------------------------*/

.flip-3d-carousel {
  position: relative;
  width: 450px;
  height: 320px;
  margin: 0px auto;
  perspective: 2000px;
}

.flip-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform-origin: bottom;
  transform: rotateX(180deg);
  transition: all 0.9s ease;
}

.flip-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* Center Slide */
.flip-slide.active {
  opacity: 1;
  transform: rotateX(0deg) scale(1);
  z-index: 3;
}

/* Left Slide */
.flip-slide.left {
  opacity: 0.6;
  transform: translateX(-160px) scale(0.7) rotateY(20deg);
  z-index: 2;
}

/* Right Slide */
.flip-slide.right {
  opacity: 0.6;
  transform: translateX(160px) scale(0.7) rotateY(-20deg);
  z-index: 2;
}

.flip-slide.zoom-last {
  transform: translateZ(0) scale(1.25);
  z-index: 10;
  transition: transform 1.5s ease;
}


/*--------------------------------------------------------------
# Programme details Section
--------------------------------------------------------------*/

.programme-details-section{
  background-image: url("https://be-inspired.in/assets/img/backgrounds/programme-details.png");
  background-size: cover;        /* image fits full section */
  background-position: center;   /* center crop */
  background-repeat: no-repeat;  /* no repeat */
  width: 100%;
  padding: 100px 0; 
}

.programme-details-center {
  position: relative;
  text-align: center;
}

.programme-details-center-card {
  position: relative;
  text-align: center;
  display:inline-flex;
}
/* INITIAL STATE */
.programme-detail-logo {
  opacity: 0;
  transform: scale(1.8);
  transition: none;
}

/* LOGO SHOW */
.programme-detail-logo.show {
  animation: logoShow 2s ease forwards;
}

/* LOGO HIDE */
.programme-detail-logo.hide {
  animation: logoHide 1.2s ease forwards;
}

/* REMOVE SPACE AFTER HIDE */
.programme-detail-logo.remove {
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* CARDS */
.programme-details-cards , .programme-details-cards-title, .programme-details-cards-logo{
  display: none!important;
  opacity: 0;
}

.programme-details-cards.show{
  display: block!important;
  animation: cardsShow 1.4s ease forwards;
}
.programme-details-cards-title.show {
    display:block!important;
   animation: cardsShow 1.4s ease forwards; 
}
.programme-details-cards-logo.show{
    display:block!important;
   animation: cardsShow 1.4s ease forwards; 
}

/* KEYFRAMES */
@keyframes logoShow {
  from { transform: scale(1.8); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

@keyframes logoHide {
  from { transform: scale(1); opacity: 1; }
  to   { transform: scale(0.6); opacity: 0; }
}

@keyframes cardsShow {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}


/* Cards */
.programme-details-cards{
  display:flex;
  gap:40px;
  align-items: center;    /* Vertical Center */
  justify-content: center; /* Horizontal Center */
}
.venue-card{
  min-width: 280px;
  height: 170px;
  padding:24px;
  margin-top:24px;
  border: 1px solid #fff;
  border-radius: 16px;
  background: #ffffff0f;
}
.venue-card p{
  color:#fff;
}
.venue-card i{
  color:#fff;
  font-size: 32px;
}

@media (max-width: 768px){
    .programme-details-cards.show {
        display: block !important;
        animation: cardsShow 1.4s ease forwards;
    }
    .venue-card{
        margin-bottom:16px;
    }
}


/*--------------------------------------------------------------
# What We Are Section
--------------------------------------------------------------*/

.about-card {
  position: relative;
  border-radius: 16px;
  padding: 24px;
  max-width: 420px;
  margin-bottom:8px;
}

/* Title */
.about-card h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1f2a44;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Text */
.about-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #2f3b5f;
  margin: 0;
}

/* Arrow Circle */
.about-card-arrow {
  position: absolute;
  top: -5px;
  right: -7px;
  width: 60px;
  height: 60px;
  border: 8px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Arrow icon */
.about-card-arrow span {
  font-size: 18px;
  font-weight: 600;
  color: #1f2a44;
}

.about-card:hover {
  transform: translateY(-6px);
  transition: 0.3s ease;
}

.about-card , .about-card .about-card-arrow{
  background: #0064E026;
}

/*.about-card1 , .about-card1 .about-card-arrow{
  background: #CAD8FF;
}
.about-card2 , .about-card2 .about-card-arrow{
  background: #D2E7E0;
}
.about-card3 , .about-card3 .about-card-arrow{
  background: #FCF2DC;
}*/

/*--------------------------------------------------------------
# Theme Animation Section
--------------------------------------------------------------*/

.keyword-text{
  font-size: 96px;
  font-weight: 500;
}
.keyword-row{
  padding-bottom:32px;
}
.keyword-row img{
  height:200px;
}

/*--------------------------------------------------------------
# Speakers Section
--------------------------------------------------------------*/
.speaker-card {
  position: relative;
  /*width: 380px;*/
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  transition: all 0.45s ease;
  border: 4px solid transparent;
}

.speaker-img {
  width: 100%;
  object-fit: cover;
  /*height:500px;*/
}

.swiper-slide-active .speaker-card {
  border-color: #2a6bf4;
  transform: scale(1);
  z-index: 10;
}
.speakerSlider .swiper-slide {
  opacity: 0.3;
  transform: scale(0.75);
  transition: 0.45s ease;
}

.speakerSlider .swiper-slide-prev,
.speakerSlider .swiper-slide-next {
  opacity: 0.65;
  transform: scale(0.88);
  z-index: 5;
}

.speakerSlider .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 10;
}
.speaker-info {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFFB2;
  padding: 16px 24px;
  border-radius: 14px;
  width: 88%;
  text-align: left;
}

.speaker-info h4 {
  margin: 0;
  font-size: clamp(18px, 1.4vw, 20px);
  font-weight: 800;
}

.speaker-info p {
  margin: 0;
  font-size: 14px;
}

/* Arrow Circle */
.speaker-card-arrow {
  position: absolute;
  background:#FCAF17;
  top: -5px;
  right: -10px;
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Arrow icon */
.speaker-card-arrow span {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.custom-nav {
  width: 42px;
  height: 42px;
  border: 2px solid #000;
  border-radius: 50%;
  position: static;
}

.custom-nav::after {
  font-size: 16px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .speaker-card {
    width: 90%;
  }
}

/*--------------------------------------------------------------
# Event Heighlight Section
--------------------------------------------------------------*/


.event-highlights-section {
  position: relative;
}

/* scroll space */
.event-wrapper {
  height: 300vh;
  position: relative;
}

/* sticky container */
.event-row {
  position: sticky;
  top: 24px;
  min-height: 260px;
  margin-bottom: 24px;
  padding-bottom:24px;
  background:#fffdf7;
  border-bottom:1px solid #18154726;
  transform: translateY(140px);
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
  
}

/* active slide */
.event-row.active {
  transform: translateY(0);
  transition-delay: 0.08s;  
  z-index: 5;
}

/* peek next row */
.event-row.peek {
  transform: translateY(70px);
  transition-delay: 0s;
  z-index: 3;
}

.event-text-right{
    text-align:right;
}


/*--------------------------------------------------------------
# venue Map Section
--------------------------------------------------------------*/
.venue-map-wrapper {
  position: relative;
  height: 200vh;   /* IMPORTANT: scroll space */
}

/* map container */
.venue-map {
  position: sticky;   /* switch from absolute */
  top: 0;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}


.venue-map img {
  width: 50%;
  object-fit: cover;
}

/* visible */
.venue-map.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* zoom */
.zoom-img {
  transform: scale(1);
  transition: transform 1.2s ease;
}

.map-2.active .zoom-img {
  transform: scale(1.3);
}

/*--------------------------------------------------------------
# Venue guide Details
--------------------------------------------------------------*/
.venue-guide-card{
    border-right:1px solid #18154726;
}
.venue-guide-card i{
    color: #fff;
    font-size: 24px;
    border-radius: 50%;
    background: #f58220;
    padding: 8px;
}

/*--------------------------------------------------------------
# Programme Tabs Section
--------------------------------------------------------------*/

.programme-tabs {
  border-bottom: none;
  gap: 40px;
}

.programme-tabs .nav-link {
  border: none;
  background: transparent;
  font-size: 24px;
  font-weight: 500;
  color: #9b9b9b;
  padding: 0 0 10px;
  position: relative;
}

.programme-tabs .nav-link.active {
  color: #1d1d1d;
  font-weight: 600;
}

.programme-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70%;
  height: 3px;
  background: #f05a28;
  border-radius: 2px;
}

/* Content */
.programme-list {
  padding-left: 18px;
  margin: 25px 0;
}

.programme-list li {
  margin-bottom: 10px;
}

/* Button */
.programme-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  border-radius: 30px;
  border: 2px solid transparent;
  background:
    linear-gradient(#fff7ea, #fff7ea) padding-box,
    linear-gradient(90deg, #6a3ea1, #f05a28) border-box;
  color: #1d1d1d;
  font-weight: 600;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-box {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact .contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-box .icon-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .contact-info-box .icon-box i {
  font-size: 24px;
}

.contact .contact-info-box .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact .contact-info-box .info-content p {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.5;
}

.contact .contact-info-box .info-content p:last-child {
  margin-bottom: 0;
}

.contact .map-section {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.contact .map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact .form-container-overlap {
  position: relative;
  margin-bottom: 60px;
  z-index: 10;
}

.contact .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.contact .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.contact .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.contact .contact-form-wrapper .form-group {
  margin-bottom: 20px;
}

.contact .contact-form-wrapper .form-group .input-with-icon {
  position: relative;
}

.contact .contact-form-wrapper .form-group .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  z-index: 10;
}

.contact .contact-form-wrapper .form-group .input-with-icon i.message-icon {
  top: 28px;
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea+i {
  top: 25px;
  transform: none;
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control {
  border-radius: 8px;
  padding: 12px 15px 12px 45px;
  height: 3.5rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
  height: 180px;
  resize: none;
  padding-top: 15px;
}

.contact .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

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

.contact .contact-form-wrapper .loading,
.contact .contact-form-wrapper .error-message,
.contact .contact-form-wrapper .sent-message {
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .contact .form-container-overlap {
    margin-top: -120px;
  }

  .contact .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-box {
    margin-bottom: 20px;
  }

  .contact .form-container-overlap {
    margin-top: -100px;
  }

  .contact .contact-form-wrapper {
    padding: 25px;
  }

  .contact .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .contact .map-section {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .contact .form-container-overlap {
    margin-top: -80px;
  }

  .contact .contact-form-wrapper {
    padding: 20px;
  }

  .contact .btn-submit {
    width: 100%;
  }

  .contact .map-section {
    height: 400px;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Blog Page
--------------------------------------------------------------*/

.blog_title{
    line-height:16px;
}
.blog-wrapper-box{
    display: flex;
    flex-direction: column;
}
.article-wrapper{
    border: 1px solid #E3E3E3;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    height: 100%; /* Ye sabse important hai border ko barabar karne ke liye */
    width: 100%;
    overflow: hidden;
}
.article-image img{
    border-radius: 24px 24px 0px 0px;
}
.article-content{
    padding:24px;
}
.blog-details-image{
    width:100%;
    border-radius:24px;
    margin-bottom:48px;
}
.popular-article-image{
    border-radius: 16px;
}

/* Mobile Optimization for screens below 400px */
@media only screen and (max-width: 400px) {
    .blog-wrapper-box {
        flex: 0 0 100% !important; /* Force full width */
        max-width: 100% !important;
    }
    
    .article-image img {
        height: 200px; /* Single column mein image thodi badi kar sakte hain */
    }

    .blog_title {
        font-size: 16px; /* Single column mein thoda bada font acha lagega */
    }
}
/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
}

.error-404 .error-number {
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 300;
  color: color-mix(in srgb, var(--heading-color), transparent 15%);
  line-height: 0.8;
  margin-bottom: 40px;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
}

.error-404 .error-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.error-404 .error-description {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-404 .error-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 80px;
}

@media (min-width: 576px) {
  .error-404 .error-actions {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}

.error-404 .error-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.error-404 .error-actions .btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn-primary i {
  font-size: 18px;
}

.error-404 .error-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: transparent;
  color: var(--heading-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.error-404 .error-actions .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn-secondary i {
  font-size: 18px;
}

.error-404 .helpful-links {
  text-align: center;
}

.error-404 .helpful-links h3 {
  font-size: 24px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 40px;
}

.error-404 .helpful-links .links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .error-404 .helpful-links .links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.error-404 .helpful-links .link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 20px;
  background-color: var(--surface-color);
  border-radius: 8px;
  text-decoration: none;
  color: var(--default-color);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.error-404 .helpful-links .link-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .helpful-links .link-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item span {
  font-size: 16px;
  font-weight: 400;
}

.error-404 .helpful-links .link-item:hover i {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 80px 0;
  }

  .error-404 .error-actions {
    margin-bottom: 60px;
  }

  .error-404 .helpful-links .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .error-404 .helpful-links .links-grid {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Modals Section
--------------------------------------------------------------*/
.read-more-text {
  cursor: pointer;
  font-weight: 600;
  color: #F58220;
  text-decoration: underline;
}

.read-more-text:hover {
  opacity: 0.7;
}

.close-text {
  cursor: pointer;
  font-weight: 600;
  color: #000;
  text-decoration: underline;
}
