:root {
    --bg-color: #F8FAFC;
    --text-main: #0F172A;
    --text-muted: #64748B;

    --primary-gradient: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --blob-1: #34D399;
    --blob-2: #60A5FA;
    --blob-3: #A78BFA;

    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);

    --font-main: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

a {
  color: inherit; /* blue colors for links too */
  text-decoration: inherit; /* no underline */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


 
.gklogo{ width:180px; height:auto;  }	


body{
    background: linear-gradient(
        135deg,
        #bfeee0 0%,
        #c7dff4 40%,
        #ddd2fa 75%,
        #f2f2f2 100%
    );
    background-attachment: fixed;
}

.glass{
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}







html,
body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-wrapper {
    width: 100%;
    overflow-x: clip;
    /* Does not break position: sticky! */
}

/* Loader Styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #020617; /* Very dark blue/black */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.truck-container {
    position: relative;
    width: 200px;
    margin: 0 auto 30px;
}

.truck-icon {
    font-size: 5rem;
    color: #10B981;
    animation: truckDrive 2s ease-in-out infinite, truckBounce 0.5s ease-in-out infinite;
}

.road-line {
    width: 100%;
    height: 4px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 2px;
    margin-top: -5px;
    position: relative;
    overflow: hidden;
}

.road-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #10B981, transparent);
    animation: roadMove 1.5s linear infinite;
}

.loader-text {
    color: white;
}

.loader-text .logo-text {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.loader-text p {
    font-size: 1.1rem;
    opacity: 0.7;
    letter-spacing: 3px;
    text-transform: uppercase;
}

@keyframes truckDrive {
    0%, 100% { transform: translateX(-10px); }
    50% { transform: translateX(10px); }
}

@keyframes truckBounce {
    0%, 100% { transform: translateY(0) translateX(-10px); }
    50% { transform: translateY(-5px) translateX(-10px); }
}

@keyframes roadMove {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Background Blobs */
.blob {
    position: fixed;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.3;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--blob-1);
}

.blob-2 {
    top: 40%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: var(--blob-2);
    animation-delay: -5s;
}

.blob-3 {
    bottom: -10%;
    left: 20%;
    width: 60vw;
    height: 60vw;
    background: var(--blob-3);
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-lg {
    max-width: 600px;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-5 {
    margin-top: 8rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mb-5 {
    margin-bottom: 8rem;
}

.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.w-full {
    width: 100%;
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.navbar {
    position: fixed;
    top: 20px;
    left: 5%;
    right: 5%;
    max-width: 1280px;
    width: 90%;
    margin: 0 auto;
    border-radius: 50px;
    padding: 15px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    top: 10px;
    padding: 10px 35px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 45px;
    margin-left: auto;
}

.hamburger {
    display: none;
}

.hero {
    position: relative;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight:1000;
    font-size: 1.15rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: #10B981;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    background-color:rgba(255, 255, 255, 0.2);
    top: 100%;
    left: 0;
    border-radius:20px;
    min-width: 220px;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fff;
}

.submenu li {
    width: 100%;
}

.submenu a {
    display: block;
    padding: 12px 15px;
    color: var(--text-main);
    text-decoration: none;
    white-space: nowrap;
}

.submenu a:hover {
    background: skyblue;
    color: black;
    border-radius:20px;
}

/* Mobile (opened via JavaScript) */
.dropdown.open .submenu {
    display: block;
}

/* Keyboard accessibility */
.dropdown:focus-within .submenu {
    display: block;
}

/* Desktop hover */
@media (min-width: 769px) {
    .dropdown:hover .submenu {
        display: block;
    }
}

@media (max-width: 768px) {
    .submenu {
        position: static;
        width: 100%;
        min-width: 100%;
    }
}

.nav-socials {
    display: flex;
    gap: 15px;
}

.nav-socials a {
    color: var(--text-main);
    font-size: 1.1rem;
    transition: var(--transition);
}

.nav-socials a:hover {
    color: #10B981;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-main);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--text-main);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: #f1f5f9;
    transform: translateY(-3px);
}

/* Creative Hero Section */
.creative-hero {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 0;
    padding-bottom: 60px;
    overflow: hidden;
}

.page-wrapper {
    padding-top: 0;
}

.hero-main-title {
    z-index: 5;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: 6rem;
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -4px;
    margin-bottom: 25px;
}

.hero-desc {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    /* Ensure they wrap if needed */
}

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

/* Floating Hero Visuals */
.hero-visuals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-img {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    animation: floatImage 6s infinite ease-in-out alternate;
}

.floating-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-1 {
    width: 300px;
    height: 400px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.img-2 {
    width: 250px;
    height: 350px;
    bottom: 10%;
    left: 15%;
    animation-delay: 1s;
}

.img-3 {
    width: 350px;
    height: 450px;
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes floatImage {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-30px) rotate(2deg);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 15px;
    position: relative;
}

.mouse::after {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--text-muted);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollMouse 1.5s infinite;
}

@keyframes scrollMouse {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 15px);
    }
}

/* Section Header Styles */
.section {
    padding: 120px 0;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border-radius: 30px;
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #10B981;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.about-visual {
    position: relative;
}

.about-card {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.about-card img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about-overlay-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    padding: 20px 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 1.1rem;
}

.about-overlay-badge i {
    color: #10B981;
    font-size: 1.5rem;
}

/* Timeline Flowchart */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(16, 185, 129, 0.15);
    transform: translateX(-50%);
    border-radius: 4px;
}

.timeline-progress {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    background: var(--primary-gradient);
    transform: translateX(-50%);
    height: 0;
}

.timeline-arrow-head {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    color: #10B981;
    font-size: 20px;
}

.timeline-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    width: 100%;
    position: relative;
}

.timeline-row.left {
    justify-content: flex-end;
    padding-right: calc(50% + 60px);
    padding-left: 0;
}

.timeline-row.right {
    justify-content: flex-start;
    padding-left: calc(50% + 60px);
    padding-right: 0;
}

.timeline-row.root-row {
    justify-content: center;
    padding: 0;
}

.timeline-content {
    width: 100%;
    max-width: 450px;

    border-radius: 20px;
    overflow: hidden;
}

.timeline-row.left .timeline-content {
    margin-right: 60px;
}

.timeline-row.right .timeline-content {
    margin-left: 60px;
}

.timeline-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.timeline-text {
    padding: 30px;
}

.timeline-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.root-node {
    padding: 20px 40px;
    border-radius: 40px;
    text-align: center;
}

.root-node h3 {
    margin: 0;
    color: white;
}

.highlight-card {
    background: var(--text-main);
    color: white;
}

/* Dots and Connectors */
.timeline-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 4px solid #10B981;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.timeline-connector {
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background: #10B981;
    z-index: 1;
}

