/* Reset and Base Styles */

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

:root {
    --primary-color: #1a237e;
    --secondary-color: #3949ab;
    --accent-color: #5c6bc0;
    --text-dark: #212121;
    --text-light: #757575;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #1a237e 0%, #3949ab 50%, #5c6bc0 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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


/* Navigation */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    box-shadow: none;
    z-index: 1000;
    transition: all 0.4s ease;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.navbar.scrolled::before {
    transform: scaleX(1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}


/* Şeffaf navbar'da beyaz yazılar */

.navbar:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.navbar:not(.scrolled) .nav-link:hover {
    color: var(--white);
}

.navbar:not(.scrolled) .nav-link.active {
    color: var(--white);
}

.navbar:not(.scrolled) .nav-link::after {
    background: var(--white);
}


/* Şeffaf navbar'da logo beyaz */

.navbar:not(.scrolled) .logo img {
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}


/* Şeffaf navbar'da hamburger beyaz (mobil) */

.navbar:not(.scrolled) .hamburger span {
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo {
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 35, 126, 0.3), transparent);
    animation: shine-logo 4s ease-in-out infinite;
}

@keyframes shine-logo {
    0%,
    100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

.logo img {
    height: 65px;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    animation: logo-pulse 3.5s ease-in-out infinite;
}

@keyframes logo-pulse {
    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 4px 8px rgba(26, 35, 126, 0.3));
    }
}

.logo img:hover {
    animation-play-state: paused;
    transform: scale(1.1) rotate(-2deg);
    filter: drop-shadow(0 6px 12px rgba(26, 35, 126, 0.4));
}

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

.nav-menu li {
    animation: fadeInDown 0.6s ease-out backwards;
}

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

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

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

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

.nav-menu li:nth-child(5) {
    animation-delay: 0.5s;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
    display: inline-block;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    background: var(--primary-color);
    opacity: 0.1;
    border-radius: 50%;
    transition: var(--transition);
    z-index: -1;
}

.nav-link:hover::before {
    width: 120%;
    height: 100%;
    border-radius: 10px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    width: 100%;
}


/* Language Switcher */

.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1.5rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
}

.navbar.scrolled .lang-btn {
    border-color: var(--primary-color);
    background: transparent;
    color: var(--primary-color);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.navbar.scrolled .lang-btn:hover {
    background: var(--bg-light);
}

.lang-btn.active {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.navbar.scrolled .lang-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    border-radius: 2px;
}


/* Hamburger aktif (X) animasyonu */

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* Hero Section - Professional Modern Design */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a1128;
    overflow: hidden;
}


/* Animated Background */

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(26, 35, 126, 0.1) 2px, transparent 2px), linear-gradient(90deg, rgba(26, 35, 126, 0.1) 2px, transparent 2px);
    background-size: 50px 50px;
    animation: grid-float 20s linear infinite;
}

@keyframes grid-float {
    0% {
        transform: translate(0, 0);
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translate(50px, 50px);
        opacity: 0.3;
    }
}


/* Gradient Orbs */

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    mix-blend-mode: screen;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #1a237e, transparent);
    top: -100px;
    left: -100px;
    animation: float-orb-1 25s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #3949ab, transparent);
    bottom: -100px;
    right: -100px;
    animation: float-orb-2 20s ease-in-out infinite;
}

.orb-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #5c6bc0, transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float-orb-3 30s ease-in-out infinite;
}

@keyframes float-orb-1 {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(100px, 100px);
    }
}

@keyframes float-orb-2 {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-100px, -100px);
    }
}

@keyframes float-orb-3 {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}


/* Hero Content */

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
}


/* Professional Title with Shine Effect */

.hero-title-new {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    position: relative;
    overflow: hidden;
    padding: 0.8rem 0;
}

.hero-title-new::before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100%;
    background: linear-gradient( 90deg, transparent 0%, transparent 20%, rgba(255, 255, 255, 0.1) 40%, rgba(144, 202, 249, 0.6) 50%, rgba(255, 255, 255, 1) 55%, rgba(144, 202, 249, 0.6) 60%, rgba(255, 255, 255, 0.1) 80%, transparent 100%);
    animation: shineSlide 4s ease-in-out 2s infinite;
    z-index: 1;
    pointer-events: none;
    transform: skewX(-20deg);
}

