body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
}

/* NAVBAR */
.navbar {
    background: #fff;
}

/* ===== DROPDOWN DESIGN ===== */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    padding: 10px;
    min-width: 220px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    animation: dropdownFade 0.3s ease;
}

/* Animation */
@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown Items */
.dropdown-item {
    border-radius: 8px;
    padding: 10px 12px;
    font-weight: 500;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Hover Effect */
.dropdown-item:hover {
    background: #4B2E83;
    color: #fff;
    transform: translateX(5px);
}

/* Icons inside dropdown */
.dropdown-item i {
    font-size: 14px;
    color: #4B2E83;
    transition: 0.3s;
}

.dropdown-item:hover i {
    color: #fff;
}

/* Arrow rotate on open */
.nav-item.dropdown .dropdown-toggle::after {
    transition: 0.3s;
}

.nav-item.dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Desktop hover */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

.logo-img {
    height: 85px;
    width: auto;
}

/* BRAND TEXT */
.brand-text {
    color: #4B2E83;
    font-weight: 600;
    font-size: 18px;
    white-space: nowrap;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .logo-img {
        height: 55px;
    }

    .brand-text {
        font-size: 14px;
        white-space: normal;
        line-height: 1.2;
    }

    .navbar-brand {
        max-width: 75%;
    }
}

/* EXTRA SMALL */
@media (max-width: 480px) {
    .brand-text {
        font-size: 12px;
    }
}

.brand-text {
    color: #4B2E83;
    font-weight: bold;
}

.nav-link {
    font-weight: 500;
}

.btn-login {
    border: 1px solid #4B2E83;
    border-radius: 25px;
    padding: 6px 18px;
    color: #C9A24A;
}

.btn-signup {
    background: #4B2E83;
    color: #fff;
    border-radius: 25px;
    padding: 6px 18px;
}

/* ===== SLIDER ===== */
.hero-slider {
    width: 100%;
}

.hero-slider .swiper {
    width: 100%;
    height: 550px;
}

.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-slider .swiper {
        height: 250px;
    }
}

/* WHATSAPP */
/* CONTAINER */
.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* COMMON BUTTON STYLE */
.contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

/* ICON */
.contact-btn i {
    font-size: 16px;
}

/* CALL BUTTON */
.call-btn {
    background: linear-gradient(135deg, #4B2E83, #7b5cd6);
}

/* WHATSAPP BUTTON */
.whatsapp-btn2 {
    background: linear-gradient(135deg, #25d366, #1ebe5d);
}

/* HOVER EFFECT */
.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
    color: #fff;
}

/* MOBILE */
@media (max-width: 576px) {
    .contact-btn {
        padding: 10px 14px;
        font-size: 13px;
    }

    .contact-btn span {
        display: none; /* 👈 only icon on small mobile */
    }

    .contact-btn {
        border-radius: 50%;
        width: 45px;
        height: 45px;
        justify-content: center;
    }
}

/* ===== CUSTOM SLIDER ARROWS ===== */
.swiper-button-next,
.swiper-button-prev {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    backdrop-filter: blur(6px);
    transition: 0.3s;
}

/* Arrow icon color */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
}

/* Hover effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #C9A24A;
    transform: scale(1.1);
}

/* Position adjust */
.swiper-button-next {
    right: 20px;
}

.swiper-button-prev {
    left: 20px;
}

/* Hide arrows on small mobile */
@media (max-width: 576px) {

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

.hero-slider .swiper {
    height: 450px;
}

@media (max-width: 768px) {
    .hero-slider .swiper {
        height: 200px;
    }
}

/* Footer css */
.footer {
    background: linear-gradient(135deg, #4B2E83, #2d1b55);
    color: #fff;
    padding: 60px 0 20px;
}

/* TITLES */
.footer-title {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

/* Underline accent */
.footer-heading::after {
    content: '';
    width: 40px;
    height: 3px;
    background: #C9A24A;
    position: absolute;
    bottom: -5px;
    left: 0;
}

/* TEXT */
.footer-text {
    font-size: 14px;
    color: #ddd;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #C9A24A;
    padding-left: 5px;
}

/* SOCIAL */
.social-icons a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #C9A24A;
    transform: translateY(-3px);
}

/* OFFICE CARDS */
.office-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    transition: 0.3s;
}

.office-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.office-card h6 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #C9A24A;
}

.office-card p {
    font-size: 13px;
    color: #ccc;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding-top: 15px;
}

.footer-bottom p {
    font-size: 13px;
    color: #bbb;
}

.footer-bottom span {
    color: #C9A24A;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 15px;
    }

    .footer-title {
        font-size: 18px;
    }

    .footer-heading {
        margin-top: 20px;
    }

    .social-icons {
        text-align: left;
    }
}

/* Menu bar css */
.bscc-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #4B2E83, #7b5cd6);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Glow effect */
.bscc-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

/* Hover animation */
.bscc-cta:hover::before {
    left: 100%;
}

.bscc-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(75, 46, 131, 0.4);
    color: #fff;
}

/* Icon */
.bscc-icon {
    font-size: 16px;
}

/* MOBILE */
@media (max-width: 768px) {
    .bscc-cta {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
}

/* APPLY BUTTON */
.btn-apply {
    background: linear-gradient(135deg, #4B2E83, #6A4FBF);
    color: #fff;
    border-radius: 30px;
    padding: 8px 18px;
    font-weight: 600;
    transition: 0.3s;
}
.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: #fff;
}

/* MODAL DESIGN */
.apply-modal {
    border-radius: 15px;
    padding: 10px;
}

/* INPUT */
.apply-modal .form-control,
.apply-modal .form-select {
    border-radius: 10px;
    padding: 10px;
}

/* SUBMIT BUTTON */
.submit-btn {
    background: linear-gradient(135deg, #4B2E83, #C9A84F);
    color: #fff;
    border-radius: 30px;
    padding: 12px;
    font-weight: 600;
}
.submit-btn:hover {
    opacity: 0.9;
}

.shake {
    animation: shake 0.3s;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    50% { transform: translateX(4px); }
    75% { transform: translateX(-4px); }
    100% { transform: translateX(0); }
}