@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');



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

        html, body {
            min-height: 100%;
            overflow-x: hidden;
            overscroll-behavior: none;
            background: #0f172a;
          }
          
          

        /* Footer */
        .footer {
            background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
            color: var(--text-light);
            padding: 3rem 0 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grid" width="12" height="12" patternUnits="userSpaceOnUse"><path d="M 12 0 L 0 0 0 12" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grid)"/></svg>');
            opacity: 0.4;
        }

        .footer::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            position: relative;
            z-index: 2;
        }

        .footer-left p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin: 0;
        }

        .footer-right {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-right a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-right a:hover {
            color: var(--text-light);
            transform: translateY(-1px);
        }

        .footer-right a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -3px;
            left: 0;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .footer-right a:hover::after {
            width: 100%;
        }

        /* Footer Mobile Responsiveness */
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .footer-right {
                justify-content: center;
                gap: 1.5rem;
            }

            .footer-right a {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 480px) {
            .footer-right {
                flex-direction: column;
                gap: 1rem;
            }
        }

        :root {
            --primary-color: #2563eb; /* strong blue */
            --secondary-color: #1d4ed8; /* darker blue */
            --accent-color: #38bdf8; /* sky blue accent */
            --accent-pink: #3b82f6; /* softer blue tint instead of pink */
            --accent-cyan: #06b6d4; /* cyan accent kept */
            
            --text-primary: #0f172a; /* dark navy for readability */
            --text-secondary: #475569; /* softer slate blue */
            --text-light: #ffffff;
            
            --bg-primary: #f8fafc; /* very light blue-gray */
            --bg-secondary: #e2e8f0; /* light slate background */
            --bg-dark: #0f172a; /* dark navy */
            --bg-card: rgba(255, 255, 255, 0.95);
          
            --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            --gradient-secondary: linear-gradient(135deg, #38bdf8 0%, #06b6d4 100%);
            --gradient-tertiary: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
            --gradient-elegant: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #38bdf8 100%);
          
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 
                         0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 
                         0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 
                         0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
          
            --glass: rgba(255, 255, 255, 0.15);
            --glass-border: rgba(255, 255, 255, 0.2);
          }
          

        body {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            scroll-behavior: smooth;
            overflow-x: hidden;
            background: var(--bg-primary);
        }

        /* Navigation */
        nav {
            position: absolute;
            top: 0;
            width: 100%;
            background: transparent; /* 👈 no background color */
            backdrop-filter: none;   /* 👈 remove blur until scrolled */
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: none;     /* remove faint white line */
          }


        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 1.75rem;
            font-weight: 700;
            background: var(--gradient-elegant);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
        }

        .lang-switch {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-family: 'Poppins', sans-serif;
            color: rgba(255, 255, 255, 0.75); /* 👈 sets color for the slash */
          }
          
          .lang-switch a {
            color: inherit; /* 👈 inherits from parent */
            font-weight: 400;
            font-size: 0.9rem;
            text-decoration: none;
            letter-spacing: 0.5px;
            transition: color 0.3s ease, opacity 0.3s ease;
          }
          
          .lang-switch a:hover {
            color: #fff;
            opacity: 1;
          }
          
          .lang-switch a.active {
            color: #fff;
            font-weight: 600;
          }
          

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            font-family: 'Poppins', sans-serif;
            text-decoration: none;
            color: #fff;
            font-weight: 300;
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-links a:hover {
            color: var(--primary-color);
            transform: translateY(-1px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background: var(--gradient-primary);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateX(-50%);
            border-radius: 1px;
        }

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

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .hamburger {
            width: 25px;
            height: 3px;
            background: #ffff;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 1px;
        }

        .mobile-menu-toggle.active .hamburger:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .mobile-menu-toggle.active .hamburger:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active .hamburger:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: rgba(15, 23, 42, 0.98);
            backdrop-filter: blur(20px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 999;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-nav-links {
            list-style: none;
            text-align: center;
        }

        .mobile-nav-links li {
            margin: 2rem 0;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-menu.active .mobile-nav-links li {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-menu.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
        .mobile-menu.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
        .mobile-menu.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }
        .mobile-menu.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.4s; }

        .mobile-nav-links a {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 2.5rem;
            font-weight: 500;
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
            background: var(--gradient-elegant);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .mobile-nav-links a:hover {
            transform: scale(1.05);
        }

        .mobile-lang-switch {
            position: absolute;
            bottom: 40px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            gap: 0.4rem;
            color: rgba(255, 255, 255, 0.7);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
          }
          
          .mobile-menu.active .mobile-lang-switch {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.4s;
          }
          
          .mobile-lang-switch a {
            color: inherit;
            text-decoration: none;
            font-weight: 400;
            transition: color 0.3s ease;
          }
          
          .mobile-lang-switch a.active {
            color: #fff;
            font-weight: 600;
          }
          
          .mobile-lang-switch a:hover {
            color: var(--accent-color);
          }
          
          .mobile-lang-switch .divider {
            color: rgba(255, 255, 255, 0.4);
          }
          

 /* ===================================================
   Luxentis Hero Section – Local Luxembourg Version
   =================================================== */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  /* Remove old gradient background for photo hero */
  .hero.hero--photo {
    background: none !important;
  }
  
  /* ===================================================
   Luxentis Hero Section – Local Luxembourg Version
   =================================================== */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  /* Remove old gradient background for photo hero */
  .hero.hero--photo {
    background: none !important;
  }
  
  /* ==============================================
     Background Image Layer
     ============================================== */
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120vh; /* ✅ Extra height to prevent gray gap */
    overflow: hidden;
    z-index: 0;
  }
  
  .hero-bg picture,
  .hero-bg img {
    width: 100%;
    height: 120%; /* ✅ Match height with container */
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(1.05) contrast(0.95) brightness(0.9);
    transform: scale(1.05);
    transition: transform 0.3s ease;
  }
  
  /* ==============================================
     Overlay Tint for Brand Consistency
     ============================================== */
  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(to bottom, rgba(15,23,42,0.7) 0%, rgba(15,23,42,0.45) 45%, rgba(15,23,42,0.75) 100%),
      radial-gradient(circle at 20% 80%, rgba(37,99,235,0.25) 0%, transparent 60%);
  }
  
  
  /* ==============================================
     Main Hero Content
     ============================================== */
  .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 2rem;
  }
  
  .hero-subtitle {
    text-align: left;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.2s forwards;
  }
  
  .hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.4s forwards;
    text-align: center;
    color: #fff;
    text-align: left;
    
  
  }
  
  
  .hero-content .subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.6s forwards;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* ==============================================
     CTA Button
     ============================================== */
  .cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: rgba(255,255,255,0.2);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.8s forwards;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .cta-button:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255,255,255,0.4);
  }
  
  /* ==============================================
     Scroll Indicator
     ============================================== */
  .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
  }
  
  .scroll-indicator:hover {
    border-color: rgba(255,255,255,0.9);
  }
  
  .scroll-indicator::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: indicatorScroll 2s infinite;
  }
  
  @keyframes indicatorScroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(20px); opacity: 0; }
  }
  
  /* ==============================================
     Animations for Shapes + Fade In
     ============================================== */
  @keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes floatShape1 {
    0%,100% { transform: translateY(0) translateX(0) rotate(0); }
    25% { transform: translateY(-30px) translateX(20px) rotate(90deg); }
    50% { transform: translateY(-15px) translateX(-10px) rotate(180deg); }
    75% { transform: translateY(-40px) translateX(15px) rotate(270deg); }
  }
  @keyframes floatShape2 {
    0%,100% { transform: translateY(0) translateX(0) scale(1); }
    33% { transform: translateY(25px) translateX(-20px) scale(1.1); }
    66% { transform: translateY(-20px) translateX(25px) scale(0.9); }
  }
  @keyframes floatShape3 {
    0%,100% { transform: translateY(0) translateX(0) rotate(0); }
    50% { transform: translateY(-25px) translateX(-30px) rotate(180deg); }
  }
  @keyframes floatShape4 {
    0%,100% { transform: translateY(0) translateX(0) rotate(0); }
    25% { transform: translateY(20px) translateX(-15px) rotate(45deg); }
    50% { transform: translateY(-10px) translateX(30px) rotate(90deg); }
    75% { transform: translateY(15px) translateX(-20px) rotate(135deg); }
  }
  @keyframes floatShape5 {
    0%,100% { transform: translateY(0) translateX(0) scale(1); }
    50% { transform: translateY(-35px) translateX(20px) scale(1.2); }
  }
  @keyframes floatShape6 {
    0%,100% { transform: translateY(0) translateX(0) rotate(0); }
    33% { transform: translateY(-15px) translateX(10px) rotate(60deg); }
    66% { transform: translateY(10px) translateX(-25px) rotate(120deg); }
  }
  
  /* ==============================================
     Responsive Adjustments
     ============================================== */
  @media (max-width: 768px) {
    .hero-content h1 { font-size: 3rem; }
    .hero-content .subtitle { font-size: 1.1rem; }
  }
  
  @media (max-width: 480px) {
    .hero-content h1 { font-size: 2.2rem; }
    .cta-button { padding: 1rem 2rem; font-size: 0.9rem; }
  }
  

        /* Section Styles */
        section {
            padding: 8rem 0;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 3.5rem;
            font-weight: 600;
            margin-bottom: 4rem;
            background: var(--gradient-elegant);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: var(--gradient-primary);
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

/* Press Section */
.press {
    background: linear-gradient(to bottom, rgba(255,255,255,0.05) 0%, #fafafa 100%);
    padding: 40px 0 20px; 
    margin-top: -30px; /* overlap slightly */  
    text-align: center;
    overflow: hidden;
    position: relative;
  
  }
  
  .press-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 50px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
  }
  
  
  
  /* The scrolling container */
  .press-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 50px;
  }
  
  /* The moving track */
  .press-slide-track {
    display: flex;
    width: calc(200px * 9); /* smaller width so the loop is tighter */
    animation: scroll 25s linear infinite;
  }
   
  .press-logo {
    height: 45px;
    width: 200px;
    object-fit: contain;
    margin-right: 40px; /* reduced from 80px to tighten spacing */
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.85;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }
  
  .press-logo:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.05);
  }
  
  /* The magic: continuous loop */
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-240px * 3)); } /* width(200) + margin(40) = 240 */
  }
  
  /* Optional responsive tweak */
  @media (max-width: 768px) {
    .press {
      padding: 50px 0 35px; /* a bit more space below logos */
    }

    .press-slide-track {
      animation-duration: 20s;
    }
  
    .press-logo {
      width: 160px;         /* smaller width so more fit on screen */
      margin-right: 20px;   /* tighter spacing between each logo */
    }
  
    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(calc(-180px * 3)); } /* width(160) + margin(20) */
    }
  }
  
  
  
        /* About Section */
        .about {
            background: var(--bg-secondary);
            position: relative;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
        }

        .about-content {
            display: grid;

            grid-template-columns: 1fr 1.5fr;
            gap: 6rem;
            align-items: center;
            position: relative;
        }

        .about-image {
            width: 100%;
            height: 500px;
            background: url('images/aboutus.jpg') center/cover;
            border-radius: 30px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-2xl);
            transform: rotate(-2deg);
            transition: transform 0.4s ease;
        }

        .about-image:hover {
            transform: rotate(0deg) scale(1.02);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.2) 100%);
            transition: opacity 0.3s ease;
        }

        .about-image:hover::before {
            opacity: 0.7;
        }

        .about-image::after {

        }

        .about-text h3 {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--text-primary);
            font-weight: 500;
            line-height: 1.3;
        }

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

        .skills {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }

        .skill-tag {
            padding: 0.75rem 1.5rem;
            background: var(--bg-card);
            color: var(--primary-color);
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            border: 1px solid rgba(99, 102, 241, 0.2);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .skill-tag:hover {
            background: var(--primary-color);
            color: var(--text-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        
        /* =============================================
   Modern About Us Section (Luxentis Upgrade)
   ============================================= */
.about-modern {
    background: #fafafa ;
    padding: 5rem 0 8rem;
    position: relative;
  }
  
  .about-modern-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
  }
  
  .about-modern-text {
    flex: 1 1 45%;
  }
  
  .about-modern-text .section-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .about-modern-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .about-modern-text p {
    font-family: 'Montserrat', sans-serif;
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
  }
  
  .about-btn {
    display: inline-block;
    background: var(--gradient-primary);
    color: #fff;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
  }
  
  .about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.4);
  }
  
  /* Image Card */
  .about-modern-image {
    position: relative;
    flex: 1 1 45%;
    text-align: center;
  }
  
  .about-modern-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
  }
  
  
  /* Responsive */
  @media (max-width: 900px) {
    .about-modern-container {
      flex-direction: column;
      text-align: center;
    }
  
    .about-modern-text {
      flex: 1 1 100%;
    }
  
    .about-modern-image img {
      max-width: 400px;
    }
  
    .review-badge {
      position: static;
      display: inline-block;
      margin-bottom: 1rem;
    }
     .about-modern {
      padding-top: 6rem; /* add gentle top padding for comfort */
    }
  }
  
  /* =============================================
   Services We Excel At Section – Luxentis 2025
   ============================================= */
