@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;500;600;700&family=Lato:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&family=Rubik:wght@300;400;500;600;700&family=Bungee&family=Michroma&family=Stalinist+One&family=Permanent+Marker&family=Cinzel:wght@400;700&family=Frijole&family=Bangers&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
      background: radial-gradient(circle at top, rgba(0, 179, 166, 0.08) 0%, rgba(0, 41, 39, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%) !important;
       color: #000000;
    overflow-x: hidden;
    min-height: 100vh;
}

/* CSS Variables - Design System */
:root {
    /* Core Colors - Teal Professional Theme */
  --background: #00938c;
 --foreground: #000000; /* Black text */
--card: rgba(255, 255, 255, 0.95);
    --card-foreground: hsl(210, 40%, 98%);
    
    --popover: hsl(220, 15%, 10%);
    --popover-foreground: hsl(210, 40%, 98%);
    
    /* Primary - Teal */
   --primary: #00938c;
    --primary-foreground: #ffffff; /* White text for visibility */
    --primary-glow: #00b3a6; /* Lighter teal for glow effects */
    
    /* Secondary - Deep Purple */
    --secondary: hsl(261, 83%, 58%);
    --secondary-foreground: hsl(210, 40%, 98%);
    
    /* Accent - Cyan */
  /* Accent - Teal */
   --accent: #00938c;
    --accent-foreground: #ffffff;
    
   --muted: rgba(255, 255, 255, 0.15);
      --muted-foreground: #333333; /* Dark gray */
    
    --destructive: hsl(0, 84%, 60%);
    --destructive-foreground: hsl(210, 40%, 98%);
    
   --border: rgba(0, 0, 0, 0.25);
   --input: rgba(255, 255, 255, 0.15);
   --ring: #00938c;
    
    --radius: 0.75rem;
    
    /* Gradients */
    /* Gradients - Teal based */
    --gradient-primary: linear-gradient(135deg, #00b3a6, #00938c, #007d73);
--gradient-hero: linear-gradient(135deg, hsl(220, 15%, 8%), hsl(220, 25%, 12%), rgba(0, 147, 140, 0.15));
    --gradient-card: linear-gradient(135deg, hsl(220, 15%, 12%, 0.8), hsl(220, 15%, 15%, 0.6));
    --gradient-glow: radial-gradient(circle at center, rgba(0, 147, 140, 0.3), transparent 70%);
    
    /* Shadows */
/* Shadows - Teal glow */
    --shadow-elegant: 0 25px 50px -12px hsl(220, 15%, 5%, 0.8);
    --shadow-glow: 0 0 40px rgba(0, 147, 140, 0.4);
    --shadow-card: 0 10px 30px hsl(220, 15%, 5%, 0.4);
    
    /* Glass Morphism */
    --glass-bg: hsl(220, 15%, 12%, 0.1);
    --glass-border: hsl(210, 40%, 98%, 0.1);
    --glass-backdrop: blur(16px) saturate(180%);
    
    /* Animations */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}


/* HEADINGS - Using Montserrat Bold */
/* HEADINGS - Using Montserrat Bold */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.about-card-title,
.values-title,
.benefits-title,
.product-title,
.featured-title,
.form-title,
.footer-logo,
.logo-text {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
     color: #000000 !important;
    /* Remove gradient text effects */
    background: none !important;
    -webkit-text-fill-color: #000000 !important;
}

/* SUB-HEADINGS - Using Rubik */
/* .hero-subtitle, */
.section-subtitle,
.product-subtitle,
.service-subtitle,
.value-title,
.benefit-title,
.partner-name,
.industry-name,
.feature-title,
.position-title,
.event-title,
.insight-title,
.contact-intro-title,
.cta-title,
.newsletter-title,
.footer-section-title,
.business-hours-title {
    font-family: 'Rubik', sans-serif !important;
    font-weight: 500 !important;
    color: #000000 !important;
}

/* MENU TEXT - Using Lato */
.nav-link,
.dropdown-item,
.btn,
.form-label,
.legal-link {
    font-family: 'Lato', sans-serif !important;
    font-weight: 500 !important;
     color: #000000 !important;
}

/* CONTENT - Using Inter */
.about-card-text,
.value-text,
/* .partner-description, */
.service-description,
.industry-description,
.contact-intro-text,
.footer-description {
    font-family: 'Inter', sans-serif !important;
}

/* CONTENT - Using Open Sans */
.event-description,
.position-description,
.benefit-text,
.insight-excerpt,
.featured-excerpt,
.feature-description {
    font-family: 'Open Sans', sans-serif !important;
    color: #2d2d2d !important;
}

/* CONTENT - Using Poppins */
.newsletter-text,
.cta-text,
.form-note p,
.contact-item-value,
.hours-item,
.copyright {
    font-family: 'Poppins', sans-serif !important;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section Styles */
.section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Glass Morphism Components */
.glass-card {
 background: radial-gradient(circle at top, rgba(0, 179, 166, 0.08) 0%, rgba(0, 41, 39, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%) !important;
    backdrop-filter: var(--glass-backdrop);
    border: 3px solid rgba(0, 0, 0, 0.12) !important;
    color: #000000 !important;
    box-shadow: var(--shadow-card);
    border-radius: var(--radius);
    transition: var(--transition-smooth);
    position: relative;
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-glow), var(--shadow-elegant);
}

/* Navigation Styles */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
background:
  linear-gradient(to right, #a8edea, #fed6e3),
  linear-gradient(to top, rgba(0, 128, 0, 0.05), transparent),
  rgba(255, 255, 255, 0.94) !important;
}

.nav.scrolled {
       /* background: rgba(255, 255, 255, 0.95) !important; */
    border-bottom: 2px solid rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: var(--glass-backdrop);
    /* border-bottom: 1px solid var(--glass-border); */
    box-shadow: var(--shadow-elegant);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.nav-logo {
    flex-shrink: 0;
}

.logo-left {
    margin-right: auto;
}

.logo-img {
    height: 60px; /* Adjust as needed */
    width: 200px;  /* Keeps aspect ratio */
    display: block;
   
}


.nav-items {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-dropdown {
    position: relative;
}

.nav-link {
  padding: 0.5rem 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--foreground);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary);
}

.contact-link {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.contact-link:hover {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.25rem;
    width: 16rem;
   background: rgba(255, 255, 255, 0.95) !important; /* CHANGED */
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-elegant);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
    
}


/* Specific styling for About Us dropdown only */
.nav-dropdown[data-dropdown="about-us"] .dropdown-content {
    padding: 0.5rem 0;
      width: 12rem !important; 
}

.nav-dropdown[data-dropdown="about-us"] .dropdown-item {
    padding: 0.75rem 1rem;
}
/* Reduce width for "Our Product" dropdown specifically */
.nav-dropdown[data-dropdown="our-product"] .dropdown-content {
    width: 9rem !important; /* Reduced from 16rem */
}
.nav-dropdown[data-dropdown="services"] .dropdown-item {
    width: 15rem !important; 
    
}
.nav-dropdown[data-dropdown="industries"] .dropdown-content {
    width: 11rem !important; /* Reduced from 16rem */
}

.nav-dropdown[data-dropdown="insights"] .dropdown-content {
    width: 10rem !important; /* Reduced from 16rem */
}
.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-icon {
    font-size: 1.125rem;
    width: 1.5rem;
    display: inline-flex;
    justify-content: center;
}

.dropdown-item {
  padding: 0.75rem 1rem;
    font-size: 1rem;
    color: var(--foreground);
    cursor: pointer;
    transition: var(--transition-smooth);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    display: block;
}

.dropdown-item:hover {
    background: rgba(99, 234, 227, 0.1);
    color: var(--primary);
}

.dropdown-item.disabled {
    color: var(--muted-foreground);
    cursor: default;
}

.dropdown-item.disabled:hover {
    background: transparent;
    color: var(--muted-foreground);
}
.partners-hover-item {
    position: relative;
}

.partners-subdropdown {
    position: absolute;
    left: 100%;
    top: 0;
    margin-left: 0.25rem;
    width: 12rem;
   background: rgba(255, 255, 255, 0.95) !important; /* CHANGED */
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-elegant);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
}

.partners-hover-item:hover .partners-subdropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
/* Alternative: More aggressive left alignment */
.nav-dropdown[data-dropdown="about-us"] .partners-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;  /* Aligns all items to the left edge */
    gap: 0.5rem;
}

.nav-dropdown[data-dropdown="about-us"] .partner-item {
    width: auto;
    align-self: flex-start;
}

/* Partners Scrolling Container */
.partners-scrolling-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 4rem;
    position: relative;
}

.partners-row {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

.partners-track {
    display: flex;
    width: fit-content;
    gap: 4rem;
}

/* Row 1: Scroll Right to Left */
.partners-track-1 {
    animation: scrollRightToLeft 30s linear infinite;
}

/* Row 2: Scroll Left to Right */
.partners-track-2 {
    animation: scrollLeftToRight 30s linear infinite;
    flex-direction: row-reverse;
}

@keyframes scrollRightToLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollLeftToRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Partner Logo Item */
.partner-logo-item {
    flex-shrink: 0;
    width: 180px;
    height: 120px;
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid rgba(0, 0, 0, 0.12);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.partner-logo-item:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 40px rgba(99, 234, 227, 0.4);
    border-color: rgba(99, 234, 227, 0.6);
    background: #ffffff;
}

.partner-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-logo-item:hover .partner-logo-img {
    transform: scale(1.1);
}

/* Pause BOTH rows on hover */
.partners-scrolling-container:hover .partners-track-1,
.partners-scrolling-container:hover .partners-track-2 {
    animation-play-state: paused;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .partner-logo-item {
        width: 140px;
        height: 100px;
        padding: 1rem;
    }
    
    .partners-track {
        gap: 2rem;
    }
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px; /* adjust based on layout */
    margin-bottom: 1rem;
}

/* Scale animation on hover */
.partner-card-container:hover .partner-logo {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(99, 234, 227, 0.3);
}

.partner-logo-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}


