/* Orbithyra Wellness - Main Stylesheet
   Created: May 8, 2025
*/

/* CSS Variables for consistent spacing, colors and typography */
:root {
    /* Color Palette */
    --orbithyra-white: #ffffff;
    --orbithyra-green: #5F8B4C;
    --orbithyra-beige: #FFDDAB;
    --orbithyra-pink: #FF9A9A;
    --orbithyra-brown: #945034;
    
    /* Spacing Variables */
    --orbithyra-space-xs: 0.5rem;
    --orbithyra-space-sm: 1rem;
    --orbithyra-space-md: 2rem;
    --orbithyra-space-lg: 4rem;
    --orbithyra-space-xl: 6rem;
    
    /* Typography */
    --orbithyra-font-main: 'Quicksand', sans-serif;
    --orbithyra-font-accent: 'Playfair Display', serif;
    
    /* Other Common Variables */
    --orbithyra-border-radius: 8px;
    --orbithyra-shadow: 0 4px 16px rgba(148, 80, 52, 0.15);
    --orbithyra-transition: all 0.3s ease-in-out;
  }
  
  /* Base Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }
  
  body {
    font-family: var(--orbithyra-font-main);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--orbithyra-white);
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--orbithyra-font-accent);
    margin-bottom: var(--orbithyra-space-sm);
    font-weight: 700;
    line-height: 1.2;
    color: var(--orbithyra-brown);
  }
  
  h1 {
    font-size: 3.5rem;
    margin-bottom: var(--orbithyra-space-md);
    text-shadow: 2px 2px 3px rgba(95, 139, 76, 0.1);
  }
  
  h2 {
    font-size: 2.8rem;
    margin-bottom: var(--orbithyra-space-md);
    position: relative;
  }
  
  h2::after {
    content: '';
    position: absolute;
    left: 47%;
    bottom: -10px;
    width: 80px;
    height: 3px;
    background-color: var(--orbithyra-green);
    transition: var(--orbithyra-transition);
  }
  
  h3 {
    font-size: 2rem;
  }
  
  h4 {
    font-size: 1.5rem;
  }
  
  p {
    margin-bottom: var(--orbithyra-space-sm);
    font-size: 1.1rem;
  }
  
  a {
    color: var(--orbithyra-green);
    text-decoration: none;
    transition: var(--orbithyra-transition);
  }
  
  a:hover {
    color: var(--orbithyra-brown);
  }
  
  img {
    max-width: 100%;
    height: auto;
    border-radius: var(--orbithyra-border-radius);
  }
  
  .orbithyra-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--orbithyra-space-sm);
  }
  
  .orbithyra-section {
    padding: var(--orbithyra-space-lg) 0;
  }
  
  .orbithyra-text-center {
    text-align: center;
  }
  
  .orbithyra-text-right {
    text-align: right;
  }
  
  .orbithyra-hidden {
    display: none;
  }
  
  /* Buttons */
  .orbithyra-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--orbithyra-green);
    color: var(--orbithyra-white);
    border: none;
    border-radius: var(--orbithyra-border-radius);
    cursor: pointer;
    transition: var(--orbithyra-transition);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .orbithyra-btn:hover {
    background-color: var(--orbithyra-brown);
    color: var(--orbithyra-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .orbithyra-btn-secondary {
    background-color: var(--orbithyra-beige);
    color: var(--orbithyra-brown);
  }
  
  .orbithyra-btn-secondary:hover {
    background-color: var(--orbithyra-pink);
  }
  
  .orbithyra-btn-outline {
    background-color: transparent;
    border: 2px solid var(--orbithyra-green);
    color: var(--orbithyra-green);
  }
  
  .orbithyra-btn-outline:hover {
    background-color: var(--orbithyra-green);
    color: var(--orbithyra-white);
  }
  
  /* Header & Navigation */
  .orbithyra-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.97);
    padding: var(--orbithyra-space-sm) 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .orbithyra-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .orbithyra-logo {
    display: flex;
    align-items: center;
  }
  
  .orbithyra-logo-img {
    height: 42px;
    margin-right: var(--orbithyra-space-xs);
  }
  
  .orbithyra-logo-text {
    font-family: var(--orbithyra-font-accent);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--orbithyra-green);
    text-shadow: 1px 1px 1px rgba(148, 80, 52, 0.2);
  }
  
  .orbithyra-nav {
    display: flex;
    align-items: center;
  }
  
  .orbithyra-nav-list {
    display: flex;
    list-style: none;
  }
  
  .orbithyra-nav-item {
    margin-left: var(--orbithyra-space-md);
  }
  
  .orbithyra-nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--orbithyra-brown);
    position: relative;
  }
  
  .orbithyra-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--orbithyra-green);
    transition: var(--orbithyra-transition);
  }
  
  .orbithyra-nav-link:hover::after {
    width: 100%;
  }
  
  .orbithyra-nav-link.orbithyra-active::after {
    width: 100%;
  }
  
  .orbithyra-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 21px;
    position: relative;
    z-index: 1010;
  }
  
  .orbithyra-hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--orbithyra-brown);
    margin-bottom: 6px;
    border-radius: 3px;
    transition: var(--orbithyra-transition);
  }
  
  .orbithyra-hamburger span:last-child {
    margin-bottom: 0;
  }
  
  .orbithyra-hamburger.orbithyra-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .orbithyra-hamburger.orbithyra-active span:nth-child(2) {
    opacity: 0;
  }
  
  .orbithyra-hamburger.orbithyra-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  /* Hero Section */
  .orbithyra-hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: linear-gradient(135deg, rgba(255, 221, 171, 0.6) 0%, rgba(95, 139, 76, 0.8) 100%);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
  }
  
  .orbithyra-hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
  }
  
  .orbithyra-hero h1 {
    margin-bottom: var(--orbithyra-space-sm);
    animation: fadeInUp 0.8s ease;
  }
  
  .orbithyra-hero p {
    font-size: 1.2rem;
    margin-bottom: var(--orbithyra-space-md);
    animation: fadeInUp 1s ease;
  }
  
  .orbithyra-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
  }
  
  .orbithyra-hero-cta {
    display: flex;
    gap: var(--orbithyra-space-sm);
    animation: fadeInUp 1.2s ease;
  }
  
  /* About Section */
  .orbithyra-about {
    background-color: var(--orbithyra-white);
  }
  
  .orbithyra-about-content {
    display: flex;
    gap: var(--orbithyra-space-lg);
    align-items: center;
  }
  
  .orbithyra-about-text {
    flex: 1;
  }
  
  .orbithyra-about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: var(--orbithyra-border-radius);
    box-shadow: var(--orbithyra-shadow);
  }
  
  .orbithyra-about-image img {
    transition: var(--orbithyra-transition);
  }
  
  .orbithyra-about-image:hover img {
    transform: scale(1.05);
  }
  
  /* Services Section */
  .orbithyra-services {
    background-color: #f9f9f9;
  }
  
  .orbithyra-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--orbithyra-space-md);
    margin-top: var(--orbithyra-space-lg);
  }
  
  .orbithyra-service-card {
    background-color: var(--orbithyra-white);
    border-radius: var(--orbithyra-border-radius);
    overflow: hidden;
    box-shadow: var(--orbithyra-shadow);
    transition: var(--orbithyra-transition);
  }
  
  .orbithyra-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }
  
  .orbithyra-service-img {
    height: 200px;
    overflow: hidden;
  }
  
  .orbithyra-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--orbithyra-transition);
  }
  
  .orbithyra-service-card:hover .orbithyra-service-img img {
    transform: scale(1.1);
  }
  
  .orbithyra-service-content {
    padding: var(--orbithyra-space-md);
  }
  
  .orbithyra-service-title {
    font-size: 1.5rem;
    margin-bottom: var(--orbithyra-space-sm);
    color: var(--orbithyra-brown);
  }
  
  .orbithyra-service-text {
    margin-bottom: var(--orbithyra-space-sm);
  }
  
  /* Testimonials Section */
  .orbithyra-testimonials {
    background-color: var(--orbithyra-beige);
    position: relative;
    overflow: hidden;
  }
  
  .orbithyra-testimonials::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 154, 154, 0.3);
    border-radius: 50%;
  }
  
  .orbithyra-testimonials::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background-color: rgba(95, 139, 76, 0.3);
    border-radius: 50%;
  }
  
  .orbithyra-testimonials-container {
    position: relative;
    z-index: 2;
  }
  
  .orbithyra-testimonials-slider {
    margin-top: var(--orbithyra-space-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .orbithyra-testimonials-slider button{
    max-width: max-content;
    font-size: 20px;
    padding: 0 var(--orbithyra-space-md);
    margin-top: var(--orbithyra-space-sm);
    border-radius: var(--orbithyra-border-radius);
    background-color: var(--orbithyra-green);
    color: var(--orbithyra-brown);
    transition: all 0.9s;
  }

  .orbithyra-testimonials-slider button:hover{
    background-color: var(--orbithyra-pink);
    color: var(--orbithyra-green);
  }

  
  .orbithyra-testimonial {
    background-color: var(--orbithyra-white);
    border-radius: var(--orbithyra-border-radius);
    padding: var(--orbithyra-space-md);
    box-shadow: var(--orbithyra-shadow);
    margin: 0 var(--orbithyra-space-sm);
  }
  
  .orbithyra-testimonial-text {
    font-style: italic;
    margin-bottom: var(--orbithyra-space-sm);
    position: relative;
    padding: 0 var(--orbithyra-space-sm);
  }
  
  .orbithyra-testimonial-text::before,
  .orbithyra-testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: var(--orbithyra-green);
    position: absolute;
    font-family: var(--orbithyra-font-accent);
  }
  
  .orbithyra-testimonial-text::before {
    top: -20px;
    left: -10px;
  }
  
  .orbithyra-testimonial-text::after {
    bottom: -40px;
    right: -10px;
  }
  
  .orbithyra-testimonial-author {
    display: flex;
    align-items: center;
  }
  
  .orbithyra-testimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: var(--orbithyra-space-sm);
  }
  
  .orbithyra-testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .orbithyra-testimonial-name {
    font-weight: 700;
    color: var(--orbithyra-brown);
  }
  
  .orbithyra-testimonial-role {
    font-size: 0.9rem;
    color: #777;
  }
  
  /* Pricing Section */
  .orbithyra-pricing {
    background-color: var(--orbithyra-white);
  }
  
  .orbithyra-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--orbithyra-space-md);
    margin-top: var(--orbithyra-space-lg);
  }
  
  .orbithyra-price-card {
    background-color: #f9f9f9;
    border-radius: var(--orbithyra-border-radius);
    overflow: hidden;
    box-shadow: var(--orbithyra-shadow);
    transition: var(--orbithyra-transition);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .orbithyra-price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }
  
  .orbithyra-price-header {
    background-color: var(--orbithyra-green);
    padding: var(--orbithyra-space-md);
    color: var(--orbithyra-white);
    text-align: center;
  }
  
  .orbithyra-price-title {
    font-size: 1.8rem;
    margin-bottom: var(--orbithyra-space-xs);
    color: var(--orbithyra-white);
  }
  
  .orbithyra-price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--orbithyra-space-xs);
  }
  
  .orbithyra-price-period {
    font-size: 1rem;
    opacity: 0.8;
  }
  
  .orbithyra-price-content {
    padding: var(--orbithyra-space-md);
  }
  
  .orbithyra-price-features {
    list-style: none;
    margin-bottom: var(--orbithyra-space-md);
  }
  
  .orbithyra-price-feature {
    margin-bottom: var(--orbithyra-space-xs);
    display: flex;
    align-items: center;
  }
  
  .orbithyra-price-feature::before {
    content: '✓';
    color: var(--orbithyra-green);
    margin-right: 10px;
    font-weight: 700;
  }
  
  .orbithyra-popular {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--orbithyra-pink);
    color: var(--orbithyra-white);
    padding: 5px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: translateY(0) rotate(45deg);
    transform-origin: top right;
    z-index: 10;
  }
  
  /* Gallery Section */
  .orbithyra-gallery {
    background-color: #f9f9f9;
  }
  
  .orbithyra-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--orbithyra-space-sm);
    margin-top: var(--orbithyra-space-lg);
  }
  
  .orbithyra-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--orbithyra-border-radius);
    height: 250px;
    cursor: pointer;
  }
  
  .orbithyra-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--orbithyra-transition);
  }
  
  .orbithyra-gallery-item:hover .orbithyra-gallery-img {
    transform: scale(1.1);
  }
  
  .orbithyra-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(95, 139, 76, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--orbithyra-transition);
  }
  
  .orbithyra-gallery-item:hover .orbithyra-gallery-overlay {
    opacity: 1;
  }
  
  .orbithyra-gallery-icon {
    color: var(--orbithyra-white);
    font-size: 2rem;
  }
  
  /* Gallery Modal */
  .orbithyra-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--orbithyra-transition);
  }
  
  .orbithyra-modal.orbithyra-active {
    opacity: 1;
    visibility: visible;
  }
  
  .orbithyra-modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
  }
  
  .orbithyra-modal-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--orbithyra-border-radius);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  }
  
  .orbithyra-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--orbithyra-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--orbithyra-transition);
  }
  
  .orbithyra-modal-close:hover {
    background-color: var(--orbithyra-pink);
  }
  
  .orbithyra-modal-close::before,
  .orbithyra-modal-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--orbithyra-brown);
  }
  
  .orbithyra-modal-close::before {
    transform: rotate(45deg);
  }
  
  .orbithyra-modal-close::after {
    transform: rotate(-45deg);
  }
  
  .orbithyra-modal-prev,
  .orbithyra-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--orbithyra-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--orbithyra-transition);
  }
  
  .orbithyra-modal-prev {
    left: 20px;
  }
  
  .orbithyra-modal-next {
    right: 20px;
  }
  
  .orbithyra-modal-prev:hover,
  .orbithyra-modal-next:hover {
    background-color: var(--orbithyra-green);
  }
  
  .orbithyra-modal-arrow {
    width: 15px;
    height: 15px;
    border-top: 2px solid var(--orbithyra-brown);
    border-right: 2px solid var(--orbithyra-brown);
    transition: var(--orbithyra-transition);
  }
  
  .orbithyra-modal-prev:hover .orbithyra-modal-arrow,
  .orbithyra-modal-next:hover .orbithyra-modal-arrow {
    border-color: var(--orbithyra-white);
  }
  
  .orbithyra-modal-prev .orbithyra-modal-arrow {
    transform: rotate(-135deg);
  }
  
  .orbithyra-modal-next .orbithyra-modal-arrow {
    transform: rotate(45deg);
  }
  
  /* Contact Section */
  .orbithyra-contact {
    background-color: var(--orbithyra-white);
  }
  
  .orbithyra-contact-content {
    display: flex;
    gap: var(--orbithyra-space-lg);
    margin-top: var(--orbithyra-space-lg);
  }
  
  .orbithyra-contact-info {
    flex: 1;
  }
  
  .orbithyra-contact-details {
    list-style: none;
    margin-bottom: var(--orbithyra-space-md);
  }
  
  .orbithyra-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--orbithyra-space-sm);
  }
  
  .orbithyra-contact-icon {
    margin-right: var(--orbithyra-space-sm);
    width: 40px;
    height: 40px;
    background-color: var(--orbithyra-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .orbithyra-contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--orbithyra-brown);
  }
  
  .orbithyra-contact-text {
    flex: 1;
  }
  
  .orbithyra-contact-label {
    font-weight: 700;
    color: var(--orbithyra-brown);
    margin-bottom: 2px;
  }
  
  .orbithyra-contact-form {
    flex: 1;
    background-color: #f9f9f9;
    padding: var(--orbithyra-space-md);
    border-radius: var(--orbithyra-border-radius);
    box-shadow: var(--orbithyra-shadow);
  }
  
  .orbithyra-form-group {
    margin-bottom: var(--orbithyra-space-sm);
  }
  
  .orbithyra-form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--orbithyra-brown);
  }
  
  .orbithyra-form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--orbithyra-border-radius);
    font-family: var(--orbithyra-font-main);
    font-size: 1rem;
    transition: var(--orbithyra-transition);
  }
  
  .orbithyra-form-control:focus {
    outline: none;
    border-color: var(--orbithyra-green);
    box-shadow: 0 0 0 3px rgba(95, 139, 76, 0.2);
  }
  
  .orbithyra-form-textarea {
    height: 150px;
    resize: vertical;
  }
  
  /* Footer */
  .orbithyra-footer {
    background-color: var(--orbithyra-brown);
    color: var(--orbithyra-white);
    padding: var(--orbithyra-space-lg) 0;
  }
  
  .orbithyra-footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--orbithyra-space-md);
  }
  
  .orbithyra-footer-col {
    flex: 1;
    min-width: 250px;
  }
  
  .orbithyra-footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: var(--orbithyra-space-sm);
  }
  
  .orbithyra-footer-logo-img {
    height: 36px;
    margin-right: var(--orbithyra-space-xs);
  }
  
  .orbithyra-footer-logo-text {
    font-family: var(--orbithyra-font-accent);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orbithyra-white);
  }
  
  .orbithyra-footer h4 {
    color: var(--orbithyra-white);
    margin-bottom: var(--orbithyra-space-sm);
    position: relative;
    padding-bottom: 10px;
  }
  
  .orbithyra-footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--orbithyra-beige);
  }
  
  .orbithyra-footer-text {
    margin-bottom: var(--orbithyra-space-sm);
    color: rgba(255, 255, 255, 0.8);
  }
  
  .orbithyra-footer-links {
    list-style: none;
  }
  
  .orbithyra-footer-link {
    margin-bottom: 8px;
  }
  
  .orbithyra-footer-link a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--orbithyra-transition);
  }
  
  .orbithyra-footer-link a:hover {
    color: var(--orbithyra-beige);
    padding-left: 5px;
  }
  
  .orbithyra-footer-social {
    display: flex;
    gap: 10px;
    margin-top: var(--orbithyra-space-sm);
  }
  
  .orbithyra-social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--orbithyra-transition);
  }
  
  .orbithyra-social-icon:hover {
    background-color: var(--orbithyra-beige);
    transform: translateY(-3px);
  }
  
  .orbithyra-social-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--orbithyra-white);
  }
  
  .orbithyra-copyright {
    text-align: center;
    margin-top: var(--orbithyra-space-lg);
    padding-top: var(--orbithyra-space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
  }
  
  /* Success Page */
  .orbithyra-success {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--orbithyra-white);
    text-align: center;
  }
  
  .orbithyra-success-content {
    max-width: 600px;
    padding: var(--orbithyra-space-xs);
    background-color: #f9f9f9;
    border-radius: var(--orbithyra-border-radius);
    box-shadow: var(--orbithyra-shadow);
    margin: auto;
  }
  
  .orbithyra-success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--orbithyra-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--orbithyra-space-md);
  }
  
  .orbithyra-success-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--orbithyra-white);
  }
  
  .orbithyra-success h1 {
    margin-bottom: var(--orbithyra-space-sm);
  }
  
  .orbithyra-success p {
    margin-bottom: var(--orbithyra-space-md);
  }
  
  /* Policy Pages */
  .orbithyra-policy {
    padding-top: 120px;
    padding-bottom: var(--orbithyra-space-lg);
  }
  
  .orbithyra-policy h1 {
    margin-bottom: var(--orbithyra-space-md);
  }
  
  .orbithyra-policy h2 {
    margin-top: var(--orbithyra-space-md);
    margin-bottom: var(--orbithyra-space-sm);
  }
  
  .orbithyra-policy p {
    margin-bottom: var(--orbithyra-space-sm);
  }
  
  .orbithyra-policy ul {
    margin-bottom: var(--orbithyra-space-md);
    padding-left: var(--orbithyra-space-md);
  }
  
  .orbithyra-policy li {
    margin-bottom: 8px;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .orbithyra-animate-fadeIn {
    animation: fadeIn 1s ease;
  }
  
  .orbithyra-animate-fadeInUp {
    animation: fadeInUp 1s ease;
  }
  
  /* Responsive Styles */
  @media (max-width: 1200px) {
    html {
      font-size: 15px;
    }
    
    h1 {
      font-size: 3rem;
    }
    
    h2 {
      font-size: 2.5rem;
    }
  }
  
  @media (max-width: 991px) {
    html {
      font-size: 16px;
    }
    
    h1 {
      font-size: 3.2rem;
    }
    
    h2 {
      font-size: 2.7rem;
    }
    
    h3 {
      font-size: 2.2rem;
    }
    
    p {
      font-size: 1.2rem;
    }
    
    .orbithyra-hamburger {
      display: flex;
    }
    
    .orbithyra-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background-color: var(--orbithyra-white);
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
      padding: 100px var(--orbithyra-space-md) var(--orbithyra-space-md);
      transition: var(--orbithyra-transition);
      z-index: 1000;
    }
    
    .orbithyra-nav.orbithyra-active {
      right: 0;
    }
    
    .orbithyra-nav-list {
      flex-direction: column;
    }
    
    .orbithyra-nav-item {
      margin: 0 0 var(--orbithyra-space-sm) 0;
    }
    
    .orbithyra-nav-link {
      font-size: 1.2rem;
      display: block;
      padding: 10px 0;
    }
    
    .orbithyra-about-content,
    .orbithyra-contact-content {
      flex-direction: column;
    }
    
    .orbithyra-section {
      padding: var(--orbithyra-space-xl) 0;
    }
    
    .orbithyra-space-md {
      --orbithyra-space-md: 2.5rem;
    }
    
    .orbithyra-space-lg {
      --orbithyra-space-lg: 5rem;
    }
    
    .orbithyra-btn {
      padding: 14px 32px;
      font-size: 1.1rem;
    }
    h2::after {
    left: 44%;
}
  }
  
  @media (max-width: 768px) {
    html {
      font-size: 16px;
    }
    
    h1 {
      font-size: 2.8rem;
    }
    
    h2 {
      font-size: 2.3rem;
    }
    
    .orbithyra-hero {
      min-height: 500px;
    }
    
    .orbithyra-footer-content {
      flex-direction: column;
    }
    
    .orbithyra-hero-cta {
      flex-direction: column;
    }
    
    .orbithyra-hero-cta .orbithyra-btn {
      width: 100%;
      margin-bottom: var(--orbithyra-space-sm);
    }
    
    .orbithyra-gallery-grid {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .orbithyra-gallery-item {
      height: 200px;
    }
    .orbithyra-section {
      padding: var(--orbithyra-space-md) 0;
    }
        h3 {
        font-size: 1.8rem;
    }
    .orbithyra-logo-text {
    font-size: 1.3rem
}
.orbithyra-logo-img {
    height: 33px;
    margin-right: 2px;
}
.orbithyra-testimonial {
    padding: 14px;
  
}
  }
  
  @media (max-width: 576px) {
    h1 {
      font-size: 2.5rem;
    }
    
    h2 {
      font-size: 2rem;
    }
    
    .orbithyra-hero {
      min-height: 450px;
    }
    
    .orbithyra-gallery-grid {
      grid-template-columns: 1fr;
    }
    
    .orbithyra-gallery-item {
      height: 250px;
    }
    
    .orbithyra-modal-content {
      max-width: 95%;
    }
    
    .orbithyra-modal-prev,
    .orbithyra-modal-next {
      width: 40px;
      height: 40px;
    }
     h2::after {
    left: 37%;
}
.orbithyra-testimonial-text::after {
    right: 5px;
  }
  .orbithyra-contact-content {
  gap: 10px;
}
  }
  
  @media (max-width: 360px) {
    html {
      font-size: 16px;
    }
    
    h1 {
      font-size: 2.3rem;
    }
    
    h2 {
      font-size: 1.5rem;
    }
    
    p {
      font-size: 1.1rem;
    }
    
    .orbithyra-container {
      width: 95%;
    }
    
    .orbithyra-hero {
      min-height: 400px;
    }
    
    .orbithyra-btn {
      padding: 12px 24px;
      font-size: 1rem;
    }
  }