/* ========================================
   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 {
  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/abouthero.jpg') center/cover;
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }


    @media (max-width: 992px) {
    .hero-title {
        margin-top: 100px;
        font-size: 3.2rem;
    }}

        .hero-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--primary-yellow) 0%, transparent 70%);
            opacity: 0.1;
            top: -200px;
            right: -200px;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.1; }
            50% { transform: scale(1.2); opacity: 0.15; }
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease;
            line-height: 1.2;
        }

        .hero-title .highlight {
            color: var(--primary-yellow);
            position: relative;
            display: inline-block;
        }

        .hero-title .highlight::after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            height: 8px;
            background: var(--primary-yellow);
            opacity: 0.3;
            animation: slideIn 1s ease 0.5s forwards;
            transform: scaleX(0);
            transform-origin: left;
        }

        @keyframes slideIn {
            to { transform: scaleX(1); }
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: #ccc;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease 0.3s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .stats-container {
            display: flex;
            gap: 3rem;
            margin-top: 3rem;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-yellow);
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #999;
            font-size: 1rem;
        }

/* ========================================
   MISSION SECTION
   ======================================== */
        .mission-section {
            padding: 100px 0;
            background: var(--light-black);
            position: relative;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
            animation: fadeInUp 1s ease;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: var(--primary-yellow);
margin: 1rem auto 0;
        }

        .mission-card {
            background: var(--card-black);
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 2rem;
            border: 2px solid transparent;
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1s ease 0.3s both;
        }

        .mission-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;
        }

        .mission-card:hover::before {
            left: 100%;
        }

        .mission-card:hover {
            border-color: var(--primary-yellow);
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(255, 204, 0, 0.2);
        }

        .mission-icon {
            font-size: 3.5rem;
            color: var(--primary-yellow);
            margin-bottom: 1.5rem;
            display: inline-block;
            transition: transform 0.5s ease;
        }

        .mission-card:hover .mission-icon {
            transform: rotateY(360deg);
        }

/* ========================================
   VALUES SECTION
   ======================================== */
        .values-section {
            padding: 100px 0;
            background: var(--dark-bg);
        }

        .value-card {
            background: var(--card-black);
            border-radius: 15px;
            padding: 2.5rem;
            height: 100%;
            border-left: 4px solid var(--primary-yellow);
            transition: all 0.4s ease;
            animation: slideInLeft 1s ease both;
        }

        .value-card:nth-child(1) { animation-delay: 0.1s; }
        .value-card:nth-child(2) { animation-delay: 0.2s; }
        .value-card:nth-child(3) { animation-delay: 0.3s; }
        .value-card:nth-child(4) { animation-delay: 0.4s; }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .value-card:hover {
            background: var(--light-black);
            transform: translateX(10px);
            box-shadow: -10px 0 30px rgba(255, 204, 0, 0.3);
        }

        .value-number {
            font-size: 3rem;
            color: var(--primary-yellow);
            font-weight: 700;
            opacity: 0.3;
            margin-bottom: 1rem;
        }

/* ========================================
   TEAM SECTION
   ======================================== */
        .team-section {
            padding: 100px 0;
            background: var(--light-black);
        }

        .team-member {
            text-align: center;
            margin-bottom: 3rem;
            animation: zoomIn 0.8s ease both;
        }

        .team-member:nth-child(1) { animation-delay: 0.1s; }
        .team-member:nth-child(2) { animation-delay: 0.2s; }
        .team-member:nth-child(3) { animation-delay: 0.3s; }
        .team-member:nth-child(4) { animation-delay: 0.4s; }

        @keyframes zoomIn {
            from {
                opacity: 0;
transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .team-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--primary-yellow), #ff9900);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: #000;
            position: relative;
            overflow: hidden;
            transition: all 0.5s ease;
        }

        .team-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3));
            transform: translateX(-100%);
            transition: transform 0.5s ease;
        }

        .team-member:hover .team-image::before {
            transform: translateX(100%);
        }

        .team-member:hover .team-image {
            transform: rotateY(180deg);
        }

        .team-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .team-role {
            color: var(--primary-yellow);
            margin-bottom: 1rem;
        }

/* ========================================
   SERVICES OVERVIEW
   ======================================== */
        .services-section {
            padding: 100px 0;
            background: var(--dark-bg);
        }

        .service-box {
            background: var(--card-black);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            border: 1px solid #333;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.8s ease both;
        }

        .service-box:nth-child(1) { animation-delay: 0.1s; }
        .service-box:nth-child(2) { animation-delay: 0.2s; }
        .service-box:nth-child(3) { animation-delay: 0.3s; }
        .service-box:nth-child(4) { animation-delay: 0.4s; }
        .service-box:nth-child(5) { animation-delay: 0.5s; }
        .service-box:nth-child(6) { animation-delay: 0.6s; }

        .service-box::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(to top, var(--primary-yellow), transparent);
            opacity: 0.1;
            transition: height 0.4s ease;
        }

        .service-box:hover::after {
            height: 100%;
        }

        .service-box:hover {
            border-color: var(--primary-yellow);
            transform: translateY(-5px);
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--primary-yellow);
            margin-bottom: 1rem;
        }

/* ========================================
   JOURNEY SECTION
   ======================================== */
        .journey-section {
            padding: 100px 0;
            background: var(--light-black);
        }

        .timeline {
            position: relative;
            padding: 2rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: var(--primary-yellow);
            opacity: 0.3;
        }

        .timeline-item {
            margin-bottom: 3rem;
            position: relative;
            animation: fadeInUp 1s ease both;
        }

        .timeline-item:nth-child(1) { animation-delay: 0.2s; }
        .timeline-item:nth-child(2) { animation-delay: 0.4s; }
        .timeline-item:nth-child(3) { animation-delay: 0.6s; }
        .timeline-item:nth-child(4) { animation-delay: 0.8s; }
        .timeline-item:nth-child(5) { animation-delay: 1s; }

        .timeline-content {
            background: var(--card-black);
            padding: 2rem;
            border-radius: 15px;
            border: 2px solid transparent;
            transition: all 0.4s ease;
        }

        .timeline-content:hover {
            border-color: var(--primary-yellow);
            transform: scale(1.05);
        }

        .timeline-year {
            color: var(--primary-yellow);
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

/* ========================================
   CTA SECTION
   ======================================== */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #000 0%, var(--light-black) 100%);
            text-align: center;
            position: relative;
        }

        .cta-section .section-title,
        .cta-section .lead {
            animation: fadeInUp 1s ease both;
        }

        .cta-section .lead {
            animation-delay: 0.2s;
        }

        .cta-btn {
            background: var(--primary-yellow);
            color: #000;
            border: none;
            padding: 1rem 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(0, 0, 0, 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);
            background-color: #000!important;
            border: 2px solid #ffcc00;
            color: #ffcc00;
            box-shadow: 0 10px 40px rgba(255, 204, 0, 0.5);
        }

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .stats-container {
                flex-direction: column;
                gap: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .timeline::before {
                left: 0;
            }
        }

        /* Floating Animation */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }




/* ========================================
   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;
}