 :root {
            --primary: #FF6B35;
            --primary-dark: #E5532E;
            --secondary: #1A1A2E;
            --accent: #FFD23F;
            --text-dark: #16213E;
            --text-light: #F4F4F9;
            --bg-light: #FFFFFF;
            --bg-dark: #0F0F1E;
            --shadow: rgba(0, 0, 0, 0.15);
        }

        /* Global Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes shimmer {
            0% { background-position: -1000px 0; }
            100% { background-position: 1000px 0; }
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Archivo', sans-serif;
            color: var(--text-dark);
            background: var(--bg-light);
            overflow-x: hidden;
        }
        
        .goog-te-banner-frame {
    display: none !important;
        }
        
   
        
        .goog-logo-link,
        .goog-te-gadget span {
            display: none !important;
        }
        
        .goog-te-gadget {
            font-size: 0px;
        }


        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            animation: slideDown 0.5s ease-out;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            animation: fadeInLeft 0.6s ease-out;
        }

        .logo:hover {
            transform: scale(1.05);
            text-shadow: 0 0 20px var(--accent);
        }

        .logo-link {
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            animation: fadeInLeft 0.6s ease-out;
        }

        .logo-link:hover {
            transform: scale(1.05);
        }

        .logo-image {
            height: 50px;
            width: auto;
            display: block;
            transition: all 0.3s ease;
        }

        .logo-link:hover .logo-image {
            filter: drop-shadow(0 0 20px rgba(255, 210, 63, 0.6));
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links li {
            animation: fadeInUp 0.6s ease-out backwards;
        }

        .nav-links li:nth-child(1) { animation-delay: 0.1s; }
        .nav-links li:nth-child(2) { animation-delay: 0.2s; }
        .nav-links li:nth-child(3) { animation-delay: 0.3s; }
        .nav-links li:nth-child(4) { animation-delay: 0.4s; }
        .nav-links li:nth-child(5) { animation-delay: 0.5s; }
        .nav-links li:nth-child(6) { animation-delay: 0.6s; }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            position: relative;
            transition: color 0.3s ease;
            display: inline-block;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--primary);
            transform: translateY(-2px);
        }

        .cta-btn {
            background: #DC2626;
            color: white;
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            border: 2px solid #DC2626;
            position: relative;
            overflow: hidden;
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }

        .cta-btn:hover::before {
            left: 100%;
        }

        .cta-btn:hover {
            background: #B91C1C;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
        }

        .lang-toggle {
            background: transparent;
            border: 2px solid var(--accent);
            color: var(--accent);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .lang-toggle:hover {
            background: var(--accent);
            color: var(--secondary);
            transform: rotate(5deg) scale(1.05);
        }
        
          
        .language-item {
    display: flex;
    align-items: center;
        }
        
        .language-dropdown {
            padding: 6px 12px;
            border-radius: 20px;
            border: 1px solid #ddd;
            background: #fff;
            font-family: 'Archivo', sans-serif;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            outline: none;
        }
        
        .language-dropdown:hover {
            border-color: #ff6600; /* change to your theme color */
        }
        
        .language-dropdown:focus {
            border-color: #ff6600;
            box-shadow: 0 0 5px rgba(255,102,0,0.3);
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .mobile-toggle span {
            width: 30px;
            height: 3px;
            background: var(--text-light);
            transition: all 0.3s ease;
        }
        
        .skiptranslate {
        top: -200px;
        left: 0;
        height: 0;
        width: 0;
        z-index: 0;
        position: relative;
        border: none;
        border-bottom: 1px solid #6B90DA;
        margin: 0;
        box-shadow: 0 0 8px 1px #999;
    }

        /* Hero Section with Slider */
        .hero {
            margin-top: 0px;
            min-height: 90vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .hero-slide.active {
            opacity: 1;
            animation: slideZoomIn 6s ease-out forwards;
        }

        @keyframes slideZoomIn {
            from {
                transform: scale(1);
            }
            to {
                transform: scale(1.1);
            }
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.75) 100%);
            z-index: 1;
        }

        .hero-slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,210,63,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
            z-index: 2;
        }

        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slider-controls {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            gap: 1rem;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .slider-dot.active {
            background: var(--accent);
            transform: scale(1.3);
            border-color: white;
            box-shadow: 0 0 20px var(--accent);
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .slider-arrow:hover {
            background: var(--primary);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 5px 20px rgba(255, 107, 53, 0.5);
        }

        .slider-arrow.prev {
            left: 2rem;
        }

        .slider-arrow.next {
            right: 2rem;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
            position: relative;
            z-index: 5;
        }

        .hero-content.fade-in {
            animation: heroContentFade 0.8s ease-out;
        }

        @keyframes heroContentFade {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(3rem, 8vw, 6rem);
            color: var(--text-light);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: 3px;
        }

        .hero-highlight {
            color: var(--accent);
            display: block;
        }

        .hero p {
            font-size: clamp(1.1rem, 2vw, 1.5rem);
            color: rgba(244, 244, 249, 0.9);
            max-width: 600px;
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }

        .hero-cta {
            background: var(--primary);
            color: white;
            padding: 1.2rem 3rem;
            font-size: 1.2rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .hero-cta::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 ease, height 0.6s ease;
        }

        .hero-cta:hover::before {
            width: 300px;
            height: 300px;
        }

        .hero-cta:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
        }

        /* Search Section */
         /* Search Section */
        .search-section {
    background: #fff;
    padding: 4rem 1.5rem;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.05);
}
        
        .section-title {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 2rem;
        }
        
        .search-wrapper {
            position: relative;
            max-width: 720px;
            margin: auto;
        }
        
        .search-input {
            width: 100%;
            padding: 1.2rem 3.5rem 1.2rem 1.6rem;
            font-size: 1.05rem;
            border-radius: 999px;
            border: 2px solid #e5e5e5;
            transition: all 0.3s ease;
        }
        
        .search-input:focus {
            border-color: var(--primary);
            box-shadow: 0 10px 25px rgba(255,107,53,0.2);
            transform: translateY(-2px);
        }
        
        .search-icon {
            position: absolute;
            right: 1.4rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary);
        }
        
        .search-results {
            margin-top: 1rem;
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            overflow: hidden;
            display: none;
        }
        
        .search-results.active {
            display: block;
        }
        
        .search-result-item {
            padding: 1rem 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
            cursor: pointer;
            transition: background 0.25s ease;
        }
        
        .search-result-item:hover {
            background: rgba(255,107,53,0.08);
        }
        
        .search-result-title {
            font-weight: 600;
        }
        
        .search-result-category {
            font-size: 0.85rem;
            color: #777;
        }
        
        .search-highlight {
            color: var(--primary);
            font-weight: 700;
        }
        
        .search-empty {
            padding: 1.5rem;
            text-align: center;
            color: #777;
        }
        
        /* services container */
  /* ==============================
   SERVICE FORM + PREVIEW LAYOUT
   ============================== */

