/* Base Styles */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #000000;
    --secondary-color: #f8fafc;
    --text-color: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --black: #0f172a;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border-radius: 0.5rem;
    --transition: all 0.3s ease;
}
/* Video container styles */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
  }
  
  /* Base video styles for both desktop and mobile */
  .video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover; /* This ensures the video covers the entire container */
  }
  
  /* Desktop video - shown by default */
  .desktop-video {
    display: block;
  }
  
  /* Mobile video - hidden by default */
  .mobile-video {
    display: none;
  }
  
  /* Overlay for better text readability */
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
  }
  
  /* Media query for mobile devices */
  @media (max-width: 768px) {
    .desktop-video {
      display: none; /* Hide desktop video on mobile */
    }
    
    .mobile-video {
      display: block; /* Show mobile video on mobile */
    }
    
    /* Adjust hero content for mobile */
    .hero-content {
      padding: 0 15px;
    }
    
    .hero-title {
      font-size: 2rem; /* Smaller font size for mobile */
    }
    
    .hero-subtitle {
      font-size: 1.2rem;
    }
  }
  
  /* Add text shadow for better readability */
  .hero-title, .hero-subtitle, .hero-description {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline-blue {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    width: 100%;
}

.btn-outline-blue:hover {
    background-color: rgba(37, 99, 235, 0.05);
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 50px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    color: var(--gray-700);
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-color);
}

.search-icon {
    margin-left: 2rem;
    color: var(--gray-600);
    cursor: pointer;
}

.search-icon:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--gray-700);
}

