/* ========================================
   AVENIR FONT - SELF-HOSTED
   ======================================== */

@font-face {
    font-family: 'Avenir';
    src: url('/fonts/avenir-light.woff2') format('woff2'),
         url('/wp-content/fonts/avenir-light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    src: url('/fonts/avenir-book.woff2') format('woff2'),
         url('/fonts/avenir-book.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    src: url('/fonts/avenir-medium.woff2') format('woff2'),
         url('/fonts/avenir-medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    src: url('/fonts/avenir-heavy.woff2') format('woff2'),
         url('/fonts/avenir-heavy.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    src: url('/fonts/avenir-black.woff2') format('woff2'),
         url('/fonts/avenir-black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   APPLY FONT TO ELEMENTS
   ======================================== */

/* Base body text - Medium */
body {
    font-family: 'Avenir', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    line-height: 1.6;
}

/* Headings - Black */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Avenir', sans-serif;
    font-weight: 900;
}

/* Light accents */
.subtitle, .tagline, .light-text {
    font-family: 'Avenir', sans-serif;
    font-weight: 300;
}

/* Navigation - Medium */
nav, .navigation {
    font-family: 'Avenir', sans-serif;
    font-weight: 500;
}

/* CTA Buttons - Black */
.btn, button, .cta {
    font-family: 'Avenir', sans-serif;
    font-weight: 900;
}

* {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html, body {
	width: 100%;
	height: 100%;
}

.pointer {
  cursor: pointer;
}

textarea {
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	resize: none;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.2rem;
	color: #333;
	padding: 0.5rem !important;
}

.btn-action {
	width: 40px;
	height: 40px;
	padding: 0rem !important;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-bottom: 0 !important;
}

.btn-action-auto {
	width: auto;
	height: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-bottom: 0 !important;
}

/* Remove navigation padding and ensure dropdown aligns properly */
.dropdown-hover {
    position: relative; /* Ensure the dropdown is positioned relative to the trigger */
}

/* Adjustment for the dropdown-menu */
.dropdown-menu-animation {
    position: absolute; /* Allow precise control over positioning */
    top: 100%; /* Set directly below the nav item */
    left: 0; /* Align left side */
    margin-top: 0; /* Remove margins if any exist */
    display: none; /* Hide by default */
    opacity: 0; /* Invisible by default */
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Fade-in effect */
    border-radius: 8px; /* Rounded corners */
    z-index: 1000; /* Stay above other content */
    padding: 0.5rem 1rem; /* Add padding for a larger hover area */
    background-color: white; /* Ensure it's visible against background */
}

/* Ensure it shows up directly on hover */
.dropdown-hover:hover > .dropdown-menu-animation,
.dropdown-menu-animation.show {
  display: block;
  opacity: 1; /* Make visible */
  z-index: 9999;
}

/* Remove potential issues with hover misfires */
.navbar-nav-hover > .nav-item > .nav-link {
    padding-bottom: 5px; /* Space for hover-effect items */
    position: relative; /* Ensure underline animations work correctly */
	z-index: 9999;
}

.dropdown-menu {
    visibility: hidden; /* Remain invisible unless hovered */
	z-index: 9999;
}

.dropdown-menu.show,
.dropdown-hover:hover > .dropdown-menu {
    visibility: visible; /* Visible when hovered */
    top: 100%; /* Align directly below the triggering element */
	z-index: 9999;
}
.cursor-pointer {
	cursor: pointer;
}

.field {
    position:absolute;
    bottom: 18%;
    z-index: 10;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
	width: 300px;
}

@media (max-width: 1400px) {
    .field {
        bottom: 20%;
    }
}

@media (max-width: 1200px) {
    .field {
        bottom: 22%;
    }
}

@media (max-width: 991px) {
    .field {
        display: none !important;
    }
}

.scroll {
	width: 60px;
	height: 60px;
	border: 2px solid white;
	border-radius: 50%;
	position: relative;
	z-index: 1;
	animation: down 1.5s infinite;
	-webkit-animation: down 1.5s infinite;
	&::before {
		content: '';
		position: absolute;
		top: 15px;
		left: 18px;
		width: 18px;
		height: 18px;
		border-left: 2px solid white;
  	border-bottom: 2px solid white;
		-webkit-transform: rotate(-45deg);
		        transform: rotate(-45deg);
	}
}

@keyframes down {
	0% {
		-webkit-transform: translate(0);
		        transform: translate(0);
	}
	20% {
		-webkit-transform: translateY(15px);
		        transform: translateY(15px);
	}
	40% {
		-webkit-transform: translate(0);
		        transform: translate(0);
	}
}

@-webkit-keyframes down {
	0% {
		-webkit-transform: translate(0);
		        transform: translate(0);
	}
	20% {
		-webkit-transform: translateY(15px);
		        transform: translateY(15px);
	}
	40% {
		-webkit-transform: translate(0);
		        transform: translate(0);
	}
}

#navbar-container.position-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 1); /* Lighter filter */
    height: 4.5rem;
    -webkit-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out; /* Fade transition */
    z-index: 9999; /* Ensure it stays above other content */
}


#navbar-container.position-fixed .navbar {
  	height: 100%;
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-align: center;
  	    -ms-flex-align: center;
  	        align-items: center;
}

#navbar-container.position-fixed .navbar .navbar-brand img {
  	height: 40px;
  	width: auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
 .offcanvas {
	-webkit-transition: none !important;
	transition: none !important; /* Remove transition effect */
	-webkit-transition: -webkit-transform 0.3s ease-in-out !important;
	transition: -webkit-transform 0.3s ease-in-out !important;
	transition: transform 0.3s ease-in-out !important;
	transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out !important; /* Slide effect only */
}

.offcanvas .offcanvas-body {
	padding: 0.5rem 3rem 3rem 3rem; /* Adjusted padding */
}

#offcanvas-menu .nav .nav-item .nav-link {
	font-size: 1.9rem; /* Bigger font size */
	font-weight: 900;
	line-height: 1.5rem;
	color: #f38c38;
	padding-left: 0;
	padding-right: 0;
	letter-spacing: -1px;
  margin-top: 0.25rem;
}
#subnav {
	padding: 0.5rem 1rem; /* Padding for spacing */
	z-index: 10000; /* Ensure it stays above main navigation */
}

#subnav.position-fixed .nav-item .nav-link {
	font-size: 1.2rem; /* Adjusted font size */
	font-weight: 600; /* Slightly bolder */
	color: #000; /* Color for the links */
	padding: 0.5rem 1rem; /* Padding for better spacing */
	-webkit-transition: color 0.3s ease;
	transition: color 0.3s ease; /* Smooth color transition */
}

#subnav .nav-item .nav-link {
	font-size: 1.2rem; /* Adjusted font size */
	font-weight: 500; /* Slightly bolder */
	color: #000; /* Color for the links */
	padding: 0.5rem 1rem; /* Padding for better spacing */
	-webkit-transition: color 0.3s ease;
	transition: color 0.3s ease; /* Smooth color transition */
	opacity: 0.5;
}

