/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #ffffff;
    height: 300vh;
}

/* =======================
   TOP BAR
======================= */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgb(20, 6, 99);
    flex-wrap: wrap;
}

.social-media svg {
    width: 24px;
    height: 24px;
    fill: #F5C857;
}

.contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.contact button {
    padding: 8px 15px;
    background: #F5C857;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.contact button:hover {
    color: #F5C857;
    background-color: rgb(20, 6, 99);
}


/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* SLIDER CONTAINER */
.slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* EACH SLIDE */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* ACTIVE SLIDE */
.slide.active {
    opacity: 1;
}

/* IMAGES */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DARK OVERLAY */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* HERO TEXT */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #f1f1f1;
    line-height: 1.6;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn1 {
    background: #F5C857;
    color: black;
    border: none;
    padding: 12px 20px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

.btn2 {
    background: transparent;
    border: 2px solid #F5C857;
    color: white;
    padding: 12px 20px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

/* HOVER EFFECT */
.btn1:hover,
.btn2:hover {
    transform: scale(1.05);
    transition: 0.3s ease;
}


/* =======================
   HEADER
======================= */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    height: 100px;
    background: white;
    border-bottom: 2px solid #F5C857;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 10000;
    flex-wrap: wrap;
}

.logo img {
    width: 70px;
    height: 50px;
    padding-left: 20px;
}

.nav {
    display: flex;
    gap: 20px;
    padding-right: 20px;
}

.nav a {
    text-decoration: none;
    color: rgb(20, 6, 99);
    font-weight: bold;
    border-left: #F5C857 1.5px solid;
    padding-left: 10px;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    color: rgb(20, 6, 99);
    cursor: pointer;
}

a:hover,
a:active {
    color: #F5C857;
}

/* =======================
   HERO (SINGLE CLEAN VERSION)
======================= */
.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
    background-size: cover;
    background-position: center;
}

.hero-text {
    max-width: 800px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #f1f1f1;
}

/* HERO BUTTONS (FIXED DUPLICATE) */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 50px auto 0;
}

