body {
    font-family: 'Poppins', sans-serif;
    padding-top: 80px; /* adjust based on navbar height */
}

/* PAGE HEADER */
.page-header {
    background: linear-gradient(135deg, #0b1c3d, #132a5e);
    padding: 120px 0 80px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* glow effect */
.page-header::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,215,0,0.15), transparent);
    top: -100px;
    right: -100px;
}

/* TITLE */
.page-title {
    font-size: 42px;
    font-weight: 700;
}

/* SUBTITLE */
.page-subtitle {
    color: #ddd;
    margin-top: 10px;
    font-size: 16px;
}

/* BREADCRUMB */
.breadcrumb-custom {
    margin-top: 15px;
    font-size: 14px;
}

.breadcrumb-custom a {
    color: #FFD700;
    text-decoration: none;
}

.breadcrumb-custom span {
    color: #ccc;
}

/* RESPONSIVE */
@media(max-width:768px){
    .page-header {
        padding: 100px 0 60px;
    }

    .page-title {
        font-size: 28px;
    }
}


/* NAVBAR */
/* NAVBAR */
.custom-navbar {
    background: rgba(11,28,61,0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 999;
}

/* NAV LINKS */
.nav-link {
    color: #fff !important;
    margin: 0 10px;
    position: relative;
}

.nav-link:hover {
    color: #C9A14A !important;
}

/* LOGO IMAGE */
.navbar-logo {
    height: 40px;
    width: auto;
}

/* BRAND TEXT */
.brand-text {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

/* MOBILE ADJUST */
@media (max-width: 576px) {
    .navbar-logo {
        height: 40px;
    }

    .brand-text {
        font-size: 16px;
    }
}

.navbar-logo {
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.3));
}

.navbar-brand:hover .brand-text {
    color: #C9A14A;
}

.navbar-logo {
    height: 40px;
    width: auto;
    border-radius: 12px;
    padding: 3px;
    background: rgba(255,255,255,0.1); /* subtle glass bg */
}

/* GOLD BUTTON */
.btn-gold {
    background: #C9A14A;
    color: #fff;
    border-radius: 30px;
    padding: 8px 18px;
}

/* MOBILE SIDEBAR */
.custom-offcanvas {
    background: #0B1C3D;
    color: #fff;
    width: 260px;
}

/* SIDEBAR LINKS */
.offcanvas-body .nav-link {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.offcanvas {
    transition: transform 0.4s ease-in-out;
}

.nav-link.active {
    color: #C9A14A !important;
}

/* Mobile (small devices) */
@media (max-width: 576px) {
    .custom-offcanvas {
        width: 75% !important;  /* better for small screens */
    }
}

/* Tablet */
@media (min-width: 577px) and (max-width: 992px) {
    .custom-offcanvas {
        width: 50% !important;
    }
}

.custom-offcanvas {
    background: rgba(11,28,61,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 5px 0 30px rgba(0,0,0,0.3);
}
/* HERO */
/* HERO SECTION BASE */
.hero-section {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.carousel,
.carousel-inner,
.carousel-item {
    height: 100%;
}

/* HERO SLIDE */
.hero-slide {
    position: relative;
    height: 90vh;
    background-size: cover;
    background-position: center;
}

/* DARK OVERLAY */
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(11,28,61,0.85), rgba(11,28,61,0.3));
    z-index: 1;
}

/* HERO CONTENT */
.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 550px;
    z-index: 2;
    animation: fadeUp 1s ease;
}

/* TEXT STYLING */
.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    margin-top: 15px;
    font-size: 18px;
    opacity: 0.9;
}

/* BUTTONS */
.hero-buttons {
    margin-top: 25px;
}

.hero-buttons .btn {
    margin-right: 10px;
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(-30%);
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

/* Smooth fade transition */
.carousel-fade .carousel-item {
    transition: opacity 0.6s ease-in-out;
}

/* Premium zoom effect */
.carousel-item {
    transform: scale(1.03);
    transition: transform 4s ease;
}

.carousel-item.active {
    transform: scale(1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content {
        left: 5%;
        right: 5%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }
}

/* SERVICES */
/* SECTION TITLE */
.section-title {
    font-weight: 600;
    font-size: 32px;
}

.section-subtitle {
    color: #777;
    font-size: 15px;
}

/* SERVICE CARD */
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

/* ICON */
.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* TEXT */
.service-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #666;
}

/* HOVER EFFECT */
/* SECTION */
.section-title {
    font-size: 34px;
    font-weight: 600;
}

.section-subtitle {
    color: #777;
}

/* CARD BASE */
.premium-card {
    background: linear-gradient(145deg, #ffffff, #f3f3f3);
    border-radius: 18px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* ICON */
.service-icon {
    font-size: 38px;
    color: #C9A14A;
    margin-bottom: 15px;
}

/* META (interest + tenure) */
.service-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.service-meta div {
    text-align: center;
}

.service-meta strong {
    font-size: 18px;
    display: block;
    color: #0B1C3D;
}

.service-meta span {
    font-size: 12px;
    color: #777;
}

/* BADGE */
.badge-top {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #C9A14A;
    color: #fff;
    padding: 5px 40px;
    font-size: 12px;
    transform: rotate(45deg);
}

/* HOVER EFFECT */
.premium-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* GLOW EFFECT */
.premium-card::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201,161,74,0.15), transparent 60%);
    top: -50%;
    left: -50%;
    opacity: 0;
    transition: 0.4s;
}