/* Base styles and reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
  }
  /* Add these styles to your CSS file to enhance the hero section */

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  @media (min-width: 768px) {
    .hero-title {
      font-size: 5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .hero-title {
      font-size: 6rem;
    }
  }
  
  .hero-subtitle {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }
  
  @media (min-width: 768px) {
    .hero-subtitle {
      font-size: 2.25rem;
      margin-bottom: 2.5rem;
    }
  }
  
  .hero-description {
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.01em;
  }
  
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125rem;
    letter-spacing: 0.025em;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0.75rem 2rem;
  }
  
  @media (min-width: 768px) {
    .btn-primary {
      font-size: 1.25rem;
      padding: 1rem 2.5rem;
    }
  }
  
  
  /* Video container styles */
  .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay */
  }
  
  /* Hero content styles */
  .hero-content {
    text-align: center;
    padding: 0 20px;
    max-width: 1200px;
    z-index: 1;
  }
  
  .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .hero-title span {
    color: #9a9595; /* Highlight color for the span */
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
  }
  .hero-description {
    font-family: 'YourCustomFont', sans-serif; /* keep your font */
    font-size: 6vw;             /* base size for mobile */
    font-weight: 100;
    text-align: center;
    color: white;
    line-height: 1.1;
    margin: 0 auto;
    max-width: 95%;
    word-break: break-word;
  }
  
  @media (min-width: 1024px) {
    .hero-description {
      font-size: 12vw;          /* extra large size on desktop */
    }
  }
  
  /* Button styles */
  .hero-buttons {
    margin-top: 2rem;
  }
  
  .btn-primary {
    display: inline-block;
    background-color: #000000;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
  }
  
  .btn-primary:hover {
    background-color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .btn-primary i {
    margin-left: 8px;
  }
  
  /* Hide the desktop line break on mobile */
  .desktop-break {
    display: none;
  }
  
  /* Media queries for responsive design */
  @media (min-width: 768px) {
    .hero-title {
      font-size: 4rem;
    }
    
    .hero-subtitle {
      font-size: 1.8rem;
    }
    
    .hero-description {
      font-size: 1.4rem;
    }
    
    .desktop-break {
      display: inline;
    }
  }
  
  @media (min-width: 1200px) {
    .hero-title {
      font-size: 5rem;
    }
    
    .hero-content {
      padding: 0 40px;
    }
  }
  
  /* For very small screens */
  @media (max-width: 480px) {
    .hero-title {
      font-size: 2.2rem;
    }
    
    .hero-subtitle {
      font-size: 1.2rem;
    }
    
    .hero-description {
      font-size: 1rem;
    }
    
    .btn-primary {
      padding: 10px 24px;
      font-size: 1rem;
    }
  }

/* Stats Section */
.stats {
    background-color: var(--white);
    padding-top: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card {
    background-color: var(--primary-light);
    background-opacity: 0.1;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    background-color: var(--gray-100);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.stat-card p {
    color: var(--gray-600);
}

.features .feature-card .btn,
.features .feature-card .btn-small {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 80px;            /* same height for all */
  padding: 12px 20px;
  box-sizing: border-box;
  border-radius: var(--border-radius);
  border: 2px solid var(--primary-color);
  background-color: transparent;
  color: var(--primary-color);
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  white-space: normal;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.features .feature-card .btn:hover,
.features .feature-card .btn-small:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* "Book" text bigger with margin below */
.features .feature-card .btn-small strong {
  font-size: 24px;
  margin-bottom: 6px;
  line-height: 1;
}

/* Optional: smaller subtext font */
.features .feature-card .btn-small .btn-subtext {
  font-size: 14px;
  line-height: 1.2;
}

/* Partners Section */
.partners {
    text-align: center;
}

.partners h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--gray-900);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem 4rem;
}

.partner-logo {
    opacity: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 140px;
}

.partner-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
    height: 60px;
    width: auto;
    display: block;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--gray-50);
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-container {
    position: relative;
}

.testimonial-slides {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    visibility: hidden;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .testimonial-content {
        flex-direction: row;
    }
}

.testimonial-media {
    position: relative;
    width: 100%;
}

@media (min-width: 768px) {
    .testimonial-media {
        width: 40%;
    }
}

.testimonial-image {
    position: relative;
    height: 100%;
    min-height: 250px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
}

.video-play-button:hover {
    background-color: var(--primary-dark);
    transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-video-container {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.testimonial-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    padding: 2rem;
    flex: 1;
}

.testimonial-text p {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author h4 {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}

.testimonial-prev,
.testimonial-next {
    background-color: transparent;
    border: 1px solid var(--gray-300);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-600);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
    margin: 0 1rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background-color: var(--primary-color);
}

/* CTA Section */
.cta {
    background-color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.cta p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Footer */
footer {
    background-color: var(--gray-900);
    color: var(--gray-300);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-col p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--gray-300);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.footer-col h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-info li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.copyright {
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .copyright {
        margin-bottom: 0;
    }
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.compliance-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.compliance-badges img {
    height: 30px;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.chat-button:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

.chat-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    display: none;
}

.chat-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    font-size: 1rem;
    font-weight: 600;
}

.chat-header button {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1rem;
}

.chat-messages {
    height: 300px;
    padding: 1rem;
    overflow-y: auto;
    background-color: var(--gray-50);
}

.message {
    margin-bottom: 1rem;
    max-width: 80%;
}

.message.bot {
    background-color: var(--primary-light);
    background-opacity: 0.2;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    color: var(--gray-800);
    background-color: rgba(96, 165, 250, 0.2);
}

.message.user {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem;
    border-radius: var(--border-radius);
    margin-left: auto;
}

.chat-form {
    display: flex;
    border-top: 1px solid var(--gray-200);
    padding: 0.75rem;
}

.chat-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    outline: none;
}

.chat-form input:focus {
    border-color: var(--primary-color);
}

.chat-form button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0 1rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

#modal-video {
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: block;
        margin-left: 1.5rem;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.25rem;
    }

    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .testimonial-content {
        flex-direction: column;
    }

    .testimonial-media {
        width: 100%;
    }

    .cta h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .chat-popup {
        width: 300px;
    }
}