.btn1 {
    background: #F5C857;
    border: none;
    padding: 12px 20px;
    color: black;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

.btn2 {
    background: transparent;
    border: 2px solid #F5C857;
    padding: 12px 20px;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

.btn1:hover,
.btn2:hover {
    transform: scale(1.05);
    transition: 0.3s;
}


/* SECTION */
.about-section {
    padding: 80px 20px;
    background: #f4f6f9;
}

/* About CONTAINER */
.about-container {
    max-width: 1200px;
    margin: auto;
    display:flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* IMAGE */
.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.03);
}

/* CONTENT */
.about-content {
    flex: 1;
    min-width: 300px;
}

/* BADGE */
.about-badge {
    display: inline-block;
    background: rgb(20, 6, 99);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

/* TITLE */
.about-content h2 {
    font-size: 2.2rem;
    color: rgb(20, 6, 99);
    margin-bottom: 20px;
}

/* TEXT */
.about-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* BUTTON */
.about-btn {
    background: #F5C857;
    color: rgb(20, 6, 99);
    border: none;
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}

.about-btn:hover {
    background: rgb(20, 6, 99);
    color: white;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content h2 {
        font-size: 1.7rem;
    }

    .about-btn {
        margin-top: 10px;
    }
}



/* =======================
   SERVICES
======================= */

/* SERVICES SECTION */
.services-section {
    padding: 15px 20px;
    background: #f4f6f9;
    text-align: center;
}

/* TITLE */
.services-section h2 {
    font-size: 2.3rem;
    color: rgb(20, 6, 99);
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* GRID */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

/* CARD */
.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

/* stagger animation */
.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; }

/* IMAGE */
.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s ease;
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.service-card:hover img {
    transform: scale(1.1);
}

/* TEXT */
.service-card h3 {
    color: rgb(20, 6, 99);
    margin: 15px 0 10px;
    font-size: 1.2rem;
}

.service-card p {
    color: #555;
    font-size: 0.95rem;
    padding: 0 15px 20px;
    line-height: 1.5;
}

/* ANIMATION */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services {
        grid-template-columns: 1fr;
    }

    .services-section h2 {
        font-size: 1.8rem;
    }
}

/* =======================
   WHY CHOOSE US
======================= */

/* SECTION */
.why-section {
    padding: 30px 20px;
    padding-top: 80px;
    background: #f4f6f9;
    text-align: center;
}

/* TITLE */
.why-section h2 {
    font-size: 2.3rem;
    color: rgb(20, 6, 99);
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* CONTAINER */
.why-container {
    max-width: 800px;
    margin: auto;
    text-align: left;
}

/* ITEM */
.why-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* BUTTON */
.why-title {
    width: 100%;
    padding: 18px;
    border: none;
    background: rgb(20, 6, 99);
    color: white;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    outline: none;
    transition: 0.3s;
}

.why-title:hover {
    background: #F5C857;
    color: rgb(20, 6, 99);
}

/* COLLAPSE CONTENT */
.why-content {
    max-height: 0;
    overflow: hidden;
    background: white;
    color: #555;
    padding: 0 18px;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

/* ACTIVE STATE */
.why-item.active .why-content {
    max-height: 200px;
    padding: 15px 18px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .why-section h2 {
        font-size: 1.8rem;
    }

    .why-title {
        font-size: 0.95rem;
    }
}

/* =======================
   FOOTER
======================= */
.footer {
    background: rgb(20, 6, 99);
    color: white;
    padding: 60px 20px 20px;
    margin: 0%;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    
}

.footer-box h3 {
    color: #F5C857;
    margin-bottom: 15px;
}

.footer-box p {
    color: #ddd;
}

.footer-box a {
    display: block;
    color: #ddd;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-box a:hover {
    color: #F5C857;
}

.social {
    display: flex;
    gap: 10px;
}

.social img {
    width: 25px;
    height: 25px;
    filter: invert(80%);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: #ccc;
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 992px) {

    .about-container,
    .Why {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
    }

    .why-image {
        grid-template-columns: repeat(2, 1fr);
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
    }

    .nav.active {
        display: flex;
    }

    .hero {
        height: auto;
        min-height: 70vh;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social {
        justify-content: center;
    }

    .why-content ul li {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    float:left;
    padding: auto;
}
}

@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }
}

/* =======================
   RESPONSIVE DESIGN
======================= */

/* TABLET */
@media (max-width: 768px) {

    .hero {
        height: 70vh;
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* MOBILE SMALL */
@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .btn1,
    .btn2 {
        width: 100%;
        max-width: 250px;
    }
}

/* Hide toggle on desktop */
.menu-toggle {
    display: none;
}

/* Hide on Desktop */
.menu-toggle {
    display: none;
}

/* Mobile Menu */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        font-size: 2rem;
        cursor: pointer;
        color: #F5C857;
        z-index: 1001;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 150px;
        height: 100vh;
        margin-top: 120px;
        padding-bottom: 200px;

        background: rgb(20, 6, 99);

        display: flex;
        flex-direction: column;
        align-items: right;
        justify-content: center;

        transition: right 0.4s ease;
        z-index: 1000;
    }

    .nav.active {
        right: 0;
    }

    .nav a {
        color: white;
        text-decoration: none;
        font-size: 1.2rem;
        padding: 8px;
        border: none;
    }

    .nav a:hover {
        color: #F5C857;
    }
}

/* TESTIMONIALS */
.testimonials {
    padding: 80px 20px;
    background: #f8f8f8;
    text-align: center;
}

.testimonials h2 {
    color: rgb(20, 6, 99);
    font-size: 2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* CONTAINER */
.testimonial-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: auto;
    position: relative;
}

/* SLIDER */
.testimonial-slider {
    width: 100%;
    overflow: hidden;
}

/* TESTIMONIAL CARD */
.testimonial {
    display: none;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,.1);
    animation: fade 0.5s ease;
}

.testimonial.active {
    display: block;
}

.testimonial p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial h4 {
    color: rgb(20, 6, 99);
}

.testimonial span {
    color: #888;
    font-size: 0.9rem;
}

/* ARROWS */
.arrow {
    background: #F5C857;
    color: rgb(20, 6, 99);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    margin: 0 15px;
    transition: 0.3s;
}

.arrow:hover {
    transform: scale(1.1);
}

