/* ==========================================================================
   1. CSS RESET/NORMALIZE/ROOT
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');


/* CSS Custom Properties (Variables) */
:root {
    /* Color Variables */
    --colorprimary: #ffffff;
    --colorsecondary: #000000;
    --colorgradient1: linear-gradient(to right, #3A3A3A 0%, #1A1A1A 100%);
    --colorgraphicbackground: rgba(37, 37, 37, 0.77);
    --coloraccent: #7c7a7a;
    --coloraccentlight: #373535;

    --colorborder: 1px solid rgba(188, 188, 188, 0.39);
    
    /* Typography Variables */
    --fontfamily: "Red Hat Display", sans-serif;
    --h1: bold 54px/64px var(--fontfamily);
    --h2: bold 32px/36px var(--fontfamily);
    --h3: bold 24px/30px var(--fontfamily);
    --links: bold 18px/18px var(--fontfamily);
    --p: 18px/30px var(--fontfamily);
    --subtext: 12px/20px var(--fontfamily);
    
    /* Effect Variables */
    --transition: 0.3s ease-in-out;
    --shadow: #00000030 0px 0px 10px 0px;
    --shadowdark: rgb(0, 0, 0) 0px 5px 15px;

    /* Font Sizes */
    --fontheader768: 3rem; 
    --fontheader1248: 4rem;

    --fontparagraph1248: 1.25rem;
    --fontparagraph1440: 1.5rem;
}

/* Custom scrollbar for entire page */
body {
  scrollbar-width: thin;
  scrollbar-color: rgb(0, 0, 0);
}

/* Webkit styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #201f1f;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: #f4f4f4;
  border-radius: 4px;
}


/* Global Transition */
* {
    transition: background-color var(--transition), 
                color var(--transition), 
                border-color var(--transition), 
                fill var(--transition),
                box-shadow var(--transition);
}

/* Box Model Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Document Setup */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--fontfamily);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--colorprimary);
    background-color: var(--colorsecondary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: color var(--transition), background-color var(--transition);
}

/* Dark Mode Setup */
body.light-mode body {
  background-color: red;
}

/* Typography Reset */
h1 { font: var(--h1); }
h2 { font: var(--h2); }
h3 { font: var(--h3); }
p { font: var(--p); }

small, 
.small-text { 
    font: var(--subtext); 
}

/* Links */
a {
    font: var(--links);
    color: var(--coloraccent);
    text-decoration: none;
    transition: color var(--transition);
}

/* Lists */
ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    list-style-type: none;
}

li {
    margin-bottom: 0.5rem;
}

/* Images */
img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
button, 
input[type="button"], 
input[type="reset"], 
input[type="submit"] {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}

/* Form Elements */
input, 
textarea, 
select {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    border-radius: 0;
}

/* Tables */
table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    text-align: left;
    padding: 0.5rem;
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Accessibility - Focus Styles */
:focus:not(:focus-visible) {
    outline: none;
}

:focus-visible {
    outline: 2px solid var(--coloraccent);
    outline-offset: 2px;
}



/* ==========================================================================
    2. ANIMATIONS
========================================================================== */

/* Base Animation Classes */
.animate,
.animate-repeat {
    opacity: 0;
    will-change: transform, opacity;
    visibility: visible;
}

.animate.visible,
.animate-repeat.visible {
    opacity: 1;
    transform: none;
}

/* Responsive Animations */
/* Simple responsive animation classes - work exactly like .animate/.animate-repeat but for different viewports */

/* Tablet and up (768px+) */
@media (min-width: 768px) {
    .md-animate,
    .md-animate-repeat {
        opacity: 0;
        will-change: transform, opacity;
        visibility: visible;
    }

    .md-animate.visible,
    .md-animate-repeat.visible {
        opacity: 1;
        transform: none;
    }
}

/* Desktop and up (1024px+) */
@media (min-width: 1024px) {
    .lg-animate,
    .lg-animate-repeat {
        opacity: 0;
        will-change: transform, opacity;
        visibility: visible;
    }

    .lg-animate.visible,
    .lg-animate-repeat.visible {
        opacity: 1;
        transform: none;
    }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
    .xl-animate,
    .xl-animate-repeat {
        opacity: 0;
        will-change: transform, opacity;
        visibility: visible;
    }

    .xl-animate.visible,
    .xl-animate-repeat.visible {
        opacity: 1;
        transform: none;
    }
}

/* Disable animations on very small screens if needed */
@media (max-width: 480px) {
    .sm-no-animate {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
        transition: none !important;
    }
}

@media (max-width: 1024px) {
    .lg-no-animate {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
        transition: none !important;
    }
}