.services {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
}

/* soft blue glow for depth and motion */
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(37,99,235,0.25) 0%, transparent 60%),
              radial-gradient(circle at 70% 20%, rgba(59,130,246,0.2) 0%, transparent 65%);
  z-index: 0;
}

/* ensure content sits above the background */
.services * {
  position: relative;
  z-index: 1;
}

  
  /* Section Title */
  .services .section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    text-align: center;
    color: #ffffff; /* ✅ pure white text */
    background: none;
    -webkit-text-fill-color: #ffffff; /* ✅ ensures white in Safari */
    margin-bottom: 4rem;
  }
  
  
  
  /* Grid Layout */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
    margin-top: 4rem;
    justify-content: center;
    padding: 0 6rem; /* ✅ adds space on left and right */
  }
  
  /* Service Box */
  .service-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: all 0.4s ease;
    color: var(--text-primary);
  }
  
  .service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
    background: #fff;
  }
  
  /* Colored Rectangle with Icon */
  .service-icon-bg {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
  }
  
  .service-icon-bg i {
    font-size: 2rem;
    color: #fff;
  }
  
  /* Headings */
  .service-box h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
  }
  
  .service-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: var(--text-secondary);  /* fixed small typo: “secondar” → “secondary” */
    margin: 0 auto 1.5rem auto;    /* center horizontally */
    line-height: 2.1;
    max-width: 85%;                /* ✅ limits line length for better readability */
    text-align: center;            /* keeps text centered */
  }
  
  
  /* Button */
  .service-btn {
    display: inline-block;
    background: transparent;              /* transparent background */
    color: var(--text-secondar);        /* blue text */
    text-decoration: none;
    padding: 0.7rem 1.6rem;
    border-radius: 6px;                   /* subtle rounded corners */
    font-weight: 500;
    border: 2px solid var(--primary-color); /* blue outline */
    transition: all 0.3s ease;
    box-shadow: none;                     /* remove glow */
  }
  
  .service-btn:hover {
    background: var(--primary-color);     /* blue fill on hover */
    color: #fff;                          /* white text on hover */
    transform: translateY(-2px);
  }
  