@keyframes shineSlide {
    0% {
        right: 100%;
    }
    100% {
        right: -100%;
    }
}

.letter-animate {
    display: inline-block;
    opacity: 0;
    animation: letterReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    position: relative;
}

.letter-animate:nth-child(1) {
    animation-delay: 0.3s;
}

.letter-animate:nth-child(2) {
    animation-delay: 0.4s;
}

.letter-animate:nth-child(3) {
    animation-delay: 0.5s;
}

.letter-animate:nth-child(5) {
    animation-delay: 0.7s;
}

.letter-animate:nth-child(6) {
    animation-delay: 0.8s;
}

.letter-animate:nth-child(7) {
    animation-delay: 0.9s;
}

.letter-animate:nth-child(8) {
    animation-delay: 1.0s;
}

.letter-animate:nth-child(10) {
    animation-delay: 1.2s;
}

.letter-animate:nth-child(11) {
    animation-delay: 1.3s;
}

.letter-animate:nth-child(12) {
    animation-delay: 1.4s;
}

.letter-animate:nth-child(13) {
    animation-delay: 1.5s;
}

.letter-animate:nth-child(14) {
    animation-delay: 1.6s;
}

@keyframes letterReveal {
    0% {
        opacity: 0;
        transform: translateY(80px) rotateX(-90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.space {
    display: inline-block;
    width: 1.5rem;
}


/* Tagline & Subtitle */

.hero-tagline {
    font-size: 1.4rem;
    font-weight: 600;
    color: #90caf9;
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2.2s forwards;
}

.hero-subtitle-new {
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2.5s forwards;
}


/* Modern Buttons */

.hero-buttons-new {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2.8s forwards;
}

.btn-modern {
    padding: 1.2rem 2.8rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-modern:hover::before {
    width: 350px;
    height: 350px;
}

.btn-modern span,
.btn-modern svg {
    position: relative;
    z-index: 1;
}

.btn-modern-primary {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(26, 35, 126, 0.5);
}

.btn-modern-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(26, 35, 126, 0.7);
}

.btn-modern-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-modern-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-4px);
}


/* Scroll Indicator */

.scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.8s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 28px;
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

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


/* Hero Responsive Design */

@media (max-width: 1024px) {
    .hero-title-new {
        font-size: 2.8rem;
        letter-spacing: 0.1em;
    }
    .hero-tagline {
        font-size: 1.1rem;
    }
    .hero-subtitle-new {
        font-size: 1rem;
    }
    .orb-1,
    .orb-2 {
        width: 380px;
        height: 380px;
    }
    .orb-3 {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-title-new {
        font-size: 2.2rem;
        letter-spacing: 0.08em;
        padding: 0.5rem 0;
    }
    .hero-tagline {
        font-size: 1rem;
    }
    .hero-subtitle-new {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    .btn-modern {
        padding: 1rem 1.8rem;
        font-size: 0.95rem;
    }
    .gradient-orb {
        filter: blur(55px);
    }
    .orb-1,
    .orb-2,
    .orb-3 {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .hero-title-new {
        font-size: 1.6rem;
        letter-spacing: 0.06em;
        padding: 0.4rem 0;
    }
    .hero-tagline {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    .hero-subtitle-new {
        font-size: 0.85rem;
        margin-bottom: 1.8rem;
    }
    .btn-modern {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    .hero-buttons-new {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
        gap: 1rem;
    }
    .btn-modern {
        width: 100%;
        justify-content: center;
    }
    .gradient-orb {
        filter: blur(35px);
        opacity: 0.5;
    }
    .orb-1,
    .orb-2,
    .orb-3 {
        width: 220px;
        height: 220px;
    }
    .space {
        width: 0.5rem;
    }
}


/* General Animations */

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

.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s backwards;
}

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

.pulse-btn {
    animation: pulse 2s infinite;
}


/* Section Styles */

section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient);
    margin: 0 auto 1rem;
    border-radius: 2px;
    animation: expandWidth 1s ease-out;
}

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

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
}


/* Product Showcase Section */

.product-showcase {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.product-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid2" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(26,35,126,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid2)"/></svg>');
    opacity: 0.5;
}

.product-showcase::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(92, 107, 192, 0.3), transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate-glow 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate-glow {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg) scale(1.2);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
    }
}

.showcase-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 400px;
}

.floating-products {
    position: relative;
    width: 100%;
    height: 400px;
}

