:root {
    --navy: #1a2a47;
    --gold: #f39c12;
    --light-gray: #f8f9fa;
}

body {
    font-family: "Noto Sans", sans-serif;
    overflow-x: hidden;
}

.bg-navy {
    background-color: var(--navy);
}

.text-gold {
    color: var(--gold);
}

.border-gold {
    border-color: var(--gold) !important;
}

/* Enhanced Button Styles */
.btn-navy {
    background-color: var(--navy);
    color: white;
    border: 2px solid var(--navy);
    border-radius: 8px;
    /* Softer, modern corners */
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    /* Smooth transition for all properties */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-navy:hover {
    background-color: transparent;
    color: var(--navy);
    transform: translateY(-2px);
    /* Slight lift effect */
    box-shadow: 0 6px 12px rgba(26, 42, 71, 0.15);
}

.btn-gold {
    background-color: #fcebd2;
    /* Light peach/gold from image */
    color: var(--gold);
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(243, 156, 18, 0.2);
}

.btn-navy-solid {
    background-color: var(--navy);
    color: white;
    border: 2px solid white;
    /* Thicker border for better visibility on dark hero */
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-navy-solid:hover {
    background-color: white;
    color: var(--navy);
    transform: translateY(-2px);
}

/* Service Card Button (The Dark One) */
.btn-dark {
    background-color: #1c2b4b;
    /* Deep Navy to match image footer */
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

.btn-dark:hover {
    background-color: var(--gold);
    color: white;
}

/* Top bar */
.top-bar {
    background-color: #0d1626;
}

/* nav */
/* Navbar Container */
.main-navbar {
    height: 90px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Logo Sizing */
.navbar-logo {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

/* Nav Links Styling */
.navbar-nav .nav-item {
    padding: 0 12px;
}

.navbar-nav .nav-link {
    color: var(--navy) !important;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0 !important;
    transition: color 0.3s ease;
}

/* Custom Underline Hover Effect */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
}

/* Enhanced Login Button for Nav */
.btn-navy-nav {
    background-color: var(--navy);
    color: white !important;
    font-weight: 600;
    border-radius: 6px;
    padding: 10px 28px;
    border: 2px solid var(--navy);
    transition: all 0.3s ease;
}

.btn-navy-nav:hover {
    background-color: transparent;
    color: var(--navy) !important;
    box-shadow: 0 4px 12px rgba(26, 42, 71, 0.15);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .main-navbar {
        height: auto;
        padding: 10px 0;
    }

    .navbar-nav .nav-link::after {
        display: none;
        /* Hide underline on mobile for cleaner look */
    }

    .navbar-nav .nav-item {
        padding: 8px 0;
        border-bottom: 1px solid #f8f9fa;
    }

    .btn-navy-nav {
        width: 100%;
        margin-top: 15px;
        text-align: center;
    }
}

/* Hero Section with Arch */
.hero-wrapper {
    position: relative;
    background-color: white;
    /* Bottom part of the wrapper */
}

.hero-section {
    background:
        url('images/hero-banner.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0 180px;
    position: relative;
    /* The Arch Shape from the image */
    /* clip-path: ellipse(115% 100% at 50% 0%); */
}

.hero-desc {
    max-width: 700px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.bg-gold-soft {
    background-color: rgba(2, 0, 129, 0.235);
}

.text-gold-gradient {
    color: var(--gold);
    background: linear-gradient(45deg, #f39c12, #ffcc33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



/* Shadow Utility */
.shadow-xl {
    box-shadow: 0 25px 50px -12px rgba(26, 42, 71, 0.15) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        clip-path: none;
        padding: 80px 0 100px;
    }


}

/* Stats Overlay */
.stats-box {
    border-radius: 15px;
    padding: 30px;
    margin-top: -140px;
    position: relative;
    z-index: 10;
}

.stats-box h3 {
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0;
}

.stats-box p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0;
}

/* Service Card with Trapezoid Cut */
/* Container Background */
.bg-light {
    background-color: #f8fbff !important;
    /* Extremely light blue tint for premium feel */
}

/* The Service Card - Matching the Image precisely */
.service-card {
    background: #ffffff;
    padding: 45px 35px;
    border: 1px solid rgba(26, 42, 71, 0.08);
    /* The specific trapezoid-style curve from the image */
    border-radius: 15px 15px 15px 85px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 42, 71, 0.1) !important;
    border-color: var(--gold);
}

/* Icon Box Enhancement */
.icon-box {
    width: 65px;
    height: 65px;
    background-color: #f4f7fa;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card:hover .icon-box {
    background-color: var(--navy);
    color: #ffffff;
}

/* Service Card Headings */
.service-card h4 {
    font-size: 1.25rem;
    color: var(--navy);
    transition: color 0.3s ease;
}

/* Learn More Button Inside Cards */
.btn-dark-navy {
    background-color: #121d33;
    /* Slightly darker than brand navy for buttons */
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-dark-navy:hover {
    background-color: var(--gold);
    color: #ffffff;
}

/* "See All" Top Button */
.btn-navy {
    background-color: var(--navy);
    border: 2px solid var(--navy);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-navy:hover {
    background-color: transparent;
    color: var(--navy) !important;
}

.custom-check-list li {
    margin-bottom: 12px;
}

.brightness-filter {
    filter: brightness(0) invert(1);
}

.title-text {
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-family: NotoSans-Display;
    font-size: 40px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: left;
    color: #213454;
}

/* testimonials */
/* Testimonial Section Background */

.testimonialSwiper {
    padding: 40px 20px !important;
    /* Prevents shadows from getting cut off */
    overflow: visible !important;
    /* Allows the quote icon to "pop" out */
}

.swiper-slide {
    height: auto;
    /* Makes sure all cards match height */
}

.test-prev,
.test-next {
    cursor: pointer;
    z-index: 10;
}

.testimonial-wrapper {
    background: linear-gradient(to bottom, var(--navy) 70%, #ffffff 30%);
    position: relative;
    overflow: hidden;
}

/* Add a subtle background pattern like in the image */
.testimonial-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: radial-gradient(var(--gold) 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: 1;
}

/* The Quote Card */
.testimonial-card {
    background: #ffffff;
    border-radius: 30px;
    /* Highly rounded corners for premium feel */
    padding: 60px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Decorative Large Quote Mark */
.quote-icon {
    position: absolute;
    top: -25px;
    left: 40px;
    width: 60px;
    height: 60px;
    background-color: var(--gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
}

.client-img img {
    width: 60px;
    height: 60px;
    border: 3px solid #f8f9fa;
}

/* Testimonial Controls */
:root {
    --navy: #1a2b4b;
    --gold: #f39c12;
}

/* Section Background: Split Navy/White overlap */
.testimonial-wrapper {
    background: linear-gradient(to bottom, var(--navy) 75%, #ffffff 25%);
    padding: 80px 0;
    position: relative;
}

/* The Swiper Container needs to be visible for the "Pop-out" icons */
.testimonialSwiper {
    padding: 40px 20px !important;
    overflow: visible !important;
}

/* The White Quote Card */
.testimonial-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

/* The Gold Quote Icon that pops out of the top */
.quote-badge {
    position: absolute;
    top: -25px;
    left: 40px;
    width: 55px;
    height: 55px;
    background: var(--gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.4rem;
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
}

/* Navigation Circles */
.btn-nav-circle {
    width: 45px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-nav-circle:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.1);
}

.text-navy {
    color: var(--navy);
}

.text-gold {
    color: var(--gold);
}

/* footer */
/* Footer Container */
.main-footer {
    background-color: var(--navy);
}

/* Footer Logo Box */
.logo-box-footer {
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    border-radius: 4px;
}

/* Navigation Links */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--gold);
    padding-left: 5px;
    /* Slight push animation */
}

/* Social Links */
.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Newsletter Input */
.newsletter-form .form-control {
    border-radius: 6px 0 0 6px;
    height: 48px;
}

.newsletter-form .btn-gold {
    background-color: var(--gold);
    border: none;
    color: #ffffff;
    font-weight: 600;
    border-radius: 0 6px 6px 0;
}

.newsletter-form .btn-gold:hover {
    background-color: #e67e22;
}

/* Footer Bottom Section */
.footer-bottom {
    background-color: var(--navy-dark);
}

.text-gold {
    color: var(--gold) !important;
}

/* Border color for dark theme */
.border-secondary {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .testimonial-wrapper {
        background: var(--navy);
        /* Solid navy on mobile */
    }

    .testimonial-card {
        padding: 30px;
    }
}

/* Contact page */

/* Custom Contact Header with same clip effect as home */
.contact-header {
    background: linear-gradient(rgba(26, 43, 75, 0.9), rgba(26, 43, 75, 0.9)),
        url('https://images.unsplash.com/photo-1523966211575-eb4a01e7dd51?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    clip-path: ellipse(120% 100% at 50% 0%);
    padding-bottom: 150px !important;
}

/* Overlapping Card */
.contact-section {
    margin-top: -100px;
    z-index: 5;
}

.contact-card {
    border-radius: 30px;
    overflow: hidden;
}

.rounded-start-custom {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.rounded-end-custom {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

/* Info Icons */
.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
}

.social-circle-contact {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.social-circle-contact:hover {
    background: var(--gold);
    border-color: var(--gold);
}

/* Form Styling */
.custom-input {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 12px 15px;
    border-radius: 8px;
    transition: 0.3s ease;
}

.custom-input:focus {
    background-color: #fff;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.btn-navy {
    background-color: var(--navy);
    color: white;
    border: none;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-navy:hover {
    background-color: var(--navy-dark);
    transform: translateY(-2px);
}

/* Responsiveness */
@media (max-width: 991px) {

    .rounded-start-custom,
    .rounded-end-custom {
        border-radius: 0;
    }

    .contact-card {
        border-radius: 20px;
    }

    .contact-header {
        clip-path: none;
        padding-bottom: 80px !important;
    }
}

/* terms and conditions */
/* Sidebar Nav Styling */
#terms-nav .nav-link {
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    margin-left: -2px;
    /* Aligns with the border */
}

#terms-nav .nav-link:hover {
    color: var(--gold) !important;
    background: rgba(243, 156, 18, 0.05);
}

/* Active link indicator (can be toggled via JS if needed) */
#terms-nav .nav-link.active {
    color: var(--navy) !important;
    font-weight: bold;
    border-left-color: var(--gold);
}

/* Content Area Polish */
.content-area {
    line-height: 1.8;
}

.border-gold {
    border-color: var(--gold) !important;
}

/* Header specific for Legal Pages */
header.bg-navy {
    background: linear-gradient(45deg, #0d1b2a, #1b263b);
    border-bottom: 4px solid var(--gold);
}

/* Responsive */
@media (max-width: 991px) {
    .content-area {
        padding: 30px !important;
    }
}

/* Privacy */
/* Decorative sidebar for section headings */
.content-area h4 {
    position: relative;
    letter-spacing: -0.5px;
}

/* Accent for the cards */
.border-gold {
    border-color: #f39c12 !important;
}

/* Adjusting the content area for high readability */
.content-area {
    line-height: 1.8;
    color: #4b5563;
    /* Softer text color for long reading */
}

/* Hover effect for the highlight boxes */
.bg-white.p-4:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-section {
        clip-path: none;
        padding-bottom: 50px;
    }

    .stats-box {
        margin-top: 20px;
        border-radius: 15px;
    }

    .stats-box .border-end {
        border: none !important;
        border-bottom: 1px solid #eee !important;
        padding: 15px;
    }
}