:root {
    --yellow: #feca00;
    --black: #000000;
    --white: #ffffff;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Franklin Gothic Book", Arial, sans-serif;
}

/* NAVBAR */
.navbar {
    background: var(--black);
    border-bottom: 2px solid var(--yellow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* CONTAINER */
.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* LOGO */
.logo {
    position: absolute;
    left: 20px;
}

.logo img {
    height: 45px;
}

/* MENU */
.nav-menu > ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 0;
    display: inline-block;
}

.nav-menu a:hover {
    color: var(--white);
}

/* ===== DROPDOWN (ABSOLUTE FIX) ===== */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #111;
    /* border: 1px solid var(--yellow); */
    list-style: none;

    /* HARD FORCE HIDE */
    display: none !important;
    visibility: hidden;
    opacity: 0;

    z-index: 9999;
}

/* Dropdown items */
.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: var(--yellow);
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background: var(--yellow);
    color: var(--black);
}

/* DESKTOP HOVER ONLY */
@media (min-width: 901px) {
    .dropdown:hover > .dropdown-menu {
        display: block !important;
        visibility: visible;
        opacity: 1;
    }
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 20px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--yellow);
    margin: 4px 0;
}

/* MOBILE */
@media (max-width: 900px) {

    .nav-container {
        justify-content: space-between;
    }

    .logo {
        position: static;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--black);
        display: none;
        padding: 20px 0;
    }

    .nav-menu.show {
        display: block;
    }

    .nav-menu > ul {
        flex-direction: column;
        gap: 20px;
    }

    /* MOBILE DROPDOWN */
    .dropdown-menu {
        position: static;
        border: none;
        background: var(--black);
        display: none !important;
        visibility: visible;
        opacity: 1;
    }

    .dropdown.active > .dropdown-menu {
        display: block !important;
    }
}


.nav-search {
    position: relative;
}

#searchInput {
    padding:5px 10px;
    border-radius:5px;
    border:none;
    font-size:14px;
}

.search-results {
    position: absolute;
    top:35px;
    left:0;
    background:#000;
    color:#fff;
    width:200px;
    max-height:250px;
    overflow-y:auto;
    border-radius:5px;
    display:none;
    z-index:1000;
}

.search-results a {
    display:block;
    padding:5px 10px;
    color:#feca00;
    text-decoration:none;
}

.search-results a:hover {
    background:#feca00;
    color:#000;
}




/* ===== SLIDER SECTION ===== */
/* ===== SLIDER SECTION ===== */
.slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #000; /* in case image takes time to load */
}

/* Slide wrapper */
.slider-wrapper {
    width: 100%;
    position: relative;
}

/* Slide */
.slide {
    display: none; /* hide all by default */
}

.slide.active {
    display: block; /* only active slide visible */
}

/* Image */
.slide img {
    width: 100%;
    height: auto; /* image keeps aspect ratio */
    display: block;
    object-fit: cover; /* cover container width */
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
}

.slider-dots .dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background: rgba(254, 202, 0, 0.4); /* brand yellow with transparency */
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
}

.slider-dots .dot.active {
    background: #feca00; /* brand yellow */
}

/* RESPONSIVE DOTS */
@media (max-width: 768px) {
    .slider {
        min-height: 180px; /* mobile */
    }

    .slider-dots .dot {
        height: 8px;
        width: 8px;
    }
}




/* services cards */
.services-wrapper {
    overflow: hidden;
    width: 100%;
}

.services-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.service-card {
    flex: 0 0 30%; /* 3 cards per row desktop */
   background: rgba(0, 0, 0, 0.8); /* black with 0.7 opacity */
    color: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.service-icon {
    font-size: 3rem;
    color: #feca00;
    margin-bottom: 10px;
}

.services-title {
    color: #feca00;
    font-size: 2rem; /* adjust bigger as needed */
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}


.services-title2 {
    color: white;
    font-size: 18px; /* adjust bigger as needed */
    font-weight: 300;
    text-align: center;
    margin-bottom: 10px;
}


.services-hr {
    width: 100px;       /* length of line */
    height: 4px;        /* thickness */
    background-color: #feca00;
    border: none;
    margin: 0 auto 40px auto; /* center and spacing */
    border-radius: 2px;
}




/* Responsive */
@media (max-width: 992px) {
    .service-card {
        flex: 0 0 50%; /* 2 per row tablet */
    }
}

@media (max-width: 600px) {
    .service-card {
        flex: 0 0 100%; /* 1 per row mobile */
    }
}



.convince-row {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.convince-wave {
    flex: 1 1 100%;
    height: 250px;
    position: relative;
    margin-top: 40px;
}

/* Yellow wave */
.convince-wave::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #feca00 50%, transparent 50%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

/* Black wave */
.convince-wave::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(225deg, #000 50%, transparent 50%);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 0;
}

/* Text overlay */
.convince-text {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2; /* above waves */
    color: #fff;
    max-width: 800px;
}

/* Adjust heading */
.services-title {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Adjust HR */
.services-hr {
    width: 100px;
    height: 4px;
    background-color: #feca00;
    border: none;
    margin: 10px auto 20px auto;
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .convince-wave {
        height: 200px;
    }
    .services-title {
        font-size: 2rem;
    }
}


.card01{
  background: rgba(0, 0, 0, 0.8);
}




.achievements-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.achievements-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.achievement-card {
    flex: 0 0 25%; /* 4 items per row desktop */
    text-align: center;
    color: #fff;
}

.circle {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #feca00;
    overflow: hidden;
}

/* Inner fill layer */
.circle::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(#feca00 0deg 0deg, rgba(0,0,0,0.7) 0deg 360deg);
    transform: rotate(-90deg);
}

/* Number in center */
.circle .number {
    position: relative;
    z-index: 2;
}

/* Labels */
.achievement-card h5 {
    color: #feca00;
    margin-top: 10px;
}

/* Responsive */
@media(max-width: 992px){
    .achievement-card { flex: 0 0 50%; }
}

@media(max-width: 600px){
    .achievement-card { flex: 0 0 100%; }
}


.footer {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-col {
    flex: 1 1 220px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 15px;
}

.footer h5 {
    color: #feca00;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links li a:hover {
    color: #feca00;
}

.footer-links li i {
    margin-right: 6px;
    color: #feca00;
}

.footer-socials a {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: #feca00;
}

.footer-hr {
    border: 0;
    height: 1px;
    background-color: #444;
    margin: 20px 0;
}

.footer-copy {
    font-size: 0.9rem;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        gap: 20px;
    }
    .footer-col {
        flex: 1 1 100%;
    }
}



.service-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    margin-bottom: 15px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card {
    background: rgba(0,0,0,0.7);
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    color: #fff;
}

.service-card h5 {
    color: #feca00;
    margin-bottom: 10px;
}

.service-icon {
    font-size: 2rem;
    color: #feca00;
    margin-bottom: 10px;
}


.whatsapp-float {
    position: fixed;
    left: 20px; /* distance from left edge */
    bottom: 50px; /* distance from bottom */
    background: #000;
    color: #feca00;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #070cce; /* optional hover effect */
}
