/* ====== CSS RESET & BASE STYLES ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Main Colors */
    --primary-color: #ffa825;
    --primary-dark: #51dcff;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-muted: #718096;
    --bg-light: #ffffff;
    --bg-white: #ffffff;
    --bg-transparent: rgba(255, 255, 255, 0.92);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --transition: all 0.3s ease;
    
    /* Timeline Colors */
    --timeline-blue: #4A7BFF;
    --timeline-green: #10B981;
    --timeline-yellow: #F59E0B;
    --timeline-red: #EF4444;
    --timeline-purple: #8B5CF6;
    
    /* Blog Accents */
    --accent-green: #10B981;
    --accent-purple: #8B5CF6;
    --accent-yellow: #F59E0B;
    --accent-red: #EF4444;
    --accent-teal: #06B6D4;
    
    /* Glow Colors */
    --glow-yellow: #FFD700;
    --glow-yellow-light: #FFF59D;
    --glow-yellow-dark: #FFC107;
    --glow-orange: #FF9800;
    
    /* Google Colors */
    --google-blue: #4285F4;
    --google-red: #EA4335;
    --google-yellow: #FBBC05;
    --google-green: #34A853;
    --google-blue-light: rgba(66, 133, 244, 0.1);
    --google-red-light: rgba(234, 67, 53, 0.1);
    --google-yellow-light: rgba(251, 188, 5, 0.1);
    --google-green-light: rgba(52, 168, 83, 0.1);
    
    /* Common */
    --text-light: #999999;
    --border-color: #EDF2F7;
    --overlay-dark: rgba(0, 0, 0, 0.8);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* ====== HEADER STYLES ====== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    background-color: transparent;
}

.header.scrolled {
    background-color: var(--bg-transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 14px 0;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
    z-index: 1001;
}

/* Desktop Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 24px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* CTA Button */
.cta-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Mobile Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Overlay - Fixed: Opens full screen with slide from right */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px 40px;
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.mobile-nav-list li {
    margin-bottom: 20px;
}

.mobile-nav-link {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    padding: 8px 0;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.mobile-cta {
    margin-top: 30px;
}

/* ====== HERO SECTION ====== */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease, transform 1.2s ease;
    transform: translateY(10px);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: translateY(0);
    z-index: 2;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hero Content */
.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    color: white;
    z-index: 3;
    transform: translateY(0);
    transition: transform 0.8s ease;
}

.hero-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    opacity: 0.9;
    transform: translateY(10px);
    transition: transform 0.6s ease 0.2s, opacity 0.6s ease 0.2s;
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    transform: translateY(20px);
    transition: transform 0.6s ease 0.3s, opacity 0.6s ease 0.3s;
    max-width: 800px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    transform: translateY(20px);
    transition: transform 0.6s ease 0.4s, opacity 0.6s ease 0.4s;
}

.slide.active .hero-subtitle,
.slide.active .hero-title,
.slide.active .hero-description {
    transform: translateY(0);
    opacity: 1;
}

/* Slider Controls - Bottom Right Position */
.slider-controls-bottom-right {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 4;
}

.slider-arrow-bottom {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    color: white;
    font-size: 18px;
}

.slider-arrow-bottom:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* ====== ABOUT US SECTION ====== */
.about-section {
    background-color: var(--bg-white);
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: var(--primary-color);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--timeline-green), var(--timeline-red));
    border-radius: 2px;
}

