html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width:768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f8fbff;
    font-family: 'Segoe UI', sans-serif;
}

.main-content {
    flex: 1;
}

/* ====================================
   NAVBAR
==================================== */

.custom-navbar {
    background: linear-gradient( 135deg, #0f172a, #2563eb, #06b6d4 );
    padding: 12px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
    position: sticky;
    top: 0;
    z-index: 1050;
}

    .custom-navbar .navbar-brand {
        color: white !important;
        font-size: 1.6rem;
        letter-spacing: .5px;
    }

        .custom-navbar .navbar-brand:hover {
            transform: scale(1.05);
            transition: .3s;
        }

    /* ====================================
   NAV LINKS
==================================== */

    .custom-navbar .nav-link {
        color: white !important;
        font-weight: 600;
        margin: 0 5px;
        padding: 10px 18px !important;
        border-radius: 30px;
        position: relative;
        transition: all .3s ease;
    }

        .custom-navbar .nav-link:hover {
            background: rgba(255,255,255,.15);
            transform: translateY(-2px);
        }

        .custom-navbar .nav-link::after {
            content: '';
            position: absolute;
            left: 20%;
            bottom: 6px;
            width: 0;
            height: 2px;
            background: white;
            transition: .3s;
        }

        .custom-navbar .nav-link:hover::after {
            width: 60%;
        }

/* Active menu */

.active-nav {
    background: linear-gradient( 135deg, #0d6efd, #00bfff );
    color: white !important;
    box-shadow: 0 5px 15px rgba(13,110,253,.4);
}

/* ====================================
   HAMBURGER
==================================== */

.custom-toggler {
    border: none;
    box-shadow: none !important;
}

    .custom-toggler .navbar-toggler-icon {
        filter: brightness(0) invert(1);
    }

/* ====================================
   MOBILE MENU
==================================== */

@media(max-width:991px) {

    .navbar-collapse {
        margin-top: 15px;
        background: rgba(255,255,255,.12);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 15px;
        animation: slideDown .3s ease;
    }

    .custom-navbar .nav-link {
        text-align: center;
        margin: 8px 0;
    }
}

@keyframes slideDown {

    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================================
   FOOTER
==================================== */

.custom-footer {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: auto;
}

    .custom-footer a {
        color: #38bdf8;
        text-decoration: none;
    }

        .custom-footer a:hover {
            color: white;
        }

/* ====================================
   FULL WIDTH BANNER
==================================== */

.carousel,
.carousel-inner,
.carousel-item {
    width: 100%;
}

    .carousel-item img {
        width: 100%;
        height: auto;
        display: block;
    }

@media(max-width:768px) {

    .carousel-item img {
        max-height: 250px;
        object-fit: cover;
    }
}


/* Home Css*/

/* =====================================
   INSURANCE CARDS
===================================== */

.plans-section {
    background: #f8fbff;
}

.insurance-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all .35s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

    .insurance-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,.15);
    }

    .insurance-card .card-body {
        padding: 30px 20px;
    }

.insurance-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.insurance-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #0f172a;
}

.insurance-card p {
    color: #6b7280;
    min-height: 90px;
}

.insurance-card .btn {
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
}

/* Mobile */

@media (max-width: 576px) {

    .insurance-card {
        margin-bottom: 15px;
    }

    .insurance-icon {
        font-size: 45px;
    }

    .insurance-card h4 {
        font-size: 1.2rem;
    }
}


/*Inquiry Form*/

.enquiry-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,.1);
}

.form-control,
.form-select {
    height: 50px;
}

.terms-box {
    background: #f4f8ff;
    border: 1px solid #d7e6ff;
    border-radius: 10px;
    padding: 20px;
}

.btn-submit {
    background: linear-gradient( 135deg, #2196f3, #00c6ff );
    color: white;
    border: none;
    padding: 14px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
}

    .btn-submit:hover {
        color: white;
        opacity: .95;
    }

@media(max-width:768px) {
    .enquiry-form {
        padding: 20px;
    }
}


/* ==========================
   HELP LINE PAGE
========================== */

.help-section {
    padding: 60px 15px;
    background: #f8fbff;
}

.help-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.help-icon {
    font-size: 70px;
    margin-bottom: 15px;
}

.help-title {
    color: #0d6efd;
    font-weight: 700;
    margin-bottom: 15px;
}

.help-subtitle {
    color: #6c757d;
    margin-bottom: 30px;
}

.contact-box {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f4f8ff;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 35px;
}

.contact-item h5 {
    margin-bottom: 5px;
}

.contact-item a {
    text-decoration: none;
    color: #0d6efd;
    font-weight: 600;
}

.enquiry-btn {
    background: linear-gradient( 135deg, #0d6efd, #00c6ff );
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
}

    .enquiry-btn:hover {
        color: white;
        transform: translateY(-2px);
    }

/* Mobile */

@media(max-width:768px) {

    .help-card {
        padding: 25px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .help-title {
        font-size: 1.8rem;
    }

    .enquiry-btn {
        width: 100%;
    }
}

/* ==========================
   PRIVACY POLICY PAGE
========================== */

.privacy-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,.08);
}

.privacy-section {
    margin-bottom: 35px;
}

    .privacy-section h3 {
        color: #0d6efd;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .privacy-section p {
        line-height: 1.8;
        color: #555;
    }

    .privacy-section ul {
        padding-left: 20px;
    }

    .privacy-section li {
        margin-bottom: 8px;
        color: #555;
    }

.contact-box {
    background: #f8fbff;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #0d6efd;
}

    .contact-box a {
        text-decoration: none;
        font-weight: 600;
    }

@media(max-width:768px) {

    .privacy-container {
        padding: 20px;
    }

    .privacy-section h3 {
        font-size: 1.2rem;
    }
}

/* ==========================
   FOOTER
========================== */

.custom-footer {
    background: linear-gradient(135deg, #0f172a, #1e40af);
    color: #ffffff;
    padding: 20px 0;
    margin-top: 40px;
}

    .custom-footer a {
        color: #60a5fa;
        text-decoration: none;
    }

        .custom-footer a:hover {
            color: #93c5fd;
            text-decoration: underline;
        }

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.developer-info a {
    color: #60a5fa;
    text-decoration: none;
}

    .developer-info a:hover {
        color: #93c5fd;
        text-decoration: underline;
    }

.developer-info {
    font-size: 0.95rem;
    color: #dbeafe;
}

    .developer-info strong {
        color: #fbbf24;
        font-weight: 700;
    }

/* Mobile */

@media (max-width: 768px) {

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .developer-info {
        margin-top: 8px;
    }
}
