/**
* Template Name: Maundy
* Template URL: https://bootstrapmade.com/maundy-free-coming-soon-bootstrap-theme/
* Updated: Feb 01 2025 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

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

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

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #24b7a4; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #384a59; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #566c7f; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #ffffff; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #24b7a4; /* 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. */

.transparent-background {
  --background-color: rgba(255, 255, 255, 0);
  --contrast-color: #5b5b5b;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  background: url(../img/bg.jpg) top center no-repeat;
  background-size: cover;
  position: relative;
}
body::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(49, 71, 89, 0.6);
}
@media (min-width: 1366px) {
  body {
    background-attachment: fixed;
  }
}
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header { 
  color: var(--default-color);
 background: #0b1221;

  
  transition: all 0.5s;
  z-index: 997;
}
.header .logo {
  line-height: 1;
}
.header .logo img {
  max-height:80px;
 
}
.header .logo h1 {
  
}
.tagline{color:#E1FF00;}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --background-color: rgba(0, 0, 0,1);
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0 0 0;
  position: relative;
}
.footer .icon {
  color:#ff681e;
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}
.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}
.footer .address p {
  margin-bottom: 0px;
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}
.footer .social-links a:hover {
  color:#ff681e;
  border-color: #ff681e;;
}
.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.footer .copyright p {
  margin-bottom: 0;
}
.footer .credits {
  margin-top: 5px;
  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: #ff681e transparent #ff681e 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: #ff681e;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  border:2px solid #fff;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 26px;
  color: var(--contrast-color);
  line-height: 0;
}
.scroll-top:hover {
  background-color:#ff681e;
  color: var(--contrast-color);
  border:2px solid #ffd1dc;
}
.scroll-top i:hover {
 
  color:#000;
  line-height: 0;
}
.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 Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  /* background-color: var(--background-color); */
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
  position: relative;
}

@media (max-width: 1199px) {

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

@media (max-width: 768px) {

 .ex-mar {
    margin-top: 50px!important;
  }
}
@media (max-width: 480px) {

 .ex-mar {
    margin-top: 70px!important;
  }
}
@media (max-width: 320px) {

 .ex-mar {
    margin-top: 70px!important;
  }
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;  
  margin-bottom: 30px;
  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: #E1FF00;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.section-title p {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    position: relative;
    min-height: 700px;
    overflow: hidden;
    color: #fff;
}
/* SLIDESHOW */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: slideshow 20s infinite ease-in-out, zoom 20s infinite;
    z-index: -2;
}
/* DARK OVERLAY */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    
   
    z-index: -1;
}
/* SLIDES */
@keyframes slideshow {   
    0%  {background-image: url("../img/bg5.jpg") }
    33%  {background-image: url("../img/bg6.jpg") }
    66%  { background-image: url("../img/bg7.jpg");}
    100% { background-image: url("../img/bg8.jpg"); }    
}
/* ZOOM EFFECT */
@keyframes zoom {
    0%   { transform: scale(1); }
    100% { transform: scale(1.5); }
}
/* COUNTDOWN BOX */
.countdown-box {
    background: rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 20px;
    
    
    backdrop-filter: blur(2px);
}
.countdown-box h2 {
    font-size: 3rem;
    margin: 0;
}
.gradient-border {
  border-radius: 25px;
  position: relative;
}
.gradient-border:before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px; /* border length  */
  background: linear-gradient(#ff6b00,#E1FF00);
  border-radius: inherit;
  mask: conic-gradient(#000 0 0) content-box exclude,conic-gradient(#000 0 0);}
  
.countdown-box span {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.gallery-img {
    width: 100%;
    height: 220px;           /* same height for all */
    object-fit: cover;       /* crop but keep ratio */
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s;
    }
    .gallery-img:hover {
      transform: scale(1.05);
    }
    .carousel-item img {
    max-height: 90vh;
    object-fit: contain;     /* show full image in modal */
    background: #000;
  }
.photo{background: rgb(6, 6, 6,0.9); background: url(../img/photo-bg.png); background-size: cover;}
.text-orange h2{color:#ff681e;}
.text-yellow h2{color: #e1ff00;}
.text-orange h2:after{background: #ff681e;}

#about{background: #0057FF;
background: linear-gradient(90deg,rgba(0, 87, 255, 1) 0%, rgba(255, 107, 0, 1) 100%);
}
.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}
.about .content p {
  margin-bottom: 30px;
}
.about .icon-box i {
  font-size: 40px;
  color: #fff;
  margin-bottom: 10px;
}
.about .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}
.about .icon-box h4 a {
  color:#fff;
  transition: 0.3s;
}
.about .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color));
  margin-bottom: 0;
}
.about .icon-box:hover h4 a {
  color:#fff;
}
.guest-bg{
  background:url(../img/bg-lines.png);
  background-size: cover;
}
.profile-card {
  border: 0px solid #ff6a00;
  background:none;
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.profile-card:hover {
  transform: translateY(-5px);
}
.profile-img {
  width: 100%;      
  object-fit: cover;
}    
.profile-body {
  background: none;
  padding: 20px;
  text-align: center;
}
.profile-name {
  color: #ffffff;
  font-weight: 700;
  
  margin-bottom: 5px;
}
.profile-role {
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
 }
.profile-company {
  font-size: 0.85rem;
  color: #bbbbbb;
  margin-top: 5px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
/* Container to hide overflow */

#contact{background: #064b66;}
#ecosystem{background: #ff681e;}
.contact .info-item+.info-item {
  margin-top: 40px;
}

.spark-btn {
    position: relative;
    display: inline-block;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    background: #111;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
}

/* Rotating border effect */

.spark-btn::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent,
        #E1FF00,
        transparent 30%
    );

    animation: rotateBorder 2s linear infinite;
    top: -50%;
    left: -50%;
    z-index: -2;
}

/* Inner background */

.spark-btn::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: #322563;
    border-radius: 10px;
    z-index: -1;
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.spark-btn2{font-size:30px;cursor: default;}

.agenda-bg{background: url(../img/agenda-bg.jpg) top center;
background-size: cover;}
 .schedule-title {
        background: #0d3b66;
        color: white;
        padding: 10px;
        font-weight: 600;
        text-align: center;
        border-radius: 25px 25px 0 0;
    }

    .schedule-table {
        border-radius: 0 0 25px 25px;
        overflow: hidden;
    }
 