/* Responsive - Mobile First Enhancements */
@media (max-width: 900px) {
  .services {
    padding: 5rem 0; /* slightly less vertical space */
  }

  .services .section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
    line-height: 1.3;
    padding: 0 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;                 /* reduce gap */
    padding: 0 1.2rem;         /* ✅ less side padding = boxes look wider */
  }

  .service-box {
    width: 100%;
    max-width: 95%;            /* ✅ almost full width */
    margin: 0 auto;
    border-radius: 18px;
    padding: 2.4rem 1.6rem;    /* slightly tighter padding */
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
    transition: all 0.4s ease;
    transform: scale(1);
  }

  /* subtle hover/touch feedback on mobile */
  .service-box:active {
    transform: scale(0.98);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
  }

  .service-icon-bg {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    margin-bottom: 1.3rem;
  }

  .service-box h1 {
    font-size: 1.35rem;
  }

  .service-box h2 {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 90%;
  }

  .service-btn {
    font-size: 0.95rem;
    padding: 0.6rem 1.4rem;
    border-width: 2px;
  }
}

/* Smaller phones (under 480px) */
@media (max-width: 480px) {
  .services {
    padding: 4rem 0;
  }

  .services-grid {
    padding: 0 0.7rem;         /* ✅ even less padding, feels larger */
    gap: 1.6rem;
  }

  .service-box {
    max-width: 100%;
    padding: 2rem 1.2rem;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.12);
  }

  .service-icon-bg {
    width: 60px;
    height: 60px;
  }

  .service-box h1 {
    font-size: 1.25rem;
  }

  .service-box h2 {
    font-size: 0.9rem;
    max-width: 92%;
  }

  .service-btn {
    font-size: 0.9rem;
    padding: 0.55rem 1.3rem;
  }
}