.premium-card:hover::after {
    opacity: 1;
}



/* testimonials SECTION BACKGROUND */
.why-us-section {
    background: linear-gradient(135deg, #0B1C3D, #162d5a);
    color: #fff;
}

/* TITLE */
.why-title {
    font-size: 34px;
    font-weight: 600;
}

.why-title span {
    color: #C9A14A;
}

/* DESCRIPTION */
.why-desc {
    color: rgba(255,255,255,0.8);
    margin: 15px 0;
}

/* STATS */
.why-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.why-stats h4 {
    margin: 0;
    font-weight: 600;
}

.why-stats span {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

/* CARDS */
.why-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

/* ICON */
.why-card .icon {
    font-size: 30px;
    margin-bottom: 10px;
}

/* TEXT */
.why-card h5 {
    margin-bottom: 8px;
}

.why-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}

/* HOVER EFFECT */
.why-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.1);
}

/* GLOW EFFECT */
.why-card::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201,161,74,0.2), transparent 60%);
    top: -50%;
    left: -50%;
    opacity: 0;
    transition: 0.4s;
}

.why-card:hover::after {
    opacity: 1;
}


/* BACKGROUND */
.testimonials-section {
    background: #f8f9fc;
}

/* CARD */
.testimonial-card {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s;
    height: 100%;
}

/* HOVER */
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* STARS */
.stars {
    color: #C9A14A;
    font-size: 18px;
    margin-bottom: 10px;
}

/* TEXT */
.testimonial-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* USER */
.user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.user h6 {
    margin: 0;
    font-weight: 600;
}

.user span {
    font-size: 12px;
    color: #777;
}


/* CTA SECTION */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0b1c3d, #132a5e);
    position: relative;
    overflow: hidden;
}

/* Glow effect */
.cta-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,215,0,0.15), transparent);
    top: -100px;
    left: -100px;
}

.cta-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,215,0,0.1), transparent);
    bottom: -100px;
    right: -100px;
}

/* Box */
.cta-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 60px 30px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

/* Title */
.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}

.cta-title span {
    color: #FFD700;
}

/* Subtitle */
.cta-subtitle {
    color: #ddd;
    margin: 15px 0 30px;
    font-size: 18px;
}

/* Buttons */
.cta-buttons .btn {
    margin: 10px;
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s ease;
}

/* Gold Button */
.btn-gold {
    background: linear-gradient(45deg, #FFD700, #e6c200);
    color: #000;
    border: none;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,215,0,0.4);
}

/* Outline Button */
.btn-outline-light {
    border: 1px solid #fff;
    color: #fff;
}

.btn-outline-light:hover {
    background: #fff;
    color: #000;
}

/* Responsive */
@media(max-width:768px){
    .cta-title {
        font-size: 26px;
    }

    .cta-subtitle {
        font-size: 15px;
    }
}


/* FAQ SECTION */
.faq-section {
    background: #f8f9fc;
}

/* Title */
.section-title {
    font-weight: 700;
    font-size: 32px;
}

.section-subtitle {
    color: #777;
}

/* Accordion Style */
.custom-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Button */
.custom-accordion .accordion-button {
    font-weight: 600;
    font-size: 16px;
    padding: 18px;
    background: #fff;
    border: none;
    box-shadow: none;
}

/* Active */
.custom-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(45deg, #0b1c3d, #132a5e);
    color: #fff;
}