/* Prefers reduced motion - Accessibility */
@media (prefers-reduced-motion: reduce) {
    .animate,
    .animate-repeat,
    .md-animate,
    .md-animate-repeat,
    .lg-animate,
    .lg-animate-repeat,
    .xl-animate,
    .xl-animate-repeat {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
}

/* Basic Animations */
.fade-in {
    transition: opacity 0.6s ease;
}

.slide-up {
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-down {
    transform: translateY(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-left {
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-right {
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-up {
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.zoom-in {
    transform: scale(0.5);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.zoom-out {
    transform: scale(1.2);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.flip-x {
    transform: rotateX(90deg);
    backface-visibility: hidden;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.flip-y {
    transform: rotateY(90deg);
    backface-visibility: hidden;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Combined Animations */
.slide-up-scale {
    transform: translateY(100px) scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-down-scale {
    transform: translateY(-30px) scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-left-scale {
    transform: translateX(-30px) scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-right-scale {
    transform: translateX(30px) scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.custom-combo {
    transform: translateY(20px) scale(0.9) rotate(5deg);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Animation Durations */
.duration-300 { transition-duration: 0.3s; }
.duration-500 { transition-duration: 0.5s; }
.duration-800 { transition-duration: 0.8s; }
.duration-1000 { transition-duration: 1s; }
.duration-1500 { transition-duration: 1.5s; }

/* Animation Delays */
.delay-sm-100 { transition-delay: 0.1s; }
.delay-sm-200 { transition-delay: 0.2s; }
.delay-sm-300 { transition-delay: 0.3s; }
.delay-sm-400 { transition-delay: 0.4s; }
.delay-sm-500 { transition-delay: 0.5s; }
.delay-sm-600 { transition-delay: 0.6s; }
.delay-sm-700 { transition-delay: 0.7s; }
.delay-sm-800 { transition-delay: 0.8s; }
.delay-sm-900 { transition-delay: 0.9s; }
.delay-sm-1000 { transition-delay: 1s; }

@media (min-width: 768px) {
  .delay-md-100 { transition-delay: 0.1s; }
  .delay-md-200 { transition-delay: 0.2s; }
  .delay-md-300 { transition-delay: 0.3s; }
  .delay-md-400 { transition-delay: 0.4s; }
  .delay-md-500 { transition-delay: 0.5s; }
  .delay-md-600 { transition-delay: 0.6s; }
  .delay-md-700 { transition-delay: 0.7s; }
  .delay-md-800 { transition-delay: 0.8s; }
  .delay-md-900 { transition-delay: 0.9s; }
  .delay-md-1000 { transition-delay: 1s; }
}

@media (min-width: 1024px) {
  .delay-lg-100 { transition-delay: 0.1s; }
  .delay-lg-200 { transition-delay: 0.2s; }
  .delay-lg-300 { transition-delay: 0.3s; }
  .delay-lg-400 { transition-delay: 0.4s; }
  .delay-lg-500 { transition-delay: 0.5s; }
  .delay-lg-600 { transition-delay: 0.6s; }
  .delay-lg-700 { transition-delay: 0.7s; }
  .delay-lg-800 { transition-delay: 0.8s; }
  .delay-lg-900 { transition-delay: 0.9s; }
  .delay-lg-1000 { transition-delay: 1s; }
}


/* Easing Functions */
.ease-linear { transition-timing-function: linear; }
.ease-in { transition-timing-function: cubic-bezier(0.42, 0, 1.0, 1.0); }
.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.58, 1.0); }
.ease-in-out { transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1.0); }
.ease-bounce { transition-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55); }

/* Keyframe Animations */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 5px #4B0082, 0 0 10px #4B0082, 0 0 15px #4B0082; }
    50% { box-shadow: 0 0 10px #4B0082, 0 0 20px #4B0082, 0 0 30px #4B0082; }
    100% { box-shadow: 0 0 5px #4B0082, 0 0 10px #4B0082, 0 0 15px #4B0082; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float {
    animation: float 4s ease-in-out infinite;
}

.float-fast {
    animation: float 2s ease-in-out infinite;
}

.float-slow {
    animation: float 6s ease-in-out infinite;
}

@keyframes float-left-right {
    0% { transform: translateX(0px); }
    50% { transform: translateX(-20px); }
    100% { transform: translateX(0px); }
}

.float-left-right {
    animation: float-left-right 7s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spin {
    animation: spin 10s linear infinite;
}

.outline-text {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px;
    font-style: normal;
}

@media screen and (max-width: 768px) {
    .outline-text {
    -webkit-text-stroke: 1px;
    }
}

/* Create new keyframes that combine existing animations with rotation */
@keyframes float-rotated {
    0% { transform: translateY(0px) rotate(-30deg); }
    50% { transform: translateY(-10px) rotate(-30deg); }
    100% { transform: translateY(0px) rotate(-30deg); }
}

@keyframes float-left-right-rotated {
    0% { transform: translateX(0px) rotate(30deg); }
    50% { transform: translateX(-10px) rotate(30deg); }
    100% { transform: translateX(0px) rotate(30deg); }
}

/* Clean slide animations - Fast and Medium speeds only */

/* Fast slide up animation */
.slide-up-fast {
    opacity: 0 !important;
    transform: translateY(120px) !important;
    visibility: hidden !important;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0s 0.8s !important;
}

.slide-up-fast.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0s 0s !important;
}

/* Medium slide up animation */
.slide-up-medium {
    opacity: 0 !important;
    transform: translateY(150px) !important;
    visibility: hidden !important;
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0s 1.2s !important;
}

.slide-up-medium.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0s 0s !important;
}

/* Fast slide down animation */
.slide-down-fast {
    opacity: 0 !important;
    transform: translateY(-120px) !important;
    visibility: hidden !important;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0s 0.8s !important;
}

.slide-down-fast.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0s 0s !important;
}

/* Medium slide down animation */
.slide-down-medium {
    opacity: 0 !important;
    transform: translateY(-150px) !important;
    visibility: hidden !important;
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0s 1.2s !important;
}

.slide-down-medium.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0s 0s !important;
}

/* Delay classes for animations */
.slow-delay-200 { transition-delay: 0.2s !important; }
.slow-delay-400 { transition-delay: 0.4s !important; }
.slow-delay-500 { transition-delay: 0.5s !important; }
.slow-delay-800 { transition-delay: 0.8s !important; }
.slow-delay-1000 { transition-delay: 1s !important; }















/* ==========================================================================
   8. KNIFE-EDGE BORDER EFFECT
   ========================================================================== */

@property --border-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.knife-edge-border {
    position: relative;
    border-radius: 20px;
    background-color: var(--colorsecondary);
    color: white;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.knife-edge-border::before,
.knife-edge-border::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    pointer-events: none;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5));
}

.knife-edge-border::before {
    background: conic-gradient(
        from var(--border-angle),
        transparent 0%,
        transparent 43%,
        rgba(255, 255, 255, 0.3) 46%,
        rgba(255, 255, 255, 0.85) 48%, 
        white 50%,
        rgba(255, 255, 255, 0.85) 52%,
        rgba(255, 255, 255, 0.3) 54%,
        transparent 57%,
        transparent 100%
    );
    animation: knife-rotate 5s linear infinite;
}

@keyframes knife-rotate {
    from { --border-angle: 0deg; }
    to { --border-angle: 360deg; }
}


@property --dual-border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

/* Dual knife-edge border class */
.dual-knife-edge-border {
  position: relative;
  background-color: var(--colorsecondary); /* Card background color - customize as needed */
  color: white;
  box-sizing: border-box;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* Optional shadow for the card */
}

/* Common properties for both lights */
.dual-knife-edge-border::before,
.dual-knife-edge-border::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 2px; /* Border width */
  pointer-events: none;
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5));
}

/* First light */
.dual-knife-edge-border::before {
  background: conic-gradient(
    from var(--dual-border-angle),
    transparent 0%,
    transparent 43%,
    rgba(255, 255, 255, 0.3) 46%,
    rgba(255, 255, 255, 0.85) 48%, 
    white 50%,
    rgba(255, 255, 255, 0.85) 52%,
    rgba(255, 255, 255, 0.3) 54%,
    transparent 57%,
    transparent 100%
  );
  animation: dual-knife-rotate 5s linear infinite;
}

/* Second light (opposite side) */
.dual-knife-edge-border::after {
  background: conic-gradient(
    from calc(var(--dual-border-angle) + 180deg),
    transparent 0%,
    transparent 43%,
    rgba(255, 255, 255, 0.3) 46%,
    rgba(255, 255, 255, 0.85) 48%, 
    white 50%,
    rgba(255, 255, 255, 0.85) 52%,
    rgba(255, 255, 255, 0.3) 54%,
    transparent 57%,
    transparent 100%
  );
  animation: dual-knife-rotate 5s linear infinite;
}

/* Animation for the dual rotating lights */
@keyframes dual-knife-rotate {
  from { --dual-border-angle: 0deg; }
  to { --dual-border-angle: 360deg; }
}

body.light-mode .knife-edge-border {
    box-shadow: none;
}

.intro-icon {
    text-transform: uppercase;
    background-color: #000000;
    padding: .25rem 1rem;
    border-radius: 30px;
    font-size: .75rem;
    border: 1px solid #313131;
    width: fit-content;
    font-weight: 900;
}



































/* ==========================================================================
   5. NAVBAR
   ========================================================================== */

/* Base Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    transition: padding 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                backdrop-filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled-past {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    z-index: 102;
    padding: .5rem 1rem;
    border-radius: 5px;
    background-color: black;
    /* Only transition padding, not all properties */
    transition: padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When visible, allow the animation transitions */
.logo.visible {
    transition: opacity 0.6s ease, transform 0.6s ease, padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo img {
    height: 25px;
    width: auto;
    border-radius: 5px;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile Navigation Menu */
.nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--colorsecondary);
    width: 100%;
    height: calc(100vh - 70px);
    padding: 1rem 0;
    text-align: start;
    transition: all var(--transition);
    box-shadow: var(--shadowdark);
    overflow-y: auto;
    z-index: 101;
    display: flex;
    list-style: none;
    margin: 0;
}

.nav-menu.active {
    left: 0;
}

/* Navigation Items */
.nav-item {
    position: relative;
    width: 100%;
    padding-left: 1rem;
}

.nav-link {
    font: var(--links);
    color: var(--coloraccent);
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: color var(--transition);
    text-decoration: none;
    font-weight: 500;
}

.nav-link svg {
    height: 25px;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.nav-link:hover svg {
    transform: rotate(180deg);
}

.nav-link.active svg {
    transform: rotate(180deg);
}

.nav-link h4 {
    font-weight: 900;
    font-size: 1rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--colorprimary);
}

/* Dropdown Menus */
.dropdown-toggle {
    position: relative;
    cursor: pointer;
}

.dropdown.active + .dropdown-toggle svg,
.dropdown-toggle.active svg {
    transform: rotate(180deg);
}

.dropdown {
    max-height: 0;
    overflow: hidden;
    background-color: var(--colorsecondary);
    width: 100%;
    transition: max-height 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
    list-style: none;
    opacity: 0;
}

.dropdown.active {
    max-height: 1000px;
    opacity: 1;
    transition: max-height 0.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s ease;
    padding-left: 0;
}

/* Dropdown Items */
.dropdown-item {
    padding: 0.75rem 1rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    transition-delay: 0s;
}

.dropdown.active .dropdown-item {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.dropdown.active .dropdown-item:nth-child(2) { transition-delay: 0.25s; }
.dropdown.active .dropdown-item:nth-child(3) { transition-delay: 0.3s; }
.dropdown.active .dropdown-item:nth-child(4) { transition-delay: 0.35s; }

.dropdown-link {
    color: var(--colorprimary);
    font: var(--subtext);
    font-weight: bold;
    text-decoration: none;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-left: 1.5rem;
}

.dropdown-item-info > span {
    display: none;
}

.dropdown-item-info > p {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0;
}

.dropdown-link > svg {
    height: 20px;
}

.contact-button {
    background: linear-gradient(to bottom, #046AD5 0%, #238EFF 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border: var(--colorborder);
    color: white !important;
    border-radius: 10px;
    gap: .5rem;
    padding: .5rem 1rem;
    transition: padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Allows Button To Play Animations */
.contact-button.visible {
    transition: opacity 0.6s ease, transform 0.6s ease, padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#navButton {
    margin-left: auto;
    margin-right: 1rem;
}

.contact-button a {
    font-size: .75rem;
    color: white;
    transition: font-size 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-button svg {
    height: 20px;
    transition: transform 0.3s ease;
}

.contact-button:hover svg {
    transform: rotate(45deg);
}

/* Hamburger Menu */
.hamburger {
    display: block;
    cursor: pointer;
    padding: 0.5rem;
    background: transparent;
    border: none;
    z-index: 102;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--colorprimary);
    transition: all var(--transition);
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.navbar.scrolled-past {
    padding: 0.5rem 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled-past .logo {
    padding: .25rem .75rem;
}

.navbar.scrolled-past .logo img {
    height: 20px;
}

.navbar.scrolled-past .contact-button {
    padding: .25rem .75rem;
}

.navbar.scrolled-past .contact-button a {
    font-size: .65rem;
}

.navbar.scrolled-past .nav-menu.active {
    top: 60px;
}

@media screen and (max-width: 340px) {
    #navButton {
        margin-right: .5rem;
    }
}

/* Desktop Navigation */
@media (min-width: 993px) {
    .navbar {
        padding: 1rem 2rem;
    }
    
    .hamburger {
        display: none;
    }

    .logo img {
        height: 40px;
    }

    .navbar.scrolled-past {
        padding: 0.75rem 1rem;
    }

    .navbar.scrolled-past .logo img {
        height: 30px;
    }
    
    .nav-menu {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        background-color: transparent;
        width: auto;
        height: auto;
        padding: 0;
        box-shadow: none;
        overflow-y: visible;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    #navButton {
        margin-right: 0;
    }

    .nav-link {
        color: #D4D4D4;
    }

    .nav-link svg {
        display: none;
    }
    
    .nav-item {
        width: auto;
        margin: 0 1rem;
        position: relative;
        padding-left: 0;
    }

    .nav-item:hover .nav-link {
        color: var(--colorprimary);
    }

    .nav-item:hover .nav-link svg {
        transform: rotate(180deg);
    }

    .nav-link {
        padding: 0;
        gap: .25rem;
    }
    
    .dropdown {
        position: absolute;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 250px;
        margin-top: 1rem;
        box-shadow: var(--shadowdark);
        border-radius: 10px;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        max-height: none;
        overflow: visible;
        padding-left: 0;
        padding: 1rem;
        z-index: 105;
    }
    
    .dropdown-item {
        opacity: 1;
        transform: translateY(0);
        transition: none;
        margin-bottom: 0;
        padding: 0;
    }
    
    .nav-item:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    
    .dropdown-toggle::after {
        transition: none;
    }
    
    .dropdown-toggle.active::after {
        transform: none;
    }

    .dropdown-item-info > span {
        display: block;
        color: var(--coloraccent);
    }

    .dropdown-item-info > p {
        line-height: 1.5;
    }

    .dropdown-link {
        gap: .75rem;
        padding-left: 0;
    }

    .dropdown-link > svg {
        min-width: 24px;
        min-height: 24px;
        width: 40px;
        height: 40px;
        background-color: rgba(64, 62, 62, 0.8);
        border-radius: 8px;
        padding: 0.25rem;
        fill: rgb(255, 255, 255);
    }

    .dropdown-link:hover > svg {
        background-color: var(--colorprimary);
        fill: var(--colorsecondary);
    }

    .dropdown-item-info:hover > span {
        color: var(--colorprimary);
    }

    .theme-toggle {
        margin-left: unset !important;
    }

    .navbar.scrolled-past {
        padding: 0.5rem 2rem;
    }

    .contact-button a {
        font-size: 1rem;
        transition: font-size 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .navbar.scrolled-past .contact-button {
        padding: .25rem 1rem;
    }
}

@media screen and (min-width: 1248px) {
    header {
        display: flex;
        justify-content: center;
        background-color: var(--colorprimary);
    }
    
    .navbar {
        padding: 1rem 10rem;
    }

    .navbar.scrolled-past {
        padding: 0.5rem 10rem;
    }
}








































/* ============================================
   PRICING SECTION - BASE STYLES
   ============================================ */

#pricing {
    margin-top: 5rem;
}

@media screen and (min-width: 1024px) {
    #pricing {
        display: flex;
        justify-content: center;
        flex-direction: column;
        width: 90%; 
        margin: 0 auto; 
        max-width: 1400px;
        margin-top: 6rem;
    }
}

@media screen and (min-width: 1248px) {
    #pricing {
        width: 70%;
    }
}


/* ============================================
   PRICING INTRO SECTION
   ============================================ */

.pricing-intro {
    text-align: center;
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#pricingIntroIcon {
    font-size: 12px;
    margin-bottom: .5rem;
}

.pricing-intro > h2 {
    font-size: 2rem;
    font-weight: 400;
    text-transform: uppercase;
}

.pricing-intro h2 span {
    display: inline-block;
}

.pricing-intro h2 span:nth-child(5) {
    font-weight: 900;
    color: #046AD5;
}

.pricing-intro > p {
    color: #D4D4D4;
    font-size: 1rem;
    max-width: 450px;
}

@media screen and (min-width: 768px) {
    .pricing-intro {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .pricing-intro > h2 {
        font-size: 3rem;
        line-height: 3rem;
    }
    
    .pricing-intro > p {
        font-size: 1.15rem;
    }
}

@media screen and (min-width: 1024px) {
    .pricing-intro > h2 {
        font-size: 4rem;
        line-height: 4rem;
    }

    .pricing-intro p {
        font-size: 1.25rem;
        max-width: 600px;
    }
}


/* ============================================
   SWITCH PLANS (WEB/MEDIA TOGGLE)
   ============================================ */

.switch-plans {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    width: 100%;
}

.black-blue-gradient {
    background: linear-gradient(135deg, #000000, #02478d);
}

.switch-plans-web .knife-edge-border {
    background-color: rgb(0, 0, 0);
    border: 1px solid var(--colorborder);
    padding: .5rem;
    border-radius: 5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: none;
}

.switch-plans-web .knife-edge-border::before {
    border-radius: 5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.switch-plans-web .knife-edge-border::after {
    border-radius: 5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.switch-plans-media .knife-edge-border {
    background-color: rgb(0, 0, 0);
    padding: .5rem;
    border-radius: 5px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border: 1px solid var(--coloraccent-rgb);
}

.switch-plans-media .knife-edge-border::before {
    border-radius: 5px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.switch-plans-media .knife-edge-border::after {
    border-radius: 5px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.switch-plans-web .knife-edge-border,
.switch-plans-media .knife-edge-border {
    text-align: center;
    display: inline-block;
    font-weight: 400;
    text-transform: uppercase;
    font-size: .65rem;
    font-weight: 900;
    width: 140px;
    background-color: #141414;
}

.switch-plans-web.active .knife-edge-border {
    background-color: #046AD5;
    color: var(--colorprimary);
}

.switch-plans-media.active .knife-edge-border {
    background-color: #046AD5;
    color: var(--colorprimary);
}

@media screen and (min-width: 1024px) {
    .switch-plans-web .knife-edge-border,
    .switch-plans-media .knife-edge-border {
        width: 200px;
        font-size: .75rem;
    }
}


/* ============================================
   PRICING CARDS (MAIN WRAPPER)
   ============================================ */

.pricing-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 20px;
}

@media screen and (min-width:993px) {
    .pricing-wrapper {
        flex-direction: row;
        padding: 0 1rem;
        padding-top: 10px;
        position: sticky;
        top: 54px;
        z-index: 10;
        background-color: var(--colorsecondary);
    }
}


/* ============================================
   PRICING CARD STYLES
   ============================================ */

.pricing-card {
    width: 90%;
    background-color: #141414;
    color: var(--colorprimary);
    border-radius: 10px;
    border: var(--colorborder);
    padding: 2rem 1.25rem;
}

.pricing-card-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
}

.pricing-card-name h3 {
    font-size: 1rem;
}

@media screen and (min-width: 350px) {
    .pricing-card-name h3 {
        font-size: 1.45rem;
    }
}

.pricing-popular {
    margin-right: auto;
    background-color: #00aaff;
    border-radius: 10px;
    padding: 0 .5rem;
    font-size: .75rem;
    margin-left: .5rem;
    box-shadow: 0 0 10px 3px rgba(0, 170, 255, 0.7), 0 0 15px 5px rgba(0, 170, 255, 0.4);
    position: relative;
    z-index: 1;
}

.pricing-card-cost p {
    margin: 0;
}


/* ============================================
   TOGGLE SWITCH
   ============================================ */

.toggle-container {
    display: flex;
    align-items: center;
}

.toggle-text {
    font-size: .75rem;
    margin-right: 8px;
}

.toggle-switch {
    position: relative;
    width: 40px;
    height: 20px;
    background-color: var(--coloraccentlight);
    border: var(--colorborder);
    border-radius: 10px;
    cursor: pointer;
    display: inline-block;
}

.toggle-switch .toggle-circle {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 18px;
    height: 18px;
    background-color: var(--coloraccent);
    border-radius: 50%;
    transition: transform var(--transition);
}

.toggle-switch.active {
    background-color: #09477d;
    border: 1px solid #0c65b3;
}

.toggle-switch.active .toggle-circle {
    transform: translateX(20px);
    background-color: var(--colorprimary);
    transition: transform var(--transition);
}


/* ============================================
   PRICING EXPLAINED (FEATURES LIST)
   ============================================ */

.pricing-explained {
    padding-left: 0;
}

.pricing-explained li {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.pricing-explained li > p {
    font-size: 1rem;
}

.pricing-explained li > svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: green;
    background-color: white;
    border-radius: 50%;
}

#changeSVG {
    fill: red;
    background-color: white;
    border-radius: 50%;
}

@media screen and (min-width:993px) {
    .pricing-explained {
        overflow: hidden;
        max-height: 200px;
        opacity: 1;
        transform: translateY(0);
        transition: max-height 0.3s ease-out, 
                    opacity 0.25s ease-out,
                    transform 0.3s ease-out;
    }
    
    .pricing-explained.hidden {
        max-height: 0;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
    }
}


/* ============================================
   PRICING BUTTONS
   ============================================ */

.pricing-button-wrapper {
    display: flex;
    justify-content: center;
}

.pricing-button {
    background-color: var(--coloraccentlight);
    color: var(--colorprimary);
    padding: .5rem 0;
    border-radius: 10px;
    width: 100%;
    text-align: center;
    border: var(--colorborder);
}

.pricing-button:hover {
    background-color: var(--coloraccentdarker);
    transition: var(--transition);
}

#pricingButton {
    background: linear-gradient(to bottom, #046AD5 0%, #238EFF 100%);
}

#pricingButton:hover {
    background-color: #0088cc;
}


/* ============================================
   PRICING DEPTH MOBILE (STICKY HEADER)
   ============================================ */

.pricing-depth-mobile {
    padding: 1rem;
    border-top: var(--colorborder);
    border-bottom: var(--colorborder);
    position: sticky;
    top: 60px;
    z-index: 10;
    background-color: var(--colorsecondary);
    width: 100%;
    margin-bottom: 2rem;
}

.pricing-depth-intro {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: var(--colorborder);
}

.pricing-depth-intro h3 {
    font-weight: 900;
    text-transform: uppercase;
}

.toggle-container {
    margin-left: auto;
}

.pricing-depth-options {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
}

@media screen and (min-width:993px) {
    .pricing-depth-mobile {
        display: none;
    }
}


/* ============================================
   PRICING DEPTH CARDS
   ============================================ */

.pricing-depth-card {
    width: 33.33%;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.pricing-depth-card span {
    font-size: 1rem;
    font-weight: 900;
}

.pricing-depth-card:nth-child(1) {
    padding: 0 0.5rem 0 0;
}

.pricing-depth-card:nth-child(2) {
    padding: 0 0.5rem;
    border-left: var(--colorborder);
    border-right: var(--colorborder);
}

.pricing-depth-card:nth-child(3) {
    padding: 0 0 0 0.5rem;
}

.pricing-depth-card:nth-child(2) .pricing-button {
    background: linear-gradient(to bottom, #046AD5 0%, #238EFF 100%);
}

.pricing-depth-card:nth-child(2) .pricing-button:hover {
    background-color: #0088cc; 
}

.pricing-card-cost p {
    font-size: 1rem;
    margin: 0.5rem 0;
}

.pricing-button-wrapper {
    width: 100%;
    margin-top: auto;
}

#pricingButtonMobile {
    width: 100%;
    font-size: 0.75rem;
    display: block;
}

#pricingButtonMobile button {
    text-transform: uppercase;
    width: 100%;
}

.pricing-depth-card .pricing-card-cost p:nth-child(2) {
    display: none;
}

#pricingDepthCost {
    padding: 0;
}


/* ============================================
   PRICING SERVICES SECTION
   ============================================ */

.pricing-services {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    padding: 1rem;
}

@media screen and (min-width:993px) {
    .pricing-services {
        padding: 6rem 1rem;
    }
}

.pricing-services-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


/* ============================================
   PRICING SERVICES INTRO
   ============================================ */

.pricing-services-intro {
    display: flex;
    align-items: center;
    gap: .75rem;
    border-bottom: var(--colorborder);
    padding-bottom: 1rem;
}

.pricing-services-intro > h3 {
    font-weight: 400;
}

.pricing-services-intro > svg {
    height: 30px;
}


/* ============================================
   PRICING SERVICES WRAPPER
   ============================================ */

.pricing-services-wrapper {
    display: flex;
    flex-direction: column;
    border-bottom: var(--colorborder);
    padding-bottom: 1rem;
}

.pricing-services-name {
    padding-bottom: .75rem;
}

.pricing-services-name > p {
    font-size: 1rem;
    color: var(--coloraccent);
}


/* ============================================
   SERVICES EXPLAINED CARDS
   ============================================ */

.pricing-services-explained {
    display: flex;
}

.services-explained-card {
    display: flex;
    align-items: center;
    gap: .5rem;
    width: 33.33%;
}

.services-explained-card:nth-child(2) {
    padding: 0 0.5rem;
}

.services-explained-card:nth-child(3) {
    padding-left: .5rem;
}

.services-explained-card > svg {
    height: 15px;
}

#checkmarkNo {
    fill: var(--coloraccent);
    height: 10px;
}

.services-explained-card > p {
    font-size: .75rem;
}

@media screen and (min-width: 470px) {
    .services-explained-card > p {
        font-size: 1rem;
    }
}




















/* ==========================================================================
   5. CONTACT SECTION
   ========================================================================== */
#contactUs {
    background-color: white;
    padding: 4rem 1rem;
}

.contact-us-wrapper {
    background-color: #1A1A1A;
    padding: 1rem;
    border-radius: 10px;
    border: var(--colorborder);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-us-intro {
    width: 100%;
    height: 100%;
}

.contact-intro h2 {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 2rem;
    padding-top: .5rem;
    padding-bottom: 2rem;
}

.contact-intro h2 span {
    display: inline-block; /* Add this */
}


.contact-intro h2 span:nth-child(1),
.contact-intro h2 span:nth-child(2) {
    font-weight: 400;
}

.contact-intro h2 span:nth-child(4),
.contact-intro h2 span:nth-child(5) {
    color: #046AD5;
}

.contact-headshot {
    width: 100%;
    aspect-ratio: 1 / 1; /* Makes it square */
    background: linear-gradient(to bottom, #046AD5 0%, #238EFF 100%);
    border: var(--colorborder);
    border-radius: 10px;
    overflow: hidden; /* Ensures image doesn't overflow */
}

.contact-headshot img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintains aspect ratio while filling container */
    object-position: center top; /* Aligns image to the top */
    border-radius: 10px;
}

.contact-intro-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: .5rem;
}

.contact-intro-info-about h4 {
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1.5rem;
}

.contact-intro-info-about p {
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: 300;
}

.contact-intro-info-links {
    display: flex;
    flex-direction: column;
    font-size: 1rem;
}

.contact-intro-info-links a:nth-child(1) {
    font-size: 1rem;
    font-weight: 300;
}

.contact-intro-info-links a:nth-child(2) {
    color: #046AD5;
    font-size: 1rem;
    font-weight: 900;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.form-label {
    font-weight: 900;
}

.form-input,
.form-textarea,
.form-select {
    background-color: #2A2A2A;
    border-radius: 10px;
    padding: .5rem 1rem;
    border: var(--colorborder);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.form-select option {
    color: black;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #046AD5;
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(124, 122, 122, 0.1);
}

::placeholder {
    color: #D9D9D9;
    font-size: 1rem;
}

#contactButton a {
    font-size: 1rem;
}



@media screen and (min-width: 768px) {
    #contactUs {
        padding: 6.25rem 2.25rem;
    }

    .contact-us-wrapper {
        padding: 4rem;
    }

    .contact-intro h2 {
        font-size: 3rem;
        line-height: 3rem;
    }
}

@media screen and (min-width: 1024px) {
    #contactUs {
        padding: 6.25rem 6.25rem;
    }

    .contact-us-wrapper {
        padding: 4rem;
        flex-direction: row;
    }

    .contact-intro {
        width: 50%;
    }

    form {
        width: 50%;
    }

    .contact-headshot {
        width: 70%;
    }
}
































/* ==========================================================================
   13. FOOTER
========================================================================== */
.footer-section {
          background: #131313;
          position: relative;
        }
        .footer-container {
          padding: 1rem;
        }
        .footer-cta {
          border-bottom: 1px solid #373636;
          padding-bottom: 1rem;
        }
        .single-cta svg {
          color: #007bff;
          height: 25px;
          float: left;
          margin-top: 5px;
        }
        .cta-text {
          padding-left: 15px;
          display: inline-block;
        }
        .cta-text h4 {
          color: #fff;
          font-size: 20px;
          font-weight: 600;
          margin-bottom: 2px;
        }
        .cta-text span {
          color: #757575;
          font-size: 15px;
        }
        .footer-content {
          position: relative;
          z-index: 2;
        }
        .footer-pattern img {
          position: absolute;
          top: 0;
          left: 0;
          height: 330px;
          background-size: cover;
          background-position: 100% 100%;
        }
        .footer-logo {
          margin-bottom: 30px;
          padding: .5rem 1rem;
          border-radius: 10px;
          background-color: black;
          display: flex;
          justify-content: center;
          max-width: 200px;
        }
        .footer-logo img {
            border-radius: 5px;
        }
        .footer-text p {
          margin-bottom: 14px;
          font-size: 14px;
          color: #7e7e7e;
          line-height: 28px;
        }
        .footer-social-icon-wrapper {
          display: flex;
          padding-bottom: 1rem;
        }
        .footer-social-icon span {
          color: #fff;
          display: block;
          font-size: 20px;
          font-weight: 700;
          font-family: 'Poppins', sans-serif;
          margin-bottom: 20px;
        }
        .footer-social-icon a {
          color: #fff;
          font-size: 16px;
          margin-right: 15px;
        }
        .footer-social-icon svg {
          height: 40px;
          width: 40px;
          text-align: center;
          line-height: 38px;
          border-radius: 50%;
        }
        .facebook-bg{
          background: #3B5998;
        }
        .twitter-bg{
          background: #55ACEE;
        }
        .google-bg{
          background: #DD4B39;
        }
        .footer-widget {
          padding-top: 1rem;
        }
        .footer-widget-heading h3 {
          color: #fff;
          font-size: 20px;
          font-weight: 600;
          margin-bottom: 40px;
          position: relative;
        }
        .footer-widget-heading h3::before {
          content: "";
          position: absolute;
          left: 0;
          bottom: -15px;
          height: 2px;
          width: 50px;
          background: #007bff;
        }
        .footer-widget ul li {
          display: inline-block;
          float: left;
          width: 50%;
          margin-bottom: 12px;
        }
        .footer-widget ul li a:hover{
          color: #007bff;
        }
        .footer-widget ul li a {
          color: #878787;
          text-transform: capitalize;
          text-decoration: none;
        }
        .subscribe-form {
          position: relative;
          overflow: hidden;
        }
        .subscribe-form input {
          width: 100%;
          padding: 14px 28px;
          background: #2E2E2E;
          border: 1px solid #2E2E2E;
          color: #fff;
        }
        .subscribe-form button {
            position: absolute;
            right: 0;
            background: #007bff;
            padding: 13px 20px;
            border: 1px solid #007bff;
            top: 0;
            cursor: pointer;
        }
        .subscribe-form button svg {
          color: #fff;
          height: 25px;
          transform: rotate(-6deg);
        }
        .copyright-area{
          background: #202020;
          padding-top: 1rem;
        }
        .copyright-text p {
          margin: 0;
          font-size: 14px;
          color: #878787;
          text-align: center;
        }
        .copyright-text p a{
          color: #007bff;
          text-decoration: none;
        }
        .footer-menu li {
          display: inline-block;
          margin-left: 20px;
        }
        .footer-menu li:hover a{
          color: #007bff;
        }
        .footer-menu li a {
          font-size: 14px;
          color: #878787;
          text-decoration: none;
        }
        .footer-menu ul {
            list-style: none;
            margin-bottom: 0;
        }

/* Updated media query to ensure footer widgets stay on same line and proper CTA positioning */
@media screen and (min-width: 992px) {
  .footer-container {
    margin: 0 auto; /* Center the container */
    display: flex;
    flex-direction: column;
    padding: 1rem;
  }
  
  /* Footer CTA section - ensure it stays on top and centered */
  .footer-cta {
    width: 100%;
    order: 1;
  }
  
  .footer-cta .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
  }
  
  /* Footer content section - comes after CTA and centered */
  .footer-content {
    width: 100%;
    order: 2;
  }
  
  .footer-content .row {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    margin: 0 auto;
  }
  
  .footer-content .row > [class*="col-"] {
    flex: 1;
    max-width: none;
    margin-bottom: 0;
  }
  
  .footer-widget {
    height: 100%;
  }
}

option {
    color: var(--colorsecondary)
}

@media screen and (min-width: 1024px) {
    .footer-container {
        padding: 6.25rem;
    }

    .subscribe-form form {
        width: 100%;
    }
}