/* About Container */
.about-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* About Content Blocks - Fixed: Show only one at a time */
.about-content-block {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-content-block.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: slideInUp 0.6s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Block 1 - About Content */
.about-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-heading {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.about-text p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Block 2 - Vision - Fixed: Added animated line */
.vision-container {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.vision-animated-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        var(--primary-color),
        var(--timeline-green),
        var(--accent-purple),
        var(--primary-color),
        transparent
    );
    background-size: 200% 100%;
    animation: waveMove 3s linear infinite;
}

@keyframes waveMove {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.vision-timeline {
    position: relative;
    margin-top: 40px;
}

.vision-milestones {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.milestone {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-content-block.active .milestone {
    animation: milestoneAppear 0.6s ease forwards;
}

.about-content-block.active .milestone:nth-child(1) {
    animation-delay: 0.2s;
}

.about-content-block.active .milestone:nth-child(2) {
    animation-delay: 0.4s;
}

.about-content-block.active .milestone:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes milestoneAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.milestone-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: var(--primary-color);
    font-size: 24px;
    transition: var(--transition);
}

.milestone-icon:hover {
    background: rgba(37, 99, 235, 0.15);
    transform: scale(1.05);
}

.milestone-year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 20px;
}

.milestone-text {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

/* Block 3 - Who We Are */
.who-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.who-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.who-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.who-text {
    flex: 1;
}

.keyword {
    color: var(--primary-color);
    font-weight: 600;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    padding: 20px;
    background: var(--bg-white);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(10px);
}

.about-content-block.active .highlight-item {
    animation: highlightAppear 0.5s ease forwards;
}

.about-content-block.active .highlight-item:nth-child(1) { animation-delay: 0.2s; }
.about-content-block.active .highlight-item:nth-child(2) { animation-delay: 0.3s; }
.about-content-block.active .highlight-item:nth-child(3) { animation-delay: 0.4s; }
.about-content-block.active .highlight-item:nth-child(4) { animation-delay: 0.5s; }

@keyframes highlightAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight-item:hover {
    background: rgba(37, 99, 235, 0.03);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateX(5px);
}

.highlight-icon {
    width: 32px;
    height: 32px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 16px;
}

.highlight-text {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Block 4 - Founder's Perspective */
.founder-container {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    max-width: 800px;
    margin: 0 auto;
}

.founder-note {
    margin: 40px auto 0;
    padding: 40px;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-red);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    position: relative;
    overflow: hidden;
    animation: slideInRight 0.6s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.founder-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.founder-title::before {
    content: '✦';
    color: var(--accent-red);
}

.founder-quote {
    font-style: normal;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 18px;
}

.founder-signature {
    font-weight: 600;
    color: var(--accent-red);
    display: flex;
    align-items: center;
    gap: 10px;
}

.founder-signature::before {
    content: '—';
    opacity: 0.5;
}

.founder-description {
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* Block 5 - Why Choose GDTC */
.why-container {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.why-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-secondary);
    font-size: 18px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-item {
    padding: 30px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
}

.about-content-block.active .why-item {
    animation: whyItemAppear 0.6s ease forwards;
}

.about-content-block.active .why-item:nth-child(1) { animation-delay: 0.2s; }
.about-content-block.active .why-item:nth-child(2) { animation-delay: 0.3s; }
.about-content-block.active .why-item:nth-child(3) { animation-delay: 0.4s; }
.about-content-block.active .why-item:nth-child(4) { animation-delay: 0.5s; }

@keyframes whyItemAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.why-item:nth-child(1) .why-icon { 
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}
.why-item:nth-child(2) .why-icon { 
    background: linear-gradient(135deg, var(--timeline-green), #0da572);
}
.why-item:nth-child(3) .why-icon { 
    background: linear-gradient(135deg, var(--accent-red), #ff4757);
}
.why-item:nth-child(4) .why-icon { 
    background: linear-gradient(135deg, var(--timeline-purple), #9b5de5);
}

.why-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.why-item:hover .why-icon::after {
    transform: translateX(100%);
}

.why-content {
    flex: 1;
}

.why-title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.why-text {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

/* About Navigation - Updated to Arrow Style (No Dots) */
.about-nav-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.about-nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-primary);
    font-size: 18px;
}

.about-nav-arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.about-nav-status {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    min-width: 60px;
    text-align: center;
}

/* ====== SERVICES SECTION ====== */
#services {
    background-color: #f8fafc;
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service-item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 30px 25px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 24px;
    transition: var(--transition);
}

.service-item:hover .service-icon {
    background: rgba(37, 99, 235, 0.15);
    transform: scale(1.1);
}

.service-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-description {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.5;
}

/* Hidden Services */
.hidden-service {
    display: none;
}

.hidden-service.visible {
    display: block;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* View More Services Button */
.view-more-services-container {
    text-align: right;
    margin-bottom: 60px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.view-more-services-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.view-more-services-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Industries Section (within Services) */

.industries-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.industries-section .section-header {
    margin-bottom: 40px;
}

.industries-section .section-subtitle {
    font-size: 13px;
    padding: 6px 16px;
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.2);
    color: var(--timeline-yellow);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 24px 20px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.industry-item:hover {
    transform: translateY(-2px);
    border-color: transparent;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Color backgrounds for hover states */
.industry-item.blue:hover {
    background-color: var(--google-blue-light);
    border-color: var(--google-blue);
}

.industry-item.red:hover {
    background-color: var(--google-red-light);
    border-color: var(--google-red);
}

.industry-item.yellow:hover {
    background-color: var(--google-yellow-light);
    border-color: var(--google-yellow);
}

.industry-item.green:hover {
    background-color: var(--google-green-light);
    border-color: var(--google-green);
}

/* Industry Icons */
.industry-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--transition);
}

.industry-item:hover .industry-icon {
    transform: scale(1.1);
}

/* Color variations */
.icon-blue {
    background-color: var(--google-blue-light);
    color: var(--google-blue);
}

.icon-red {
    background-color: var(--google-red-light);
    color: var(--google-red);
}

.icon-yellow {
    background-color: var(--google-yellow-light);
    color: var(--google-yellow);
}

.icon-green {
    background-color: var(--google-green-light);
    color: var(--google-green);
}

.industry-icon i {
    font-size: 22px;
}

.industry-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.industry-tag {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 2px 10px;
    background-color: #f8f9fa;
    border-radius: 12px;
    display: inline-block;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 40px;
}

.footnote {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 15px;
}

.footnote a {
    color: var(--google-blue);
    text-decoration: none;
    font-weight: 500;
}

.footnote a:hover {
    text-decoration: underline;
}

/* ====== HOW WE WORK SECTION ====== */
.timeline-container {
    position: relative;
    padding: 0 0 40px 0;
}

/* Vertical Timeline Line */
.timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom,
        var(--timeline-blue) 0%,
        var(--timeline-green) 25%,
        var(--timeline-yellow) 50%,
        var(--timeline-red) 75%,
        var(--timeline-purple) 100%);
    z-index: 1;
    border-radius: 2px;
}

/* Animated line fill */
.timeline-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom,
        var(--timeline-blue),
        var(--timeline-green),
        var(--timeline-yellow),
        var(--timeline-red),
        var(--timeline-purple));
    border-radius: 2px;
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

/* Timeline Steps */
.timeline-steps {
    position: relative;
    z-index: 3;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-step:last-child {
    margin-bottom: 0;
}

/* Step Marker (Dot) */
.step-marker {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    margin-right: 32px;
    position: relative;
    z-index: 4;
    transition: var(--transition);
}

.timeline-step.active .step-marker {
    transform: scale(1.1);
    box-shadow: 0 0 0 4px rgba(74, 123, 255, 0.1);
}

/* Step Marker Icon */
.step-icon {
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.timeline-step.active .step-icon {
    color: var(--timeline-blue);
}

/* Color-specific markers */
.step-1.active .step-marker { border-color: var(--timeline-blue); }
.step-2.active .step-marker { border-color: var(--timeline-green); }
.step-3.active .step-marker { border-color: var(--timeline-yellow); }
.step-4.active .step-marker { border-color: var(--timeline-red); }
.step-5.active .step-marker { border-color: var(--timeline-purple); }

/* Step Content */
.step-content {
    flex: 1;
    padding: 20px 24px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-step.active .step-content {
    border-color: var(--timeline-blue);
    transform: translateX(4px);
}

/* Step Header */
.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.step-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--timeline-blue);
    padding: 4px 12px;
    background: rgba(74, 123, 255, 0.1);
    border-radius: 20px;
}

.step-2 .step-number { color: var(--timeline-green); background: rgba(16, 185, 129, 0.1); }
.step-3 .step-number { color: var(--timeline-yellow); background: rgba(245, 158, 11, 0.1); }
.step-4 .step-number { color: var(--timeline-red); background: rgba(239, 68, 68, 0.1); }
.step-5 .step-number { color: var(--timeline-purple); background: rgba(139, 92, 246, 0.1); }

.step-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.step-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Step Features */
.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.feature-tag {
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    background: #F8F9FB;
    border-radius: var(--border-radius-sm);
    color: var(--text-secondary);
    transition: var(--transition);
}

.timeline-step.active .feature-tag {
    background: rgba(74, 123, 255, 0.1);
    color: var(--timeline-blue);
}

/* Progress Indicator */
.progress-indicator {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.progress-indicator.visible {
    opacity: 1;
    transform: translateY(0);
}

.progress-step {
    font-size: 14px;
    font-weight: 700;
    color: var(--timeline-blue);
}

.progress-text {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 2px;
}

/* ====== BLOG SECTION ====== */
.blog-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 80px;
}

.blog-track {
    display: flex;
    gap: 32px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 4px 32px 4px;
    cursor: grab;
    user-select: none;
}

.blog-track:active {
    cursor: grabbing;
}

/* Premium Blog Card */
.blog-card {
    flex: 0 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc(90vw - 60px);
    min-width: calc(90vw - 60px);
    height: 460px;
}

/* Premium Image Container */
.blog-image-container {
    width: 100%;
    height: 65%;
    position: relative;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text Overlay on Image */
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.85) 0%, 
        rgba(0, 0, 0, 0.6) 50%, 
        transparent 100%);
    pointer-events: none;
}

.blog-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 32px;
    color: white;
}

.blog-category {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    margin-bottom: 20px;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Category color variations */
.category-green {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.3);
}

.category-purple {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
}

.category-yellow {
    background: rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.3);
}

.category-red {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.3);
}