.partner-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: var(--radius);
    background: hsl(220, 15%, 15%, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.nav-dropdown[data-dropdown="about-us"] .partner-item:hover {
    background: none !important;
}

/* Remove box background and styling from partner items in About Us dropdown */
.nav-dropdown[data-dropdown="about-us"] .partner-item {
    background: none !important;
    border-radius: 0;
}


.partner-icon {
    font-size: 1.125rem;
}

.partner-name {
    font-size: 0.875rem;
}

.mobile-menu-btn {
    display: none;
}

/* Show on mobile/tablet */
@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: block !important;
    }
}

.mobile-toggle {
    background: none;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  overflow: hidden;
    margin-top: 4rem;
    /* background-size: cover;
    background-position: center;
    background-attachment: fixed; */
}
.hero-content {
    position: relative;
    z-index: 10; /* Above video and overlay */
    text-align: center;
    max-width: 72rem;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Makes video cover entire section */
    z-index: 0; /* Behind all content */
    opacity: 0.8; /* Slight transparency for overlay effect */
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 147, 140, 0.3), rgba(0, 125, 115, 0.4));
    z-index: 1;
}
.hero-bg-elements {
    position: absolute;
    inset: 0;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: pulse-slow 3s ease-in-out infinite;
}

.bg-element-1 {
    top: 25%;
    left: 25%;
    width: 16rem;
    height: 16rem;
      background: rgba(0, 147, 140, 0.2);
}

.bg-element-2 {
    top: 75%;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(0, 179, 166, 0.15);
    animation-delay: 1s;
}

.bg-element-3 {
    top: 50%;
    left: 50%;
    width: 12rem;
    height: 12rem;
      background: rgba(0, 125, 115, 0.2);
    animation-delay: 2s;
}

.floating-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: floating 3s ease-in-out infinite;
}

.particle-1 { left: 10%; top: 20%; animation-delay: 0s; }
.particle-2 { left: 20%; top: 80%; animation-delay: 0.5s; }
.particle-3 { left: 80%; top: 30%; animation-delay: 1s; }
.particle-4 { left: 70%; top: 70%; animation-delay: 1.5s; }
.particle-5 { left: 30%; top: 50%; animation-delay: 2s; }
.particle-6 { left: 90%; top: 60%; animation-delay: 2.5s; }

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 72rem;
}

.hero-text-content {
    animation: fadeInUp 1s ease-out;
}

.animated-solid-color-text {
    font-size: 700px;      /* Increased font size */
    font-weight: bold;
    animation: color-change 2s linear infinite;
    -webkit-text-fill-color: currentColor;
    color: #00FFFF;        /* initial color */
}

