/* ========================================
   CSS VARIABLES & GLOBAL STYLES
   ======================================== */
:root {
    --primary-yellow: #ffcc00;
    --dark-bg: #0a0a0a;
    --light-black: #1a1a1a;
    --card-black: #151515;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-bg);
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* ========================================
   NAVIGATION BAR
   ======================================== */
.custom-navbar {
  background: #000;
  border-bottom: 2px solid #ffcc00;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.2);
  font-family: 'Poppins', sans-serif;
  animation: fadeDown 1s ease forwards;
}

/* Logo */
.navbar-brand img {
     height: 60px;
  transition: transform 0.4s ease;
}
.navbar-brand:hover img {
  filter: brightness(1.3);
  transform: scale(1.05);
}

/* Links */
.nav-link {
  color: #f8f9fa !important;
  font-weight: 500;
  margin: 0 15px;
  border-radius: 6px;
  padding: 12px 14px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.nav-link:hover {
  background-color: #1a1a1a;
  color: #ffcc00 !important;
}

/* 🔥 Active Link Style */
.nav-link.active {
  background-color: #ffcc00 !important;
  color: #000 !important;
  font-weight: 600;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

/* Slight hover glow even on active */
.nav-link.active:hover {
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.8);
}

/* Button */
.theme-btn {
  background-color: #ffcc00;
  color: #000;
  font-weight: 600;
  border: none;
  padding: 12px 22px;
  border-radius: 25px;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.4);
  transition: all 0.3s ease;
}
.theme-btn:hover {
  background-color: #000000!important;
  /* transform: scale(1.05); */
  color:#ffcc00!important;
  /* box-shadow: 0 0 20px rgba(255, 204, 0, 0.6); */
  border: 1px solid #ffcc00!important;
  /* border-color: #ffcc00; */
}

/* Mobile Toggler */
.navbar-toggler {
  border-color: #ffcc00;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffcc00' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,204,0,0.8)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Fade Animation */
@keyframes fadeDown {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}











/* ========================================
   HERO SECTION
   ======================================== */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), 
                        url('images/serviceshero.jpg') center/cover;
            background-attachment: fixed;
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--primary-yellow) 0%, transparent 70%);
            opacity: 0.08;
            top: -300px;
            right: -300px;
            animation: pulse 5s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.08; }
            50% { transform: scale(1.2); opacity: 0.12; }
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease;
            line-height: 1.2;
        }

        .hero-title .highlight {
            color: var(--primary-yellow);
            position: relative;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: #ccc;
            max-width: 700px;
            animation: fadeInUp 1s ease 0.3s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

/* ========================================
   SECTION TITLES
   ======================================== */
        .section-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-align: center;
            position: relative;
            animation: fadeInUp 1s ease;
        }

        .section-subtitle {
            text-align: center;
            color: #999;
            font-size: 1.1rem;
            margin-bottom: 4rem;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: var(--primary-yellow);
            margin: 1rem auto 1rem;
        }

/* ========================================
   MAIN SERVICES SECTION
   ======================================== */
        .main-services {
            padding: 100px 0;
            background: var(--light-black);
        }

        .service-card {
            background: var(--card-black);
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 3rem;
            border: 2px solid transparent;
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1s ease both;
        }

        .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::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 204, 0, 0.1), transparent);
            transition: left 0.7s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            border-color: var(--primary-yellow);
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(255, 204, 0, 0.2);
        }

        .service-icon-wrapper {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-yellow), #ff9900);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.5s ease;
        }

        .service-card:hover .service-icon-wrapper {
            transform: rotateY(360deg);
}

        .service-icon {
            font-size: 2.5rem;
            color: #000;
        }

        .service-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--primary-yellow);
        }

        .service-features {
            list-style: none;
            padding: 0;
            margin-top: 1.5rem;
        }

        .service-features li {
            padding: 0.7rem 0;
            padding-left: 2rem;
            position: relative;
            color: #ccc;
        }

        .service-features li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary-yellow);
        }

/* ========================================
   PROCESS SECTION
   ======================================== */
        .process-section {
            padding: 100px 0;
            background: var(--dark-bg);
        }

        .process-step {
            text-align: center;
            margin-bottom: 3rem;
            animation: zoomIn 0.8s ease both;
        }

        .process-step:nth-child(1) { animation-delay: 0.1s; }
        .process-step:nth-child(2) { animation-delay: 0.2s; }
        .process-step:nth-child(3) { animation-delay: 0.3s; }
        .process-step:nth-child(4) { animation-delay: 0.4s; }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .process-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-yellow), #ff9900);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            font-weight: 700;
            color: #000;
            position: relative;
            transition: all 0.5s ease;
        }

        .process-step:hover .process-number {
            transform: rotate(360deg);
        }

        .process-step h4 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary-yellow);
        }