.category-teal {
    background: rgba(6, 182, 212, 0.2);
    border-color: rgba(6, 182, 212, 0.3);
}

.blog-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: white;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-summary {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.blog-date, .read-time {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Card Footer */
.card-footer {
    padding: 24px 32px;
    background: var(--bg-white);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--border-color);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

/* Read More Button */
.read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background: var(--accent-purple);
    color: white;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.read-more-btn:hover {
    background: var(--accent-green);
    transform: translateX(4px);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.read-more-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Swipe Controls */
.swipe-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    padding-right: 20px;
}

.swipe-arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-primary);
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.swipe-arrow:hover {
    background: var(--accent-purple);
    border-color: var(--accent-purple);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.2);
}

.swipe-dots {
    display: flex;
    gap: 12px;
    margin-right: 20px;
}

.swipe-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.swipe-dot.active {
    background: var(--accent-purple);
    transform: scale(1.2);
}

.swipe-dot:hover {
    background: var(--accent-purple);
    transform: scale(1.2);
}

/* Swipe Hint */
.swipe-hint {
    text-align: center;
    margin-top: 24px;
    color: var(--text-light);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Blog CTA - Fixed */
.blog-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.blog-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 16px;
}

/* ====== WAKE UP WITH TECHNOLOGY SECTION - Fixed Bottom Gap ====== */
.branding-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.wakeup-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0 40px 0;
}