/* Body */
.custom-accordion .accordion-body {
    background: #fff;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* Icon fix */
.accordion-button:focus {
    box-shadow: none;
}

/* Smooth transition */
.accordion-collapse {
    transition: all 0.3s ease;
}


/* BRANCHES SECTION */
.branches-section {
    background: linear-gradient(to bottom, #f8f9fc, #eef1f7);
}

/* Card */
.branch-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Hover effect */
.branch-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* Head office highlight */
.head-office {
    border: 2px solid #FFD700;
}

/* Badge */
.branch-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #FFD700, #e6c200);
    color: #000;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* Title */
.branch-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

/* Address */
.branch-address {
    color: #555;
    line-height: 1.6;
}

/* Contact */
.branch-contact {
    margin-top: 15px;
    font-size: 14px;
    color: #333;
}

/* Responsive */
@media(max-width:768px){
    .branch-card {
        padding: 20px;
    }
}



/* ABOUT SECTION */
.about-section {
    background: #ffffff;
}

/* Image */
.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: 0.4s;
}

.about-image img:hover {
    transform: scale(1.03);
}

/* Title */
.about-title {
    font-size: 34px;
    font-weight: 700;
}

.about-title span {
    color: #FFD700;
}

/* Text */
.about-text {
    color: #555;
    line-height: 1.7;
    margin-top: 10px;
}

/* Features */
.about-features {
    margin-top: 20px;
}

.feature-item {
    margin-bottom: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.feature-item span {
    color: #28a745;
    margin-right: 10px;
    font-size: 18px;
}

/* Button reuse */
.btn-gold {
    background: linear-gradient(45deg, #FFD700, #e6c200);
    border: none;
    color: #000;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 30px;
}

.btn-gold:hover {
    box-shadow: 0 10px 25px rgba(255,215,0,0.4);
    transform: translateY(-2px);
}

/* Responsive */
@media(max-width:768px){
    .about-title {
        font-size: 26px;
    }
}


/* Action support */
/* CONTAINER */
.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

/* COMMON STYLE */
.floating-contact a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: 0.3s;
}

/* WHATSAPP */
.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* CALL */
.call-btn-float {
    background: linear-gradient(45deg, #FFD700, #e6c200);
    color: #000;
}

.call-btn-float:hover {
    transform: scale(1.1);
}

.whatsapp-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* End of the action support*/


/* ===============================
   SUPPORT SECTION (PREMIUM)
================================ */
.support-section {
    background: linear-gradient(135deg, #0b1c3d, #132a5e);
    position: relative;
    overflow: hidden;
}

/* subtle glow */
.support-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,215,0,0.15), transparent);
    top: -100px;
    left: -100px;
}

/* MAIN BOX */
.support-box {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

/* TITLE */
.support-title {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
}

/* TEXT */
.support-text {
    color: #ddd;
    margin-top: 10px;
    line-height: 1.7;
}

/* INFO LIST */
.support-info {
    margin-top: 25px;
}

.support-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 16px;
    color: #fff;
}

.support-item span {
    margin-left: 12px;
    font-weight: 500;
}

/* ICON STYLE (UPGRADE FROM EMOJI) */
.support-item i {
    width: 38px;
    height: 38px;
    background: rgba(255,215,0,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-size: 16px;
}

/* BUTTON */
.btn-gold {
    background: linear-gradient(45deg, #FFD700, #e6c200);
    border: none;
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 28px;
    transition: 0.3s;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255,215,0,0.4);
}

/* RIGHT CARD */
.support-card {
    background: #fff;
    color: #000;
    padding: 45px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: 0.4s;
}

.support-card:hover {
    transform: translateY(-6px);
}

/* CARD TITLE */
.support-card h5 {
    font-weight: 700;
}

/* HELPLINE NUMBER */
.helpline-number {
    font-size: 30px;
    font-weight: 700;
    color: #0b1c3d;
    margin-top: 15px;
    letter-spacing: 1px;
}

/* CALL BUTTON */
.btn-outline-dark {
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-outline-dark:hover {
    background: #0b1c3d;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .support-box {
        padding: 30px;
    }

    .support-title {
        font-size: 26px;
    }

    .helpline-number {
        font-size: 24px;
    }
}


/*contact use section */
/* SECTION */
.contact-section {
    background: linear-gradient(to bottom, #f8f9fc, #eef1f7);
}

/* TITLE */
.contact-title {
    font-size: 34px;
    font-weight: 700;
}

.contact-subtitle {
    color: #777;
}

/* BOX */
.contact-box {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* FORM GROUP (FLOATING LABEL) */
.form-group {
    position: relative;
}

/* INPUT */
.form-control {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 15px;
    background: transparent;
    transition: 0.3s;
}

/* FOCUS EFFECT */
.form-control:focus {
    border-color: #FFD700;
    box-shadow: 0 0 0 2px rgba(255,215,0,0.2);
}

/* LABEL */
.form-group label {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    background: #fff;
    padding: 0 5px;
    color: #888;
    font-size: 14px;
    transition: 0.3s;
    pointer-events: none;
}

/* FLOAT EFFECT */
.form-control:focus + label,
.form-control:not(:placeholder-shown) + label,
textarea:focus + label,
textarea:not(:placeholder-shown) + label,
select:focus + label,
select:valid + label {
    top: -8px;
    font-size: 12px;
    color: #FFD700;
}

/* BUTTON */
.btn-gold {
    background: linear-gradient(45deg, #FFD700, #e6c200);
    border: none;
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    padding: 14px 35px;
    transition: 0.3s;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255,215,0,0.4);
}

/* RESPONSIVE */
@media(max-width:768px){
    .contact-box {
        padding: 25px;
    }

    .contact-title {
        font-size: 26px;
    }
}

/* FOOTER */
/* FOOTER MAIN */
.footer-section {
    background: #0b1c3d;
    color: #fff;
    padding: 60px 0 20px;
}

/* LOGO */
.footer-logo {
    font-weight: 700;
    font-size: 24px;
    color: #FFD700;
}

/* TEXT */
.footer-text {
    color: #bbb;
    margin-top: 10px;
    line-height: 1.6;
}

/* TITLES */
.footer-title {
    font-weight: 600;
    margin-bottom: 15px;
}

/* LINKS */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: #FFD700;
    padding-left: 5px;
}

/* CONTACT */
.footer-section p {
    font-size: 14px;
    color: #bbb;
}

.footer-section i {
    color: #FFD700;
    margin-right: 8px;
}

/* SOCIAL */
.footer-social a {
    display: inline-block;
    margin-right: 10px;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    color: #fff;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #FFD700;
    color: #000;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    font-size: 14px;
    color: #aaa;
}

/* SECTION */
.app-dual-section {
    background: #f5f7fb;
}

/* CARD BASE */
.app-card {
    position: relative;
    border-radius: 20px;
    padding: 40px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 280px;
    transition: 0.4s;
}

/* ANDROID STYLE */
.android-card {
    background: linear-gradient(135deg, #1db954, #0f9d58);
    color: #fff;
}

/* IOS STYLE */
.ios-card {
    background: linear-gradient(135deg, #111, #333);
    color: #fff;
}

/* DWNLOAD APP CONTENT */
.app-content {
    max-width: 60%;
}

.app-content h3 {
    font-weight: 700;
    margin-bottom: 10px;
}

.app-content p {
    font-size: 14px;
    opacity: 0.9;
}

/* LIST */
.app-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.app-list li {
    margin-bottom: 8px;
    font-size: 14px;
}

.app-list i {
    margin-right: 6px;
    color: #FFD700;
}

/* BUTTON */
.store-btn {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #000;
    padding: 10px 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.store-btn.dark {
    background: #fff;
}

.store-btn i {
    font-size: 22px;
    margin-right: 8px;
}

.store-btn small {
    display: block;
    font-size: 10px;
}

.store-btn strong {
    font-size: 13px;
}

.store-btn:hover {
    transform: translateY(-3px);
}

/* IMAGE */
.app-img {
    width: 140px;
    position: absolute;
    right: 20px;
    bottom: 0;
    border-radius: 10%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.4));
}

/* HOVER */
.app-card:hover {
    transform: translateY(-6px);
}

/* RESPONSIVE */
@media(max-width:768px){
    .app-card {
        flex-direction: column;
        text-align: center;
    }

    .app-content {
        max-width: 100%;
    }

    .app-img {
        position: relative;
        margin-top: 20px;
    }
}

/* RESPONSIVE */
@media(max-width:768px){
    .footer-section {
        text-align: center;
    }
}





/* account  SECTION */
.account-section {
    background: #f5f7fb;
}

/* SEARCH BOX */
.account-search-box {
    background: linear-gradient(135deg, #0b1c3d, #132a5e);
    padding: 50px;
    border-radius: 20px;
    color: #fff;
}

/* TITLE */
.account-title {
    font-size: 32px;
    font-weight: 700;
}

.account-subtitle {
    color: #ddd;
}

/* SEARCH BAR */
.search-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.search-bar input {
    width: 350px;
    padding: 14px;
    border-radius: 50px;
    border: none;
    outline: none;
}

.btn-search {
    background: #FFD700;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
}

/* CARDS */
.account-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.account-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

/* HIGHLIGHT CARD */
.account-card.highlight {
    background: linear-gradient(135deg, #FFD700, #f5c400);
    text-align: center;
}

.account-card.highlight h2 {
    font-size: 32px;
    font-weight: 700;
}

/* TABLE */
.transaction-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.table-modern th {
    background: #0b1c3d;
    color: #fff;
}

.table-modern td {
    vertical-align: middle;
}

/* RESPONSIVE */
@media(max-width:768px){
    .search-bar {
        flex-direction: column;
    }

    .search-bar input {
        width: 100%;
    }
}



/* Account Result Section */

#account-result.highlight-result {
    animation: highlightFade 1.5s ease;
}

@keyframes highlightFade {
    0% { background-color: #fff3cd; }
    100% { background-color: transparent; }
}

/* Google map integration */
#google-map {
    filter: grayscale(0.2) contrast(1.1);
    transition: filter 0.3s ease;
}
#google-map:hover {
    filter: grayscale(0);
}