.service-section-container {
margin-top: 100px;
  display: flex;
  gap: 36px;
  padding: 48px 6%;
  align-items: flex-start;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* ==============================
   LEFT – FORM CARD
   ============================== */

.service-form-container {
  flex: 1.2;
  background: #ffffff;
  padding: 28px;
  border-radius: 14px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #f1f5f9;
}

/* FORM STRUCTURE */
.service-form-container form {
  display: flex;
  flex-direction: column;
}

/* LABELS */
.service-form-container label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 6px;
  color: #1f2933;
  letter-spacing: 0.2px;
}

/* INPUTS */
.service-form-container input {
  padding: 13px 15px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  background: #ffffff;
}

.service-form-container input::placeholder {
  color: #9ca3af;
}

.service-form-container input:focus {
  outline: none;
  border-color: #0ea5e9;
  background: #f0f9ff;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.18);
}

/* BUTTON */
.service-form-container button {
  margin-top: 26px;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.35);
}

.service-form-container button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.45);
}

.service-form-container button:active {
  transform: translateY(0);
}

/* ==============================
   RIGHT – PREVIEW CARD
   ============================== */

.service-preview {
  flex: 0.9;
  background: #ffffff;
  padding: 26px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.06);
}

.service-preview h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #0f172a;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 10px;
}