#subnav .nav-item .nav-link.active  {
  color: #212529;
	opacity: 1;
}

 #subnav .nav-item .nav-link:hover  {
	opacity: 1;
}

.nav-link {
    position: relative;
    display: inline-block;
    padding-bottom: 5px; /* Space for the underline */
    text-decoration: none;
}

#offcanvas-menu .nav .nav-item .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px; /* Thickness of the underline */
    background-color: currentColor; /* Match the text color */
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

#offcanvas-menu .nav .nav-item .nav-link:hover::after,
#offcanvas-menu .nav .nav-item .nav-link.active::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
}

 /* Animation keyframes including fade in */
@-webkit-keyframes slideInRightFade {
	from {
		-webkit-transform: translateX(100%);
				transform: translateX(100%);
		opacity: 0;
	}
	to {
		-webkit-transform: translateX(0);
				transform: translateX(0);
		opacity: 1;
	}
}
@keyframes slideInRightFade {
	from {
		-webkit-transform: translateX(100%);
				transform: translateX(100%);
		opacity: 0;
	}
	to {
		-webkit-transform: translateX(0);
				transform: translateX(0);
		opacity: 1;
	}
}

/* Initially hide the element */
.slide-target {
	opacity: 0;
}

/* Animation class with delay */
.slide-in {
	-webkit-animation: slideInRightFade 0.4s 0.1s forwards;
			animation: slideInRightFade 0.4s 0.1s forwards; /* 0.2s delay */
}