/* Portfolio Section */
.portfolio {
  background: var(--bg-primary);
  padding: 8rem 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.portfolio-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
  background: #fff;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

/* Slider container */
.portfolio-slider {
  position: relative;
  width: 100%;
  height: 220px;  /* ⬅️ Reduced from 550px → gives tighter layout */
  overflow: hidden;
  background: #f4f6fa;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Slides */
.portfolio-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.portfolio-slide.active {
  opacity: 1;
}

/* Arrows */
.prev-slide,
.next-slide {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.7);
  border: none;
  color: var(--text-primary);
  font-size: 1.2rem;
  padding: 0.3rem 0.7rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
}

.portfolio-slider:hover .prev-slide,
.portfolio-slider:hover .next-slide {
  opacity: 1;
}

.prev-slide:hover,
.next-slide:hover {
  background: var(--primary-color);
  color: #fff;
}

.prev-slide { left: 10px; }
.next-slide { right: 10px; }


/* Info Section */
.portfolio-info {
  background: #fff;
  padding: 1.6rem 1.4rem;
  text-align: left;
}
.featured-projects-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
  color: #222;
  margin-bottom: 4rem;
  white-space: nowrap; /* ✅ keeps text on one line */
}

.portfolio-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.portfolio-info p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Lightbox Overlay */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox.active {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}

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