.service-preview p {
  font-size: 0.92rem;
  margin-bottom: 12px;
  color: #334155;
  line-height: 1.6;
}

.service-preview strong {
  font-weight: 600;
  color: #0f172a;
}

/* ==============================
   TABLET (≤ 1024px)
   ============================== */

@media (max-width: 1024px) {
  .service-section-container {
    gap: 28px;
    padding: 36px 5%;
  }

  .service-form-container,
  .service-preview {
    padding: 22px;
  }

  .service-preview h2 {
    font-size: 1.05rem;
  }
}

/* ==============================
   MOBILE (≤ 768px)
   ============================== */

@media (max-width: 768px) {
  .service-section-container {
    flex-direction: column;
    padding: 24px 16px;
  }

  .service-form-container,
  .service-preview {
    width: 100%;
  }

  .service-preview {
    margin-top: 22px;
  }

  .service-form-container label {
    font-size: 0.8rem;
  }

  .service-form-container input {
    font-size: 0.9rem;
    padding: 12px;
  }

  .service-form-container button {
    font-size: 0.95rem;
    padding: 14px;
  }
}

/* ==============================
   SMALL MOBILE (≤ 480px)
   ============================== */

@media (max-width: 480px) {
  .service-preview h2 {
    font-size: 1rem;
  }

  .service-preview p {
    font-size: 0.85rem;
  }

  .service-form-container button {
    font-size: 0.9rem;
  }
}


        /* Categories Section */
        .categories {
            padding: 5rem 2rem;
            background: linear-gradient(to bottom, white, #f8f8f8);
        }

        .categories-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            text-align: center;
            margin-bottom: 3rem;
            color: var(--secondary);
            letter-spacing: 2px;
            animation: fadeInUp 0.8s ease-out;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
            animation: scaleIn 0.8s ease-out 0.3s backwards;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .category-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 25px var(--shadow);
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            animation: fadeInUp 0.6s ease-out backwards;
        }

        .category-card:nth-child(1) { animation-delay: 0.1s; }
        .category-card:nth-child(2) { animation-delay: 0.2s; }
        .category-card:nth-child(3) { animation-delay: 0.3s; }
        .category-card:nth-child(4) { animation-delay: 0.4s; }
        .category-card:nth-child(5) { animation-delay: 0.5s; }

        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transition: transform 0.3s ease;
            z-index: 2;
        }

        .category-card:hover::before {
            transform: scaleX(1);
        }

        .category-card:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
        }

        .category-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .category-card:hover .category-image {
            transform: scale(1.1);
        }

        .category-content {
            padding: 1.5rem;
        }

        .category-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            color: var(--secondary);
            margin-bottom: 0.5rem;
            letter-spacing: 1px;
        }

        .category-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .category-btn {
            background: var(--primary);
            color: white;
            padding: 0.7rem 1.5rem;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .category-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 ease, height 0.6s ease;
        }

        .category-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .category-btn:hover {
            background: var(--primary-dark);
            transform: scale(1.05);
        }
        
        /* services menu */
                /* Services Menu Bar */
        .services-menu {
            position: fixed;
            top: 70px;
            width: 100%;
            background: white;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            z-index: 999;
            padding: 1.2rem 0;
        }

        .menu-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            gap: 1rem;
            overflow-x: auto;
            scrollbar-width: thin;
        }

        .menu-container::-webkit-scrollbar {
            height: 6px;
        }

        .menu-container::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .menu-container::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 3px;
        }

        .menu-item {
            padding: 0.8rem 1.8rem;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 50px;
            cursor: pointer;
            white-space: nowrap;
            font-weight: 600;
            transition: all 0.3s ease;
            color: var(--text-dark);
        }

        .menu-item:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-2px);
        }

        .menu-item.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        /* Page Title */
        .page-title {
            text-align: center;
            padding: 4rem 2rem 3rem;
        }

        .page-title h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: var(--secondary);
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .page-title p {
            font-size: 1.1rem;
            color: #666;
        }

       


        /* Service Listing Page */
        .services-page {
            padding: 6rem 2rem 4rem;
            background: #f8f8f8;
            min-height: 100vh;
            display: none;
        }

        .services-page.active {
            display: block;
        }

        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px var(--shadow);
            transition: all 0.4s ease;
            animation: fadeInUp 0.6s ease-out backwards;
            position: relative;
        }

        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        .service-card:nth-child(4) { animation-delay: 0.4s; }
        .service-card:nth-child(5) { animation-delay: 0.5s; }
        .service-card:nth-child(6) { animation-delay: 0.6s; }

        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 210, 63, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .service-card:hover::after {
            opacity: 1;
        }

        .service-card:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
        }

        .service-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-image {
            transform: scale(1.1);
        }

        .service-info {
            padding: 2rem;
        }

        .service-name {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .service-desc {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .service-details-btn {
            background: var(--accent);
            color: var(--secondary);
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s ease;
            width: 100%;
            font-size: 1rem;
            position: relative;
            overflow: hidden;
        }

        .service-details-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(26, 26, 46, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .service-details-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .service-details-btn:hover {
            background: var(--secondary);
            color: var(--accent);
            transform: scale(1.05);
        }

        /* Modal for Service Request */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            animation: fadeIn 0.3s ease;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            max-width: 600px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: modalZoomIn 0.4s ease-out;
        }

        @keyframes modalZoomIn {
            from { 
                transform: scale(0.8);
                opacity: 0; 
            }
            to { 
                transform: scale(1);
                opacity: 1; 
            }
        }

        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 2rem;
            cursor: pointer;
            color: #999;
            transition: color 0.3s ease;
        }

        .close-modal:hover {
            color: var(--primary);
        }

        .modal h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--secondary);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-family: 'Archivo', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: var(--primary);
            color: white;
            padding: 1rem 3rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .submit-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 ease, height 0.6s ease;
        }

        .submit-btn:hover::before {
            width: 400px;
            height: 400px;
        }

        .submit-btn:hover {
            background: var(--primary-dark);
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
        }
        
        
        /* ==============================
   ALL SERVICES CTA (Before Footer)
   ============================== */