/* ANIMATION */
@keyframes fade {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .testimonial {
        padding: 25px;
    }

    .testimonial p {
        font-size: 1rem;
    }

    .arrow {
        width: 40px;
        height: 40px;
        margin: 0 5px;
    }
}


/* TEAM SECTION */
.team-section {
    padding: 80px 20px;
    background: #f8f8f8;
    text-align: center;
}

.team-section h2 {
    color: rgb(20, 6, 99);
    font-size: 2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* CONTAINER */
.team-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1200px;
    margin: auto;
}

/* SLIDER */
.team-slider {
    overflow: hidden;
    width: 100%;
}

.team-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* CARD */
.team-card {
    min-width: 300px;
    margin: 10px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,.1);
}

.team-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.team-card h3 {
    color: rgb(20, 6, 99);
    margin-top: 15px;
}

.team-card p {
    color: #666;
    padding-bottom: 20px;
}

/* ARROWS */
.team-arrow {
    background: #F5C857;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.4rem;
    color: rgb(20, 6, 99);
    cursor: pointer;
    margin: 10px;
    transition: .3s;
}

.team-arrow:hover {
    transform: scale(1.1);
}

/* MOBILE */
@media (max-width: 768px) {

    .team-card {
        min-width: 250px;
    }

    .team-card img {
        height: 250px;
    }

    .team-section h2 {
        font-size: 1.7rem;
    }
}

/* NEWSLETTER SECTION */
.newsletter-section {
    padding: 80px 20px;
    background: #f4f4f4;
    text-align: center;
}

/* HEADER */
.newsletter-header h2 {
    font-size: 2.2rem;
    color: rgb(20, 6, 99);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.newsletter-header p {
    color: #555;
    margin-bottom: 40px;
}

/* NEWS GRID */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

/* NEWS CARD */
.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,.1);
    transform: translateY(30px);
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.news-card:nth-child(1) { animation-delay: 0.1s; }
.news-card:nth-child(2) { animation-delay: 0.3s; }
.news-card:nth-child(3) { animation-delay: 0.5s; }

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.4s;
}

.news-card:hover img {
    transform: scale(1.1);
}

/* CONTENT */
.news-content {
    padding: 20px;
    text-align: left;
}

.news-content h3 {
    color: rgb(20, 6, 99);
    margin-bottom: 10px;
}

.news-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.news-content span {
    font-size: 0.8rem;
    color: #999;
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SUBSCRIBE BOX */
.subscribe-box {
    margin-top: 60px;
    background: rgb(20, 6, 99);
    padding: 40px;
    border-radius: 10px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,.2);
}

.subscribe-box h3 {
    margin-bottom: 20px;
}

/* FORM */
.subscribe-box form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.subscribe-box input {
    padding: 12px;
    width: 60%;
    border: none;
    border-radius: 5px;
    outline: none;
}

.subscribe-box button {
    padding: 12px 20px;
    background: #F5C857;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

.subscribe-box button:hover {
    background: white;
    color: rgb(20, 6, 99);
    transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .subscribe-box input {
        width: 100%;
    }
}

/* CLIENTS SECTION */
.clients-section {
    background: #f8f9fc;
    padding: 80px 20px;
    text-align: center;
}

/* CONTAINER */
.clients-container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.clients-title {
    font-size: 2rem;
    color: rgb(20, 6, 99);
    margin-bottom: 10px;
    font-weight: bold;
}

.clients-subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 1rem;
}

/* GRID */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    align-items: center;
}

/* CLIENT BOX */
.client {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LOGO IMAGE */
.client img {
    width: 100%;
    max-width: 120px;
    filter: grayscale(100%);
    transition: 0.3s ease;
}

/* HOVER EFFECT */
.client:hover {
    transform: translateY(-5px);
}

.client:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* RESPONSIVE TABLET */
@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .top-bar {
        padding: 5px 8px;
        gap: 5px;
    }

    .social-media {
        gap: 6px;
    }

    .social-media svg {
        width: 14px;
        height: 14px;
    }

    .contact {
        gap: 5px;
    }

    .contact span {
        font-size: 11px;
    }

    .contact svg {
        width: 12px;
        height: 12px;
    }

    .contact button {
        font-size: 10px;
        padding: 4px 8px;
        white-space: nowrap;
    }
}