/* Image inside lightbox */
.lightbox-content {
  max-width: 90%;
  max-height: 85%;
  overflow: hidden;
}

.lightbox-image {
  width: 100%;
  height: auto;
  max-height: 85vh;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.3s ease;
}

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

/* Navigation arrows */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 2rem;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary-color);
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

/* Responsive */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-slider {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .portfolio-slider {
    height: 180px;
  }
  .prev-slide,
  .next-slide {
    opacity: 1;
  }
  .lightbox-prev,
  .lightbox-next {
    font-size: 1.6rem;
    padding: 0.6rem 1rem;
  }
}

@media (max-width: 480px) {
  .portfolio-slider {
    height: 160px;
  }
  .featured-projects-title {
    font-size: 1.8rem; /* slightly smaller so it fits */
    letter-spacing: -0.5px;
  }
}


        /* Contact Section */
        .contact {
          background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
          color: var(--text-light);
          position: relative;
          overflow: hidden;
        }
        

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-grid" width="8" height="8" patternUnits="userSpaceOnUse"><path d="M 8 0 L 0 0 0 8" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-grid)"/></svg>');
            animation: contactFloat 30s ease-in-out infinite;
            opacity: 0.6;
        }

        .contact::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
                        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
            animation: contactPulse 6s ease-in-out infinite alternate;
        }

        /* Contact Floating Shapes */
        .contact-floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .contact-shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
        }

        .contact-shape-1 {
            width: 70px;
            height: 70px;
            top: 15%;
            left: 8%;
            animation: contactFloatShape1 24s ease-in-out infinite;
        }

        .contact-shape-2 {
            width: 110px;
            height: 110px;
            top: 65%;
            right: 12%;
            background: rgba(255, 255, 255, 0.06);
            animation: contactFloatShape2 28s ease-in-out infinite reverse;
        }

        .contact-shape-3 {
            width: 55px;
            height: 55px;
            top: 25%;
            right: 30%;
            background: rgba(255, 255, 255, 0.1);
            animation: contactFloatShape3 20s ease-in-out infinite;
        }

        .contact-shape-4 {
            width: 90px;
            height: 90px;
            bottom: 20%;
            left: 18%;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 25px;
            animation: contactFloatShape4 26s ease-in-out infinite;
        }

        .contact-shape-5 {
            width: 35px;
            height: 35px;
            top: 12%;
            right: 45%;
            background: rgba(255, 255, 255, 0.12);
            animation: contactFloatShape5 18s ease-in-out infinite reverse;
        }

        .contact-shape-6 {
            width: 130px;
            height: 130px;
            bottom: 12%;
            right: 8%;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 35px;
            animation: contactFloatShape6 32s ease-in-out infinite;
        }

        @keyframes contactFloatShape1 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            25% { transform: translateY(-25px) translateX(15px) rotate(90deg); }
            50% { transform: translateY(-10px) translateX(-8px) rotate(180deg); }
            75% { transform: translateY(-35px) translateX(12px) rotate(270deg); }
        }

        @keyframes contactFloatShape2 {
            0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
            33% { transform: translateY(20px) translateX(-15px) scale(1.05); }
            66% { transform: translateY(-15px) translateX(20px) scale(0.95); }
        }

        @keyframes contactFloatShape3 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            50% { transform: translateY(-20px) translateX(-25px) rotate(180deg); }
        }

        @keyframes contactFloatShape4 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            25% { transform: translateY(15px) translateX(-12px) rotate(30deg); }
            50% { transform: translateY(-8px) translateX(25px) rotate(60deg); }
            75% { transform: translateY(12px) translateX(-18px) rotate(90deg); }
        }

        @keyframes contactFloatShape5 {
            0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
            50% { transform: translateY(-30px) translateX(15px) scale(1.15); }
        }

        @keyframes contactFloatShape6 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            33% { transform: translateY(-12px) translateX(8px) rotate(45deg); }
            66% { transform: translateY(8px) translateX(-20px) rotate(90deg); }
        }

        @keyframes contactFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-15px) rotate(0.5deg); }
            66% { transform: translateY(-10px) rotate(-0.5deg); }
        }

        @keyframes contactPulse {
            0% { opacity: 0.4; }
            100% { opacity: 0.7; }
        }

        .contact-content {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .contact .section-title {
            color: var(--text-light);
            background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .contact-form {
            display: grid;
            gap: 2rem;
            margin-top: 3rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .form-group {
            display: grid;
            gap: 0.75rem;
            text-align: left;
        }

        .form-group label {
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group textarea {
            padding: 1.2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.08);
            color: var(--text-light);
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 1rem;
            font-weight: 400;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            resize: vertical;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.12);
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .submit-btn {
            padding: 1.2rem 3rem;
            background: var(--gradient-primary);
            color: var(--text-light);
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            margin-top: 1rem;
            letter-spacing: 0.5px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide-in-left.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(60px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide-in-right.animate {
            opacity: 1;
            transform: translateX(0);
        }

        /* Mobile Responsiveness */
        @media (max-width: 1024px) {
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

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

            .hero h1 {
                font-size: 4rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

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

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

            .section-title {
                font-size: 2.5rem;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            .container {
                padding: 0 1.5rem;
            }

            section {
                padding: 5rem 0;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .about-text h3 {
                font-size: 2rem;
            }

            .skills {
                margin-top: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .nav-container {
                padding: 0 1rem;
            }

            .container {
                padding: 0 1rem;
            }
        }

        @media (max-width: 768px) {
          .about-modern {
            padding-top: 3rem; /* reduce from 8rem to ~48px */
            padding-bottom: 5rem; /* keep bottom nice and balanced */
          }
        
          .press {
            padding-bottom: 10px; /* tighten the bottom space */
          }
        }
        
        /* Legal*/
        .legal {
          background: #ffffff;
          color: #0f172a;
          padding: 6rem 0;
        }
        
        .legal-updated {
          text-align: center;
          color: #475569;
          margin-bottom: 2rem;
        }
        
        .legal-grid {
          display: grid;
          grid-template-columns: 1fr 1fr 1fr;
          gap: 2rem;
          margin: 2rem 0 3rem;
        }
        
        .legal-card {
          background: #f8fafc;
          border: 1px solid rgba(15, 23, 42, 0.08);
          border-radius: 16px;
          padding: 1.5rem;
        }
        
        .legal-card h2 {
          font-family: 'Montserrat', sans-serif;
          font-size: 1.2rem;
          margin-bottom: 0.75rem;
          color: #0f172a;
        }
        
        .legal-sep {
          border: 0;
          height: 1px;
          background: rgba(15, 23, 42, 0.08);
          margin: 2rem 0 3rem;
        }
        
        .legal p, .legal li {
          line-height: 1.7;
          color: #334155;
        }
        
        .legal a {
          color: #2563eb;
          text-decoration: none;
        }
        .legal a:hover {
          text-decoration: underline;
        }
        
        @media (max-width: 900px) {
          .legal-grid { grid-template-columns: 1fr; }
        }
        