body {
    font-family: "Roboto Slab", serif;
}
html {
    scroll-behavior: smooth;
}
.top-bar {
    background: #123d73;
    padding: 12px 0;
    font-size: 14px;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.top-left a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.top-social a {
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}

.top-social a:hover {
    color: #1fa28a;
}

@media (max-width: 768px) {
    /* .top-bar{
        display:none;
    } */
}
@media (max-width: 768px) {
    .top-bar {
        padding: 8px 0;
    }

    .top-left {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .top-left a {
        font-size: 12px;
    }

    .top-social {
        justify-content: center;
        margin-top: 8px;
        font-size: 12px;
        gap: 10px;
    }

    .top-social span {
        display: none;
    }
    .top-social {
        display: none;
    }
}
.navbar-logo {
    width: 220px;
    height: 80px;
    object-fit: contain;
}
.navbar-nav .nav-link {
    font-size: 22px;
    font-weight: 500;
}

.nav-link {
    color: #222 !important;
    /* margin: 0 8px; */
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #1e8186 !important;
}

.dropdown-menu {
    border-radius: 12px;
}

.dropdown-services {
    min-width: 520px;
    padding: 16px;
    border: 1px solid rgba(18, 61, 115, 0.12);
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.dropdown-services-header {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 6px 4px 14px;
}

.dropdown-services-header span {
    display: inline-block;
    color: #1e8186;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.dropdown-services-header h6 {
    margin: 0;
    color: #123d73;
    font-size: 16px;
    font-weight: 700;
}

/* Breadcrumb */
.aureon-breadcrumb {
    position: relative;
    padding: 40px;
    background:
        linear-gradient(rgba(18, 61, 115, 0.85), rgba(18, 61, 115, 0.85)),
        url("images/breadcrumb-bg.jpg") center center/cover no-repeat;
    overflow: hidden;
}

.breadcrumb-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.breadcrumb-content h1 {
    color: #fff;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
}

.breadcrumb {
    background: none;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 6px;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    line-height: 1.4;
    word-break: break-word;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

.breadcrumb-item.active {
    color: #ff6b35;
    font-weight: 600;
}

@media (max-width: 991px) {
    .aureon-breadcrumb {
        padding: 32px 20px;
    }

    .breadcrumb-content h1 {
        font-size: 40px;
    }

    .breadcrumb-item,
    .breadcrumb-item a {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .aureon-breadcrumb {
        padding: 26px 16px;
    }

    .breadcrumb-content h1 {
        font-size: 28px;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .breadcrumb-item,
    .breadcrumb-item a {
        font-size: 15px;
    }
}

@media (max-width: 420px) {
    .breadcrumb-content h1 {
        font-size: 24px;
    }

    .breadcrumb-item,
    .breadcrumb-item a {
        font-size: 14px;
    }

    .breadcrumb {
        column-gap: 6px;
    }
}

/* Aureon Service Highlight Card */
.aureon-service-viewall {
    background: linear-gradient(135deg, #123d73, #1e5aa8);
    color: #fff !important;
    font-weight: 600;
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(18, 61, 115, 0.18);
}

.aureon-service-viewall i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 18px;
}

.aureon-service-viewall:hover {
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(18, 61, 115, 0.25);
}

.aureon-service-viewall::after {
    content: "→";
    margin-left: auto;
    font-size: 18px;
    font-weight: 700;
}

.dropdown-view-all {
    flex-shrink: 0;
    padding: 10px 16px;
    border-radius: 999px;
    background: #123d73;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.dropdown-view-all:hover {
    background: #1e8186;
    color: #fff;
}

.dropdown-services .dropdown-divider {
    grid-column: 1 / -1;
    margin: 4px 0 8px;
    opacity: 0.12;
}

.dropdown-services .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 14px;
    color: #123d73;
    font-weight: 600;
    transition: 0.25s ease;
}

.dropdown-services .dropdown-item:hover,
.dropdown-services .dropdown-item:focus {
    background: rgba(30, 129, 134, 0.09);
    color: #1e8186;
    transform: translateX(4px);
}

.dropdown-services li:last-child {
    padding-top: 8px;
}

.dropdown-services .aureon-service-viewall {
    background: linear-gradient(135deg, #123d73 0%, #1e5aa8 100%);
    color: #fff !important;
    font-weight: 700;
    border-radius: 16px;
    margin: 10px 12px 6px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: calc(100% - 24px);
    min-height: 64px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
    box-shadow: 0 14px 28px rgba(18, 61, 115, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.dropdown-services .aureon-service-viewall i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 16px;
    flex-shrink: 0;
}

.dropdown-services .aureon-service-viewall::after {
    content: "→";
    margin-left: auto;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    opacity: 0.95;
}

.dropdown-services .aureon-service-viewall:hover,
.dropdown-services .aureon-service-viewall:focus {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(18, 61, 115, 0.28);
    background: linear-gradient(135deg, #0f2f57 0%, #1e8186 100%);
}

.dropdown-services .aureon-service-viewall:focus-visible {
    outline: 3px solid rgba(30, 129, 134, 0.35);
    outline-offset: 2px;
}

.btn-primary {
    padding: 10px 24px;
    font-weight: 600;
}
.btn-primary {
    background-color: #173960 !important;
    border-color: #173960 !important;
}

.btn-primary:hover {
    background-color: #0f2b4a !important;
    border-color: #0f2b4a !important;
}

@media (max-width: 991.98px) {
    .navbar-collapse.show {
        max-height: calc(100vh - 110px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    .navbar-nav {
        padding: 10px 0;
    }

    .dropdown-services {
        min-width: 100%;
        padding: 10px;
        max-height: calc(100vh - 180px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    .dropdown-services-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-collapse.show::-webkit-scrollbar,
    .dropdown-services::-webkit-scrollbar {
        width: 6px;
    }

    .navbar-collapse.show::-webkit-scrollbar-thumb,
    .dropdown-services::-webkit-scrollbar-thumb {
        background: rgba(18, 61, 115, 0.25);
        border-radius: 999px;
    }

    .dropdown-services .aureon-service-viewall {
        margin: 8px 8px 4px;
        width: calc(100% - 16px);
    }

    .dropdown-services .dropdown-item {
        padding: 10px 12px;
    }
}

@media (min-width: 992px) {
    .dropdown-services {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px 10px;
    }
}

@media (max-width: 575.98px) {
    .dropdown-services {
        max-height: calc(100vh - 150px);
    }

    .dropdown-services-header h6 {
        font-size: 14px;
    }

    .dropdown-view-all {
        width: 100%;
        text-align: center;
    }

    .dropdown-services .aureon-service-viewall {
        min-height: 58px;
    }
}

.hero-section {
    background: #f5f8fc;
    padding: 40px 0;
    overflow: hidden;
}

.hero-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    color: #123d73;
    margin-bottom: 25px;
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 30px;
    }
}

.hero-title span {
    color: #27ae60;
}

.heartbeat-line {
    width: 320px;
    height: 2px;
    background: #27ae60;
    position: relative;
    margin-bottom: 30px;
}

.doctor-name {
    color: #123d73;
    font-size: 40px;
    font-weight: 700;
}
@media (max-width: 768px) {
    .doctor-name {
        font-size: 28px;
    }
}

.doctor-degree {
    color: #27ae60;
    font-weight: 600;
}

.doctor-speciality {
    color: #555;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}
@media (max-width: 768px) {
    .hero-btns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .btn-membership,
    .btn-appointment {
        width: 100%;
        padding: 12px 10px;
        font-size: 13px;
        text-align: center;
    }
}

.btn-membership {
    background: #123d73;
    color: #fff;
    padding: 16px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.btn-appointment {
    border: 2px solid #27ae60;
    color: #27ae60;
    padding: 16px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.btn-membership:hover,
.btn-appointment:hover {
    color: #fff;
    background: #27ae60;
}
/* 
.circle-bg{
    position:absolute;
    width:520px;
    height:520px;
    background:#dceff0;
    border-radius:50%;
    right:0;
    top:20px;
} */

.doctor-img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 550px;
}

.hex-card {
    position: absolute;
    background: #fff;
    padding: 18px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 5;
    font-weight: 600;
    color: #123d73;
}

.hex-1 {
    left: 20px;
    top: 60px;
}

.hex-2 {
    left: 0;
    top: 220px;
}

.hex-3 {
    left: 20px;
    bottom: 80px;
}

.health-card {
    position: absolute;
    right: 20px;
    top: 140px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 5;
}

.health-card h6 {
    color: #123d73;
    font-weight: 700;
}

.health-card p {
    margin: 0;
    color: #666;
}

.membership-plans {
    background: #f4f8fc;
    padding: 20px 0;
}

.plan-badge {
    display: inline-block;
    padding: 10px 25px;
    background: #e8f0ff;
    color: #1e8186;
    border-radius: 50px;
    font-weight: 600;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #072c57;
    line-height: 1.1;
}
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 22px;
    }
}

.section-header h2 span {
    color: #1e8186;
}

.section-header p {
    font-size: 22px;
    color: #64748b;
    margin-top: 20px;
}

.plan-card {
    border-radius: 30px;
    overflow: hidden;
    padding: 40px;
    height: 100%;
}

.basic-plan {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.basic-plan {
    background: linear-gradient(135deg, #ffffff 0%, #f5fbfa 50%, #eef8f6 100%);

    border: 1px solid #d8e9e5;
    box-shadow: 0 15px 40px rgba(18, 61, 115, 0.08);
}

.premium-plan {
    background: #072c57;
    color: #fff;
    border: 2px solid #1e8186;
    position: relative;
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #1e8186;
    text-align: center;
    padding: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.plan-name {
    display: block;
    margin-top: 25px;
    font-weight: 700;
    letter-spacing: 2px;
}

.price {
    font-size: 50px;
    font-weight: 800;
    margin: 15px 0;
}
@media (max-width: 768px) {
    .price {
        font-size: 26px;
    }
}

.price span {
    font-size: 22px;
}

.plan-desc {
    margin-bottom: 25px;
}

.plan-card ul {
    list-style: none;
    padding: 0;
}

.plan-card ul li {
    margin-bottom: 18px;
    font-size: 18px;
}

.basic-btn,
.premium-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 18px;
    border-radius: 15px;
    margin-top: 30px;
    font-weight: 700;
}

.basic-btn {
    background: #2563eb;
    color: #fff;
}

.premium-btn {
    background: #27ae60;
    color: white;
}

.services-section {
    background: #f7f8fa;
}

.service-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: #edf3ff;
    color: #1e8186;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid #d6e4ff;
}

.service-title {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
    color: #08254d;
    margin-bottom: 20px;
}

.service-title span {
    display: block;
    color: #1e8186;
}

.service-desc {
    max-width: 750px;
    margin: auto;
    color: #6b7280;
    font-size: 18px;
    line-height: 1.8;
}

.service-card {
    position: relative;
    padding: 30px 24px;
    border-radius: 20px;
    height: 100%;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transition: 0.7s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: 20px;
    transition: 0.4s;
}

.service-card:hover .icon-box {
    transform: scale(1.1) rotate(10deg);
}

.service-card h4 {
    font-size: 28px;
    font-weight: 700;
    color: #08254d;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.8;
}

/* Card Colors */
.blue-card {
    background: #eef4ff;
    border-color: #d7e5ff;
}
.blue-icon {
    background: #2563eb;
}

.purple-card {
    background: #f5effd;
    border-color: #eadcfb;
}
.purple-icon {
    background: #9333ea;
}

.green-card {
    background: #edf9f3;
    border-color: #d5f2df;
}
.green-icon {
    background: #10b981;
}

.red-card {
    background: #fff0f0;
    border-color: #ffd9d9;
}
.red-icon {
    background: #ef4444;
}

.lime-card {
    background: #f4f8e8;
    border-color: #e3ecc4;
}
.lime-icon {
    background: #84cc16;
}

.orange-card {
    background: #fff4e9;
    border-color: #ffe0bf;
}
.orange-icon {
    background: #f97316;
}

.cyan-card {
    background: #edf9fc;
    border-color: #d5eff6;
}
.cyan-icon {
    background: #06b6d4;
}

.indigo-card {
    background: #eef1ff;
    border-color: #d8dfff;
}
.indigo-icon {
    background: #4f46e5;
}

/* Responsive */
@media (max-width: 991px) {
    .service-title {
        font-size: 28px;
        text-align: start;
    }

    .service-card h4 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .service-title {
        font-size: 24px;
        text-align: start;
    }

    .service-desc {
        font-size: 15px;
        text-align: start;
    }
}

.about-section {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #173960 0%, #1e8186 100%);
}

.about-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -200px;
    right: -150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.about-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    bottom: -150px;
    left: -100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.about-image {
    position: relative;
    z-index: 2;
}

.about-image img {
    width: 600px;
    height: 540px;
    border-radius: 30px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}
@media (max-width: 1199px) {
    .about-image img {
        max-width: 100%;
        height: auto;
    }
}
@media (max-width: 991px) {
    .about-section .row {
        display: flex;
        flex-direction: column-reverse;
    }
    .about-image {
        margin-top: 30px;
        text-align: center;
    }
}

.about-content {
    color: #fff;
    position: relative;
    z-index: 2;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.about-content h2 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}
@media (max-width: 768px) {
    .about-content h2 {
        font-size: 24px;
    }

    .about-content h2 span {
        display: inline;
    }
}

.about-content h2 span {
    display: block;
    color: #dffcff;
}

.about-content p {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
}

.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    transition: 0.4s;
}

.info-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.18);
}

.info-box i {
    width: 60px;
    height: 60px;
    background: #fff;
    color: #173960;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.info-box h5 {
    color: #fff;
    margin-bottom: 5px;
    font-weight: 700;
}

.info-box p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    margin-top: 30px;
    border-radius: 10px;
    background: #fff;
    color: #173960;
    text-decoration: none;
    font-weight: 700;
    transition: 0.4s;
}

.theme-btn:hover {
    transform: translateY(-4px);
    color: #173960;
}
.cta-section {
    padding: 40px 0;
    background: #f8fbfc;
}

.cta-section {
    position: relative;
    text-align: center;
    color: #fff;

    background: linear-gradient(135deg, #072c57 400%, #1a4e86 20%, #1fa28a 40%);

    overflow: hidden;
    box-shadow: 0 25px 60px rgba(18, 61, 115, 0.18);
}

/* Decorative Circles */

/* .cta-content::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-120px;
    left:-100px;
}

.cta-content::after{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
    bottom:-120px;
    right:-80px;
} */

.cta-content h2 {
    position: relative;
    z-index: 2;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
    font-size: 20px;
    line-height: 1.8;
    opacity: 0.95;
}

.cta-buttons {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-white {
    background: #fff;
    color: #123d73;
    padding: 16px 34px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: 16px 34px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}

.btn-green {
    background: #22c55e;
    color: #fff;
    padding: 16px 34px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}

.btn-white:hover,
.btn-outline:hover,
.btn-green:hover {
    transform: translateY(-4px);
    transition: 0.3s;
    color: inherit;
}

.cta-buttons i {
    margin-right: 8px;
}

.why-choose-us {
    padding: 20px 0;
    background: linear-gradient(135deg, #173960 0%, #1e8186 100%);
}

/* Left Image */

.why-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.02)
    );
    box-shadow: 0 20px 50px rgba(18, 61, 115, 0.12);
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Right Content */

.section-title {
    margin-bottom: 35px;
}

.section-title span {
    display: inline-block;
    background: rgba(31, 162, 138, 0.12);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-title h2 {
    font-size: 30px;
    font-weight: 800;
    color: white;
    margin: 20px 0;
    line-height: 1.2;
}

.section-title h2 span {
    display: block;
    background: none;
    padding: 0;
    color: white;
    font-size: inherit;
}

.section-title p {
    font-size: 17px;
    color: white;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Cards */

.why-card {
    background: #fff;
    padding: 10px;
    border-radius: 20px;
    height: 100%;
    transition: 0.4s;
    border: 1px solid #edf2f7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(18, 61, 115, 0.12);
}

.why-card i {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    font-size: 28px;
    border-radius: 50%;
    color: #fff;
    margin-bottom: 20px;

    background: linear-gradient(135deg, #123d73, #1fa28a);
}

.why-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #123d73;
    /* margin-bottom:12px; */
}

.why-card p {
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
    font-size: 15px;
}
@media (max-width: 768px) {
    .why-choose-us {
        padding: 10px 0;
    }

    .why-image {
        margin-bottom: 30px;
        aspect-ratio: 16 / 11;
    }

    .why-image img {
        height: 100%;
    }

    .section-title {
        text-align: center;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .why-card {
        text-align: center;
    }
}

.faq-section {
    padding: 40px 0;
    background: #f8fbfc;
}

.faq-title {
    max-width: 750px;
    margin: 0 auto 60px;
}

.faq-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    background: rgba(23, 57, 96, 0.08);
    color: #173960;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.faq-heading {
    font-size: 25px;
    font-weight: 800;
    color: #173960;
    margin-bottom: 15px;
}

.faq-desc {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.aureon-faq .faq-item {
    border: none;
    border-radius: 18px !important;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.aureon-faq .accordion-button {
    padding: 25px;
    font-size: 18px;
    font-weight: 700;
    color: #173960;
    background: #fff;
    box-shadow: none;
}

.aureon-faq .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #173960 0%, #1e8186 100%);
    color: #fff;
}

.aureon-faq .accordion-button:focus {
    box-shadow: none;
}

.aureon-faq .accordion-body {
    padding: 25px;
    line-height: 1.8;
    color: #666;
    background: #fff;
}

.aureon-faq .accordion-button::after {
    filter: brightness(0);
}

.aureon-faq .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .faq-heading {
        font-size: 36px;
    }

    .aureon-faq .accordion-button {
        font-size: 16px;
        padding: 20px;
    }
}

.footer-section {
    background: #123d73;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-logo {
    max-width: 220px;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #1fa28a;
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.footer-contact i {
    color: white;
    margin-right: 10px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: #1fa28a;
}

.footer-section hr {
    margin: 40px 0 20px;
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-bottom p {
    margin: 0;
    line-height: 1.6;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-bottom p {
        font-size: 14px;
        line-height: 1.5;
    }

    .footer-bottom a {
        display: inline-block;
        margin-top: 3px;
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .footer-bottom p {
        font-size: 13px;
    }

    .footer-bottom a {
        font-size: 13px;
    }
}

.contact-section {
    background: #f5f7fb;
}

.contact-card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #173960;
}

.contact-badge {
    display: inline-block;
    background: #e7eefc;
    color: #0b3a82;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
}

.contact-title {
    font-size: 52px;
    font-weight: 800;
    color: #071c45;
    margin-bottom: 20px;
    line-height: 1.1;
}

.contact-desc,
.form-desc,
.details-desc {
    color: #667085;
    margin-bottom: 25px;
}

.form-title,
.details-title {
    font-size: 32px;
    font-weight: 700;
    color: #071c45;
}

.custom-input {
    height: 58px;
    border-radius: 15px;
    border: 1px solid #d8e1ee;
}

textarea.custom-input {
    height: auto;
}

.btn-submit {
    background: #173960;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
}

.btn-whatsapp {
    background: #22c55e;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
}

.info-box {
    background: #f8fafd;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    gap: 15px;
    min-height: 130px;
}

.info-box i {
    width: 50px;
    height: 50px;
    background: #e7eefc;
    color: #173960;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-box h6 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.info-box p {
    margin: 0;
    color: #667085;
}

.map-btn {
    background: #173960;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
}

.map-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.map-wrapper iframe {
    display: block;
}

@media (max-width: 991px) {
    .contact-title {
        font-size: 38px;
    }

    .contact-card {
        padding: 25px;
    }
}

.aureon-blog-area {
    padding: 40px 0;
    background: #f7f8fc;
}

.aureon-blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.aureon-blog-title span {
    color: #173960;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
}

.aureon-blog-title h2 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.1;
    color: #10145e;
    max-width: 800px;
    margin-top: 15px;
}

.aureon-blog-btn {
    background: #5b5cf0;
    color: #fff;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
}

.aureon-blog-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.4s;
    height: 100%;
}

.aureon-blog-card:hover {
    transform: translateY(-10px);
}

.aureon-blog-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.aureon-blog-content {
    padding: 30px;
}

.aureon-blog-tag {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.aureon-green-tag {
    background: #e6f6ef;
    color: #0a8f67;
}

.aureon-blue-tag {
    background: #e8ebff;
    color: #5b5cf0;
}

.aureon-pink-tag {
    background: #ffe6ef;
    color: #e63279;
}

.aureon-blog-content h3 {
    font-size: 25px;
    font-weight: 700;
    color: #0c1f4d;
    margin-bottom: 15px;
}

.aureon-blog-content p {
    color: #6c7280;
    line-height: 1.8;
    margin-bottom: 25px;
}

.aureon-read-btn {
    display: inline-block;
    background: #0c2452;
    color: #fff;
    text-decoration: none;
    padding: 14px 25px;
    border-radius: 15px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .aureon-blog-title h2 {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .aureon-blog-title h2 {
        font-size: 30px;
    }

    .aureon-blog-content h3 {
        font-size: 24px;
    }
}

.aureon-photo-carousel-section {
    padding: 40px 0;
    background: #f7f9fc;
}

.aureon-photo-track {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 10px 0;
}

.aureon-photo-track::-webkit-scrollbar {
    display: none;
}

.aureon-photo-slide {
    flex: 0 0 calc((100% - 50px) / 3);
    min-width: calc((100% - 50px) / 3);
}

.aureon-photo-slide {
    background: #173960;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.aureon-photo-slide:hover {
    transform: translateY(-8px);
}

/* Review Header */

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.review-info h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.rating span {
    font-size: 14px;
    color: white;
}

.divider {
    color: white;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffc107;
    font-size: 14px;
}

/* Review Text */

.review-text {
    font-size: 16px;
    line-height: 1.9;
    color: white;
    margin: 0;
}

/* Navigation */

.aureon-photo-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #123d73;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    z-index: 10;
    transition: 0.3s;
}

.aureon-photo-nav:hover {
    background: #123d73;
    color: #fff;
}

.aureon-photo-prev {
    left: -28px;
}

.aureon-photo-next {
    right: -28px;
}

/* Responsive */

@media (max-width: 991px) {
    .aureon-photo-slide {
        flex: 0 0 calc(50% - 13px);
        min-width: calc(50% - 13px);
    }
}

@media (max-width: 576px) {
    .aureon-photo-slide {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 25px;
    }

    .review-info h4 {
        font-size: 20px;
    }

    .review-text {
        font-size: 15px;
    }

    .aureon-photo-prev {
        left: -10px;
    }
    .aureon-photo-nav {
        width: 30px;
        height: 30px;
    }

    .aureon-photo-next {
        right: -10px;
    }
}

.floating-wa-link {
    position: fixed;
    left: 20px;
    bottom: 60px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    animation: whatsappPulse 1.5s infinite;
}

.floating-wa-link i {
    color: #fff;
    font-size: 36px;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.08);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
.floating-call-btn {
    position: fixed;
    right: 20px;
    bottom: 60px;
    width: 60px;
    height: 60px;
    background: #f34a21;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(243, 74, 33, 0.4);
    z-index: 9999;
    animation: pulse-call 1.5s infinite;
}

.floating-call-btn i {
    color: #fff;
    font-size: 30px;
}

@keyframes pulse-call {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(205, 34, 11, 0.7);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile Friendly Quote Modal */
#quoteModal .modal-dialog {
    max-width: 700px;
}

#quoteModal .modal-content {
    border-radius: 20px;
    overflow: hidden;
}

#quoteModal .modal-header {
    padding: 18px 25px;
}

#quoteModal .modal-body {
    padding: 25px;
}

#quoteModal .form-control,
#quoteModal .form-select {
    height: 52px;
    border-radius: 10px;
    box-shadow: none;
}

#quoteModal textarea.form-control {
    height: 120px;
    resize: none;
}

#quoteModal .btn-primary {
    height: 52px;
    border-radius: 10px;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 767px) {
    #quoteModal .modal-dialog {
        margin: 10px;
    }

    #quoteModal .modal-content {
        border-radius: 15px;
    }

    #quoteModal .modal-header {
        padding: 15px;
    }

    #quoteModal .modal-body {
        padding: 15px;
    }

    #quoteModal .modal-title {
        font-size: 18px;
    }

    #quoteModal .form-control,
    #quoteModal .form-select {
        height: 48px;
        font-size: 14px;
    }

    #quoteModal textarea.form-control {
        height: 100px;
    }

    #quoteModal .btn-primary {
        height: 48px;
        font-size: 15px;
    }
}