.wakeup-slider {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.wakeup-slide {
    flex: 0 0 100%;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    position: relative;
}

.wakeup-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.wakeup-slide-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 0;
}

.wakeup-slide-image .wakeup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wakeup-slide-content {
    background: linear-gradient(to top, 
        rgba(255, 255, 255, 0.85) 0%, 
        rgba(255, 255, 255, 0.6) 50%, 
        transparent 100%);
    padding: 40px 30px 30px 30px;
    color: rgb(0, 0, 0);
    border-radius: 0 0 20px 20px;
    margin-top: -100px;
    position: relative;
    z-index: 2;
}

.item-tagline {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 48px;
    color: var(--glow-yellow-light);
    position: relative;
    padding-left: 20px;
}

.item-tagline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: linear-gradient(90deg, var(--glow-yellow), var(--glow-orange));
    box-shadow: 0 0 10px var(--glow-yellow);
    animation: linePulse 2s infinite;
}

@keyframes linePulse {
    0%, 100% { opacity: 0.7; box-shadow: 0 0 5px var(--glow-yellow); }
    50% { opacity: 1; box-shadow: 0 0 15px var(--glow-yellow), 0 0 20px var(--glow-orange); }
}

.item-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 46px;
    background: linear-gradient(90deg, rgb(142, 22, 255), var(--glow-yellow-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.item-description {
    font-size: 15px;
    color: rgba(36, 3, 51, 0.9);
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Glowing Yellow Line */
.glow-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--glow-yellow), var(--glow-orange));
    border-radius: 1px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.glow-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.8), 
        transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Navigation Controls */
