﻿body {
        font-family: 'Poppins', sans-serif;
    }
//* ==============================
   NAVBAR BASE DESIGN
============================== */
.navbar-custom {
    background: #fff;
    padding: 10px 0;                 /* Reduced padding for better fit */
    border-bottom: 1px solid #eee;
}

/* ==============================
   TOP HEADER
============================== */
.top_header {
    background: maroon;
    color: white;
    padding: 6px 0;
    font-size: 0.9rem;
}

/* ==============================
   BRAND LOGO & TEXT
============================== */
.navbar-brand {
    font-weight: 700;
    font-size: 1.45rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-brand img {
    height: 40px;  /* FIXED SO NAVBAR DOESN’T BREAK */
}

/* ==============================
   NAV LINKS
============================== */
.navbar-nav .nav-link {
    font-weight: 600;
    padding: 8px 12px !important;     /* FIXED spacing */
    margin-right: 0 !important;       /* Removed extra spacing */
    color: #800020 !important;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;              /* PREVENT line-break */
}

.navbar-nav .nav-link:hover {
    color: #B30036 !important;
}

/* ==============================
   ACCOUNT BUTTON (Dropdown)
============================== */
.login-btn {
    border: 2px solid #7C0A0A;
    color: #7C0A0A;
    padding: 6px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;              /* Important */
}

.login-btn:hover {
    background: #7C0A0A;
    color: #fff;
    border-color: #7C0A0A;
}

/* ==============================
   DROPDOWN MENU
============================== */
.dropdown-menu {
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
}

.dropdown-menu .dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    color: #800020;
}

.dropdown-menu .dropdown-item i {
    margin-right: 8px;
}

.dropdown-menu .dropdown-item:hover {
    background: #fde8ed;
    color: #7C0A0A;
}

/* ==============================
   MOBILE RESPONSIVE FIX
============================== */
@media (max-width: 991px) {

    .navbar-custom {
        padding: 8px 0;
    }

    .navbar-nav .nav-link {
        padding: 10px 0 !important;
        text-align: center;
    }

    .navbar-brand img {
        height: 36px; /* Slightly smaller on mobile */
    }

    .login-btn {
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
}


    .carousel-item img {
        width: 100%;
        height: 520px;
        object-fit: cover;
    }
    @media(max-width:768px){
        .carousel-item img{
            height: 380px;
        }
    }
     .price-card {
        border-radius: 25px;
        transition: 0.3s ease;
        cursor: pointer;
    }

    /* Hover effect */
    .price-card:hover {
        transform: scale(1.04);
        box-shadow: 0px 8px 25px rgba(0,0,0,0.15);
    }

    /* Gold card background */
    .gold-card {
        background: #FCC50F;
        color: white;
    }

    /* Silver card background */
    .silver-card {
        background: linear-gradient(to right, #BFC3CB, #D6D9DF);
        color: #2C2C2C;
    }
    .cat-box {
    width: 120px;
    height: 120px;
    margin: auto;
    border-radius: 50%;
    padding: 6px;
    background: white;
    border: 3px solid #F59F2C;   /* orange border */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s ease;
}

/* Inner image size */
.cat-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: .3s ease;
}

/* Hover effect */
.cat-box:hover {
    transform: scale(1.07);
}

.cat-box:hover .cat-img {
    transform: scale(1.1);
}
.about-section {
    background: linear-gradient(90deg, #FCE1DF, #FEDDDD);
    border-radius: 0 0 40px 40px;
}

/* Button gradient */
.explore-btn {
    background: linear-gradient(90deg, #F85B7D, #F8D86B);
    color: white;
    border-radius: 30px;
    transition: .3s ease;
}
.explore-btn:hover {
    transform: scale(1.05);
    color: white;
}

/* Image stack */
.image-stack {
    position: relative;
    height: 350px;
}

.image-stack img {
    position: absolute;
    width: 55%;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: .3s ease;
}

/* Image positions SAME TO SAME */
.img-stack-1 {
    top: 10px;
    right: 20px;
    transform: rotate(-2deg);
}

.img-stack-2 {
    top: 80px;
    left: 80px;
    transform: rotate(3deg);
}

.img-stack-3 {
    bottom: 0;
    left: 30px;
    transform: rotate(-4deg);
}

/* Hover effect */
.image-stack img:hover {
    transform: scale(1.05) rotate(0deg);
    z-index: 10;
}

/* Mobile responsive adjustments */
@media (max-width: 576px) {
    .image-stack {
        height: 280px;
    }
    .image-stack img {
        width: 70%;
    }
}
/* Card Default Style */
.mv-box {
    border-radius: 25px;
    background: white;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: .3s ease;
}

/* Yellow Mission Background */
.mission-box {
    background: #FFBF00;
}

/* Pink Vision Background */
.vision-box {
    background: #E97451;
}

/* Hover */
.mv-box:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

/* Icon circle */
.icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.10);
}

/* Responsive Text */
.mv-box p {
    font-size: 15px;
    line-height: 1.7;
}
.cert-card {
    background-color: #fff;
    aspect-ratio: 1 / 1; /* Makes the card perfectly square */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-card img {
    max-height: 50%; /* So image doesn't overflow */
    object-fit: contain;
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.footer {
    background: #2a2c44;
    color: #fff;
    padding: 60px 0 20px;
}
.footer-logo {
    width: 120px;
    margin-bottom: 20px;
}
.footer h5 {
    font-weight: 700;
    margin-bottom: 20px;
}
.footer a {
    color: #d7d7d7;
    text-decoration: none;
}
.footer a:hover {
    color: #ffffff;
}
.footer .social-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #2a2c44;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 20px;
}
.footer .social-icon:hover {
    background: #ff6f61;
    color: #fff;
}
.bottom-footer {
    border-top: 1px solid #888;
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    color: #ccc;
    font-size: 14px;
}