.floating-product {
    position: absolute;
    width: 180px;
    height: 200px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.floating-product::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.floating-product:hover::before {
    opacity: 1;
    animation: ripple-expand 0.8s ease-out;
}

@keyframes ripple-expand {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.floating-product img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: var(--transition);
}

.floating-product:hover img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 15px 40px rgba(26, 35, 126, 0.4));
}

.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(26, 35, 126, 0.2), transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse-glow {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}


/* Position each product */

.product-1 {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    animation: float-1 4s ease-in-out infinite;
}

.product-2 {
    top: 20%;
    left: 25%;
    animation: float-2 5s ease-in-out infinite 0.5s;
}

.product-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float-3 4.5s ease-in-out infinite 1s;
    z-index: 2;
}

.product-4 {
    top: 20%;
    right: 25%;
    animation: float-4 5.5s ease-in-out infinite 1.5s;
}

.product-5 {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    animation: float-5 4.8s ease-in-out infinite 2s;
}

@keyframes float-1 {
    0%,
    100% {
        transform: translateY(-50%) translateX(0) rotate(0deg);
    }
    50% {
        transform: translateY(-60%) translateX(10px) rotate(5deg);
    }
}

@keyframes float-2 {
    0%,
    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) translateX(-10px) rotate(-5deg);
    }
}

@keyframes float-3 {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -55%) scale(1.05);
    }
}

@keyframes float-4 {
    0%,
    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) translateX(10px) rotate(5deg);
    }
}

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

.showcase-content {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    width: 100%;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    animation: fadeInUp 1s ease-out, text-shimmer 5s ease-in-out infinite;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
}

@keyframes text-shimmer {
    0%,
    100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.showcase-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    animation: fadeInUp 1s ease-out 0.3s backwards;
}


/* About Section */

.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: float-about-image 4s ease-in-out infinite;
}

@keyframes float-about-image {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
    animation: rotate-shine 6s linear infinite;
    z-index: 1;
}

@keyframes rotate-shine {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 40%, rgba(26, 35, 126, 0.1) 100%);
    animation: pulse-border 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes pulse-border {
    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

.image-wrapper:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(26, 35, 126, 0.3);
    animation-play-state: paused;
}

.image-wrapper img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 0;
    transition: var(--transition);
}

.image-wrapper:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: 3;
}

.image-wrapper:hover .image-overlay {
    opacity: 0.2;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-card h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}


/* Products Section */

.products {
    background: var(--bg-light);
}

.product-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.8rem 2rem;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.category-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.category-btn.active {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 1;
}

.product-card.hide {
    display: none;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #4caf50;
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    animation: pulse 2s infinite;
}

.product-badge.popular {
    background: #ff9800;
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.15) rotate(2deg);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 35, 126, 0.7), rgba(92, 107, 192, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-btn {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transform: translateY(20px);
    transition: var(--transition);
}

.product-card:hover .product-btn {
    transform: translateY(0);
}

.product-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.product-content {
    padding: 2rem;
}

.product-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
}

.product-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}


/* Certificates Section - Modern Design */

.certificates {
    background: var(--white);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.certificate-card-new {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #e8eaf6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.certificate-card-new::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(26, 35, 126, 0.05), transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
}

.certificate-card-new:hover::before {
    opacity: 1;
    transform: scale(1.5);
}

.certificate-card-new:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(26, 35, 126, 0.2);
}

.cert-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    transition: var(--transition);
}

.certificate-card-new:hover .cert-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.cert-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cert-content p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.cert-badges {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.cert-badge {
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
    background: rgba(92, 107, 192, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-weight: 500;
}

.cert-view-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.cert-view-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cert-view-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cert-view-btn svg,
.cert-view-btn span {
    position: relative;
    z-index: 1;
}

.cert-view-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.4);
}


/* Certificate Responsive */