.wakeup-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.wakeup-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--glow-yellow-dark);
    font-size: 18px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

.wakeup-arrow:hover {
    background: linear-gradient(135deg, var(--glow-yellow), var(--glow-orange));
    border-color: transparent;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.wakeup-dots {
    display: flex;
    gap: 12px;
}

.wakeup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wakeup-dot.active {
    background: var(--glow-yellow);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--glow-yellow);
}

.wakeup-dot:hover {
    background: var(--glow-yellow);
    transform: scale(1.2);
}

/* Auto-Scroll Indicator */
.auto-scroll-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 14px;
}

.yellow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--glow-yellow);
    animation: yellowPulse 1.5s infinite;
    box-shadow: 0 0 10px var(--glow-yellow), 0 0 20px var(--glow-orange);
}

@keyframes yellowPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: scale(1.3);
        opacity: 1;
    }
}

/* ====== LEARNING SECTION - Fixed Mobile Spacing ====== */
#learning {
    background-color: #f8fafc;
    padding: 100px 0;
}

.learning-wrapper {
    display: flex;
    align-items: center;
    gap: 70px;
}

.learning-image-container {
    width: 100%;
    height: 420px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
}

.learning-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay-light {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.4) 50%, 
        transparent 100%);
    pointer-events: none;
}

.image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    z-index: 2;
}

.image-caption i {
    font-size: 16px;
    color: var(--glow-yellow);
}

.learning-heading {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #000000;
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 16px;
}

.learning-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, 
        #FFD700 0%, 
        #B0FF57 25%, 
        #57FFA7 50%, 
        #57C7FF 75%, 
        #B057FF 100%
    );
    border-radius: 3px;
}

.learning-description {
    font-size: 1.125rem;
    color: #404040;
    margin-bottom: 24px;
    line-height: 1.7;
    max-width: 540px;
}

.learning-highlights {
    margin-bottom: 30px;
}

.learning-highlights .highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.learning-highlights .highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 16px;
    flex-shrink: 0;
    font-size: 1rem;
}

.highlight-1 .highlight-icon {
    background-color: rgba(255, 215, 0, 0.1);
    color: #D4B300;
}

.highlight-2 .highlight-icon {
    background-color: rgba(120, 255, 200, 0.1);
    color: #00C896;
}

.highlight-3 .highlight-icon {
    background-color: rgba(180, 100, 255, 0.1);
    color: #8A2BE2;
}

.highlight-text {
    flex: 1;
}

.highlight-title {
    font-weight: 600;
    color: #000000;
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.highlight-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.learning-cta-container {
    margin-top: 20px;
}

.learning-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 42px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    border: 2px solid #000000;
}

.learning-cta:hover {
    background-color: #333333;
    border-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.learning-cta i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.learning-cta:hover i {
    transform: translateX(4px);
}

/* ====== COMMUNITY SECTION - Fixed Mobile Button Position ====== */
#community {
    padding: 100px 0;
}