.timeline-row.left .timeline-connector {
    left: calc(50% - 60px);
}

.timeline-row.right .timeline-connector {
    left: 50%;
}

.timeline-node {
    position: relative;
    z-index: 5;
    padding: 15px 40px;
    border-radius: 30px;
    width: 100%;
    max-width: 450px;
    text-align: center;
}

/* Mobile Adjustments for Timeline */
@media (max-width: 768px) {

    .timeline-line,
    .timeline-progress,
    .timeline-arrow-head {
        left: 40px !important;
        /* Slightly more space for the line */
        transform: translateX(-50%) !important;
    }

    .timeline-arrow-head {
        transform: translateX(-50%) rotate(45deg) !important;
    }

    .timeline-row {
        padding-left: 80px !important;
        padding-right: 20px !important;
        justify-content: flex-start !important;
        margin-bottom: 60px;
    }

    .timeline-content,
    .timeline-node {
        width: 100% !important;
        margin: 0 !important;
    }

    .timeline-connector {
        left: 40px !important;
        width: 40px !important;
        transform: none !important;
    }

    .timeline-dot {
        left: 40px !important;
        transform: translate(-50%, -50%) !important;
    }
}

/* Accordion Gallery Section */
.accordion-gallery {
    display: flex;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 700px;
    overflow: hidden;
    gap: 15px;
}

.accordion-card {
    position: relative;
    flex: 1;
    overflow: hidden;
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition);
    transform: skew(-5deg);
    /* CodePen skew effect */
    border: 1px solid var(--glass-border);
}

.accordion-card img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) skew(5deg) scale(1.2);
    /* Reverse skew for image */
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.accordion-card:hover {
    flex: 5;
    transform: skew(-5deg) scale(1.02);
}

.accordion-card:hover img {
    transform: translateX(-50%) skew(5deg) scale(1);
}

.accordion-card__head {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    transform: skew(5deg) translateY(100%);
    transition: var(--transition);
    white-space: nowrap;
}

.accordion-card:hover .accordion-card__head {
    transform: skew(5deg) translateY(0);
}

@media (max-width: 768px) {
    .accordion-gallery {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }

    .accordion-card {
        height: 150px;
        transform: none;
        flex: none;
    }

    .accordion-card img {
        transform: translateX(-50%) scale(1);
    }

    .accordion-card:hover {
        height: 350px;
        transform: scale(1.02);
    }

    .accordion-card__head {
        transform: translateY(0);
    }
}