@keyframes color-change {
    0%   { color: #00FFFF; }  /* Cyan */
    14%  { color: #7CFC00; }  /* Lawn Green */
    28%  { color: #00BFFF; }  /* Deep Sky Blue */
    42%  { color: #FF00FF; }  /* Magenta */
    56%  { color: #00FA9A; }  /* Medium Spring Green */
    70%  { color: #1E90FF; }  /* Dodger Blue */
    84%  { color: #ADFF2F; }  /* Green Yellow */
    100% { color: #00FFFF; }  /* Back to Cyan */
}




.hero-title-large {
    font-size: 4rem;
    display: block;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        padding: 0 2rem !important; /* Add horizontal padding */
        max-width: 90% !important; /* Prevent edge cutting */
        margin-left: auto !important;
        margin-right: auto !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
}
@media (max-width: 390px) {
    .hero-subtitle {
        font-size: 0.95rem !important;
        padding: 0 1.5rem !important;
    }
}

/* Scrolling Announcement Banner */
.scrolling-announcement {
    width: 100%;
    overflow: hidden;
    padding: 0.75rem 0;
    margin-bottom: 2rem;
    border-radius: 50px;
    background-color: white;
    box-shadow: 
        0 4px 20px rgba(0, 147, 140, 0.4),
        0 0 40px rgba(0, 179, 166, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Celebration canvas container */
.celebration-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

#celebrationCanvas {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Ensure text is above celebrations */
.announcement-track {
    position: relative;
    z-index: 2;
}

/* Animated gradient border glow */
.scrolling-announcement::before {
    content: '';
    position: absolute;
    inset: -3px;
    
    border-radius: 50px;
    opacity: 0.5;
    animation: borderGlow 3s linear infinite;
    z-index: -1;
}

@keyframes borderGlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.announcement-track {
    display: flex;
    width: fit-content;
    animation: scrollLeft 20s linear infinite;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

.announcement-text {
    flex-shrink: 0;
    padding: 0 3rem;
    font-size: 1.1rem;
font-family: 'Cinzel', serif;
font-weight: 700;
    font-weight: 700;
    color:#ff0000;
    background-color: white;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 215, 0, 0.5);
    letter-spacing: 0.5px;
    white-space: nowrap; 
    background-size: 200% auto;
    background-clip: text;
   
}


@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid var(--primary);
    border-radius: 1.25rem;
    display: flex;
    justify-content: center;
}

.scroll-wheel {
    width: 0.25rem;
    height: 0.75rem;
    background: var(--primary);
    border-radius: 0.125rem;
    margin-top: 0.5rem;
    animation: pulse 2s infinite;
}

/* Button Styles */
.btn {
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-weight: 500;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
/* Fix hero buttons on mobile - VISIBLE VERSION */
@media (max-width: 768px) {
    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
        padding: 0 2rem !important;
        align-items: center !important;
    }
    
    .hero-buttons .btn {
        display: inline-flex !important;
        width: fit-content !important;
        min-width: 200px !important;
        max-width: 280px !important;
        padding: 1rem 2rem !important;
        font-size: 1.1rem !important;
        text-align: center !important;
        justify-content: center !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

.btn-primary {
    background: linear-gradient(135deg, #00b3a6, #00938c) !important;
    color: #ffffff !important;
    border: 2px solid #007d73 !important;
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-secondary-purple {
    background: linear-gradient(135deg, #A855F7, #DA77F2) !important;
    color: #ffffff !important;
    border: 2px solid #9333EA !important;
}

.btn-secondary-purple:hover {
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.4);
    transform: translateY(-2px);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.9) !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
    backdrop-filter: var(--glass-backdrop);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(99, 234, 227, 0.1);
}

.btn-full {
    width: 100%;
}

.pulse-glow {
    position: relative;
    overflow: hidden;
}

.pulse-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-glow);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-smooth);
    z-index: -1;
}

.pulse-glow:hover::before {
    width: 300%;
    height: 300%;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-divider {
    width: 6rem;
    height: 0.25rem;
    background: var(--gradient-primary);
    margin: 0 auto 2rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #3d3924 !important; /* Dark gray instead of muted foreground */
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section Reveal Animation */
.section-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: var(--transition-smooth);
    
}

.section-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Background Elements */
.section-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;

    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='m0 40 40-40h-40v40zm40 0v-40h-40l40 40z'/%3E%3C/g%3E%3C/svg%3E");
}

.section-bg-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.section-bg-blur-1 {
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(0, 147, 140, 0.08);
}

.section-bg-blur-2 {
    bottom: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(0, 147, 140, 0.08);
}

.section-bg-blur-3 {
    top: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(0, 147, 140, 0.08);
}

.section-bg-blur-4 {
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(0, 147, 140, 0.08);
}

.section-bg-blur-5 {
    top: 25%;
    left: 25%;
    width: 20rem;
    height: 20rem;
   background: rgba(0, 147, 140, 0.08);
}

.section-bg-blur-6 {
    bottom: 25%;
    right: 25%;
    width: 20rem;
    height: 20rem;
   background: rgba(0, 147, 140, 0.08);
}

.section-bg-blur-7 {
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
  background: rgba(0, 147, 140, 0.08);
}

.section-bg-blur-8 {
    bottom: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(0, 147, 140, 0.08);
}

.section-bg-elements {
    position: absolute;
    background: radial-gradient(circle at top, rgba(0, 179, 166, 0.08) 0%, rgba(0, 41, 39, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%) !important;
    inset: 0;
    opacity: 0.3;
}

.bg-service-1 {
    position: absolute;
    top: 25%;
    left: 25%;
    width: 16rem;
    height: 16rem;
    background: rgba(99, 234, 227, 0.2);
    border-radius: 50%;
    filter: blur(100px);
    animation: pulse-slow 3s ease-in-out infinite;
}

.bg-service-2 {
    position: absolute;
    bottom: 25%;
    right: 25%;
    width: 16rem;
    height: 16rem;
    background: hsl(261, 83%, 58%, 0.2);
    border-radius: 50%;
    filter: blur(100px);
    animation: pulse-slow 3s ease-in-out infinite;
    animation-delay: 1s;
}

.bg-product-1 {
    position: absolute;
    top: 25%;
    right: 25%;
    width: 16rem;
    height: 16rem;
    background: rgba(99, 234, 227, 0.2);
    border-radius: 50%;
    filter: blur(100px);
    animation: pulse-slow 3s ease-in-out infinite;
}

.bg-product-2 {
    position: absolute;
    bottom: 25%;
    left: 25%;
    width: 16rem;
    height: 16rem;
    background: hsl(261, 83%, 58%, 0.2);
    border-radius: 50%;
    filter: blur(100px);
    animation: pulse-slow 3s ease-in-out infinite;
    animation-delay: 1s;
}
/* About Section */
.about-section {
    background: radial-gradient(circle at top, rgba(0, 179, 166, 0.08) 0%, rgba(0, 41, 39, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%) !important;
}
/* Carousel Container */
.about-carousel {
    position: relative;
  
    width: 100%;
    height: 400px;
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Make cards circular */
.about-card {
    position: absolute;
    background: #ccd8d9 !important;
    border: 3px solid rgba(0, 0, 0, 0.1) !important;
    color: #000000 !important;
    border-radius: 50%; /* Circular shape */
    width: 280px;
    height: 280px;
    padding: 2rem;
    text-align: center;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* Position 1 - Front Center (largest) */
.about-card[data-position="1"] {
    z-index: 3;
    transform: translateX(0) scale(1.1);
    opacity: 1;
}

/* Position 2 - Right Side */
.about-card[data-position="2"] {
    z-index: 2;
    transform: translateX(200px) scale(0.85);
    opacity: 0.7;
}

/* Position 3 - Left Side */
.about-card[data-position="3"] {
    z-index: 1;
    transform: translateX(-200px) scale(0.85);
    opacity: 0.7;
}

/* Hover stops rotation */
.about-carousel:hover .about-card {
    animation-play-state: paused !important;
}

/* Card hover effect - Make text super visible */
.about-card:hover {
    transform: scale(1.2) !important; /* Bigger scale */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35) !important; /* Stronger shadow */
    z-index: 100 !important; /* Much higher z-index */
    background: #d5e1e2 !important; /* Lighter background for better contrast */
    border: 4px solid rgba(99, 234, 227, 0.8) !important; /* Thicker colored border */
}
/* Make first two cards stay in left column */
.about-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.about-card:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
}

/* Excellence card - same size, centered on right */
.about-card:nth-child(3) {
    grid-column: 2;
    grid-row: 1 / 3; /* Still spans both rows for vertical centering */
    align-self: center; /* Centers it vertically */
    width: 280px; /* Same width as other cards */
    height: 280px; /* Same height as other cards */
}

/* Animation: Cards slide in from left */
.about-card:nth-child(1) {
    animation: slideInFromLeft 0.6s ease-out;
}

.about-card:nth-child(2) {
    animation: slideInFromLeft 0.8s ease-out;
}

.about-card:nth-child(3) {
    animation: slideInFromLeft 1s ease-out;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.about-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-glow), var(--shadow-elegant);
}

.about-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 0.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-card-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #000000 !important;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8); /* White glow for readability */
}

.about-card-text {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #000000 !important; /* Darker text */
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6); /* Subtle white glow */
    font-weight: 500; /* Slightly bolder */
}

.core-values {
    text-align: center;
}

.core-values section-reveal{
    background: radial-gradient(circle at top, rgba(0, 179, 166, 0.08) 0%, rgba(0, 41, 39, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%) !important;
}
.values-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Changed from 3 to 4 */
    gap: 2rem; /* Slightly reduced gap for 4 cards */
    max-width: 1200px; /* Increased max-width */
    margin: 0 auto;
    perspective: 1000px;
}

.value-card {
    position: relative;
    background: #ccd8d9;
    border: none;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
/* Staggered vertical offset */
.value-card:nth-child(1) {
    transform: translateY(-20px);
    animation: floatCard1 3s ease-in-out infinite;
}

.value-card:nth-child(2) {
    transform: translateY(0px);
    animation: floatCard2 3s ease-in-out infinite 0.5s;
}

.value-card:nth-child(3) {
    transform: translateY(-20px);
    animation: floatCard3 3s ease-in-out infinite 1s;
}

.value-card:nth-child(4) {
    transform: translateY(0px);
    animation: floatCard2 3s ease-in-out infinite 1.5s;
}

/* Hover state - expand and elevate */
.value-card:hover {
    transform: translateY(-30px) scale(1.08) rotateY(5deg);
    background: #b8c5c6;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    z-index: 10;
}
.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    width: 5rem;
    height: 5rem;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.value-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000;
    transition: all 0.3s ease;
}

.value-card:hover .value-title {
    color: #1a1a1a;
    transform: scale(1.05);
}

.value-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333333;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.value-card:hover .value-text {
    opacity: 1;
    color: #000000;
}

/* Partners Section */
.partners-section {
   background: radial-gradient(circle at top, rgba(0, 179, 166, 0.08) 0%, rgba(0, 41, 39, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%) !important;
    position: relative;
}

.partner-stats {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-evenly !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 2rem !important;
    text-align: center !important;
    padding: 3rem 2rem !important;
    background: rgba(255, 255, 255, 0.5) !important;
    border-radius: 1.5rem !important;
    border: 2px solid rgba(0, 0, 0, 0.1) !important;
    width: 100% !important;
    max-width: 1600px !important;
    margin: 0 auto !important;
}

.stat-item {
    flex: 1 1 auto !important;
    min-width: 150px !important;
    max-width: 250px !important;
    text-align: center !important;
    transition: transform 0.3s ease !important;
    cursor: pointer !important;
}

.stat-item:hover {
    transform: translateY(-5px) !important;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffdb0c !important;
    /* Remove gradient - it conflicts with solid color */
    background: none !important;
    background-clip: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #bba52f !important;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-size: 1rem;
        color: #000000 !important;
    font-weight: 500;
}

/* Events Section */
.events-section {
background: radial-gradient(circle at top, rgba(0, 179, 166, 0.08) 0%, rgba(0, 41, 39, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%) !important;
    overflow: visible;
}

/* Timeline path container */
.events-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    padding-left: 3rem; /* Space for timeline line */
}

/* Vertical timeline line */
.events-grid::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(99, 234, 227, 0.5) 10%, 
        rgba(99, 234, 227, 0.8) 50%, 
        rgba(99, 234, 227, 0.5) 90%, 
        transparent 100%);
    border-radius: 2px;
}

/* Animated dots traveling down timeline */
.events-grid::after {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    width: 12px;
    height: 12px;
    background: #63eae3;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(99, 234, 227, 0.8);
    animation: travelTimeline 8s linear infinite;
}

@keyframes travelTimeline {
    0% {
        top: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Event cards with alternating positions */
.event-card {
    background: #ccd8d9 !important;
    border: 3px solid rgba(0, 0, 0, 0.1) !important;
    color: #000000 !important;
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-150px); /* All cards start from left */
}

/* Staggered slide-in from left with delays */
.event-card:nth-child(1).section-reveal.revealed {
    animation: slideFromLeft 0.8s ease-out 0.2s forwards;
    
}

.event-card:nth-child(2).section-reveal.revealed {
    animation: slideFromLeft 0.8s ease-out 0.4s forwards;
}

.event-card:nth-child(3).section-reveal.revealed {
    animation: slideFromLeft 0.8s ease-out 0.6s forwards;
}

.event-card:nth-child(4).section-reveal.revealed {
    animation: slideFromLeft 0.8s ease-out 0.8s forwards;
}

/* Fallback for any additional cards */
.event-card.section-reveal.revealed {
    animation: slideFromLeft 0.8s ease-out 0.2s forwards;
}

@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-150px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Timeline connector dot for each card */
.event-card::before {
    content: '';
    position: absolute;
    left: -3.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #ffffff;
    border: 4px solid #63eae3;
    border-radius: 50%;
    box-shadow: 
        0 0 0 4px rgba(99, 234, 227, 0.2),
        0 0 20px rgba(99, 234, 227, 0.4);
    transition: all 0.5s ease;
    z-index: 2;
}

.event-card:hover::before {
    transform: translateY(-50%) scale(1.5);
    box-shadow: 
        0 0 0 8px rgba(99, 234, 227, 0.3),
        0 0 30px rgba(99, 234, 227, 0.6);
}

/* Connecting line from dot to card */
.event-card::after {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 50%;
    width: 2.5rem;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(99, 234, 227, 0.6), 
        rgba(0, 0, 0, 0.1));
    transform: translateY(-50%);
    transition: all 0.5s ease;
}

.event-card:hover::after {
    background: linear-gradient(90deg, 
        rgba(99, 234, 227, 1), 
        rgba(99, 234, 227, 0.3));
    width: 3rem;
}

/* Morphing hover effect - card expands and tilts */
.event-card:hover {
    transform: translateX(10px) scale(1.03) perspective(1000px) rotateY(-2deg);
    box-shadow: 
        -20px 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(99, 234, 227, 0.4);
    border-color: rgba(99, 234, 227, 0.6) !important;
    background: linear-gradient(135deg, #ccd8d9 0%, #d5e1e2 100%) !important;
    z-index: 10;
}

.event-card:nth-child(odd):hover {
    transform: translateX(-10px) scale(1.03) perspective(1000px) rotateY(2deg);
}

.event-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Icon with orbital animation */
.event-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #ffffff, #e8f4f5);
    border: 3px solid rgba(99, 234, 227, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    position: relative;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Orbiting ring around icon */
.event-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid transparent;
    border-top-color: rgba(99, 234, 227, 0.6);
    border-right-color: rgba(99, 234, 227, 0.3);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.event-card:hover .event-icon::before {
    opacity: 1;
    animation: orbit 2s linear infinite;
}

/* Icon morphs and jumps on hover */
.event-card:hover .event-icon {
    transform: scale(1.3) translateY(-10px);
    background: linear-gradient(135deg, #63eae3, #7df0ea);
    border-color: rgba(99, 234, 227, 0.8);
    box-shadow: 0 15px 40px rgba(99, 234, 227, 0.4);
    animation: iconBounce 0.6s ease-in-out;
}

@keyframes orbit {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1.3) translateY(-10px);
    }
    50% {
        transform: scale(1.4) translateY(-15px);
    }
}

.event-info {
    flex: 1;
}

.event-title-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.event-title {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: #000000 !important; /* Force black */
    transition: var(--transition-smooth);
}

.event-card:hover .event-title {
    color: #000000 !important; /* Stay black on hover */
}

/* Status badges with pulsing animation */
.event-status {
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
    color: white;
    border-radius: 9999px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Animated shine effect across badge */
.event-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.5s ease;
}

.event-card:hover .event-status::before {
    left: 100%;
}
.status-upcoming {
    background: linear-gradient(135deg, #00b3a6, #00938c);
    box-shadow: 0 4px 15px rgba(0, 147, 140, 0.5);
    animation: statusPulse 2s ease-in-out infinite;
}

.service-icon-education {
    background: linear-gradient(135deg, #00b3a6, #00938c);
}

.status-completed {
    background: linear-gradient(135deg, hsl(142, 76%, 36%), hsl(160, 84%, 39%));
    box-shadow: 0 4px 15px rgba(52, 211, 153, 0.4);
}

.status-registration {
    background: linear-gradient(135deg, hsl(261, 83%, 58%), hsl(300, 76%, 68%));
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
    animation: statusPulse 2s ease-in-out infinite 0.5s;
}

.status-coming-soon {
    background: linear-gradient(135deg, hsl(29, 100%, 57%), hsl(45, 93%, 47%));
    box-shadow: 0 4px 15px rgba(251, 146, 60, 0.4);
}

@keyframes statusPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(99, 234, 227, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(99, 234, 227, 0.7);
    }
}
.event-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #4a4a4a !important; /* Light black/dark gray */
    flex-wrap: wrap;
}

.event-description {
    color: #333333 !important; /* Light black */
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.event-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.event-tags {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    flex-wrap: wrap;
}

.event-category {
    background: rgba(0, 0, 0, 0.08); /* Light black background */
    color: #000000 !important; /* Black text */
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 500;
}

.event-attendees {
    color: #4a4a4a !important; /* Light black */
}

.event-link {
    color: #000000 !important; /* Black instead of cyan */
    background: none;
    border: none;
    font-size: 0.875rem;
    font-weight: 600; /* Slightly bolder for visibility */
    cursor: pointer;
    transition: var(--transition-smooth);
}

.event-link:hover {
    color: #1a1a1a !important; /* Slightly darker black */
    text-decoration: underline; /* Add underline on hover for clarity */
}

/* Layered glass morphism effect on hover */
.event-hover-effect {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, 
        rgba(99, 234, 227, 0.2) 0%, 
        transparent 50%);
    opacity: 0;
    border-radius: 1.5rem;
    transition: all 0.8s ease;
    pointer-events: none;
}

.event-card:hover .event-hover-effect {
    opacity: 1;
    background: radial-gradient(circle at top right, 
        rgba(99, 234, 227, 0.3) 0%, 
        rgba(99, 234, 227, 0.1) 40%,
        transparent 70%);
    animation: rippleEffect 1.5s ease-out;
}

@keyframes rippleEffect {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.newsletter-signup {
    text-align: center;
}

.newsletter-card {
      background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(0, 0, 0, 0.2) !important;
    color: #000000 !important;
    backdrop-filter: var(--glass-backdrop);
    /* border: 1px solid var(--glass-border); */
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 32rem;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.newsletter-text {
   color: #2d2d2d !important;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 24rem;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
     background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(0, 0, 0, 0.3) !important;
    color: #000000 !important;
    border-radius: var(--radius);
    /* color: var(--foreground); */
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(99, 234, 227, 0.2);
}

.newsletter-btn {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
}

/* Newsletter button in Insights section - purple variant */
.insights-newsletter .newsletter-btn {
    background: linear-gradient(135deg, #A855F7, #DA77F2) !important;
    border: 2px solid #9333EA !important;
}
/* Careers Section */
.careers-section {
  background: radial-gradient(circle at top, rgba(0, 179, 166, 0.08) 0%, rgba(0, 41, 39, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%) !important;
}

.careers-content {
    display: grid;
    gap: 4rem;
}

/* Container with perspective for 3D effect */
.career-positions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -2rem; /* Negative gap for overlap */
    padding: 3rem 0;
    perspective: 2000px;
    position: relative;
    min-height: 550px;
}

/* Base card styling with organic curves */
.position-card {
    background: #ccd8d9 !important;
    border: 4px solid rgba(0, 0, 0, 0.12) !important;
    border-radius: 2.5rem 1rem 2.5rem 1rem; /* Asymmetric curves */
    padding: 2.5rem 2rem;
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    width: 320px;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Diagonal cascade positioning */
.position-card:nth-child(1) {
    transform: rotate(-4deg) translateY(-20px);
    z-index: 1;
    animation: floatIn 0.8s ease-out 0.2s backwards;
}

.position-card:nth-child(2) {
    transform: rotate(0deg) translateY(0);
    z-index: 2;
    animation: floatIn 0.8s ease-out 0.4s backwards;
    margin: 0 -1.5rem; /* Creates overlap */
}

.position-card:nth-child(3) {
    transform: rotate(4deg) translateY(-20px);
    z-index: 1;
    animation: floatIn 0.8s ease-out 0.6s backwards;
}

/* Hover: Card straightens and lifts */
.position-card:hover {
    transform: rotate(0deg) translateY(-30px) scale(1.05);
    z-index: 10;
    border-radius: 2rem; /* Becomes more uniform */
    border-color: rgba(99, 234, 227, 0.6) !important;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(99, 234, 227, 0.4);
    background: linear-gradient(135deg, #d5e1e2 0%, #ccd8d9 100%) !important;
}

/* Other cards dim when one is hovered */
.career-positions:has(.position-card:hover) .position-card:not(:hover) {
    opacity: 0.6;
    filter: blur(2px);
    transform: scale(0.95);
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.8);
    }
    100% {
        opacity: 1;
    }
}

/* Icon with circular background and floating effect */
.position-icon {
    font-size: 3rem;
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ffffff, #e8f4f5);
    border: 3px solid rgba(99, 234, 227, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

/* Rotating gradient ring */
.position-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    background: linear-gradient(45deg, 
        rgba(99, 234, 227, 0.8), 
        transparent, 
        rgba(99, 234, 227, 0.8));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: rotateBorder 3s linear infinite;
}

.position-card:hover .position-icon {
    transform: scale(1.2) translateY(-10px);
    background: linear-gradient(135deg, #63eae3, #7df0ea);
    border-color: rgba(99, 234, 227, 0.8);
    box-shadow: 0 15px 40px rgba(99, 234, 227, 0.5);
}

.position-card:hover .position-icon::before {
    opacity: 1;
}
.position-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000 !important;
    text-align: center;
    transition: all 0.4s ease;
}

.position-card:hover .position-title {
    transform: translateY(-5px);
    color: #000000 !important;
}

.position-description {
    color: #333333 !important;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-align: center;
    font-size: 0.95rem;
}

.position-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.position-tag {
    padding: 0.35rem 0.85rem;
    background: rgba(0, 0, 0, 0.08);
    font-size: 0.75rem;
    border-radius: 9999px;
    border: 2px solid rgba(0, 0, 0, 0.12);
    color: #000000 !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.position-card:hover .position-tag {
    background: rgba(99, 234, 227, 0.15);
    border-color: rgba(99, 234, 227, 0.3);
    transform: translateY(-2px);
}

/* Alternate colors for career position cards */
/* Alternate colors for career position cards */
.position-card:nth-child(1) .position-apply {
    background: linear-gradient(135deg, #00b3a6, #00938c) !important;
    color: #ffffff !important;
    border: 2px solid #007d73 !important;
    border-radius: 2rem !important; /* Added border radius */
}

.position-card:nth-child(2) .position-apply {
    background: linear-gradient(135deg, #A855F7, #DA77F2) !important;
    color: #ffffff !important;
    border: 2px solid #9333EA !important;
    border-radius: 2rem !important; /* Added border radius */
}

.position-card:nth-child(3) .position-apply {
    background: linear-gradient(135deg, #00b3a6, #00938c) !important;
    color: #ffffff !important;
    border: 2px solid #007d73 !important;
    border-radius: 2rem !important; /* Added border radius */
}

/* Sliding background effect */
.position-apply {
    padding: 0.85rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    margin-top: auto;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: visible; /* Changed from hidden */
}

/* Simple hover for teal buttons */
.position-card:nth-child(1) .position-apply:hover,
.position-card:nth-child(3) .position-apply:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 179, 166, 0.4);
    background: linear-gradient(135deg, #00c9ba, #00a89f) !important; /* Lighter teal */
}

/* Simple hover for purple button */
.position-card:nth-child(2) .position-apply:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
    background: linear-gradient(135deg, #B968F9, #E58BF4) !important; /* Lighter purple */
}

.career-benefits {
    text-align: center;
}

.benefits-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Circular orbit container */
.benefits-grid {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center point indicator (optional visual) */
.benefits-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, 
        rgba(99, 234, 227, 0.1) 0%, 
        transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Base card styling */
.benefit-item {
    background: #ccd8d9 !important;
    border: 3px solid rgba(0, 0, 0, 0.12) !important;
    border-radius: 2rem;
    padding: 2rem 1.5rem;
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: absolute;
    width: 240px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Card 1 - Top Position (12 o'clock) */
/* Card 1 - Top Position (12 o'clock) */
.benefit-item:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    animation: orbitIn1 0.8s ease-out 0.2s backwards;
}

/* Card 2 - Right Position (3 o'clock) */
.benefit-item:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    animation: orbitIn2 0.8s ease-out 0.4s backwards;
}

/* Card 3 - Bottom Position (6 o'clock) */
.benefit-item:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    animation: orbitIn3 0.8s ease-out 0.6s backwards;
}

/* Card 4 - Left Position (9 o'clock) */
.benefit-item:nth-child(4) {
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    animation: orbitIn4 0.8s ease-out 0.8s backwards;
}

/* Hover: Card straightens and expands toward center */
.benefit-item:hover {
    transform: translate(-50%, -50%) rotate(0deg) scale(1.15);
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    z-index: 10;
    border-color: rgba(99, 234, 227, 0.6) !important;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(99, 234, 227, 0.5);
    background: linear-gradient(135deg, #d5e1e2, #ccd8d9) !important;
}

/* Dim other cards when one is hovered */
.benefits-grid:has(.benefit-item:hover) .benefit-item:not(:hover) {
    opacity: 0.4;
    filter: blur(3px);
    transform: scale(0.9);
}
/* Dim and blur other cards when one is hovered */
.about-carousel:has(.about-card:hover) .about-card:not(:hover) {
    opacity: 0.3; /* More transparent */
    filter: blur(8px); /* Stronger blur */
    transform: scale(0.85); /* Shrink more */
    z-index: 0 !important; /* Force behind */
}
/* Entrance animations from outside */
@keyframes orbitIn1 {
    0% {
        opacity: 0;
        top: -100px;
        transform: translate(-50%, 0) scale(0.5);
    }
    100% {
        opacity: 1;
    }
}

@keyframes orbitIn2 {
    0% {
        opacity: 0;
        right: -100px;
        transform: translate(0, -50%) scale(0.5);
    }
    100% {
        opacity: 1;
    }
}

@keyframes orbitIn3 {
    0% {
        opacity: 0;
        bottom: -100px;
        transform: translate(-50%, 0) scale(0.5);
    }
    100% {
        opacity: 1;
    }
}

@keyframes orbitIn4 {
    0% {
        opacity: 0;
        left: -100px;
        transform: translate(0, -50%) scale(0.5);
    }
    100% {
        opacity: 1;
    }
}
/* Icon with pulsing effect */
.benefit-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #ffffff, #e8f4f5);
    border: 3px solid rgba(99, 234, 227, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.2);
    background: linear-gradient(135deg, #63eae3, #7df0ea);
    border-color: rgba(99, 234, 227, 0.8);
    box-shadow: 0 12px 30px rgba(99, 234, 227, 0.4);
    animation: iconPulse 0.6s ease-in-out;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1.3);
    }
}

.benefit-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #000000 !important;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-title {
    transform: translateY(-5px);
    color: #000000 !important;
}

.benefit-text {
    font-size: 0.9rem;
    color: #333333 !important;
    line-height: 1.6;
}

/* Responsive: Stack vertically on mobile */
@media (max-width: 1024px) {
    .benefits-grid {
        height: auto;
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .benefit-item,
    .benefit-item:nth-child(1),
    .benefit-item:nth-child(2),
    .benefit-item:nth-child(3),
    .benefit-item:nth-child(4) {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: rotate(0) !important;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .benefit-item:hover {
        transform: scale(1.05) !important;
    }
}

@media (max-width: 1024px) {
    .career-positions {
        flex-direction: column;
        gap: 2rem;
        min-height: auto;
    }
    
    .position-card,
    .position-card:nth-child(1),
    .position-card:nth-child(2),
    .position-card:nth-child(3) {
        transform: rotate(0) !important;
        margin: 0;
        width: 100%;
        max-width: 400px;
    }
}
/* Services Section */
.services-section {
background: radial-gradient(circle at top, rgba(0, 179, 166, 0.08) 0%, rgba(0, 41, 39, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%) !important;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}



.service-card {
    background: #ccd8d9 !important;
    border: 3px solid rgba(0, 0, 0, 0.12) !important;
    color: #000000 !important;
    backdrop-filter: var(--glass-backdrop);
    border-radius: 2.5rem !important; /* Increased from var(--radius) which is 0.75rem */
    padding: 2rem;
    position: relative;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-glow), var(--shadow-elegant);
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}


.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon-projects {
    background: linear-gradient(135deg, #63eae3, #63eae3);
}

.service-icon-mobile {
    background: linear-gradient(135deg, hsl(261, 83%, 58%), hsl(300, 76%, 68%));
}

.service-icon-web {
    background: linear-gradient(135deg, hsl(142, 76%, 36%), hsl(160, 84%, 39%));
}

.service-icon-marketing {
    background: linear-gradient(135deg, hsl(29, 100%, 57%), hsl(0, 84%, 60%));
}

.service-content {
    flex: 1;
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-title {
    color: var(--primary);
}

.service-subtitle {
    color: hsl(213, 94%, 68%, 0.8);
    font-weight: 500;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.service-features {
    margin-top: 1.5rem;
}

.features-title {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.features-list {
    list-style: none;
    margin-bottom: 1rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.features-list li:last-child {
    margin-bottom: 0;
}


.service-industries {
    margin-top: 1rem;
}

.industries-title {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.industries-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-left: -13px;
   
}

.industry-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(99, 234, 227, 0.1);
    color: black;
    font-size: 0.9rem;
    border-radius: 9999px;
    border: 1px solid rgba(99, 234, 227, 0.2);
    margin-right: -10px;
    
}

.service-hover-effect {
    position: absolute;
    inset: 0;
    opacity: 0;
    border-radius: var(--radius);
    transition: var(--transition-smooth);
}

.service-card:hover .service-hover-effect {
    opacity: 0.05;
}

/* Industries Section */
.industries-section {
   background: radial-gradient(circle at top, rgba(0, 179, 166, 0.08) 0%, rgba(0, 41, 39, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%) !important;
}

/* Horizontal accordion container */
.industries-grid {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    height: 500px;
    position: relative;
}

/* Base card: Collapsed thin bar */
/* Base card: Collapsed with more content visible */
.industry-card {
    background: #ccd8d9 !important;
    border: 3px solid rgba(0, 0, 0, 0.12) !important;
    color: #000000 !important;
    border-radius: 1.5rem;
    padding: 1.5rem 1rem;
    position: relative;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    flex: 0 0 180px; /* Wider collapsed width to show description */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
/* Expanded state on hover */
.industry-card:hover {
    flex: 0 0 400px; /* Expanded width */
    background: linear-gradient(135deg, #d5e1e2, #ccd8d9) !important;
    border-color: rgba(99, 234, 227, 0.6) !important;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(99, 234, 227, 0.4);
    z-index: 10;
}

/* Compress siblings when one expands - but keep readable */
.industries-grid:has(.industry-card:hover) .industry-card:not(:hover) {
    flex: 0 0 120px; /* Compressed but still shows icon + name */
    opacity: 0.7;
}

/* Icon sizing for different states */
.industry-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Icon expands on card hover */
.industry-card:hover .industry-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(99, 234, 227, 0.4);
    margin-bottom: 1rem;
}

/* Icon shrinks when other card is hovered */
.industries-grid:has(.industry-card:hover) .industry-card:not(:hover) .industry-icon {
    width: 50px;
    height: 50px;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

/* Keep gradient backgrounds for each industry */
.industry-icon-healthcare {
    background: linear-gradient(135deg, hsl(0, 84%, 60%), hsl(350, 89%, 60%));
}

.industry-icon-fintech {
    background: linear-gradient(135deg, hsl(142, 76%, 36%), hsl(160, 84%, 39%));
}

.industry-icon-retail {
    background: linear-gradient(135deg, hsl(261, 83%, 58%), hsl(300, 76%, 68%));
}

.industry-icon-education {
    background: linear-gradient(135deg, #63eae3, #63eae3);
}

.industry-icon-entertainment {
    background: linear-gradient(135deg, hsl(29, 100%, 57%), hsl(45, 93%, 47%));
}

.industry-icon-logistics {
    background: linear-gradient(135deg, hsl(260, 84%, 65%), hsl(261, 83%, 58%));
}

.industry-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000 !important;
    writing-mode: horizontal-tb; /* Always horizontal */
    text-align: center;
    margin: 0.75rem 0 0.5rem 0;
    transition: all 0.6s ease;
}

/* Larger text when expanded */
.industry-card:hover .industry-name {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* Smaller text when compressed */
.industries-grid:has(.industry-card:hover) .industry-card:not(:hover) .industry-name {
    font-size: 0.9rem;
}

/* Description always visible in collapsed state */
.industry-description {
    color: #333333 !important;
    font-size: 0.75rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    text-align: center;
    opacity: 1; /* Always visible */
    max-height: 100px; /* Shows in collapsed state */
    transition: all 0.6s ease;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Show 3 lines max when collapsed */
    -webkit-box-orient: vertical;
}

/* Description expands when card is hovered */
.industry-card:hover .industry-description {
    font-size: 0.9rem;
    line-height: 1.6;
    max-height: 200px;
    -webkit-line-clamp: unset; /* Show full text */
    margin-bottom: 1rem;
}

/* Description hides when other card is hovered */
.industries-grid:has(.industry-card:hover) .industry-card:not(:hover) .industry-description {
    opacity: 0;
    max-height: 0;
    margin-bottom: 0;
}

/* Features section hidden when collapsed */
.industry-features {
    margin-top: 1rem;
    opacity: 0;
    max-height: 0;
    transition: all 0.6s ease 0.2s; /* Delayed appearance */
    overflow: hidden;
}

/* Features visible when expanded */
.industry-card:hover .industry-features {
    opacity: 1;
    max-height: 300px;
}

.industry-features-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: #000000 !important;
    margin-bottom: 0.75rem;
    text-align: center;
}

.industry-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.industry-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #333333 !important;
    background: rgba(255, 255, 255, 0.5);
    padding: 0.4rem;
    border-radius: 0.5rem;
}
.industries-cta {
    text-align: center;
}

/* Mobile: Stack vertically, disable accordion */
@media (max-width: 1024px) {
    .industries-grid {
        flex-direction: column;
        height: auto;
        gap: 1.5rem;
    }
    
    .industry-card,
    .industry-card:hover {
        flex: 1 1 auto;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .industry-name {
        writing-mode: horizontal-tb;
        font-size: 1.25rem;
        margin: 0 0 0.75rem 0;
    }
    
    .industry-description,
    .industry-features {
        opacity: 1;
        max-height: none;
    }
}
.cta-card {
 background:rgb(202, 202, 212) !important;
    border: 2px solid rgba(0, 0, 0, 0.2) !important;
    color: #000000 !important;
    backdrop-filter: var(--glass-backdrop);
    /* border: 1px solid var(--glass-border); */
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 32rem;
    margin: 0 auto;
}
/* Product Section */
.product-section {
   background: radial-gradient(circle at top, rgba(0, 179, 166, 0.08) 0%, rgba(0, 41, 39, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%) !important;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #000000 !important; /* Dark black */
    background: none !important;
    -webkit-text-fill-color: #000000 !important;
}
/* Product Subtitle - GREEN COLOR */
.product-subtitle {
    font-size: 1.25rem;
    text-align: justify;
    color: #00b359 !important; /* Vibrant green */
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 179, 89, 0.2); /* Subtle green glow */
}
.product-cta .cta-title {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
}

/* CTA Text - Keep as is (light black) */
.product-cta .cta-text {
    color: #4a4a4a !important; /* Light black */
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-feature {
   background: #ccd8d9 !important;
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition-smooth);
}

.product-feature:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.product-feature:hover .feature-icon {
    transform: scale(1.1);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
}

.product-feature:hover .feature-title {
    color: var(--primary);
}

.feature-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.product-cta {
    margin-top: 1rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: black;
    background: none !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.95) !important;
}

/* Keep specific CTA titles in black */
.industries-cta .cta-title,
.contact-cta .cta-title {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
}

.cta-text {
 color: #2d2d2d !important;
    margin-bottom: 1.5rem;
}

.download-btn {
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

/* Poshana Logo in Product Section */
/* Product Logo + QR Code Container */
.product-logo-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 2rem 0 1.5rem 0;
    animation: fadeInUp 0.8s ease-out;
}

.logo-qr-container {
    display: flex;
    flex-direction: column; /* Changed: Stack vertically */
    align-items: flex-start; /* Align to left */
    gap: 1.5rem; /* Space between logo and QR code */
}

/* Poshana Logo Styling */
.logo-section {
    flex-shrink: 0;
}

.product-logo {
    height: 80px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.product-logo:hover {
    transform: scale(1.08) translateY(-3px);
    filter: drop-shadow(0 8px 20px rgba(99, 234, 227, 0.4));
}

/* QR Code Styling */
.qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.qr-code {
    width: 250px; /* Adjust QR size */
    height: 250px;
     border-radius: 12px;
    padding: 8px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.qr-code:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(99, 234, 227, 0.4);
}

.qr-text {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000000 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Optional: Add scanning animation */
@keyframes scanPulse {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 8px 30px rgba(99, 234, 227, 0.6);
    }
}

.qr-code {
    animation: scanPulse 2s ease-in-out infinite;
}

.product-logo:hover {
    transform: scale(1.08) translateY(-3px);
    filter: drop-shadow(0 8px 20px rgba(99, 234, 227, 0.4));
}

/* Optional: Add subtle animation */
@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.product-logo {
    animation: logoFloat 3s ease-in-out infinite;
}

.product-image {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem; /* Space between image and stats */
}

@media (max-width: 1024px) {
    .product-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.image-container {
    position: relative;
}

.image-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0.2;
    filter: blur(3rem);
    border-radius: 1.5rem;
}

.image-wrapper {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem;
    animation: floating 3s ease-in-out infinite;
    margin-top: -150px;
}
/* Fix image overlap on mobile */
@media (max-width: 768px) {
    .image-wrapper {
        margin-top: 0 !important; /* Remove negative margin */
        margin-bottom: 2rem; /* Add space below */
        padding: 1rem; /* Less padding on mobile */
    }
    
    .product-image {
        order: 1; /* Move image section */
        margin-bottom: 2rem; /* Space below image */
    }
    
    .product-info {
        order: 2; /* CTA/buttons come after image */
    }
}
/* Product section mobile layout fix */
@media (max-width: 768px) {
    .product-content {
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* Ensure no overlap */
    .product-cta {
        margin-top: 2rem;
        position: relative;
        z-index: 10;
    }
    
    .logo-qr-container {
        position: relative;
        z-index: 10;
    }
}
.product-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
       
}

.floating-element {
    position: absolute;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.floating-element-1 {
    top: -1rem;
    right: -1rem;
    background: linear-gradient(135deg, hsl(142, 76%, 36%), hsl(160, 84%, 39%));
    animation: bounce 2s infinite;
}

.floating-element-2 {
    bottom: -1rem;
    left: -1rem;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #63eae3, #63eae3);
    animation: pulse 2s infinite;
    font-size: 1.25rem;
}

.product-stats {
    text-align: center;
}

.stats-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 64rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Stats Card on Right Side */
.product-stats-right {
    margin-top: 2rem;
}

.product-stats-right .stats-card {
    background: #ccd8d9 !important;
    backdrop-filter: var(--glass-backdrop);
    border: 3px solid rgba(0, 0, 0, 0.12) !important;
    border-radius: var(--radius);
    padding: 2.5rem 2rem; /* Increased padding for more height */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem; /* Increased gap between items */
    min-height: 180px; /* Minimum height */
    width: 100%; /* Full width of container */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.product-stats-right .stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(99, 234, 227, 0.3);
}

/* Adjust stat items for compact layout */
.product-stats-right .stat-item {
    text-align: center;
}

.product-stats-right .stat-number {
    font-size: 2.75rem; /* Increased from 2rem */
    font-weight: 700;
    color: #fdd700 !important;
    margin-bottom: 0.5rem; /* More space below number */
    line-height: 1.2;
}

.product-stats-right .stat-label {
    font-size: 0.95rem; /* Increased from 0.8rem */
    color: #000000 !important;
    font-weight: 500;
    line-height: 1.4;
}
/* Insights Section */
.insights-section {
  background: radial-gradient(circle at top, rgba(0, 179, 166, 0.08) 0%, rgba(0, 41, 39, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%) !important;
}

.featured-article {
    margin-bottom: 4rem;
}

.featured-card {
     background: #ccd8d9 !important;
    backdrop-filter: var(--glass-backdrop);
    border: 3px solid rgba(0, 0, 0, 0.12) !important;
    border-radius: 1.5rem;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    transition: var(--transition-smooth);
}

.featured-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-glow), var(--shadow-elegant);
}

.featured-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.featured-badge {
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #00b3a6, #00938c);
    color: white;
    font-size: 0.875rem;
    border-radius: 9999px;
}

.featured-category {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
}

.featured-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.featured-card:hover .featured-title {
    color: var(--primary);
}

.featured-excerpt {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.featured-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: flex-start; /* Align to left */
    margin-left: 0; /* Ensure no extra left margin */
}

.featured-tag {
    padding: 0.35rem 0.85rem; /* Slightly more padding */
    background: rgba(99, 234, 227, 0.1);
    color: black;
    font-size: 1rem; /* Increased from 0.75rem */
    border-radius: 9999px;
    border: 1px solid rgba(99, 234, 227, 0.2);
    font-weight: 500; /* Make it slightly bolder */
}

.featured-link {
    color: black;
    background: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.featured-link:hover {
    color: var(--primary-glow);
}

.featured-image {
    position: relative;
}

.featured-image-bg {
    width: 100%;
    height: 28rem; /* Increased from 20rem */
    background: linear-gradient(135deg, #63eae3, #63eae3);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem; /* Increased from 4rem - DOUBLE SIZE */
    transition: var(--transition-smooth);
}

.featured-card:hover .featured-image-bg {
    transform: scale(1.05);
}

.featured-image-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    border-radius: 1rem;
    transition: var(--transition-smooth);
}
@media (max-width: 768px) {
    .featured-image-bg {
        height: 20rem; /* Smaller on mobile */
        font-size: 5rem; /* Smaller icon on mobile */
    }
}
.featured-card:hover .featured-image-overlay {
    opacity: 0.1;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.insight-card {
    background: #ccd8d9 !important;
    border: 3px solid rgba(0, 0, 0, 0.12) !important;
    color: #000000 !important;
    backdrop-filter: var(--glass-backdrop);
    border-radius: 1.5rem;
    padding: 1.5rem;
    position: relative;
    transition: var(--transition-smooth);
}

.insight-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-glow), var(--shadow-elegant);
}

.insight-image {
    width: 100%;
    height: 10rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.insight-card:hover .insight-image {
    transform: scale(1.05);
}

.insight-category {
    color: var(--primary);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.insight-title {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    transition: var(--transition-smooth);
    line-height: 1.4;
}

.insight-card:hover .insight-title {
    color: var(--primary);
}

.insight-excerpt {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.insight-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.insight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 1rem;
    justify-content: flex-start;
    margin-left: 0;
}

/* Force tags to align left */
.insight-card .insight-tags {
    text-align: left !important;
    padding-left: 0 !important;
    align-items: flex-start !important;
}

.insight-tag {
    padding: 0.35rem 0.65rem;
    background: rgba(99, 234, 227, 0.1);
    color: #000000;
    font-size: 1rem;
    border-radius: 0.25rem;
    font-weight: 500;
    margin-left: -13px; /* Force no left margin */
}

.insight-link {
    color: var(--primary);
    background: none;
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.insight-link:hover {
    color: var(--primary-glow);
}

.insight-hover-effect {
    position: absolute;
    inset: 0;
    opacity: 0;
    border-radius: var(--radius);
    transition: var(--transition-smooth);
}

.insight-card:hover .insight-hover-effect {
    opacity: 0.05;
}

.insights-newsletter {
    text-align: center;
}

/* Contact Section */
.contact-section {
    background: radial-gradient(circle at top, rgba(0, 179, 166, 0.08) 0%, rgba(0, 41, 39, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%) !important;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Contact Intro Title - DARK BLACK */
.contact-intro-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #000000 !important; /* Dark black */
    background: none !important;
    -webkit-text-fill-color: #000000 !important;
}

/* Contact Intro Text - LIGHT BLACK */
.contact-intro-text {
    color: #4a4a4a !important; /* Light black */
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
   background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.contact-item:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
}

.contact-item-content {
    flex: 1;
}

.contact-item-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    transition: var(--transition-smooth);
}

.contact-item:hover .contact-item-title {
    color: var(--primary);
}

.contact-item-value {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.business-hours {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.business-hours-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
     color: #2d2d2d !important;
}

.contact-form-wrapper {
    background: #ccd8d9 !important;
    border: 3px solid rgba(0, 0, 0, 0.12) !important;
    color: #000000 !important;
    backdrop-filter: var(--glass-backdrop);
    border-radius: var(--radius);
    padding: 2rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1a1a !important;
}

.form-input,
.form-textarea {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(0, 0, 0, 0.3) !important;
    color: #000000 !important;
    border-radius: var(--radius);
    /* color: var(--foreground); */
    transition: var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(99, 234, 227, 0.2);
}
.form-input::placeholder {
    color: #666666 !important; /* Dark gray placeholder */
}
.form-textarea {
    resize: none;
    font-family: inherit;
}

.form-note {
    text-align: center;
    margin-top: 1.5rem;
}

.form-note p {
    font-size: 1.25rem; /* Increased from 0.875rem */
    font-weight: 600; /* Make it bolder for emphasis */
    color: #000000 !important; /* Changed to black for better visibility */
    line-height: 1.6;
}

.contact-cta {
    text-align: center;
    margin-top: 4rem;
}

.contact-cta .cta-card {
    max-width: 64rem;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.cta-feature {
    text-align: center;
}

.cta-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.cta-feature-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cta-feature-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Footer */
.footer {
background:
  linear-gradient(to right, #a8edea, #fed6e3),
  linear-gradient(to top, rgba(0, 128, 0, 0.05), transparent),
  rgba(255, 255, 255, 0.94) !important;


    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

/* Fix: Allow clicks to pass through background patterns */
.footer-bg-pattern,
.section-bg-pattern,
.section-bg-blur,
.hero-bg-elements,
.floating-particles {
    pointer-events: none !important;
}
.footer-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M0 0h40v40H0z'/%3E%3Cpath d='M0 10h40v20H0z'/%3E%3C/g%3E%3C/svg%3E");
}

.footer-content {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
}

.footer-company {
    max-width: 24rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-description {
    color: #000000 !important;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
     color: #000000 !important;

}

.footer-contact-item a {
    color: #000000 !important;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact-item a:hover {
    color: var(--primary);
}

.contact-icon {
    color: var(--primary);
}

.footer-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #000000 !important;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links button {
    background: none;
    border: none;
   color: #000000 !important;
    font-size: 0.875rem;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-smooth);
}

.footer-links button:hover {
    color: var(--primary);
}

.footer-newsletter {
    margin-bottom: 1.5rem;
}

.footer-newsletter .newsletter-text {
   color: #000000 !important;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-newsletter .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-newsletter .newsletter-input {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

.footer-newsletter .newsletter-btn {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.footer-social {
    margin-top: 1rem;
}

.social-text {
   color: #000000 !important;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

/* Social Links - Always Colored */
.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-link svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* YouTube - Always Red */
.social-youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

.social-youtube:hover {
    background: linear-gradient(135deg, #FF0000, #CC0000);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.6);
    transform: translateY(-5px) scale(1.1);
}

.social-youtube:hover svg {
    transform: scale(1.2) rotate(360deg);
}

/* Instagram - Always Gradient */
.social-instagram {
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.social-instagram:hover {
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    box-shadow: 0 8px 25px rgba(245, 133, 41, 0.6);
    transform: translateY(-5px) scale(1.1);
}

.social-instagram:hover svg {
    transform: scale(1.2) rotate(-360deg);
}

/* Facebook - Always Blue */
.social-facebook {
    background: linear-gradient(135deg, #1877F2, #0C63D4);
}

.social-facebook:hover {
    background: linear-gradient(135deg, #1877F2, #0C63D4);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.6);
    transform: translateY(-5px) scale(1.1);
}

.social-facebook:hover svg {
    transform: scale(1.2) rotate(360deg);
}

/* Glowing ring effect on hover */
.social-link::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: var(--radius);
    padding: 3px;
    background: inherit;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-link:hover::before {
    opacity: 1;
    animation: glowPulse 1.5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Sparkle effect on hover */
.social-link::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 12px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.social-link:hover::after {
    opacity: 1;
    transform: scale(1) rotate(20deg);
}

@keyframes pulse-social {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid var(--border);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-size: 0.875rem;
   color: #000000 !important;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
}
.legal-link {
    background: none;
    border: none;
    color: #000000 !important;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.legal-link:hover {
    color: var(--primary);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: var(--shadow-glow);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow), var(--shadow-elegant);
}

/* Animations */
@keyframes glow {
    0%, 100% { 
        filter: brightness(1) drop-shadow(0 0 20px hsl(213, 94%, 68%, 0.4)); 
    }
    50% { 
        filter: brightness(1.2) drop-shadow(0 0 30px hsl(213, 94%, 68%, 0.6)); 
    }
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse-slow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(-20px); }
    50% { transform: translateY(-30px); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes floatCard3 {
    0%, 100% { transform: translateY(-20px); }
    50% { transform: translateY(-30px); }
}

/* Utility Classes */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--muted);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title-large {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .product-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-card {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .nav-items {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title-large {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    @media (max-width: 1024px) {
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }
}
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .partner-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .career-positions {
        grid-template-columns: 1fr;
    }
    
    .industry-features-grid {
        grid-template-columns: 1fr;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-subtitle {
        font-size: 1rem;
    }
}



@media (max-width: 768px) {
    .about-carousel {
        height: 320px;
    }
    
    .about-card {
        width: 220px;
        height: 220px;
        padding: 1.5rem;
    }
    
    .about-card[data-position="2"] {
        transform: translateX(150px) scale(0.8);
    }
    
    .about-card[data-position="3"] {
        transform: translateX(-150px) scale(0.8);
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-card {
        min-height: 280px;
    }
    
    .value-card:nth-child(1),
    .value-card:nth-child(2),
    .value-card:nth-child(3),
    .value-card:nth-child(4) {
        transform: translateY(0) !important;
    }
}
/* Tablet: 2x2 grid for value cards */
@media (max-width: 1024px) and (min-width: 769px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}
/* Legal Pages Styling */
.legal-section {
    min-height: 100vh;
    padding: 0;
    background: radial-gradient(circle at top, rgba(0, 179, 166, 0.08) 0%, rgba(0, 41, 39, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
}

#legal-navigation,
#legal-navigation-terms {
    position: relative;
    box-shadow: var(--shadow-elegant);
}

.legal-container {
    padding-top: 5rem;
    padding-bottom: 3rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: #ccd8d9;
    border: 3px solid rgba(0, 0, 0, 0.12);
    border-radius: 1.5rem;
    padding: 3rem;
    color: #000000;
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000 !important;
    margin-bottom: 1.5rem;
    text-align: center;
}

.legal-meta {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.legal-meta p {
    color: #4a4a4a;
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.legal-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2d2d2d;
    margin-bottom: 1.5rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000 !important;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(0, 147, 140, 0.2);
}

.legal-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #1a1a1a !important;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style-type: disc;
}

.legal-content ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 0.5rem;
}

.legal-content strong {
    font-weight: 600;
    color: #000000;
}

@media (max-width: 768px) {
    .legal-container {
        padding-top: 5rem;
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .legal-content h3 {
        font-size: 1.2rem;
    }
}

/* Legal Navigation - Remove dropdowns */
.legal-nav .nav-dropdown {
    position: relative;
}

.legal-nav .dropdown-content {
    display: none !important;
}

.legal-nav .nav-link {
    cursor: pointer;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-title-large {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-stats {
        grid-template-columns: 1fr;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
    }
}

/* Responsive: Stack timeline vertically on mobile */
@media (max-width: 768px) {
    .events-grid {
        padding-left: 2rem;
    }
    
    .events-grid::before {
        left: 0;
    }
    
    .event-card::before {
        left: -2.5rem;
    }
    
    .event-card::after {
        width: 2rem;
    }
    
    .event-card,
    .event-card:nth-child(odd) {
        margin-left: 0;
        transform: translateX(0);
    }
    
    .event-card:hover,
    .event-card:nth-child(odd):hover {
        transform: scale(1.02);
    }
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: 4rem; /* Account for fixed nav */
    }
    
    .hero-video {
        object-fit: cover; /* Ensures video fills screen on mobile */
    }
}
/* Mobile: Stack Logo and QR Code vertically */
@media (max-width: 768px) {
    .logo-qr-container {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .product-logo-wrapper {
        justify-content: center;
    }
    
    .qr-code {
        width: 100px;
        height: 100px;
    }
}
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .partner-card-container {
        height: 250px;
    }
    
    .partner-card-front .partner-logo {
        width: 100px;
        height: 100px;
    }
}

/* ========================================
   PARTNER STATS FORCED HORIZONTAL LAYOUT
   ======================================== */

@media (min-width: 769px) {
    .partner-stats {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }
    
    .stat-item {
        flex: 1 1 auto !important;
    }
}

/* Partner Stats - Mobile Alignment */
@media (max-width: 768px) {
    .partner-stats {
        justify-content: center !important; /* Center the stats */
        text-align: center !important;
    }
    
    .stat-item {
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .partner-stats {
        flex-wrap: wrap !important;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 1rem) !important;
    }
}

@media (max-width: 480px) {
    .stat-item {
        flex: 0 0 100% !important;
    }
}

.mobile-break {
    display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
    .mobile-break {
        display: block; /* Show on mobile */
    }
}

/* ========================================
   POSHANA TOP LOGO - DESKTOP & MOBILE
   ======================================== */

/* Top logo styling - Desktop */
.product-logo-top {
    position: absolute;
    top: 100px; 
     right: -650px;
    width: 600px; /* Increased from 300px */
    height: auto;
    z-index: 5;
    animation: fadeInRight 0.8s ease-out;
}

.product-logo-image-top {
    width: 100%;
    height: auto;
    max-width: 850px; /* Increased from 250px */
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s ease;
}

.product-logo-image-top:hover {
    transform: scale(1.08) translateY(-3px);
    filter: drop-shadow(0 8px 20px rgba(99, 234, 227, 0.4));
}
/* Make product-info relative for absolute positioning */
.product-info {
    position: relative;
}

/* Animation */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   MOBILE VIEW ADJUSTMENTS
   ======================================== */

@media (max-width: 1024px) {
    .product-logo-top {
        position: relative;
        right: 0;
        width: 100%;
        text-align: center;
        margin: 2rem auto 2rem auto; /* Space above and below */
        display: flex;
        justify-content: center;
        padding: 1rem 0; /* Extra padding */
    }
    
    .product-logo-image-top {
        max-width: 280px;
    }
    
    /* Push features section down */
    .product-features {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .product-logo-image-top {
        max-width: 250px;
        height: auto;
    }
    
    .product-logo-top {
        margin: 1.5rem auto 1.5rem auto;
        padding: 1rem 0;
    }
    
    /* Push features section down more on small mobile */
    .product-features {
        margin-top: 2rem;
    }
}

/* Keep bottom logo visible on all screens */
.product-logo-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 2rem 0 1.5rem 0;
    animation: fadeInUp 0.8s ease-out;
}

/* Product section mobile complete fix */
@media (max-width: 768px) {
    .product-content {
        display: flex;
        flex-direction: column;
    }
    
    .product-info {
        order: 1; /* Info first */
    }
    
    .product-image {
        order: 2; /* Image second */
        margin-top: 2rem;
    }
    
    /* Ensure logos don't overlap */
    .product-logo-top {
        position: relative;
        z-index: 10;
    }
    
    .product-logo-wrapper {
        position: relative;
        z-index: 10;
        margin-top: 2rem;
    }
}

/* Hide by default */
.mobile-menu-btn {
    display: none;
}

.mobile-menu-overlay {
    display: none;
}

/* Mobile styles */
@media (max-width: 1024px) {
    /* Hide desktop nav */
    .nav-items {
        display: none !important;
    }
    
    /* Show mobile button */
    .mobile-menu-btn {
        display: block !important;
        position: relative;
        z-index: 1001;
    }
    
    /* Hamburger button */
    .mobile-toggle {
        background: #ffffff !important;
        border: 2px solid #000000 !important;
        padding: 0.6rem !important;
        cursor: pointer !important;
        color: #000000 !important;
        border-radius: 0.5rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        min-height: 44px !important;
    }
    
    .mobile-toggle:hover {
        background: rgba(0, 179, 166, 0.1) !important;
    }
    
    /* Mobile dropdown - HIDDEN BY DEFAULT */
    .mobile-menu-overlay {
        display: none !important; /* Hidden */
        position: fixed !important;
        top: 4rem !important;
        left: 0 !important;
        right: 0 !important;
        background: #ffffff !important;
        border: 2px solid #000000 !important;
        z-index: 999999 !important;
        padding: 0 !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    }
    
    /* SHOW WHEN ACTIVE - THIS IS THE KEY! */
    .mobile-menu-overlay.active {
        display: block !important; /* Show it! */
    }
    
    /* Menu items container */
    .mobile-nav-items {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
        margin: 0 !important;
        background: #ffffff !important;
    }
    
    /* Menu links */
    .mobile-nav-link {
        background: #ffffff !important;
        border: none !important;
        padding: 1.2rem 2rem !important;
        text-align: center !important;
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        color: #000000 !important;
        cursor: pointer !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
        width: 100% !important;
        display: block !important;
    }
    
    .mobile-nav-link:last-child {
        border-bottom: none !important;
    }
    
    .mobile-nav-link:hover {
        background: rgba(0, 179, 166, 0.15) !important;
    }
}

/* ========================================
   LEADERSHIP TEAM SECTION
   ======================================== */

.leadership-team {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(0, 179, 166, 0.2);
}

.leadership-title {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 3rem;
}

.profile-card {
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.profile-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.profile-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.profile-header:hover {
    background: rgba(0, 179, 166, 0.05);
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
    border: 3px solid rgba(0, 179, 166, 0.3);
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 0.3rem 0;
}

.profile-title {
    font-size: 1rem;
    color: #666666;
    margin: 0;
    font-weight: 500;
}
.profile-card:nth-of-type(2) .profile-image {
    object-position: center 20%;
}


.profile-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: #000000;
}

.profile-arrow.rotated {
    transform: rotate(180deg);
}

.profile-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
    background: rgba(0, 179, 166, 0.02);
}

.profile-content.expanded {
    max-height: 3000px;
    padding: 1.5rem;
}

.profile-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 1rem;
    text-align: justify;
}

.profile-content p:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .profile-image {
        width: 60px;
        height: 60px;
        margin-right: 1rem;
    }
    
    .profile-name {
        font-size: 1.1rem;
    }
    
    .profile-title {
        font-size: 0.9rem;
    }
    
    .profile-header {
        padding: 1rem;
    }
    
    .profile-content.expanded {
        padding: 1rem;
    }
    
    .profile-content p {
        font-size: 0.95rem;
    }
}
/* ========================================
   CLIENT REVIEWS SECTION
   ======================================== */

.reviews-section {
    background: radial-gradient(circle at top, rgba(0, 179, 166, 0.08) 0%, rgba(0, 41, 39, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
    position: relative;
}

.reviews-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
}

.review-card {
    background: #ccd8d9 !important;
    border: 3px solid rgba(0, 0, 0, 0.12) !important;
    color: #000000 !important;
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(99, 234, 227, 0.4);
    border-color: rgba(99, 234, 227, 0.6) !important;
    background: linear-gradient(135deg, #d5e1e2, #ccd8d9) !important;
}

.review-stars {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333 !important;
    font-style: italic;
    margin-bottom: 2rem;
    flex: 1;
    font-weight: 500;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00b3a6, #00938c);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 147, 140, 0.3);
    transition: all 0.4s ease;
}

.review-card:hover .author-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 179, 166, 0.5);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000 !important;
    margin: 0 0 0.25rem 0;
}

.author-role {
    font-size: 0.9rem;
    color: #666666 !important;
    margin: 0;
    font-weight: 500;
}

.review-hover-effect {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, 
        rgba(99, 234, 227, 0.2) 0%, 
        transparent 50%);
    opacity: 0;
    border-radius: 1.5rem;
    transition: all 0.6s ease;
    pointer-events: none;
}

.review-card:hover .review-hover-effect {
    opacity: 1;
    background: radial-gradient(circle at top right, 
        rgba(99, 234, 227, 0.3) 0%, 
        rgba(99, 234, 227, 0.1) 40%,
        transparent 70%);
}

/* Quote marks decoration */
.review-text::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    color: rgba(0, 147, 140, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 2rem;
        min-height: 250px;
    }
    
    .review-text {
        font-size: 1rem;
    }
    
    .review-stars {
        font-size: 1.25rem;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-role {
        font-size: 0.85rem;
    }
    
    .review-text::before {
        font-size: 3rem;
        top: 1rem;
        left: 1rem;
    }
}
/* Review Card Links */
.review-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.review-card-link:hover {
    text-decoration: none;
}

.author-website {
    font-size: 0.85rem;
    color: #00938c !important;
    margin: 0.25rem 0 0 0;
    font-weight: 600;
}

.review-link-indicator {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 0.9rem;
    color: #00938c;
    font-weight: 600;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.review-card:hover .review-link-indicator {
    opacity: 1;
    transform: translateX(0);
}

/* Make entire card clickable with visual feedback */
.review-card-link:focus .review-card,
.review-card-link:active .review-card {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(99, 234, 227, 0.8) !important;
}

/* Mobile adjustments for website text */
@media (max-width: 768px) {
    .author-website {
        font-size: 0.8rem;
    }
    
    .review-link-indicator {
        bottom: 1rem;
        right: 1rem;
        font-size: 0.85rem;
    }
}
/* ========================================
   OPTION 4 — AUTO-ROTATING REVIEW SLIDER
   ======================================== */

.reviews-slider-wrapper {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.slider-card {
    background: #ccd8d9 !important;
    border: 3px solid rgba(0, 0, 0, 0.12) !important;
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    overflow: hidden;
}

.slider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2),
                0 0 40px rgba(99, 234, 227, 0.3);
    border-color: rgba(99, 234, 227, 0.5) !important;
}

.slider-quote-mark {
    font-size: 5rem;
    color: rgba(0, 147, 140, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.slider-stars {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.slider-review-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333333 !important;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 2rem;
    flex: 1;
    text-align: justify;
    text-justify: inter-word;
    transition: opacity 0.3s ease;
}

.slider-author-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    text-align: left;
}

.slider-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00b3a6, #00938c);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 147, 140, 0.3);
    transition: all 0.4s ease;
}

.slider-card:hover .slider-avatar {
    transform: scale(1.1) rotate(5deg);
}

.slider-author-details { flex: 1; }

.slider-author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000 !important;
    margin: 0 0 0.2rem 0;
}

.slider-author-role {
    font-size: 0.875rem;
    color: #666666 !important;
    margin: 0 0 0.2rem 0;
}

.slider-author-website {
    font-size: 0.85rem;
    color: #00938c !important;
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-bottom: 0.2rem;
}

.slider-author-website:hover {
    text-decoration: underline;
}

.slider-project-type {
    font-size: 0.8rem;
    color: #00938c !important;
    font-weight: 600;
    font-style: italic;
    margin: 0;
}

/* Controls Row */
.slider-controls-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.slider-arrow-btn {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #00b3a6, #00938c) !important;
    color: #ffffff !important;
    border: none !important;
    cursor: pointer !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(0, 147, 140, 0.3) !important;
    line-height: 1 !important;
    padding: 0 !important;
}

.slider-arrow-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 147, 140, 0.5);
}

.slider-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #00938c;
    width: 22px;
    border-radius: 4px;
}

/* Thumbnails */
.slider-thumbnails {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.slider-thumb {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #00b3a6, #00938c) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    opacity: 0.45 !important;
    border: 2px solid transparent !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.slider-thumb.active {
    opacity: 1;
    border-color: #00938c;
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(0, 147, 140, 0.4);
}

.slider-thumb:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.slider-auto-label {
    font-size: 0.75rem;
    color: #999999;
    margin-top: 0.75rem;
}

/* Fade animation */
.slider-fade-out {
    opacity: 0;
    transform: translateY(10px);
}

.slider-fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Mobile */
@media (max-width: 768px) {
    .slider-card {
        padding: 2rem 1.5rem;
        min-height: 280px;
    }

    .slider-review-text {
        font-size: 0.95rem;
    }

    .slider-author-name {
        font-size: 1rem;
    }

    .slider-thumb {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }
}