.community-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.community-image-container {
    width: 100%;
    height: 420px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
}

.community-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.community-heading {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #000000;
}

.community-description {
    font-size: 1.125rem;
    color: #404040;
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 580px;
}

.role-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.role-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #f8f8f8;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    border: 1px solid #eaeaea;
}

.role-tag:before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
}

.role-tag.founders:before {
    background-color: #FF4D4D;
}

.role-tag.developers:before {
    background-color: #4CAF50;
}

.role-tag.designers:before {
    background-color: #2196F3;
}

.role-tag.professionals:before {
    background-color: #9C27B0;
}

.community-cta-container {
    margin-top: 20px;
}

.community-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #000000;
    position: relative;
    overflow: hidden;
}

.community-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent
    );
    transition: left 0.7s ease;
}

.community-cta:hover {
    background-color: #333333;
    border-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.community-cta:hover:before {
    left: 100%;
}

/* ====== CONTACT SECTION ====== */
.contact-container {
    max-width: 680px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

/* Tab navigation */
.tab-navigation {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    background-color: #f9fafb;
}

.tab-button {
    flex: 1;
    padding: 20px 24px;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tab-button:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.tab-button.active {
    color: #000000;
    background-color: #ffffff;
}

.tab-button.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        #FF6B6B 0%, 
        #4ECDC4 25%, 
        #45B7D1 50%, 
        #96CEB4 75%, 
        #FECA57 100%
    );
}

.tab-icon {
    font-size: 1.1rem;
}

/* Form container */
.form-container {
    padding: 40px;
}

.contact-form {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.contact-form.hidden {
    opacity: 0;
    height: 0;
    overflow: hidden;
    position: absolute;
}

/* Form styling */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.required {
    color: #ef4444;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    background-color: #ffffff;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #93c5fd;
    box-shadow: 0 0 0 3px rgba(147, 197, 253, 0.1);
}

.form-input:hover,
.form-textarea:hover {
    border-color: #9ca3af;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.optional-text {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-left: 6px;
    font-weight: 400;
}

/* CTA Button */
.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 24px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.form-submit:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.form-submit:active {
    transform: translateY(0);
}

.submit-icon {
    transition: transform 0.3s ease;
}

.form-submit:hover .submit-icon {
    transform: translateX(4px);
}

/* Success message */
.success-message {
    display: none;
    text-align: center;
    padding: 40px;
    background-color: #f0fdf4;
    border-radius: 8px;
    border: 1px solid #bbf7d0;
}

.success-message.active {
    display: block;
}

.success-icon {
    font-size: 3rem;
    color: #22c55e;
    margin-bottom: 20px;
}

.success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #166534;
    margin-bottom: 12px;
}

.success-text {
    color: #15803d;
    margin-bottom: 24px;
}

.reset-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.reset-button:hover {
    background-color: #333333;
}

/* ====== FOOTER ====== */
.footer {
    background-color: #ffffff;
    padding: 80px 0 40px;
    width: 100%;
    border-top: 1px solid #f0f0f0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Column 1: Brand */
.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    font-size: 2.8rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 12px;
    letter-spacing: -1px;
    line-height: 1;
}

.footer-logo:after {
    content: "GDones Tech Core";
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    letter-spacing: 0;
    margin-top: 4px;
}

.brand-tagline {
    font-size: 1rem;
    color: #404040;
    line-height: 1.6;
    max-width: 280px;
    margin-top: 24px;
}

/* Columns 2 & 3: Navigation links */
.footer-column h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #000000;
}

/* Column 4: Connect */
.connect-email {
    color: #555;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #666;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.social-link:hover {
    color: #000000;
}

/* Multi-color accent on hover */
.social-link:hover:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 1px;
}