@media (max-width: 768px) {
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .certificate-card-new {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .certificate-card-new {
        padding: 1.8rem;
    }
    .cert-icon-box {
        width: 65px;
        height: 65px;
    }
    .cert-icon-box svg {
        width: 36px;
        height: 36px;
    }
    .cert-content h3 {
        font-size: 1.2rem;
    }
    .cert-content p {
        font-size: 0.95rem;
    }
}


/* PDF Preview Modal */

.pdf-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.pdf-modal.active {
    display: block;
}

.pdf-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.pdf-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    height: 85vh;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideInModal 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideInModal {
    from {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.pdf-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.pdf-modal-close:hover {
    background: var(--secondary-color);
    transform: rotate(90deg) scale(1.1);
}

.pdf-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--gradient);
    color: var(--white);
}

.pdf-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.pdf-download-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.pdf-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.pdf-modal-body {
    flex: 1;
    background: #2c2c2c;
    overflow: auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pdf-viewer-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pdf-controls {
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.pdf-nav-btn {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-weight: bold;
    font-size: 1.2rem;
}

.pdf-nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.pdf-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-info {
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.pdf-canvas-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    padding: 2rem;
    position: relative;
}

#pdfCanvas {
    max-width: 100%;
    height: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    background: var(--white);
}

.pdf-loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid var(--white);
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .pdf-modal-content {
        width: 95%;
        height: 90vh;
    }
    .pdf-modal-header {
        padding: 1rem;
    }
    .pdf-modal-header h3 {
        font-size: 1.2rem;
    }
    .pdf-modal-close {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
    }
    .pdf-download-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    .pdf-controls {
        padding: 0.8rem;
        gap: 0.5rem;
    }
    .pdf-nav-btn {
        width: 35px;
        height: 35px;
    }
    .page-info {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    .pdf-canvas-container {
        padding: 1rem;
    }
}


/* Contact Section - Modern Design */

.contact {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 50%, #f5f7fa 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(26,35,126,0.05)"/></svg>');
    opacity: 0.5;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-header {
    margin-bottom: 1.5rem;
}

.contact-info-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-info-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.info-card {
    background: var(--white);
    padding: 1.8rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-card:hover {
    transform: translateX(8px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(26, 35, 126, 0.15);
}

.info-icon-wrapper {
    flex-shrink: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.info-card:hover .info-icon {
    transform: rotate(5deg) scale(1.1);
}

.info-content h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-content p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0.3rem;
}

.info-content p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.info-content p a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.info-note {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--white);
    background: var(--accent-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-top: 0.5rem;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.map-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}


/* Map Card */

.map-card {
    grid-column: 1 / -1;
    padding: 0;
    overflow: hidden;
}

.map-container {
    width: 100%;
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}


/* Modern Contact Form */

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(26, 35, 126, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    display: none;
    color: #f44336;
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

.form-group.error .form-error {
    display: block;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #f44336;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(26, 35, 126, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::before {
    width: 400px;
    height: 400px;
}

.btn-submit span,
.btn-submit svg {
    position: relative;
    z-index: 1;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26, 35, 126, 0.5);
}

.btn-submit:active {
    transform: translateY(-1px);
}


/* Footer */

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-contact p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}


/* Social Media Floating Buttons */

.social-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.social-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: bounce-in 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
}

.social-btn:nth-child(1) {
    animation-delay: 0.1s;
}

.social-btn:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes bounce-in {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(20deg);
    }
    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

.social-btn svg {
    width: 28px;
    height: 28px;
    transition: var(--transition);
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.social-btn:active {
    transform: translateY(-2px) scale(1.05);
}

.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.whatsapp:hover svg {
    transform: rotate(15deg) scale(1.1);
}

@keyframes pulse-whatsapp {
    0%,
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

.tooltip {
    position: absolute;
    right: 75px;
    background: var(--text-dark);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--text-dark);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.social-btn:hover .tooltip {
    opacity: 1;
    transform: translateX(0);
}


/* Responsive Design */

@media (max-width: 768px) {
    .language-switcher {
        order: 2;
        margin-left: auto;
        margin-right: 1rem;
    }
    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    .hamburger {
        display: flex;
        order: 3;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
    }
    .nav-menu.active {
        left: 0;
    }
    .about-content {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .product-card {
        max-width: 500px;
        margin: 0 auto;
    }
    .product-image {
        height: 250px;
    }
    .product-content {
        padding: 1.5rem;
    }
    .product-content h3 {
        font-size: 1.3rem;
    }
    .product-content p {
        font-size: 0.95rem;
    }
    .product-features li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-form-wrapper {
        padding: 2.5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .product-categories {
        gap: 0.5rem;
    }
    .category-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    .floating-products {
        height: 300px;
    }
    .floating-product {
        width: 120px;
        height: 150px;
    }
    .product-1 {
        left: 2%;
        top: 40%;
    }
    .product-2 {
        left: 20%;
        top: 10%;
    }
    .product-3 {
        left: 50%;
        top: 45%;
    }
    .product-4 {
        right: 20%;
        top: 15%;
    }
    .product-5 {
        right: 2%;
        top: 40%;
    }
    .showcase-title {
        font-size: 1.8rem;
    }
    .showcase-subtitle {
        font-size: 1rem;
    }
    .social-btn {
        width: 55px;
        height: 55px;
    }
    .social-btn svg {
        width: 26px;
        height: 26px;
    }
}


/* Loading Animation */

.loading {
    opacity: 0;
    transform: translateY(50px);
}

.loaded {
    animation: fadeInUp 0.8s ease-out forwards;
}

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

@media (max-width: 480px) {
    .floating-products {
        height: 250px;
    }
    .floating-product {
        width: 80px;
        height: 100px;
    }
    .product-showcase {
        padding: 4rem 0;
    }
    .showcase-title {
        font-size: 1.5rem;
    }
    .showcase-subtitle {
        font-size: 0.9rem;
    }
    .products-grid {
        gap: 1.5rem;
    }
    .product-card {
        border-radius: 16px;
    }
    .product-image {
        height: 220px;
    }
    .product-content {
        padding: 1.2rem;
    }
    .product-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    .product-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    .product-features li {
        font-size: 0.85rem;
        padding: 0.3rem 0;
        padding-left: 1.2rem;
    }
    .product-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    .category-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
    .contact-content {
        gap: 2rem;
    }
    .contact-info-header h3 {
        font-size: 1.5rem;
    }
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    .form-header h3 {
        font-size: 1.5rem;
    }
    .info-card {
        padding: 1.5rem;
    }
    .map-container {
        height: 250px;
    }
    .map-link {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    .btn-submit {
        width: 100%;
        padding: 1rem 2rem;
    }
    .social-floating {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    .social-btn {
        width: 50px;
        height: 50px;
    }
    .social-btn svg {
        width: 24px;
        height: 24px;
    }
    .tooltip {
        display: none;
    }
}


/* Load More Button */

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(26, 35, 126, 0.3);
    position: relative;
    overflow: hidden;
}

.load-more-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.load-more-btn:hover::before {
    width: 400px;
    height: 400px;
}

.load-more-btn span,
.load-more-btn svg {
    position: relative;
    z-index: 1;
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26, 35, 126, 0.5);
}

.load-more-btn:active {
    transform: translateY(-1px);
}

.load-more-btn svg {
    transition: transform 0.3s ease;
}

.load-more-btn:hover svg {
    transform: translateY(3px);
}

.product-count-badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.show-less-btn svg {
    transform: rotate(180deg);
}

.show-less-btn:hover svg {
    transform: rotate(180deg) translateY(-3px);
}

@media (max-width: 768px) {
    .load-more-btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    .product-count-badge {
        font-size: 0.85rem;
        padding: 0.3rem 0.7rem;
    }
}


/* Product Detail Modal */

.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.product-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.product-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.8) translateY(-50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.product-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    color: var(--primary-color);
}

.product-modal-close:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg) scale(1.1);
}

.product-modal-body {
    overflow-y: auto;
    max-height: 90vh;
    padding: 3rem;
}

.modal-product-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--bg-light);
}

.modal-product-image {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.modal-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-product-title-section {
    flex: 1;
}

.modal-product-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.modal-product-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.modal-product-description {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modal-product-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.modal-feature-badge {
    padding: 0.4rem 0.8rem;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}

.modal-detail-section {
    margin-top: 2rem;
}

.modal-detail-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-detail-title::before {
    content: '';
    width: 4px;
    height: 28px;
    background: var(--gradient);
    border-radius: 2px;
}

.modal-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.modal-detail-item {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.modal-detail-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.modal-detail-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-detail-label::before {
    content: '▸';
    color: var(--accent-color);
}

.modal-detail-value {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.modal-contact-cta {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--gradient);
    border-radius: 16px;
    text-align: center;
    color: var(--white);
}

.modal-contact-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.modal-contact-cta p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.modal-contact-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1.05rem;
}

.modal-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .product-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 16px;
    }
    .product-modal-body {
        padding: 2rem 1.5rem;
    }
    .modal-product-header {
        flex-direction: column;
        gap: 1rem;
    }
    .modal-product-image {
        width: 100%;
        height: 200px;
    }
    .modal-product-title {
        font-size: 1.5rem;
    }
    .modal-product-description {
        font-size: 1rem;
    }
    .modal-detail-title {
        font-size: 1.3rem;
    }
    .modal-detail-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .modal-detail-item {
        padding: 1rem;
    }
    .modal-detail-value {
        font-size: 0.95rem;
    }
    .modal-contact-cta {
        padding: 1.5rem;
    }
    .modal-contact-cta h3 {
        font-size: 1.3rem;
    }
    .modal-contact-cta p {
        font-size: 1rem;
    }
    .modal-contact-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    .modal-product-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .product-modal-content {
        width: 98%;
        border-radius: 12px;
    }
    .product-modal-body {
        padding: 1.5rem 1rem;
    }
    .modal-product-image {
        height: 180px;
    }
    .modal-product-title {
        font-size: 1.3rem;
    }
    .modal-product-description {
        font-size: 0.95rem;
    }
    .modal-feature-badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    .modal-detail-title {
        font-size: 1.2rem;
    }
    .modal-detail-item {
        padding: 0.9rem;
    }
    .modal-detail-label {
        font-size: 0.8rem;
    }
    .modal-detail-value {
        font-size: 0.9rem;
    }
    .modal-contact-cta {
        padding: 1.2rem;
    }
    .modal-contact-cta h3 {
        font-size: 1.2rem;
    }
    .modal-contact-cta p {
        font-size: 0.95rem;
    }
    .modal-contact-btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }
    .modal-product-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }
}


