/* Import Museomoderno font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Museomoderno:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #c5ff00;
    --secondary-color: #333;
    --text-color: #fff;
    --bg-dark: #000000;
    --bg-darker: #000000;
    --transition: all 0.3s ease;
    --font-family: 'Museomoderno', cursive;
    
    /* Typography scale */
    --font-size-xs: 0.75rem;     /* 12px */
    --font-size-sm: 0.875rem;    /* 14px */
    --font-size-base: 1rem;      /* 16px */
    --font-size-md: 1.125rem;    /* 18px */
    --font-size-lg: 1.25rem;     /* 20px */
    --font-size-xl: 1.5rem;      /* 24px */
    --font-size-2xl: 1.875rem;   /* 30px */
    --font-size-3xl: 2.25rem;    /* 36px */
    --font-size-4xl: 3rem;       /* 48px */
    
    /* Animation timing variables */
    --anim-duration-fast: 0.3s;
    --anim-duration-medium: 0.5s;
    --anim-duration-slow: 0.8s;
    --anim-delay-base: 0.1s;
    --anim-timing: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
}

header:hover {
    background-color: rgba(0, 0, 0, 1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    max-height: 60px;
    width: auto;
    display: block;
    animation: fadeInLeft var(--anim-duration-medium) var(--anim-timing) forwards;
    opacity: 0;
}

.logo h1 {
    color: white;
    font-weight: 700;
    font-size: var(--font-size-3xl);
    position: relative;
    letter-spacing: 2px;
    margin-right: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-animate {
    animation: fadeInLeft var(--anim-duration-medium) var(--anim-timing) forwards;
    opacity: 0;
}

.logo h1::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 10px;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.logo:hover h1::before {
    width: 40px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text span {
    font-size: var(--font-size-xs);
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-text-animate:nth-child(1) {
    animation: fadeInRight 0.5s var(--anim-timing) 0.1s forwards;
}

.logo-text-animate:nth-child(2) {
    animation: fadeInRight 0.5s var(--anim-timing) 0.2s forwards;
}

.logo-text-animate:nth-child(3) {
    animation: fadeInRight 0.5s var(--anim-timing) 0.3s forwards;
}

.logo-text span:first-child {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 30px;
    position: relative;
    opacity: 0;
    animation: fadeInDown 0.5s var(--anim-timing) forwards;
}

.nav-item:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-item:nth-child(2) {
    animation-delay: 0.2s;
}

.nav-item:nth-child(3) {
    animation-delay: 0.3s;
}

.nav-item:nth-child(4) {
    animation-delay: 0.4s;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: var(--font-size-base);
    padding: 8px 0;
    position: relative;
    display: inline-block;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.nav-menu a:hover::after {
    width: 100%;
    opacity: 1;
}

.nav-menu a.active::after {
    width: 100%;
    opacity: 1;
}

.btn {
    background-color: var(--primary-color);
    color: var(--bg-darker);
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(197, 255, 0, 0.2);
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: none;
}

/* Header buttons container */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    animation: fadeInRight var(--anim-duration-medium) var(--anim-timing) 0.5s forwards;
}

/* Download button */
.download-btn {
    background-color: var(--primary-color);
    color: black;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: var(--font-size-sm);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(197, 255, 0, 0.2);
}

.download-btn i {
    font-size: 16px;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: none;
    background-color: #d1ff33;
}

.download-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(197, 255, 0, 0.2);
}

.chat-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    z-index: 1200;
}

.hamburger i {
    font-size: 28px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.hamburger.active i {
    transform: rotate(90deg);
}

.mobile-only {
    display: none;
}

/* Hero section styles */
.hero {
    height: 100vh;
    min-height: 650px;
    background-image: url('src/images/home-page.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    position: relative;
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

/* Glass Card Design */
.glass-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    max-width: 550px;
    width: 100%;
    transform: translateY(0);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 80%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.hero-message {
    animation: fadeInUp 1s var(--anim-timing) forwards;
    opacity: 0;
    position: relative;
    z-index: 3;
}

.hero-message h1 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    color: #fff;
}

.hero-message .highlight {
    color: var(--primary-color);
}

.hero-message p {
    font-size: var(--font-size-lg);
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    line-height: 1.5;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .glass-card {
        padding: 25px;
        max-width: 90%;
    }
    
    .hero-message h1 {
        font-size: 2.5rem;
    }
    
    .hero-message p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .glass-card {
        padding: 20px;
        max-width: 95%;
    }
    
    .hero-message h1 {
        font-size: 2rem;
    }
    
    .hero-message p {
        font-size: 0.9rem;
    }
}

.hero-content h1 {
    font-size: var(--font-size-4xl);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: var(--font-size-md);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Section styles */
section {
    padding: 40px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: 15px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    animation: fadeInUp var(--anim-duration-slow) var(--anim-timing) forwards;
    opacity: 0;
}

/* About section title is green by default */
.about .section-title h2 {
    color: var(--primary-color);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 4px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
    opacity: 0;
    animation: underlineGrow var(--anim-duration-slow) var(--anim-timing) forwards;
}

/* Regular section titles show partial underline on hover */
.section-title h2:hover::after {
    width: 80px;
    opacity: 1;
    background-color: var(--primary-color);
    box-shadow: none;
    transition: all 0.3s ease;
}

/* About section title shows full underline on hover */
.about .section-title h2:hover::after {
    width: 100%;
    opacity: 1;
    background-color: var(--primary-color);
    box-shadow: none;
}

.section-title h2:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-color);
    font-size: var(--font-size-md);
    line-height: 1.6;
    animation: fadeInUp var(--anim-duration-slow) var(--anim-timing) forwards;
    animation-delay: calc(var(--anim-delay-base) * 3);
    opacity: 0;
}

/* About section */
.about {
    background-color: var(--bg-darker);
    text-align: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.about-text {
    flex: 1;
    min-width: 300px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    animation: fadeInUp var(--anim-duration-medium) var(--anim-timing) forwards;
    opacity: 0;
}

.about-text h3 {
    font-size: var(--font-size-xl);
    margin-bottom: 15px;
    color: var(--text-color);
    animation: fadeInUp var(--anim-duration-medium) var(--anim-timing) forwards;
    opacity: 0;
}

.about-text p {
    margin-bottom: 25px;
    font-size: var(--font-size-md);
    line-height: 1.8;
    text-align: center;
    letter-spacing: 0.02em;
    animation: fadeInUp var(--anim-duration-medium) var(--anim-timing) forwards;
    animation-delay: calc(var(--anim-delay-base) * 3);
    opacity: 0;
}

/* Stats section */
.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 30px 0 40px;
    width: 100%;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    padding: 30px 20px;
    background-color: transparent;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(0);
    animation: fadeInUp var(--anim-duration-medium) var(--anim-timing) forwards;
}

.stat-item:hover {
    transform: translateY(-15px);
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-item:hover .stat-number {
    color: var(--primary-color);
    transform: scale(1.05);
}

.stat-item:hover .stat-text {
    color: #fff;
}

.stat-number {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.2;
    transition: color 0.4s ease, transform 0.4s ease;
}

.stat-text {
    font-size: var(--font-size-md);
    color: var(--text-color);
    font-weight: 400;
    line-height: 1.4;
    transition: color 0.4s ease;
}

@media (max-width: 768px) {
    .stats-container {
        gap: 20px;
        margin: 30px 0 60px;
    }
    
    .stat-item {
        padding: 20px 10px;
        min-width: 150px;
    }
    
    .stat-number {
        font-size: var(--font-size-3xl);
    }
    
    .stat-text {
        font-size: var(--font-size-base);
    }
}

@media (max-width: 576px) {
    .stats-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        min-width: 100%;
        padding: 15px 10px;
    }
}

.mission-vision {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 20px;
}

.mission, .vision {
    flex: 1;
    min-width: 250px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    animation: fadeInUp var(--anim-duration-medium) var(--anim-timing) forwards;
    opacity: 0;
}

.mission h4, .vision h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: var(--font-size-lg);
}

/* Our Journey section */
.our-journey {
    margin-top: 10px;
    text-align: center;
    padding: 30px 0;
    background-color: var(--bg-darker);
    color: var(--text-color);
}

.journey-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5px;
}

.journey-established {
    margin-bottom: 25px;
    font-size: var(--font-size-md);
    line-height: 1.8;
    letter-spacing: 0.02em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.journey-images {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 20px;
}

.journey-image {
    flex: 1;
    min-width: 300px;
    max-width: 430px;
    position: relative;
    overflow: visible;
    background-color: transparent;
    margin-bottom: 20px;
    animation: fadeInUp var(--anim-duration-medium) var(--anim-timing) forwards;
    opacity: 0;
}

.journey-arch {
    position: relative;
    height: 500px;
    border: 2px solid var(--primary-color);
    border-radius: 200px 200px 0 0;
    overflow: hidden;
}

.journey-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.journey-image:hover img {
    transform: scale(1.05);
}

.journey-image::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 270px;
    border-left: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    border-radius: 0 0 5px 5px;
    z-index: 1;
    pointer-events: none;
}

.journey-text {
    position: relative;
    width: 100%;
    background-color: var(--primary-color);
    padding: 25px;
    color: #000;
    text-align: left;
    z-index: 5;
    border-left: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.journey-text h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
    animation: fadeInUp var(--anim-duration-medium) var(--anim-timing) forwards;
    opacity: 0;
}

.journey-text p {
    font-size: var(--font-size-base);
    margin-bottom: 0;
    color: #000;
    line-height: 1.6;
    letter-spacing: 0.02em;
    animation: fadeInUp var(--anim-duration-medium) var(--anim-timing) forwards;
    animation-delay: calc(var(--anim-delay-base) * 4);
    opacity: 0;
}

@media (max-width: 768px) {
    .journey-image {
        max-width: 100%;
    }
    
    .journey-content p {
        font-size: var(--font-size-base);
    }
}

/* Our Expertise section */
.our-expertise {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: url('src/images/our-expertise-bg.jpg') no-repeat center center/cover;
    transition: var(--transition);
    z-index: 1;
    color: white;
}

.our-expertise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

/* Remove expertise-title class since we now use section-title */
.our-expertise .section-title {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.expertise-card {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(0);
    animation: fadeInUp var(--anim-duration-medium) var(--anim-timing) forwards;
    /* Make cards square */
    aspect-ratio: 1/1;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 80%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(198, 255, 0, 0.3);
    background: rgba(0, 0, 0, 0.3);
}

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

.expertise-card:hover .card-icon {
    background-color: rgba(197, 255, 0, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.expertise-card:hover h4 {
    color: var(--primary-color);
    transform: translateY(-5px);
}

.card-icon {
    margin-bottom: 10px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(197, 255, 0, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.card-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.expertise-card h4 {
    margin-bottom: 6px;
    font-size: var(--font-size-sm);
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.4s ease;
}

.expertise-card p {
    color: var(--text-color);
    font-size: var(--font-size-xs);
    line-height: 1.3;
    max-height: 60px;
    overflow: hidden;
}

/* Products section */
.products {
    background-color: var(--bg-dark);
    padding: 40px 0;
}

.products-responsive {
    overflow-x: hidden;
}

.products-list {
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.product-item {
    margin-bottom: 40px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
    height: 450px;
    background-color: transparent;
    display: block;
    overflow: visible;
    box-shadow: none;
    animation: fadeInUp var(--anim-duration-slow) var(--anim-timing) forwards;
}

.product-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.product-item:nth-child(odd) {
    border: 1px solid rgba(197, 255, 0, 0.3);
    border-radius: 4px;
}

.product-item:nth-child(even) {
    border: 1px solid rgba(197, 255, 0, 0.3);
    border-radius: 4px;
}

.product-image {
    position: absolute;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
}

.product-item:nth-child(odd) .product-image {
    right: 0;
    left: auto;
    width: 75%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 13% 100%);
}

.product-item:nth-child(even) .product-image {
    left: 0;
    right: auto;
    width: 75%;
    clip-path: polygon(0 0, 100% 0, 87% 100%, 0 100%);
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    z-index: 20;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Improving image quality and aspect ratio */
@media (max-width: 576px) {
    .product-image img {
        object-position: center;
    }
}

@media (max-width: 480px) {
    .product-image img {
        object-fit: cover;
    }
}

/* Removing hover effects for product images */
.product-item:hover .product-image img {
    /* transform: scale(1.08); */
}

.product-item:hover .product-image {
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5); */
}

.product-info {
    position: absolute;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: -3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.product-item:hover .product-info {
    /* background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); */
}

.product-item:nth-child(odd) .product-info {
    left: 0;
    right: auto;
    width: 30%;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}

.product-item:nth-child(even) .product-info {
    right: 0;
    left: auto;
    width: 30%;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}

.product-info h3 {
    color: var(--primary-color);
    font-size: var(--font-size-xl);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    padding: 0 30px;
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.product-item:hover .product-info h3 {
    /* transform: translateY(-5px);
    color: #d1ff33; */
}

@media (max-width: 992px) {
    .product-item {
        height: 380px;
    }
    
    .product-info h3 {
        font-size: var(--font-size-xl);
    }
}

/* Adding better mobile responsiveness for products section */
@media (max-width: 768px) {
    .product-item {
        height: 350px;
        margin-bottom: 30px;
    }
    
    .product-item:nth-child(odd) .product-image,
    .product-item:nth-child(even) .product-image {
        width: 70%;
    }
    
    .product-item:nth-child(odd) .product-info,
    .product-item:nth-child(even) .product-info {
        width: 35%;
    }
    
    .product-info h3 {
        font-size: var(--font-size-lg);
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .product-item {
        height: 300px;
        margin-bottom: 25px;
    }
    
    .product-item:nth-child(odd) .product-image,
    .product-item:nth-child(even) .product-image {
        width: 68%;
    }
    
    .product-item:nth-child(odd) .product-info,
    .product-item:nth-child(even) .product-info {
        width: 38%;
    }
    
    .product-info h3 {
        font-size: var(--font-size-base);
        padding: 0 10px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .product-item {
        height: 250px;
        margin-bottom: 20px;
    }
    
    .product-item:nth-child(odd) .product-image {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 18% 100%);
    }
    
    .product-item:nth-child(even) .product-image {
        clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
    }
    
    .product-item:nth-child(odd) .product-info {
        clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
        width: 40%;
    }
    
    .product-item:nth-child(even) .product-info {
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
        width: 40%;
    }
}

@media (max-width: 380px) {
    .product-item {
        height: 220px;
    }
    
    .product-item:nth-child(odd) .product-image,
    .product-item:nth-child(even) .product-image {
        width: 65%;
    }
    
    .product-item:nth-child(odd) .product-info,
    .product-item:nth-child(even) .product-info {
        width: 45%;
    }
    
    .product-info h3 {
        font-size: calc(var(--font-size-base) - 2px);
        padding: 0 8px;
    }
}

/* Ultra small screens */
@media (max-width: 320px) {
    .product-item {
        height: 200px;
    }
    
    .product-item:nth-child(odd) .product-image,
    .product-item:nth-child(even) .product-image {
        width: 62%;
    }
    
    .product-item:nth-child(odd) .product-info,
    .product-item:nth-child(even) .product-info {
        width: 48%;
    }
    
    .product-info h3 {
        font-size: calc(var(--font-size-base) - 3px);
        padding: 0 5px;
        letter-spacing: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    header {
        padding: 15px 0;
    }

    .logo-img {
        max-height: 45px;
    }
    
    .logo h1 {
        font-size: var(--font-size-2xl);
    }
    
    .logo-text span {
        font-size: var(--font-size-xs);
    }
    
    .hamburger.mobile-only {
        display: block !important;
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1200;
    }
    
    .hamburger i {
        font-size: 26px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.4s ease;
        z-index: 1100;
        padding: 80px 0 30px;
    }
    
    .nav-menu.active {
        left: 0;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav-item {
        margin: 15px 0;
        opacity: 1;
        animation: none;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        font-size: var(--font-size-lg);
        padding: 12px 0;
        display: block;
        width: 100%;
    }
    
    .header-buttons {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        gap: 5px;
    }
    
    .download-btn {
        display: none;
    }
    
    .chat-btn {
        width: 40px;
        height: 40px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
    
    .chat-btn span {
        display: none;
    }
    
    .chat-btn i {
        font-size: 18px;
        margin: 0;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .our-expertise .section-title h2 {
        font-size: var(--font-size-xl);
    }
    
    .journey-image {
        margin-bottom: 40px;
    }
    
    .journey-content p {
        width: 100%;
    }
    
    .section-title h2 {
        font-size: var(--font-size-2xl);
    }
    
    .section-title p {
        font-size: var(--font-size-base);
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-img {
        max-height: 40px;
    }
    
    .logo h1 {
        font-size: var(--font-size-xl);
    }
    
    .logo-text span {
        font-size: var(--font-size-xs);
    }
    
    .hamburger.mobile-only {
        right: 50px;
    }
    
    .hamburger i {
        font-size: 22px;
    }
    
    .chat-btn {
        width: 36px;
        height: 36px;
    }
    
    .nav-menu {
        padding-top: 80px;
    }
    
    .nav-menu li a {
        font-size: var(--font-size-md);
        padding: 10px 0;
    }
    
    .hero-content h1 {
        font-size: var(--font-size-2xl);
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: var(--font-size-base);
        margin-bottom: 20px;
    }
    
    .hero-btn {
        padding: 8px 16px;
    }
    
    .section-title h2 {
        font-size: var(--font-size-xl);
    }
    
    .expertise-card h4 {
        font-size: var(--font-size-base);
    }
    
    .info-text h4 {
        font-size: var(--font-size-base);
    }
    
    .info-text p, .info-text a {
        font-size: var(--font-size-sm);
    }
}

@media (max-width: 480px) {
    .product-item {
        height: 250px;
        margin-bottom: 20px;
    }
    
    .product-item:nth-child(odd) .product-image {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 18% 100%);
    }
    
    .product-item:nth-child(even) .product-image {
        clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
    }
    
    .product-item:nth-child(odd) .product-info {
        clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
        width: 40%;
    }
    
    .product-item:nth-child(even) .product-info {
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
        width: 40%;
    }
}

/* Apply staggered animations to product items */
.product-item:nth-child(1) {
    transition-delay: 0.1s;
}
.product-item:nth-child(2) {
    transition-delay: 0.2s;
}
.product-item:nth-child(3) {
    transition-delay: 0.3s;
}
.product-item:nth-child(4) {
    transition-delay: 0.4s;
}
.product-item:nth-child(5) {
    transition-delay: 0.5s;
}
.product-item:nth-child(6) {
    transition-delay: 0.6s;
}
.product-item:nth-child(7) {
    transition-delay: 0.7s;
}
.product-item:nth-child(8) {
    transition-delay: 0.8s;
}
.product-item:nth-child(9) {
    transition-delay: 0.9s;
}

/* Display/Gallery section */
.gallery {
    background-color: var(--bg-darker);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    pointer-events: none;
    z-index: 1;
}

.gallery .section-title {
    position: relative;
    z-index: 2;
}

.gallery .section-title h2 {
    color: var(--primary-color);
}

.gallery-container {
    position: relative;
    z-index: 2;
    padding: 20px 0;
}

.swiper {
    width: 100%;
    height: 550px;
    margin-top: 30px;
    perspective: 1200px;
}

.swiper-wrapper {
    transform-style: preserve-3d;
}

/* Enhance coverflow effect */
.swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
    transform: rotateY(0deg);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    box-shadow: none;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    width: 70%;
    height: 450px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.swiper-slide-active {
    transform: rotateY(0deg) translateZ(50px);
    box-shadow: none;
}

.swiper-slide-prev, .swiper-slide-next {
    transform: rotateY(10deg) translateZ(20px);
    opacity: 0.7;
}

.swiper-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.swiper-slide:hover::after {
    opacity: 1;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.85);
}

.swiper-slide:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

.swiper-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: white;
    text-align: left;
    z-index: 3;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.swiper-slide:hover .swiper-slide-caption {
    opacity: 1;
    transform: translateY(0);
}

.swiper-slide-caption h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
    text-shadow: none;
}

.swiper-slide-caption p {
    font-size: var(--font-size-sm);
    opacity: 0.9;
}

.swiper-button-next,
.swiper-button-prev {
    background-color: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateY(-50%);
    opacity: 0;
}

.gallery:hover .swiper-button-next,
.gallery:hover .swiper-button-prev {
    opacity: 1;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 22px;
    font-weight: bold;
}

.swiper-pagination {
    position: relative;
    bottom: -30px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    width: 25px;
    opacity: 1;
}

@media (max-width: 992px) {
    .swiper {
        height: 450px;
    }
    .swiper-slide {
        width: 80%;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .swiper {
        height: 380px;
    }
    .swiper-slide {
        width: 90%;
        height: 350px;
    }
    
    .swiper-slide-caption h4 {
        font-size: var(--font-size-md);
    }
}

@media (max-width: 576px) {
    .swiper {
        height: 300px;
    }
    .swiper-slide {
        width: 100%;
        height: 280px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 18px;
    }
}

/* Gallery animation */
@keyframes slideIn {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

.gallery .section-title h2 {
    animation: fadeInUp var(--anim-duration-medium) var(--anim-timing) forwards;
    opacity: 0;
}

.swiper {
    animation: fadeInScale var(--anim-duration-slow) var(--anim-timing) forwards;
    opacity: 0;
    animation-delay: calc(var(--anim-delay-base) * 2);
}

/* Services section */
.services {
    background-color: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(0);
    animation: fadeInUp var(--anim-duration-medium) var(--anim-timing) forwards;
}

.service-card:hover {
    transform: translateY(-15px);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    border: 1px solid rgba(197, 255, 0, 0.2);
}

.service-card:hover i {
    color: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover h4 {
    color: var(--primary-color);
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.service-card h4 {
    margin-bottom: 15px;
    font-size: var(--font-size-lg);
    transition: all 0.4s ease;
}

/* Testimonials section */
.testimonials {
    background-color: var(--bg-darker);
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    max-width: 350px;
    transition: var(--transition);
    animation: fadeInUp var(--anim-duration-medium) var(--anim-timing) forwards;
    opacity: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    font-size: var(--font-size-base);
}

.testimonial-author h4 {
    font-size: var(--font-size-md);
    margin-bottom: 5px;
    color: var(--primary-color);
}

.testimonial-author p {
    font-size: var(--font-size-sm);
    color: #ddd;
}

/* Contact section - high importance styles */
.contact {
    background-color: var(--bg-darker) !important;
    padding: 40px 0 !important;
    position: relative !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1 !important;
}

.contact-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 30px !important;
    margin-top: 20px !important;
    opacity: 1 !important;
    transform: none !important;
}

.contact-info,
.contact-form-container {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.contact .section-title h2 {
    margin-bottom: 10px;
}

.contact .section-title p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.contact-info {
    flex: 1;
    min-width: 320px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    background-color: rgba(197, 255, 0, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-text h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.info-text p, .info-text a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 5px;
    font-size: 0.95rem;
    line-height: 1.6;
    display: block;
}

.info-text a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    justify-content: flex-start;
}

.social-links a {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: var(--font-size-base);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--bg-darker);
    transform: translateY(-3px);
}

.contact-form-container {
    flex: 1;
    min-width: 320px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(197, 255, 0, 0.5);
    outline: none;
    box-shadow: none;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.contact-form-container button {
    width: 100%;
    padding: 15px;
    font-size: var(--font-size-base);
    background-color: var(--primary-color);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form-container button:hover {
    background-color: #d4ff4c;
    transform: translateY(-3px);
    box-shadow: none;
}

@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-info, .contact-form-container {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .info-item i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .contact-form-container, .contact-info {
        padding: 20px;
    }
}

/* Footer styles */
footer {
    background-color: var(--bg-darker);
    padding: 20px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 15px;
    font-size: var(--font-size-base);
    transition: var(--transition);
}

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

.copyright {
    color: #777;
    font-size: var(--font-size-sm);
}

/* Media queries */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .header-buttons {
        gap: 10px;
    }

    .download-btn, .chat-btn {
        padding: 8px 15px;
        font-size: var(--font-size-xs);
    }
    
    .expertise-grid {
        width: 100%;
        gap: 30px;
        padding: 0 15px;
    }
    
    .expertise-card {
        padding: 35px;
    }
    
    .section-title h2 {
        font-size: var(--font-size-2xl);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    header {
        padding: 15px 0;
    }

    .logo-img {
        max-height: 45px;
    }
    
    .logo h1 {
        font-size: var(--font-size-2xl);
    }
    
    .logo-text span {
        font-size: var(--font-size-xs);
    }
    
    .hamburger.mobile-only {
        display: block !important;
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1200;
    }
    
    .hamburger i {
        font-size: 26px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.4s ease;
        z-index: 1100;
        padding: 80px 0 30px;
    }
    
    .nav-menu.active {
        left: 0;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav-item {
        margin: 15px 0;
        opacity: 1;
        animation: none;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        font-size: var(--font-size-lg);
        padding: 12px 0;
        display: block;
        width: 100%;
    }
    
    .header-buttons {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        gap: 5px;
    }
    
    .download-btn {
        display: none;
    }
    
    .chat-btn {
        width: 40px;
        height: 40px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
    
    .chat-btn span {
        display: none;
    }
    
    .chat-btn i {
        font-size: 18px;
        margin: 0;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .our-expertise .section-title h2 {
        font-size: var(--font-size-xl);
    }
    
    .journey-image {
        margin-bottom: 40px;
    }
    
    .journey-content p {
        width: 100%;
    }
    
    .section-title h2 {
        font-size: var(--font-size-2xl);
    }
    
    .section-title p {
        font-size: var(--font-size-base);
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-img {
        max-height: 40px;
    }
    
    .logo h1 {
        font-size: var(--font-size-xl);
    }
    
    .logo-text span {
        font-size: var(--font-size-xs);
    }
    
    .hamburger.mobile-only {
        right: 50px;
    }
    
    .hamburger i {
        font-size: 22px;
    }
    
    .chat-btn {
        width: 36px;
        height: 36px;
    }
    
    .nav-menu {
        padding-top: 80px;
    }
    
    .nav-menu li a {
        font-size: var(--font-size-md);
        padding: 10px 0;
    }
    
    .hero-content h1 {
        font-size: var(--font-size-2xl);
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: var(--font-size-base);
        margin-bottom: 20px;
    }
    
    .hero-btn {
        padding: 8px 16px;
    }
    
    .section-title h2 {
        font-size: var(--font-size-xl);
    }
    
    .expertise-card h4 {
        font-size: var(--font-size-base);
    }
    
    .info-text h4 {
        font-size: var(--font-size-base);
    }
    
    .info-text p, .info-text a {
        font-size: var(--font-size-sm);
    }
}

@media (max-width: 480px) {
    .product-item {
        height: 250px;
        margin-bottom: 20px;
    }
    
    .product-item:nth-child(odd) .product-image {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 18% 100%);
    }
    
    .product-item:nth-child(even) .product-image {
        clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
    }
    
    .product-item:nth-child(odd) .product-info {
        clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
        width: 40%;
    }
    
    .product-item:nth-child(even) .product-info {
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
        width: 40%;
    }
}

/* Animation styles */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes underlineGrow {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Apply animations to elements except product cards which have their own animation */
.expertise-card, .service-card, .mission, .vision, .stat-item, .testimonial-card, .contact-form {
    composes: animate;
}

.expertise-card:nth-child(1), .service-card:nth-child(1) { composes: stagger-1; }
.expertise-card:nth-child(2), .service-card:nth-child(2) { composes: stagger-2; }
.expertise-card:nth-child(3), .service-card:nth-child(3) { composes: stagger-3; }
.expertise-card:nth-child(4), .service-card:nth-child(4) { composes: stagger-4; }

/* Hero animations */
.hero-message h1 {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-message h1:nth-child(2) {
    animation-delay: 0.3s;
}

.hero-message p {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-message .btn {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.9s;
    opacity: 0;
}

/* Fix section title animation to be consistent with main style */
.section-title h2::after {
    animation: underlineGrow 0.8s ease forwards;
    animation-delay: 0.5s;
    width: 0;
}

/* Media queries for expertise section */
@media (max-width: 1200px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .our-expertise {
        padding: 30px 0;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .our-expertise .section-title h2 {
        font-size: 2rem;
    }
    
    .expertise-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .our-expertise {
        padding: 30px 0;
    }
    
    .expertise-card {
        padding: 20px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-icon i {
        font-size: var(--font-size-xl);
    }
    
    .expertise-card h4 {
        font-size: 1.1rem;
    }
}

/* About subtopics styling */
.about-subtopics {
    margin-top: 20px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-subtitle h3 {
    font-size: var(--font-size-lg);
    font-weight: 500;
    color: var(--text-color);
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
    animation: titleReveal 0.8s ease forwards;
    opacity: 0;
    text-transform: none;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

/* Default underline for Our Journey and Our Expertise subtitles */
.our-journey .section-subtitle h3::after,
.our-expertise .section-subtitle h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    border-radius: 2px;
    opacity: 1;
}

.our-journey {
    margin-top: 10px;
    text-align: center;
    padding: 30px 0;
    background-color: var(--bg-darker);
    color: var(--text-color);
}

.our-expertise {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    padding: 40px 0;
    position: relative;
    background-color: var(--bg-darker);
    text-align: center;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

@media (max-width: 768px) {
    .about-subtopics {
        margin-top: 20px;
    }
    
    .our-expertise {
        margin-top: 20px;
        padding: 30px 0;
    }
}

/* Add counter animation for stats */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item.active .stat-number {
    animation: countUp 0.8s ease forwards;
}

.stat-item.active .stat-text {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

/* Animation styles and existing staggered animations are already defined elsewhere in the CSS */

/* Animation keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes borderPulse {
    0% {
        border-color: rgba(197, 255, 0, 0.2);
    }
    50% {
        border-color: rgba(197, 255, 0, 0.8);
    }
    100% {
        border-color: rgba(197, 255, 0, 0.2);
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn var(--anim-duration-medium) var(--anim-timing) forwards;
    opacity: 0;
}

.fade-in-up {
    animation: fadeInUp var(--anim-duration-medium) var(--anim-timing) forwards;
    opacity: 0;
}

.fade-in-left {
    animation: fadeInLeft var(--anim-duration-medium) var(--anim-timing) forwards;
    opacity: 0;
}

.fade-in-right {
    animation: fadeInRight var(--anim-duration-medium) var(--anim-timing) forwards;
    opacity: 0;
}

.zoom-in {
    animation: zoomIn var(--anim-duration-medium) var(--anim-timing) forwards;
    opacity: 0;
}

/* Delay utilities */
.delay-0 { animation-delay: 0s; }
.delay-1 { animation-delay: calc(var(--anim-delay-base) * 1); }
.delay-2 { animation-delay: calc(var(--anim-delay-base) * 2); }
.delay-3 { animation-delay: calc(var(--anim-delay-base) * 3); }
.delay-4 { animation-delay: calc(var(--anim-delay-base) * 4); }
.delay-5 { animation-delay: calc(var(--anim-delay-base) * 5); }
.delay-6 { animation-delay: calc(var(--anim-delay-base) * 6); }

/* Add JS code to activate animations on scroll */
/*
document.addEventListener('DOMContentLoaded', function() {
    // Observer for scroll animations
    const observer = new IntersectionObserver((entries) => {
        entries.forEach(entry => {
            if (entry.isIntersecting) {
                entry.target.classList.add('active');
            }
        });
    }, { threshold: 0.1 });

    // Observe all elements with animate class
    document.querySelectorAll('.animate').forEach(el => {
        observer.observe(el);
    });
});
*/

/* Gallery styles and see more button */
.see-more-container {
    text-align: center;
    margin-top: 30px;
}

#see-more-btn {
    background-color: var(--primary-color);
    color: var(--bg-darker);
    padding: 12px 30px;
    font-size: var(--font-size-md);
    transition: all 0.3s ease;
}

#see-more-btn:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

/* Gallery Popup Styles */
.gallery-popup {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px;
}

.popup-content {
    position: relative;
    background-color: var(--bg-darker);
    margin: 30px auto;
    padding: 40px;
    max-width: 1200px;
    border-radius: 10px;
    box-shadow: none;
    animation: zoomIn 0.3s ease-in-out;
}

.popup-content h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: var(--font-size-3xl);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.popup-content h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--text-color);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.close-popup:hover {
    color: var(--primary-color);
}

.popup-section {
    margin-bottom: 40px;
}

.popup-section h3 {
    color: var(--text-color);
    font-size: var(--font-size-xl);
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid var(--primary-color);
}

.popup-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.popup-image-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.popup-image-item:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.popup-image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.popup-image-item:hover img {
    transform: scale(1.05);
}

/* Responsive styles for popup */
@media (max-width: 992px) {
    .popup-content {
        padding: 30px;
    }
    
    .popup-images {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .popup-content {
        padding: 20px;
    }
    
    .popup-images {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .popup-content h2 {
        font-size: var(--font-size-2xl);
    }
    
    .popup-section h3 {
        font-size: var(--font-size-lg);
    }
}

@media (max-width: 576px) {
    .popup-content {
        padding: 15px;
    }
    
    .popup-images {
        grid-template-columns: 1fr;
    }
    
    .popup-content h2 {
        font-size: var(--font-size-xl);
    }
    
    .close-popup {
        top: 10px;
        right: 15px;
        font-size: 28px;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.download-link {
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.download-link i {
    font-size: var(--font-size-base);
}

@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}

.mobile-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 768px) {
    .mobile-controls {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .hamburger.mobile-only {
        display: block !important;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        z-index: 1200;
    }
    
    .header-buttons {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        display: flex;
        gap: 5px;
    }
}

.mobile-nav-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 768px) {
    .header-container {
        padding: 10px 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    .logo {
        max-width: 55%; /* Reduced max-width to give more space to icons */
    }
    
    .mobile-nav-controls {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
        margin-right: 0; /* No margin needed when using justify-content: flex-end */
        position: relative; /* Ensure proper stacking context */
        z-index: 1100;
        padding-right: 5px; /* Add padding instead of margin */
    }
    
    .hamburger.mobile-only {
        display: block !important;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        z-index: 1200;
        margin-right: 0; /* Remove margin */
    }
    
    .hamburger i {
        font-size: 22px; /* Slightly smaller icon */
    }
    
    .header-buttons {
        display: flex;
        align-items: center;
        gap: 10px; /* Increased gap between buttons */
        position: relative;
        right: auto;
        top: auto;
        transform: none;
    }
    
    .download-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 34px; /* Reduced size */
        height: 34px; /* Reduced size */
        min-width: 34px; /* Ensure minimum width */
        min-height: 34px; /* Ensure minimum height */
        padding: 0;
        border-radius: 50%;
        overflow: visible; /* Ensure icon is not cut off */
    }
    
    .download-btn span {
        display: none;
    }
    
    .download-btn i {
        margin: 0;
        font-size: 16px;
    }
    
    .chat-btn {
        display: flex !important;
        width: 34px; /* Reduced size */
        height: 34px; /* Reduced size */
        min-width: 34px; /* Ensure minimum width */
        min-height: 34px; /* Ensure minimum height */
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin-right: 0; /* No margin needed */
        overflow: visible; /* Ensure icon is not cut off */
    }
    
    .chat-btn span {
        display: none;
    }
    
    .chat-btn i {
        margin: 0;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }
    
    .header-container {
        padding: 8px 10px; /* Reduced padding */
    }
    
    .logo {
        max-width: 50%; /* Further reduced for smaller screens */
    }
    
    .mobile-nav-controls {
        gap: 8px; /* Reduced gap for smaller screens */
        padding-right: 3px; /* Less padding */
    }
    
    .hamburger i {
        font-size: 20px; /* Smaller icon for smaller screens */
    }
    
    .header-buttons {
        gap: 8px; /* Reduced gap */
    }
    
    .download-btn, .chat-btn {
        width: 32px; /* Further reduced size */
        height: 32px; /* Further reduced size */
        min-width: 32px;
        min-height: 32px;
    }
    
    .download-btn i, .chat-btn i {
        font-size: 14px; /* Smaller icon */
    }
}

/* Button icon styles */
.btn-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: visible;
}

.btn-icon i {
    position: relative;
    z-index: 5;
    line-height: 1;
}

@media (max-width: 768px) {
    .btn-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
        min-height: 34px;
        border-radius: 50%;
        padding: 0;
    }

    .btn-icon span {
        display: none;
    }

    .btn-icon i {
        margin: 0;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .btn-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
    }
    
    .btn-icon i {
        font-size: 14px;
    }
}

/* WhatsApp Form Styles */
.whatsapp-header {
    background-color: #075E54;
    color: white;
    padding: 12px 15px;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 500;
}

.whatsapp-header i {
    font-size: 24px;
}

#whatsapp-form {
    background-color: #111;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

#whatsapp-form .form-group input,
#whatsapp-form .form-group textarea {
    background-color: #222;
    border: 1px solid #333;
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
    font-family: var(--font-family);
}

#whatsapp-form .form-group {
    padding: 0 15px;
    margin-bottom: 15px;
}

.whatsapp-btn {
    background-color: #25D366 !important;
    color: #000 !important;
    border-radius: 50px;
    padding: 12px 25px;
    margin: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: calc(100% - 30px);
}

.whatsapp-btn i {
    font-size: 20px;
}

.whatsapp-btn:hover {
    background-color: #128C7E !important;
    color: white !important;
}

/* Responsive styles for WhatsApp form */
@media (max-width: 768px) {
    .whatsapp-header {
        padding: 10px;
    }
    
    .whatsapp-btn {
        padding: 10px 20px;
    }
}

/* Add these mobile-specific styles for the hero section */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll; /* Better performance on mobile */
        background-image: url('src/images/home-page.jpg');
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        height: 100vh; /* Full viewport height */
        min-height: 500px; /* Ensure minimum height */
        padding-bottom: 40px;
    }
    
    .hero::before {
        background: rgba(0, 0, 0, 0.5); /* Keep the same overlay opacity as desktop */
    }
    
    .hero-message {
        max-width: 100%;
        width: 100%;
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 12px;
    }
}

@media (max-width: 576px) {
    .hero {
        background-image: url('src/images/home-page.jpg');
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        align-items: center;
        height: 100vh;
        padding-bottom: 0;
    }
    
    .hero::before {
        background: rgba(0, 0, 0, 0.5);
    }
    
    .hero-content {
        padding: 0 15px;
        width: 100%;
    }
    
    .hero-message {
        border-radius: 10px;
        width: 100%;
    }
} 