.social-link.linkedin:hover:after {
    background: linear-gradient(90deg, #0077B5, #00A0DC);
}

.social-link.twitter:hover:after {
    background: linear-gradient(90deg, #1DA1F2, #1DA1F2);
}

.social-link.github:hover:after {
    background: linear-gradient(90deg, #333, #6e5494);
}

.social-link.instagram:hover:after {
    background: linear-gradient(90deg, #E4405F, #405DE6);
}

/* Divider line */
.footer-divider {
    height: 1px;
    width: 100%;
    margin: 60px 0 40px;
    background: linear-gradient(
        90deg, 
        rgba(255, 107, 107, 0.1) 0%, 
        rgba(78, 205, 196, 0.1) 25%, 
        rgba(69, 183, 209, 0.1) 50%, 
        rgba(150, 206, 180, 0.1) 75%, 
        rgba(254, 202, 87, 0.1) 100%
    );
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.9rem;
    color: #666;
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: #000000;
}

/* ====== ANIMATIONS ====== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====== RESPONSIVE STYLES ====== */
/* Tablet */
@media (max-width: 992px) {
    .nav-menu {
        gap: 24px;
    }
    
    .nav-list {
        gap: 24px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 17px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .about-content-wrapper,
    .who-content-wrapper {
        gap: 40px;
    }
    
    .vision-milestones {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .blog-card {
        width: calc(50vw - 80px);
        min-width: calc(50vw - 80px);
        height: 520px;
    }
    
    .learning-wrapper,
    .community-wrapper {
        gap: 40px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 50px;
    }
    
    .footer-column:last-child {
        grid-column: 1 / -1;
        margin-top: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header {
        padding: 16px 0;
    }
    
    .header.scrolled {
        padding: 12px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-subtitle {
        font-size: 13px;
        letter-spacing: 1.5px;
    }
    
    .slider-controls-bottom-right {
        bottom: 25px;
        right: 25px;
    }
    
    .slider-arrow-bottom {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 13px;
        padding: 6px 16px;
    }
    
    .about-content-wrapper,
    .who-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-image img,
    .who-image img {
        height: 300px;
    }
    
    .about-heading {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-card {
        width: calc(90vw - 60px);
        min-width: calc(90vw - 60px);
        height: 460px;
    }
    
    .swipe-controls {
        justify-content: center;
        padding-right: 0;
    }
    
    .wakeup-slide-image {
        height: 350px;
    }
    
    .wakeup-slide-content {
        margin-top: -80px;
    }
    
    .wakeup-controls {
        gap: 30px;
    }
    
    .wakeup-arrow {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    
    .learning-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .learning-heading {
        font-size: 1.8rem;
    }
    
    .learning-description {
        margin-bottom: 20px;
    }
    
    .learning-highlights {
        margin-bottom: 25px;
    }
    
    .learning-image-container {
        height: 300px;
    }
    
    /* Community Section Mobile Fix */
    .community-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .community-heading {
        font-size: 1.8rem;
    }
    
    .community-description {
        margin-bottom: 25px;
    }
    
    .role-highlights {
        margin-bottom: 25px;
    }
    
    .community-image-container {
        height: 300px;
    }
    
    .community-cta-container {
        margin-top: 15px;
    }
    
    .contact-container {
        border-radius: 10px;
    }
    
    .tab-button {
        padding: 18px 16px;
        font-size: 1rem;
    }
    
    .form-container {
        padding: 32px 24px;
    }
    
    .footer {
        padding: 60px 0 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
    
    .footer-column:last-child {
        grid-column: 1 / -1;
        margin-top: 0;
    }
    
    .footer-divider {
        margin: 50px 0 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .timeline-line {
        left: 28px;
    }
    
    .step-marker {
        margin-right: 24px;
        width: 28px;
        height: 28px;
        min-width: 28px;
    }
    
    .step-content {
        padding: 16px 20px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .step-description {
        font-size: 15px;
    }
    
    .founder-container,
    .why-container {
        padding: 30px;
    }
    
    .founder-note {
        padding: 30px;
    }
    
    .why-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .why-icon {
        margin: 0 auto 15px;
    }
    
    .about-nav-arrows {
        gap: 20px;
    }
    
    .about-nav-arrow {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .slider-controls-bottom-right {
        bottom: 20px;
        right: 20px;
    }
    
    .slider-arrow-bottom {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .about-heading {
        font-size: 24px;
    }
    
    .about-text p {
        font-size: 16px;
    }
    
    .about-image img,
    .who-image img {
        height: 250px;
    }
    
    .milestone-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .milestone-year {
        font-size: 18px;
    }
    
    .milestone-text {
        font-size: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .industry-item {
        padding: 20px 16px;
    }
    
    .industry-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
    }
    
    .industry-icon i {
        font-size: 20px;
    }
    
    .industry-name {
        font-size: 15px;
    }
    
    .blog-card {
        height: 420px;
        width: calc(95vw - 60px);
        min-width: calc(95vw - 60px);
    }
    
    .blog-image-container {
        height: 60%;
    }
    
    .blog-content {
        padding: 24px 20px;
    }
    
    .blog-title {
        font-size: 20px;
    }
    
    .blog-summary {
        font-size: 14px;
        -webkit-line-clamp: 2;
    }
    
    .card-footer {
        padding: 16px 20px;
    }
    
    .swipe-controls {
        justify-content: space-between;
        padding: 0 20px;
    }
    
    .wakeup-slide-image {
        height: 250px;
    }
    
    .wakeup-slide-content {
        padding: 25px 15px 15px 15px;
        margin-top: -60px;
    }
    
    .item-title {
        font-size: 20px;
    }
    
    .item-description {
        font-size: 14px;
    }
    
    .wakeup-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .tab-button span:not(.tab-icon) {
        display: none;
    }
    
    .tab-button {
        flex-direction: column;
        padding: 16px 12px;
        gap: 6px;
    }
    
    .tab-icon {
        font-size: 1.3rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 16px;
    }
    
    .footer {
        padding: 50px 0 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-column:last-child {
        grid-column: 1;
    }
    
    .footer-logo {
        font-size: 2.4rem;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 12px;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .step-marker {
        margin-right: 20px;
        width: 24px;
        height: 24px;
        min-width: 24px;
        border-width: 2px;
    }
    
    .step-icon {
        font-size: 12px;
    }
    
    .step-content {
        padding: 16px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .step-description {
        font-size: 14px;
    }
    
    .step-features {
        gap: 6px;
    }
    
    .feature-tag {
        font-size: 13px;
        padding: 4px 10px;
    }
    
    .progress-indicator {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .progress-step {
        font-size: 13px;
    }
    
    .progress-text {
        font-size: 10px;
    }
    
    .founder-container,
    .why-container {
        padding: 24px;
    }
    
    .founder-note {
        padding: 20px;
    }
    
    .founder-title {
        font-size: 16px;
    }
    
    .about-nav-arrows {
        gap: 15px;
    }
    
    .about-nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .about-nav-status {
        font-size: 14px;
    }
}

/* Large Desktop */
@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .blog-card {
        width: calc(33.333vw - 96px);
        min-width: calc(33.333vw - 96px);
        max-width: 420px;
        height: 560px;
    }
    
    .swipe-controls {
        display: flex;
    }
    
    .swipe-hint {
        display: none;
    }
}

/* Desktop menu visibility */
@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }
    
    .mobile-menu-overlay {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
    }
    
    .hamburger {
        display: flex !important;
    }
}/* ====== RESPONSIVE STYLES FOR INDUSTRIES GRID ====== */

/* Tablet (max-width: 992px) - 3 items per row */
@media (max-width: 992px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Mobile (max-width: 768px) - 2 items per row */
@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .industry-item {
        padding: 20px 15px;
    }
    
    .industry-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
    }
    
    .industry-icon i {
        font-size: 20px;
    }
}

/* Small Mobile (max-width: 480px) - 2 items per row (adjusted) */
@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .industry-item {
        padding: 16px 12px;
    }
    
    .industry-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .industry-name {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .industry-tag {
        font-size: 11px;
        padding: 2px 8px;
    }
}