/* Base Styles */
:root {
  /* Color Variables */
  --primary-blue: #0055ff;
  --primary-blue-dark: #0044cc;
  --primary-blue-light: #4d8bff;
  --accent-blue: #00c2ff;
	  --primary-purple: #a300ff;
  --dark: #111827;
  --gray-900: #1f2937;
  --gray-800: #374151;
  --gray-700: #4b5563;
  --gray-100: #f3f4f6;
  --white: #ffffff;

  /* Typography */
  <style>
@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
</style>
body{
  font-family:"Open Sans", sans-serif;
  font-size:16px;
}

  --font-heading: "Playfair Display", serif;
  --font-body: "Open Sans", sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  line-height: 1.6;
  background-color: var(--white);
  font-size:16px!important;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: 500;
}

h3 {
  font-size: 2rem;
}

p {
  margin-bottom: var(--spacing-md);
}

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

a:hover {
  color: var(--primary-blue-dark);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn:hover {
  background-color: var(--primary-blue-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 85, 255, 0.2);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Header */
header {
  padding: var(--spacing-md) 0;
  background-color: var(--white);
  background: transparent;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}
/*
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
*/
header.navchange {
  background: white!important;
  box-shadow: 0 15px 35px rgba(0, 85, 255, 0.1)!important;
}
.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
}
.navchange #site-logo #site-logo-inner a {
    background-color: rgba(0, 0, 0, 0) !important;
    color: #0055ff !important;
}
#site-logo #site-logo-inner a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white) !important;
}

nav ul {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
  align-items: center;
}

nav a {
  color: var(--white);
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary-blue);
}

.navchange .logo {
  color: var(--primary-blue);
}
.navbar li a {
  color: black;
}
.navbar li a:hover {
  color: blue;
}
.navbar a.btn.btn-small {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards 0.6s;
}
.navbar a.btn.btn-small:hover {
  color: white;
}
/*
.navbar a.btn.btn-small:hover:before {
  left: 100%;
}
.navbar a.btn.btn-small:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}
*/
.btn-small:hover {
  background-color: var(--primary-blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 85, 255, 0.3);
}

.btn-small {
  display: inline-block;
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: 4px;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards 0.6s;
}
.btn-small a.menu-link {
    line-height: 50px !important;
}
.btn-small a.menu-link:hover {
    color: white !important;
}
.btn-small:hover:before {
  left: 100%;
}
.btn-small:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}
/* Footer */
footer {
  background-color: var(--gray-900);
  color: var(--white);
  padding: var(--spacing-lg) 0;
  text-align: center;
}

/* Hero Section - Basic Structure */
.hero {
  padding: calc(var(--spacing-xxl) * 2) 0 var(--spacing-xxl);
  background: linear-gradient(135deg, var(--dark) 0%, var(--gray-800) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Media Queries */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .hero {
    padding: calc(var(--spacing-xl) * 2) 0 var(--spacing-xl);
  }
}
.alt-corner-radius {
        border-radius: 50px 0;
        margin: 30px;
    }
.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.bg-\[\#f0f5ff\] {
    --tw-bg-opacity: 1;
    background-color: rgb(240 245 255 / var(--tw-bg-opacity, 1));
}
.max-w-7xl {
    max-width: 80rem;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.text-center {
    text-align: center;
}
.mb-12 {
    margin-bottom: 3rem;
}
.container{
	max-width:1440px;
}
/*
.carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 50px 0;
}

.carousel {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}

.carousel img {
  max-width: 300px;
  height: 450px; 
  margin-right: 20px;
  object-fit: cover;
}

/* Pop-out effect on hover 
.carousel img:hover {
  transform: scale(1.1); /* Makes the image "pop out" 
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Adds a shadow for the pop-out effect 
}

/* Pause the animation of the carousel when hovering the wrapper 
.carousel-wrapper:hover .carousel {
  animation-play-state: paused;
}

/* Adjust animation to snap back to start after reaching the last image 
@keyframes slide {
  0% {
    transform: translateX(0); /* Start at the first image 
  }
  90% {
    transform: translateX(-85%); /* Allow space at the end for last image 
  }
  100% {
    transform: translateX(0); /* Snap back to the first image instantly 
  }
}

.carousel {
  animation: slide 20s linear infinite; /* Faster and smooth movement 
  padding-left: 80px;
  padding-right: 1400px; /* Adds space after last image 
}
*/

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  overflow: auto; /* Enable scroll if needed */
}

/* Modal Content */
.modal-content {
  background-color: white;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 800px;
}

/* Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
div#_builder-form {
    max-width: 100% !important;
    padding: 0 !important;
    box-shadow: none !important;
    margin: 0 auto;
}
#_builder-form .fields-container {
    padding: 0 !important;
}