/* Brands Marquee Section */
.brands-marquee {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    background: white;
}

.marquee-content {
    display: flex;
    gap: 100px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.brand-item {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    opacity: 0.3;
    transition: var(--transition);
    white-space: nowrap;
}

.brand-item:hover {
    opacity: 1;
    color: #10B981;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 40px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #10B981;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
}

.quote-icon {
    font-size: 4rem;
    /* Massive quote icon */
    color: #10B981;
    position: absolute;
    top: -10px;
    right: 20px;
    opacity: 0.1;
    transition: var(--transition);
}

.testimonial-card:hover .quote-icon {
    opacity: 0.3;
    transform: rotate(-10deg) scale(1.2);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.user-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.user-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact-card {
    padding: 80px;
    border-radius: 40px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 50px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-item h4 {
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-muted);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 25px;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: white;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #10B981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

/* Footer */
.footer-overlay {
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 25px;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: #10B981;
    color: white;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-newsletter h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #10B981;
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    background: white;
    padding: 5px;
    border-radius: 35px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 0 20px;
    outline: none;
    font-family: inherit;
}

.newsletter-form button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 30px;
    font-size: 0.9rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
}

.wa-tooltip {
    position: absolute;
    right: 80px;
    background: white;
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Horizontal Scroll Section */
.horizontal-scroll-section {
    height: 400vh;
    position: relative;
    background: #0F172A;
    z-index: 10;
    /* Ensure it's above blobs */
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.horizontal-content {
    display: flex;
    width: 400vw;
    height: 100vh;
    will-change: transform;
}

.horizontal-item {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
    align-items: center;
    padding: 0 10vw;
    color: white;
    background: #0F172A;
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle border */
}

.horizontal-item:nth-child(even) {
    background: #111827;
    /* Slightly different dark for contrast */
}

.horizontal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.h-text span {
    font-size: 5rem;
    font-weight: 800;
    opacity: 0.1;
    display: block;
    line-height: 1;
}

.h-text h2 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.h-text p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 400px;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-glass-card {
        padding: 40px;
        width: 90%;
    }

    .about-grid,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .floating-img {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 15px;
        border-radius: 10px;
    }

    .nav-links,
    .nav-socials {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-glass-card {
        padding: 30px 20px;
        width: calc(100% - 40px);
        margin: 0 20px;
    }

    .hero-cta { 
        flex-direction: column; 
        width: 100%; 
        gap: 20px !important; 
        display: flex !important;
    }
    .hero-cta .btn { 
        width: 100% !important; 
        margin: 0 0 10px 0 !important; 
    }
    .hero-cta .btn:last-child { margin-bottom: 0 !important; }

    .scroll-indicator { display: none; } /* Hide on mobile to prevent overlap */

    .section-title { font-size: 2.5rem; }
    .section { padding: 80px 0; }
    
    .accordion-gallery {
        flex-direction: column;
        height: auto;
        gap: 15px;
    }
    .accordion-card {
        height: 180px;
        transform: none !important;
        flex: none;
        border-radius: 20px;
    }
    .accordion-card img {
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
    }
    .accordion-card:hover {
        height: 320px;
        transform: scale(1.02) !important;
    }
    .accordion-card__head {
        transform: translateY(0);
        padding: 20px;
        font-size: 1.2rem;
        background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    }
    
    .contact-card {
        padding: 40px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline-line,
    .timeline-progress,
    .timeline-arrow-head {
        left: 40px !important;
        transform: translateX(-50%) !important;
    }
    
    .timeline-row {
        padding-left: 80px !important;
        padding-right: 20px !important;
        justify-content: flex-start !important;
        margin-bottom: 60px;
    }
    
    .timeline-content,
    .timeline-node {
        width: 100% !important;
        margin: 0 !important;
    }
    
    .timeline-connector {
        left: 40px !important;
        width: 40px !important;
        transform: none !important;
    }
    
    .timeline-dot {
        left: 40px !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .horizontal-item {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .h-text h2 {
        font-size: 2.5rem;
    }
    
    .h-text span {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-glass-card {
        padding: 25px 15px;
    }
    .accordion-card {
        height: 150px;
    }
    .accordion-card:hover {
        height: 280px;
    }
    .stat-num {
        font-size: 1.8rem;
    }
    .logo {
        font-size: 1.5rem;
    }
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    padding: 50px 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    overflow: auto;
    text-align: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(16, 185, 129, 0.2);
    animation: lightboxZoom 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes lightboxZoom {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

#lightbox-caption {
    margin: 20px auto;
    width: 80%;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: #ef4444;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
}