/* ========================================
   PRICING SECTION
   ======================================== */
        .pricing-section {
            padding: 100px 0;
            background: var(--light-black);
        }

        .pricing-card {
            background: var(--card-black);
            border-radius: 20px;
            padding: 3rem 2rem;
            text-align: center;
            border: 2px solid #333;
            transition: all 0.5s ease;
position: relative;
            overflow: hidden;
            height: 100%;
            animation: fadeInUp 1s ease both;
        }

        .pricing-card:nth-child(1) { animation-delay: 0.1s; }
        .pricing-card:nth-child(2) { animation-delay: 0.2s; }
        .pricing-card:nth-child(3) { animation-delay: 0.3s; }

        .pricing-card.featured {
            border-color: var(--primary-yellow);
            transform: scale(1.05);
        }

        .pricing-card.featured::before {
            content: 'POPULAR';
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--primary-yellow);
            color: #000;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-weight: 700;
            font-size: 0.8rem;
        }

        .pricing-card:hover {
            border-color: var(--primary-yellow);
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(255, 204, 0, 0.2);
        }

        .pricing-card.featured:hover {
            transform: translateY(-10px) scale(1.05);
        }

        .pricing-plan {
            font-size: 1.5rem;
            color: var(--primary-yellow);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .pricing-price {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .pricing-price span {
            font-size: 1.2rem;
            color: #999;
        }

        .pricing-features {
            list-style: none;
            padding: 2rem 0;
            margin: 2rem 0;
            border-top: 1px solid #333;
            border-bottom: 1px solid #333;
        }

        .pricing-features li {
            padding: 0.8rem 0;
            color: #ccc;
        }

        .pricing-btn {
            background: transparent;
            border: 2px solid var(--primary-yellow);
            color: var(--primary-yellow);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .pricing-btn:hover {
            background: var(--primary-yellow);
            color: #000;
            transform: scale(1.1);
        }

        .pricing-card.featured .pricing-btn {
            background: var(--primary-yellow);
            color: #000;
        }

        .pricing-card.featured .pricing-btn:hover {
            background: transparent;
            color: var(--primary-yellow);
        }

/* ========================================
   INDUSTRIES SECTION
   ======================================== */
        .industries-section {
            padding: 100px 0;
            background: var(--dark-bg);
        }

        .industry-box {
            background: var(--card-black);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            border: 1px solid #333;
            transition: all 0.4s ease;
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease both;
        }

        .industry-box:nth-child(1) { animation-delay: 0.1s; }
        .industry-box:nth-child(2) { animation-delay: 0.2s; }
        .industry-box:nth-child(3) { animation-delay: 0.3s; }
        .industry-box:nth-child(4) { animation-delay: 0.4s; }
        .industry-box:nth-child(5) { animation-delay: 0.5s; }
        .industry-box:nth-child(6) { animation-delay: 0.6s; }

        .industry-box:hover {
            border-color: var(--primary-yellow);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 204, 0, 0.2);
        }

        .industry-icon {
            font-size: 3rem;
            color: var(--primary-yellow);
            margin-bottom: 1rem;
            transition: transform 0.5s ease;
        }

        .industry-box:hover .industry-icon {
            transform: scale(1.2) rotateY(360deg);
        }

/* ========================================
   FAQ SECTION
   ======================================== */
        .faq-section {
            padding: 100px 0;
            background: var(--light-black);
        }

        .faq-item {
            background: var(--card-black);
            border-radius: 15px;
            margin-bottom: 1.5rem;
            border: 2px solid #333;
            overflow: hidden;
            animation: fadeInUp 0.8s ease both;
        }

        .faq-item:nth-child(1) { animation-delay: 0.1s; }
        .faq-item:nth-child(2) { animation-delay: 0.2s; }
        .faq-item:nth-child(3) { animation-delay: 0.3s; }
        .faq-item:nth-child(4) { animation-delay: 0.4s; }
        .faq-item:nth-child(5) { animation-delay: 0.5s; }

        .faq-question {
            padding: 1.5rem 2rem;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .faq-question::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 2rem;
            color: var(--primary-yellow);
            transition: transform 0.3s ease;
        }

        .faq-item:hover .faq-question {
            color: var(--primary-yellow);
        }

        .faq-answer {
            padding: 0 2rem 1.5rem 2rem;
            color: #ccc;
            line-height: 1.8;
        }

/* ========================================
   CTA SECTION
   ======================================== */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #000 0%, var(--light-black) 100%);
            text-align: center;
        }

        .cta-btn {
            background: var(--primary-yellow);
            color: #000;
            border: none;
            padding: 1.2rem 3rem;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .cta-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;
        }

        .cta-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 40px rgba(255, 204, 0, 0.5);
        }

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            .pricing-card.featured:hover {
                transform: translateY(-10px) scale(1);
            }
        }


/* ========================================
   FOOTER SECTION
   ======================================== */
.footer-section {
    background-color: #000!important;
    color: #fff!important;
    padding: 60px 0 30px;
    font-family: 'Poppins', sans-serif;
}

.footer-section h5 {
    color: #ffcc00!important;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section p {
    color: #ccc!important;
    line-height: 1.8;
    font-size: 14px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #ccc!important;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #ffcc00!important;
}

.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: #111!important;
    color: #ffcc00!important;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin-right: 8px;
    transition: 0.3s;
}

.social-icons a:hover {
    background-color: #ffcc00!important;
    color: #000!important;
}

.footer-divider {
    border-color: #333!important;
    margin: 30px 0;
}

.footer-section p.mb-0 {
    color: #ccc!important;
    font-size: 14px;
}

@media (max-width: 991px) {
    .footer-section .social-icons a {
        margin-bottom: 10px;
    }
}

@media (max-width: 575px) {
    .footer-section {
        text-align: center;
    }
    .footer-section .footer-about,
    .footer-section .footer-links {
        margin-bottom: 20px;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Common button base styles */
.search-btn, .menu-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

/* Search Button */
.search-btn {
    background: #ffcc00;
    color: #0a0a0a;
}
.search-btn:hover {
    transform: scale(1.05);
}

/* Menu Button */
.menu-btn {
    background: #151515;
    border: 1px solid #333;
    color: #fff;
}
.menu-btn:hover {
    background: hsl(0, 0%, 15%);
}

/* Get In Touch Button */
.cta-btn {
    display: none;
    background: #ffcc00;
    color: #0a0a0a;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .cta-btn {
        display: block;
    }
}

.cta-btn:hover {
    background: #e6b800;
}