#offcanvas-social {
	padding-bottom: 1rem;
}

#offcanvas-social.slide-in {
            -webkit-animation: slideInRightFade 0.6s forwards, fadeInOpacity 2s forwards;
                    animation: slideInRightFade 0.6s forwards, fadeInOpacity 2s forwards;
            /* Slide animation with delay and fade-in opacity */
            -webkit-animation-delay: 0.15s;
                    animation-delay: 0.15s; /* Delay before starting animations */
        }

        @-webkit-keyframes fadeInOpacity {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes fadeInOpacity {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

#offcanvas-social ul li.nav-item a.nav-link {
	color: #525252;
	padding-right: 0.75rem;
	padding-left: 0.75rem;
}

#offcanvas-social ul li.nav-item a.nav-link:hover {
	color: #f38c38;
}

.swiper-button-next::after, .swiper-button-prev::after {
	color: #f38c38;
}
.card-profile-rounded  {
	height: 56px;
	width: 56px;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #f38c38;
}
.navbar ul li.nav-item a.nav-link {
	color: white;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}

.navbar ul li.nav-item a.nav-link.active {
	color: #f18924 !important;
}

.navbar ul li.nav-item a.nav-link.live-now-link,
.navbar ul li.nav-item a.nav-link.live-now-link.active {
	color: white !important;
}
img.arrow {
	color: white
}
.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.9)), color-stop(30%, rgba(0, 0, 0, 0.3)), color-stop(70%, rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.6)));
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.6) 100%);
	z-index: 1;
}

/* Home Header Text Readability */
.home-header-title {
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 4px 16px rgba(0, 0, 0, 0.6);
}

.home-header-text {
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8), 0 3px 12px rgba(0, 0, 0, 0.5);
}

footer {
	padding: 5rem 1rem;
	font-size: 0.875rem;
}

footer img {
	max-width: 100px;
}

footer .nav-link {
	color: #525252;
	padding: 0.25rem 0;
}

footer #social ul li.nav-item a.nav-link {
  color: #525252;
  padding: 1rem; /* Uniform padding, also affects hit area */
  width: 3rem; /* Fixed width to maintain circle shape */
  text-align: center;
  font-size: 1.5rem;
  position: relative;
  display: inline-block; /* To accommodate pseudo-element positioning */
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out; /* Smooth color transition */
  text-align: center; /* Ensures icon and text are centered */
}

footer #social ul li.nav-item a.nav-link::before {
  content: "";
  position: absolute;
  top: 54%;
  left: 61%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); /* Center the element */
  width: 0;
  height: 0;
  background-color: rgba(128, 128, 128, 0); /* Start fully transparent */
  border-radius: 50%; /* Make sure the shape is always circular */
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, background-color 0.3s ease-in-out; /* Transition size and color */
  z-index: -1; /* Keep behind the icon */
}

footer #social ul li.nav-item a.nav-link:hover {
  color: #f68a22; /* Change color on hover */
}

footer #social ul li.nav-item a.nav-link:hover::before {
  width: 2.5rem; /* Define a specific diameter for the circle */
  height: 2.5rem; /* Same size to ensure it remains circular */
  background-color: rgba(128, 128, 128, 0.2); /* Transition to a semi-transparent grey */
}

footer #social ul li.nav-item a.nav-link i {
  position: relative; /* Position the icon above the circle */
  z-index: 1; /* Ensures it stays above the pseudo-element */
  vertical-align: middle; /* Center the icon vertically */
}



header .page-header.subheader {
	position: relative;
	overflow: hidden;
	background: #000;
	padding-top: 8rem;
	min-height: 400px;
	z-index: 1;
}

#hamburger-container {
	  z-index: 9999;
}
#hamburger-container button.hamburger {
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
  width: 32px;
  margin: 0 1rem;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
#hamburger-container button.hamburger > span {
  width: 100%;
  height: 2px;
  display: block;
  margin: 0.5rem 0;
  background-color: #fff;
}