/* Certificate Button Styles */

.cert-view-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.cert-view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 35, 126, 0.3);
    color: white;
}

.cert-view-btn svg {
    transition: var(--transition);
}

.cert-view-btn:hover svg {
    transform: scale(1.1);
}


/* Image Gallery Lightbox */

.image-gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.image-gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.image-gallery-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.image-gallery-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    color: var(--primary-color);
}

.image-gallery-close:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg) scale(1.1);
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    color: var(--primary-color);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.15);
}

.gallery-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.gallery-nav-btn:disabled:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    transform: translateY(-50%) scale(1);
}

.image-gallery-main {
    position: relative;
    max-width: 100%;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.image-gallery-main img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-gallery-main img.loaded {
    opacity: 1;
}

.gallery-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.image-gallery-main img.loaded~.gallery-loader {
    display: none;
}

.gallery-info {
    text-align: center;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.gallery-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-counter {
    font-size: 1rem;
    opacity: 0.8;
}

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 600px;
}

.gallery-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
    opacity: 0.6;
}

.gallery-thumbnail:hover {
    opacity: 1;
    transform: scale(1.1);
}

.gallery-thumbnail.active {
    border-color: var(--white);
    opacity: 1;
}

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

@media (max-width: 768px) {
    .image-gallery-content {
        width: 95%;
        height: 95vh;
    }
    .gallery-nav-btn {
        width: 50px;
        height: 50px;
    }
    .gallery-prev {
        left: 10px;
    }
    .gallery-next {
        right: 10px;
    }
    .image-gallery-main {
        max-height: 60vh;
    }
    .image-gallery-main img {
        max-height: 60vh;
    }
    .gallery-info h3 {
        font-size: 1.2rem;
    }
    .gallery-thumbnails {
        gap: 0.5rem;
    }
    .gallery-thumbnail {
        width: 60px;
        height: 60px;
    }
    .image-gallery-close {
        width: 45px;
        height: 45px;
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .gallery-nav-btn {
        width: 45px;
        height: 45px;
    }
    .gallery-nav-btn svg {
        width: 20px;
        height: 20px;
    }
    .image-gallery-main {
        max-height: 50vh;
        margin-bottom: 1rem;
    }
    .image-gallery-main img {
        max-height: 50vh;
        border-radius: 8px;
    }
    .gallery-info {
        margin-bottom: 1rem;
    }
    .gallery-info h3 {
        font-size: 1.1rem;
    }
    .gallery-counter {
        font-size: 0.9rem;
    }
    .gallery-thumbnails {
        gap: 0.4rem;
        max-width: 100%;
    }
    .gallery-thumbnail {
        width: 50px;
        height: 50px;
    }
    .image-gallery-close {
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
    }
    .image-gallery-close svg {
        width: 20px;
        height: 20px;
    }
}