.allservice-cta {
  background: #e10600;
  padding: 70px 0;
  text-align: center;
}

.allservice-cta .container {
  display: flex;
  justify-content: center;
}

/* Link reset */
.allservice-link {
  text-decoration: none;
}

/* BUTTON */
.allservices {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #ffffff;
  color: #e10600;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Icon */
.allservices .icon {
  display: inline-flex;
  transition: transform 0.3s ease;
}

/* Hover */
.allservices:hover {
  background: #111827;
  color: #ffffff;
  transform: translateY(-2px);
}

.allservices:hover .icon {
  transform: translateX(5px);
}

/* Active */
.allservices:active {
  transform: translateY(0);
}

/* ==============================
   MOBILE OPTIMIZATION
   ============================== */

@media (max-width: 768px) {
  .allservice-cta {
    padding: 50px 16px;
  }

  .allservices {
    font-size: 1rem;
    padding: 14px 26px;
  }
}


        /* Contact Page */
        .contact-page {
          
            padding: 6rem 2rem 4rem;
            background: linear-gradient(135deg, #f8f8f8 0%, white 100%);
            min-height: 100vh;
        }

        .contact-page.active {
            display: block;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .contact-info {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px var(--shadow);
            transition: all 0.3s ease;
        }

        .contact-info:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
        }

        .contact-info h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            padding: 1rem;
            background: #f8f8f8;
            border-radius: 10px;
        }

        .contact-icon {
            font-size: 1.5rem;
            color: var(--primary);
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #1A1A2E 0%, #0F0F1E 100%);
            color: var(--text-light);
            padding: 3rem 2rem 1rem;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
            background-size: 200% 100%;
            animation: gradientShift 3s ease infinite;
        }

        .footer::after {
            content: '';
            position: absolute;
            top: 0;
            left: -50%;
            width: 200%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(255, 210, 63, 0.05) 0%, transparent 70%);
            animation: float 20s ease-in-out infinite;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 4rem;
            margin-bottom: 2.5rem;
        }

        .footer-section {
            animation: fadeInUp 0.8s ease-out backwards;
        }

        .footer-section:nth-child(1) { animation-delay: 0.1s; }
        .footer-section:nth-child(2) { animation-delay: 0.2s; }
        .footer-section:nth-child(3) { animation-delay: 0.3s; }

        .footer-section h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            color: var(--accent);
            margin-bottom: 1.2rem;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .footer-section:hover h3::after {
            width: 100%;
        }

        .footer-section p {
            color: rgba(244, 244, 249, 0.8);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
            transform: translateX(0);
            transition: transform 0.3s ease;
        }

        .footer-links li:hover {
            transform: translateX(10px);
        }

        .footer-links a {
            color: rgba(244, 244, 249, 0.9);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
        }

        .footer-links a::before {
            content: '▸';
            color: var(--primary);
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .footer-links a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: #DC2626;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 1.3rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .social-icon::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: var(--text-light);
            transform: translate(-50%, -50%);
            transition: width 0.4s ease, height 0.4s ease;
        }

        .social-icon:hover::before {
            width: 100%;
            height: 100%;
        }

        .social-icon:hover {
            background: var(--text-light);
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(220, 38, 38, 0.5);
        }

        .social-icon:hover span {
            color: #DC2626;
        }

        .social-icon span {
            position: relative;
            z-index: 1;
            transition: color 0.3s ease;
        }

        .newsletter-form {
            margin-top: 1.5rem;
            display: flex;
            gap: 0.5rem;
        }

        .newsletter-input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid rgba(255, 210, 63, 0.3);
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            outline: none;
            transition: all 0.3s ease;
        }

        .newsletter-input::placeholder {
            color: rgba(244, 244, 249, 0.5);
        }

        .newsletter-input:focus {
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.15);
        }

        .newsletter-btn {
            padding: 0.8rem 1.5rem;
            background: var(--accent);
            color: var(--secondary);
            border: none;
            border-radius: 25px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .newsletter-btn:hover {
            background: white;
            transform: scale(1.08);
            box-shadow: 0 3px 15px rgba(255, 210, 63, 0.4);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(244, 244, 249, 0.1);
            color: rgba(244, 244, 249, 0.6);
            animation: fadeInUp 1s ease-out 0.5s backwards;
        }

        .footer-bottom p {
            margin: 0;
            font-size: 0.9rem;
        }

        .footer-stats {
            display: none;
        }

        /* Login Page */
        .login-page {
            min-height: 100vh;
            padding-top: 80px;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--text-dark) 100%);
            align-items: center;
            justify-content: center;
            display: flex;     
        }

        .login-page.active {
            display: flex;
        }

        .login-container {
            margin-top: 50px;
            margin-bottom: 50px;
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
            max-width: 450px;
            width: 100%;
            animation: loginZoomIn 0.5s ease-out;
        }

        @keyframes loginZoomIn {
            from { 
                transform: scale(0.9);
                opacity: 0; 
            }
            to { 
                transform: scale(1);
                opacity: 1; 
            }
        }

        .login-container h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 2rem;
            text-align: center;
            letter-spacing: 2px;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--secondary);
                flex-direction: column;
                padding: 2rem;
                gap: 1rem;
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-toggle {
                display: flex;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .category-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }

            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 600px) {
            .nav-container {
                padding: 0 1rem;
            }

            .hero-content {
                padding: 2rem 1rem;
            }

            .modal-content {
                padding: 2rem 1.5rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Homepage Content */
        .homepage {
            display: block;
        }

        .homepage.hidden {
            display: none;
        }