#hamburger-container .h-3 > span {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#hamburger-container .h-3 > span:nth-child(1) {
  width: 50%;
}
#hamburger-container.animate .h-3 > span:nth-child(1) {
  -webkit-transform: translateY(18px);
          transform: translateY(18px);
		  background-color: #f38c38;
}
#hamburger-container.animate .h-3 > span:nth-child(2) {
  -webkit-transform: translateY(-12px);
          transform: translateY(-12px);
		  background-color: #f38c38;
}
#hamburger-container.animate .h-3 > span:nth-child(3) {
  -webkit-transform: translateY(-12px);
          transform: translateY(-12px);
		  background-color: #f38c38;
}

#backToTop {
  -webkit-box-shadow: 0 2px 10px rgba(13, 110, 253, 0.2);
          box-shadow: 0 2px 10px rgba(13, 110, 253, 0.2);
          width: 56px; 
          height: 56px; 
          -webkit-transition: all 0.3s ease; 
          transition: all 0.3s ease; 
          z-index: 1050;
          background-color: #f38c38;
          border-radius: 50%;
          display: none;
          border: 2px solid transparent;
          outline: none;
}

#backToTop:hover {
  background-color: #f38c38 !important;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
          box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
  border: 3px solid white;
}

#backToTop:active,
#backToTop:focus {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  border: 3px solid white;
  outline: none;
}

footer img.footer-logo {
	height: 200px;
	width: auto;
}

/* Desktop sidebar positioning */
@media (min-width: 992px) {
    #verticalNav {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        -webkit-transform: none !important;
                transform: none !important;
        visibility: visible !important;
    }
    
    #content.nav-margin {
        margin-left: 16.5rem; /* Adjust based on sidebar width */
    }
}


/* Navigation link styling */
#dashboard .nav-link {
    border-radius: 0.5rem;
    
	padding: 0.5rem 0.875rem !important;
	margin-top: 0.2rem;
	width: 100%;
}

#dashboard .nav-link:hover {
    background-color: #e9ecef !important;
    
    /* -webkit-transform: translateX(4px);
            transform: translateX(4px); */
}

#dashboard .nav-link.active {
    background-color: #f68a22 !important;
    color: white !important;
}

/* Mobile hamburger styling */
#dashboard .navbar-toggler {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#dashboard .navbar-toggler:focus {
    -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.pulse-icon {
  display: inline-block;
  -webkit-animation: pulse-animation 1.5s infinite ease-in-out;
          animation: pulse-animation 1.5s infinite ease-in-out;
}

@-webkit-keyframes pulse-animation {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@keyframes pulse-animation {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

.responsive-video {
  position: relative;
  padding-bottom: 56.25%; /* Aspect ratio: 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 100%; /* Ensure the container never exceeds the width */
}

.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

section.mobile-app-links-section {
   background: #fafafa; color: #222; -webkit-filter: invert(1) hue-rotate(180deg) contrast(1.05) brightness(0.98); filter: invert(1) hue-rotate(180deg) contrast(1.05) brightness(0.98);
}

section.mobile-app-links-section a img {
  min-width:130px;max-width:180px;width:100%;-webkit-filter: invert(1) hue-rotate(180deg) contrast(1.05) brightness(0.98);filter: invert(1) hue-rotate(180deg) contrast(1.05) brightness(0.98);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 50vh;
    background-image: url('https://via.placeholder.com/1600x900/667eea/ffffff?text=Hero+Background');
    background-color: red;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding-top: 80px;
    padding-bottom: 40px;
}

.min-vh-70 {
    min-height: 70vh;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: white;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    font-weight: 300;
}

/* Buttons */
.btn-primary-custom {
    background-color: transparent;
    color: white;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1px;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: white;
    color: #667eea;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-outline-custom {
    background-color: transparent;
    color: white;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: white;
    color: #667eea;
    border-color: white;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-outline-primary {
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #fd7e14 !important;
    border-color: #fd7e14 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(253, 126, 20, 0.3);
}

/* Mobile Navigation Hamburger */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
    padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-section {
        min-height: 50vh;
        background-attachment: scroll;
    }
    
    .hero-content {
        padding-top: 100px;
        padding-bottom: 50px;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
        display: block;
        margin: 0.5rem 0;
        text-align: center;
        width: 80%;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        margin: 0 !important;
        width: 80%;
    }
}
