/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
  /* Base Colors */
  --background: hsl(0, 0%, 98%);          /* Very light gray background */
  --foreground: hsl(0, 0%, 20%);          /* Dark text */

  /* Primary Brand Colors */
  --primary: hsl(0, 0%, 20%);             /* Dark text / black for headings */
  --primary-foreground: hsl(0, 0%, 100%); /* White text on dark background */
  --primary-light: hsl(0, 0%, 40%);       /* Medium gray shades */
  --primary-lighter: hsl(0, 0%, 60%);     /* Light gray text or subtle borders */

  /* Accent - Softer Red */
  --accent: hsla(0, 90%, 50%, 0.6);       /* Red with reduced opacity */
  --accent-foreground: hsl(0, 0%, 100%);  /* White text on red */
  --accent-light: hsla(0, 85%, 60%, 0.4); /* Lighter red for hover or highlights */

  /* Secondary - Gray Surfaces / Cards */
  --secondary: hsl(0, 0%, 95%);           /* Light gray cards / sections */
  --secondary-foreground: hsl(0, 0%, 20%);/* Text on light gray */
  --secondary-dark: hsl(0, 0%, 45%);      /* Medium gray text / details */

  /* Card / Surface */
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(0, 0%, 20%);
  --muted: hsl(0, 0%, 97%);
  --muted-foreground: hsl(0, 0%, 45%);

  /* Borders & Inputs */
  --border: hsl(0, 0%, 90%);
  --input: hsl(0, 0%, 95%);
  --ring: hsla(0, 90%, 50%, 0.6);

  /* Navigation */
  --nav-background: hsla(0, 0%, 20%, 0.95);  /* Semi-dark nav for contrast */
  --nav-background-solid: hsl(0, 0%, 20%);
  --nav-text: hsl(0, 0%, 100%);
  --nav-text-muted: hsl(0, 0%, 75%);

  /* Hero / Overlays */
  --hero-overlay: hsla(0, 0%, 20%, 0.4);    /* Soft dark overlay */
  --hero-text: hsl(0, 0%, 100%);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(0,0%,20%) 0%, hsla(0,90%,50%,0.6) 100%);
  --gradient-hero: linear-gradient(135deg, hsla(0,0%,20%,0.6) 0%, hsla(0,90%,50%,0.4) 100%);
  --gradient-subtle: linear-gradient(180deg, hsl(0,0%,100%) 0%, hsl(0,0%,97%) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px hsla(0,0%,20%,0.05);
  --shadow-md: 0 4px 6px hsla(0,0%,20%,0.1);
  --shadow-lg: 0 10px 15px hsla(0,0%,20%,0.12);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --radius: 0.75rem;
}


html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Top Navigation Styles */
.top-nav {
    background: transparent;
    color: var(--nav-text);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.header-fixed.scrolled .top-nav {
    background: var(--background);
    color: var(--foreground);
    border-bottom: 1px solid var(--border);
}

.top-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-spacer {
    flex: 1;
}

.top-nav-links {
      
    display: flex;
     align-items: center;
    gap: 2rem;
    justify-content: flex-end;
    align-items: right;
}

.top-nav-links a {
    color: inherit;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

.top-nav-links a:hover,
.header-fixed.scrolled .top-nav-links a:hover {
    color: var(--accent);
}

.header-fixed.scrolled .top-nav-links a {
    color: var(--foreground);
}

.top-nav-dropdown-trigger {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.top-nav-dropdown-trigger:hover {
    color: var(--accent);
}

.top-nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
      right: 0;
    margin-top: 0.25rem;
    width: 12rem;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
}

.nav-dropdown:hover .top-nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-content {
    padding: 0.5rem;
}

.dropdown-content a {
    display: block;
    padding: 0.25rem 1rem;
    color: var(--foreground) !important;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    border-radius: 0.25rem;
}

.dropdown-content a:hover {
    color: var(--accent) !important;
    background-color: var(--accent) / 0.05;
}

.top-nav-actions {
    display: flex;
    align-items: center;
}

.top-nav-actions .language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: inherit;
    font-size: 0.875rem;
    cursor: pointer;
}

.header-fixed.scrolled .language-selector {
    color: var(--foreground);
}

/* Main Navigation */
.main-nav {
    background-color: transparent;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.header-fixed.scrolled .main-nav {
    background-color: var(--background);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    color: var(--nav-text);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.header-fixed.scrolled .logo {
    color: var(--foreground);
}

.logo-accent {
    color: var(--accent);
}

.logo-light {
    font-weight: 300;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: 2rem;
}

.header-fixed.scrolled .desktop-nav {
    color: var(--foreground);
}

.nav-dropdown {
    position: relative;
}

.nav-trigger {
    background: none;
    border: none;
    color: var(--nav-text);
    font-weight: 500;
    cursor: pointer;
    padding: 0.75rem 0;
    transition: color 0.3s ease;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
}

.header-fixed.scrolled .nav-trigger {
    color: var(--foreground);
}

.nav-trigger:hover,
.header-fixed.scrolled .nav-trigger:hover {
    color: var(--accent);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.25rem;
    width: 25rem;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-content {
    padding: 1rem;
}

.nav-section h4 {
    color: var(--foreground);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.nav-subsection {
    margin-top: 1rem;
}

.nav-subsection h5 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #666;
    font-size: 0.9rem;
}

.nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.nav-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.2s ease;
}

.nav-button.yellow {
    background: #FFD700;
    color: #333;
}

.nav-button.green {
    background: #00CCA3;
    color: white;
}

.nav-button.blue {
    background: #0EA5E9;
    color: white;
}

.nav-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.nav-section a {
    display: block;
    padding: 0.25rem 0;
    color: var(--foreground) / 0.8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.nav-section a:hover {
    color: var(--accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.language-selector, .login-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--nav-text);
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.header-fixed.scrolled .language-selector,
.header-fixed.scrolled .login-btn {
    color: var(--foreground);
}

.language-selector:hover, .login-btn:hover {
    color: var(--accent);
}

.search-btn {
    background: none;
    border: none;
    color: var(--nav-text);
    cursor: pointer;
    transition: color 0.3s ease;
}

.header-fixed.scrolled .search-btn {
    color: var(--foreground);
}

.search-btn:hover {
    color: var(--accent);
}

.contact-btn {
    background-color: var(--accent);
    color: var(--accent-foreground);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.contact-btn:hover {
    background-color: var(--accent-light);
    transform: translateY(-1px);
}

.mobile-nav {
    display: none;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--nav-text);
    cursor: pointer;
    transition: color 0.3s ease;
}

.header-fixed.scrolled .mobile-menu-btn {
    color: var(--foreground);
}

.mobile-menu {
    display: none;
    background-color: var(--background);
    border-top: 1px solid var(--border);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-section {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-section h4 {
    color: var(--foreground);
    font-weight: 500;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-section a {
    display: block;
    padding: 0.25rem 1rem;
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.mobile-menu-section a:hover {
    color: var(--accent);
}

.mobile-menu-footer {
    padding: 1rem;
}

/* Hero Section */

.hero {
    position: relative;
    width: 100%;
    min-height: 50vh;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 95px;
    border-bottom-right-radius: 95px;
}
.hero-video-container {
    position: absolute;
    inset: 0;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* video always covers area without distortion */
}



.hero-media-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-media-container video,
.hero-media-container .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures cover without stretching */
    display: block;
}

/* Hide image when video is used (optional) */
.hero-media-container .hero-image {
    display: none;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3); /* dark overlay for text contrast */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
}


.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

.hero-text {
    max-width: 4xl;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-text h1 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--hero-text);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text h3 {
    font-size: 1.50rem;
    font-weight: 500;
    color: var(--hero-text);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.50rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hero-primary-btn {
    background-color: var(--accent);
    color: var(--accent-foreground);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    box-shadow: var(--shadow-hero);
    transition: all 0.2s ease;
}

.hero-primary-btn:hover {
    background-color: var(--accent-light);
    transform: scale(1.05);
}

.hero-video-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid var(--hero-text);
    color: var(--hero-text);
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
}

.hero-video-btn:hover {
    background-color: var(--hero-text);
    color: var(--primary);
}

/* Services Section */
.services {
    padding: 120px 0;
    background: #f8fafc;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.services-left {
    padding-right: 40px;
}

.section-header {
    text-align: left;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-item {
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-item:hover {
    padding-left: 10px;
}

.service-item h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #64748b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.service-item .arrow {
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #3b82f6;
}

.service-item:hover .arrow {
    opacity: 1;
}

.services-right {
    position: relative;
}

.services-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.services-image img {
    width: 100%;
    height: auto;
    display: block;
}

.outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffd700;
    border: none;
    color: #000;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.outline-btn:hover {
    background-color: #ffed4e;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 968px) {
    .services-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .services-left {
        padding-right: 0;
    }
    
    .section-header {
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background-color: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: none;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-0.5rem);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon svg {
    color: var(--primary-foreground);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.ghost-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: var(--accent);
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

.ghost-btn:hover {
    color: var(--accent-light);
    background-color: rgba(0, 123, 255, 0.1);
    padding: 0.5rem;
    border-radius: var(--radius);
}

.cta-section {
    text-align: center;
}

.cta-card {
    background: var(--gradient-primary);
    padding: 3rem;
    border-radius: calc(var(--radius) * 2);
    text-align: center;
}

.cta-card h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background-color: var(--accent);
    color: var(--accent-foreground);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
}

.cta-btn:hover {
    background-color: var(--accent-light);
}

/* Footer */
.footer {
    background-color: var(--background);
    color: var(--foreground);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0;
}

.footer-company {
    grid-column: span 2;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-company p {
    color: rgba(41, 41, 35, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary-light);
    border-radius: 50%;
    color: var(--primary-foreground);
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background-color: var(--accent);
}

.footer-links {
    display: contents;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.footer-section a {
    display: block;
    color: rgba(41, 41, 35, 0.8);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--accent);
}

.newsletter {
    border-top: 1px solid var(--primary-light);
    padding-top: 3rem;
    text-align: center;
}

.newsletter-content {
    max-width: 32rem;
    margin: 0 auto;
}

.newsletter h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter p {
    color: rgba(41, 41, 35, 0.8);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 20rem;
    margin: 0 auto;
}

.newsletter-form input {
    background-color: var(--primary-light);
    border: 1px solid var(--primary-light);
    color: var(--primary-foreground);
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--accent);
    color: var(--accent-foreground);
    border: none;
    padding: 0.75rem 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
}

.newsletter-btn:hover {
    background-color: var(--accent-light);
}

.footer-bottom {
    border-top: 1px solid var(--primary-light);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(41, 41, 35, 0.8);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(41, 41, 35, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-0.5rem);
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .top-nav {
        display: none; /* 🔹 Hide top navigation in mobile */
    }
    
    .mobile-nav {
        display: block;
    }
    
    .nav-content {
        justify-content: space-between;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-company {
        grid-column: span 1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}


/* Even smaller phones */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.6rem;
    }
    .hero-text p {
        font-size: 0.9rem;
    }
    .hero-buttons button {
        width: 100%;
    }
}

@media (min-width: 769px) {
    .hero-text h1 {
        font-size: 4rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .newsletter-form {
        flex-direction: row;
    }
    
    .footer-bottom-content {
        flex-direction: row;
    }
}

.nav-dropdown-content.three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;             /* more breathing space */
  max-width: 1200px;     /* make it wide */
  padding: 30px 40px;    /* add spacing inside */
}

.header-fixed.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.header-fixed.scrolled .nav-trigger,
.header-fixed.scrolled .logo,
.header-fixed.scrolled a {
  color: #000;  /* ensure contrast */
}

@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 4.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px; /* space between logo and text */
}

.logo-img {
    height: 20px;   /* reduced logo height */
    width: auto;    /* keeps aspect ratio */
}

/* Section Base */
.solutions-section {
  position: relative;
  padding: 100px 20px;
  background: #f9fafc;
  text-align: center;
  overflow: hidden;
}

/* Content Center */
.solutions-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.solutions-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.solutions-content p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 40px;
}


/* Gradient Buttons */
.btn-gradient {
  display: inline-block;
  margin: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  background: linear-gradient(135deg,  #e10600,  #e10600);
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-gradient:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  background: linear-gradient(135deg, #d66b6b, #7d0e01;
}

.wave-left,
.wave-right {
  position: absolute;
  z-index: 1;
  opacity: 0.25;
  pointer-events: none;
}

.wave-left,
.wave-right {
  position: absolute;
  z-index: 1;
  opacity: 0.25;
  pointer-events: none;
}

.wave-left {
  bottom: -100px;
  left: -120px;
  width: 350px;
}

.wave-right {
  top: -100px;
  right: -120px;
  width: 350px;
}

/* Gradient Buttons */
.btn-gradient {
  display: inline-block;
  margin: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #9b5de5, #00bbf9);
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-gradient:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  background: linear-gradient(135deg, #00bbf9, #9b5de5);
}

.wave-left,
.wave-right {
  position: absolute;
  z-index: 1;
  opacity: 0.25;
  pointer-events: none;
}

.wave-left {
  bottom: -100px;
  left: -120px;
  width: 350px;
}

.wave-right {
  top: -100px;
  right: -120px;
  width: 350px;
}




