
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Topbar Start ***/ 
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}
/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-secondary);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
   
    position: relative;
    overflow: hidden;

    background: linear-gradient(rgba(1,95,201,0.8), rgba(0,0,0,0.4)),
                url('../img/background.png');

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    padding: 60px 0;

}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}
/*** Service End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-light);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-white);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}
/*** Blog End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
} 

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}
/*** Team End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}


.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}
/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, .08);
}
/*** copyright end ***/

/* HERO */
:root{
    --primary:#0A1931;
    --secondary:#244082;
    --gold:#D4AF37;
    --accent:#06B6D4;
    --text:#E5E7EB;
}

/* HERO SECTION */
.hero-ultra{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:var(--primary);
    font-family:'Inter', sans-serif;
}

/* BACKGROUND */
.hero-bg{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 20% 30%, rgba(36,64,130,0.4), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(6,182,212,0.25), transparent 40%),
        url('img/background.png') center/cover no-repeat;
    animation:zoomBg 20s infinite alternate ease-in-out;
    z-index:1;
}

/* DARK OVERLAY */
.hero-bg::after{
    content:"";
    position:absolute;
    inset:0;
    background:white;
}

/* CONTAINER */
.hero-container{
    position:relative;
    z-index:2;
    max-width:1200px;
    margin:auto;
    padding:40px 20px;
    width:100%;
}

/* GRID LAYOUT */
.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

/* GLASS CARD */
.hero-card{
    padding:45px;
    border-radius:24px;
    background:white;
    backdrop-filter:blur(16px);
    border:1px solid rgba(255,255,255,0.15);
    box-shadow:0 20px 60px rgba(0,0,0,0.4);
    animation:fadeUp 1s ease;
}

/* TAG */
.hero-tag{
    font-size:12px;
    letter-spacing:3px;
    color:#e30613;
    margin-bottom:15px;
}

/* HEADING */
.hero-card h1{
    font-size:52px;
    color:#0a3d91;
    line-height:1.2;
    margin-bottom:15px;
}

.hero-card h1 span{
    background: linear-gradient( #e30613);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXT */
.hero-card p{
    color:#0a3d91;
    font-size:16px;
    line-height:1.7;
    margin-bottom:30px;
}

/* BUTTONS */
.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

/* PRIMARY BUTTON */
.btn-main{
    padding:14px 32px;
    background:linear-gradient(135deg,var(--secondary),var(--accent));
    color:#fff;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn-main:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

/* OUTLINE BUTTON */
.btn-outline{
    padding:14px 32px;
    border:1px solid #e30613;
    color: #e30613;
    border-radius:40px;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

.btn-outline:hover{
    background:rgba(212,175,55,0.1);
}

/* RIGHT SIDE VISUAL (OPTIONAL) */
.hero-visual{
    position:relative;
}

.hero-visual img{
    width:100%;
    max-width:500px;
    display:block;
    margin:auto;
    animation:float 4s ease-in-out infinite;
}

/* ANIMATIONS */
@keyframes zoomBg{
    from{ transform:scale(1); }
    to{ transform:scale(1.08); }
}

@keyframes fadeUp{
    from{opacity:0; transform:translateY(40px);}
    to{opacity:1; transform:translateY(0);}
}

@keyframes float{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-15px);}
}

/* 📱 RESPONSIVE */
@media(max-width:992px){
    .hero-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-card{
        padding:30px;
    }

    .hero-card h1{
        font-size:36px;
    }

    .hero-buttons{
        justify-content:center;
    }
}

@media(max-width:576px){
    .hero-card h1{
        font-size:28px;
    }

    .btn-main,
    .btn-outline{
        width:100%;
        text-align:center;
    }
}
/* SHOW ARROWS ON MOBILE */

.why-ultra {
    padding: 80px 20px;
    background: #f5f7fb;
}

.why-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.why-title {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */
.why-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* ICON BOX */
.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #2d5cff, #1a3ed8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    color: #fff;
    font-size: 26px;
}

/* TEXT */
.why-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
}

.why-card p {
    font-size: 14px;
    color: #777;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}
.services-premium {
    padding: 80px 20px;
    background: #f8f9fa;
}

.services-title {
    text-align: center;
    margin-bottom: 50px;
}

.services-title h2 {
    font-size: 34px;
    font-weight: 700;
}

.services-title p {
    color: #777;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.service-card h4 {
    margin: 20px 0 10px;
    font-weight: 600;
}

.service-card p {
    font-size: 14px;
    color: #666;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: #007bff;
    font-weight: 600;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

.reviews-ultra-3 {
    padding: 80px 20px;
    background: #f8f9fa;
    text-align: center;
}

.slider-container {
    overflow: hidden;
    max-width: 100%;
    margin-top: 40px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: 320px;
    margin: 0 10px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.review-card.active {
    transform: scale(1.05);
}

.stars {
    color: #ffc107;
    margin-bottom: 10px;
}

.client h4 {
    margin-top: 15px;
    font-weight: 600;
}

.client span {
    font-size: 13px;
    color: #777;
}

.premium-footer {
    background: #0f2b5b; /* Deep Blue */
    color: #ffffff;
    padding: 70px 0 30px;
    font-family: 'Poppins', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white; /* Accent Orange */
    position: relative;
}



.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.75);
}

.footer-col span {
    color: #ffffff;
    font-weight: 500;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #e30613;
    transform: translateX(4px);
}

.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    margin-right: 8px;
    color: #ffffff;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #ffb400;
    color: #0f2b5b;
}

.footer-links {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    margin-bottom: 25px;
}

.footer-links h5 {
    font-size: 15px;
    margin-bottom: 10px;
    color: #ffb400;
}

.footer-links a {
    font-size: 13px;
    margin-right: 18px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffb400;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    background-color: #0f2b5b!important;
}
.about-luxury {
    padding: 80px 20px;
    background: #fff;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
}

.about-tag {
    color: #007bff;
    font-weight: 600;
    font-size: 14px;
}

.about-content h1 {
    font-size: 36px;
    margin: 15px 0;
}

.about-content h1 span {
    color: #007bff;
}

.about-highlight {
    font-weight: 500;
    margin-bottom: 15px;
}

.about-text p {
    margin-bottom: 10px;
    color: #555;
}

.about-image {
    flex: 1;
}

.image-frame img {
    width: 100%;
    border-radius: 15px;
}

/* Vision Mission */
.about-vm {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.vm-card {
    flex: 1;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
}
/*about*/
.about-luxury {
    padding: 100px 20px;
    background: #f8f9fc;
}

/* Container */
.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: center;
}

@media(max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Tag */
.about-tag {
    display: inline-block;
    background: linear-gradient(90deg, #e30613, #0a3d91);
    color: white;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

/* Heading */
.about-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: #0a3d91;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-content h1 span {
    background: linear-gradient(90deg, #e30613, #0a3d91);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Highlight */
.about-highlight {
    font-size: 17px;
    color: #e30613;
    font-weight: 600;
    margin-bottom: 24px;
}

/* Text */
.about-text p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 14px;
}

/* IMAGE */
.about-image {
    position: relative;
}

.image-frame {
    background: white;
    border-radius: 22px;
    padding: 12px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
    transition: 0.4s ease;
}

.image-frame:hover {
    transform: translateY(-6px) scale(1.02);
}

.image-frame img {
    width: 100%;
    border-radius: 16px;
    height: 420px;
    object-fit: cover;
}

/* VISION / MISSION */
.about-vm {
    max-width: 1100px;
    margin: 70px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

@media(max-width: 768px) {
    .about-vm {
        grid-template-columns: 1fr;
    }
}

.vm-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Premium Hover */
.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.12);
}

/* Glow Effect */
.vm-card::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(227,6,19,0.08), transparent 60%);
    top: -60%;
    left: -60%;
    opacity: 0;
    transition: 0.4s ease;
}

.vm-card:hover::before {
    opacity: 1;
}

/* VM Headings */
.vm-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0a3d91;
    margin-bottom: 12px;
}

.vm-card p,
.vm-card li {
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
}

.vm-card ul {
    padding-left: 18px;
}

/* ================= SECTION ================= */

.contact-section {
    padding: 80px 20px;
    background: #f1f5f9;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 30px;
}

/* CARD */
.contact-card,
.contact-info-card {
    background: white;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.contact-card h3,
.contact-info-card h3 {
    margin-bottom: 20px;
    color: #0f172a;
}

/* FORM */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 12px;
}

input,
textarea {
    width: 100%;
    padding: 11px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    outline: none;
}

textarea {
    height: 110px;
    resize: none;
}

button {
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    border: none;
    padding: 12px;
    border-radius: 10px;
    color: white;
    font-size: 14px;
    cursor: pointer;
}

/* INFO */
.contact-info div {
    margin-top: 15px;
}

.contact-info strong {
    display: block;
    font-size: 13px;
    color: #475569;
}

.contact-info span {
    font-size: 14px;
    color: #0f172a;
}

/* MAP */
.contact-map iframe {
    display: block;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {

    .contact-hero {
        padding: 70px 15px;
    }

    .contact-hero h1 {
        font-size: 28px;
    }

    .contact-section {
        padding: 50px 15px;
    }

    .contact-card,
    .contact-info-card {
        padding: 25px;
        border-radius: 14px;
    }

    .form-row {
        flex-direction: column;
    }
}
/* ================= HERO ================= */

/* ===============================
   PREMIUM HERO SECTION
================================ */

.annual-return-hero {

    position: relative;

    background:
        linear-gradient(100deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.55)),
        url("../images/annual-return-banner.png");

    background-size: cover;          /* Premium full bleed */
    background-position: right center;
    background-repeat: no-repeat;

    min-height: 480px;
    padding: 140px 20px 120px;

    display: flex;
    align-items: center;

    color: white;
}

/* Container */
.annual-return-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}


/* Content Card (Premium Glass Effect) */
.hero-content {
    max-width: 520px;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(12px);
    padding: 35px 38px;
    border-radius: 14px;

    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Heading */
.hero-content h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

/* Subtext */
.hero-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #cbd5f5;
    margin-bottom: 26px;
}

/* Premium Button */
.hero-btn {
    display: inline-block;

    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;

    padding: 13px 30px;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 500;
    text-decoration: none;

    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.45);
}
@media (max-width: 768px) {

    .annual-return-hero {

        background:
            linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.92)),
            url("../images/annual-return-banner.png");

        background-size: cover;
        background-position: center;

        padding: 90px 20px;
        min-height: 420px;

        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
        padding: 28px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 14px;
    }
}

.annual-return-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.annual-return-hero p {
    opacity: 0.75;
    font-size: 17px;
}

/* ================= SECTION ================= */

.annual-return-section {
    background: #f1f5f9;
    padding: 80px 20px;
}

/* INTRO */
.annual-return-intro {
    text-align: center;
    max-width: 850px;
    margin: auto;
    margin-bottom: 45px;
}

.annual-return-intro h2 {
    font-size: 26px;
    color: #0f172a;
    margin-bottom: 12px;
}

.annual-return-intro p {
    color: #64748b;
    line-height: 1.7;
    font-size: 15px;
}

/* GRID */
.annual-return-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
}

/* CARD */
.annual-return-card {
    background: white;
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Gradient Accent */
.annual-return-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79,70,229,0.05), rgba(6,182,212,0.05));
    opacity: 0;
    transition: 0.35s ease;
}

.annual-return-card:hover::before {
    opacity: 1;
}

/* Hover Lift */
.annual-return-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border-color: #c7d2fe;
}

/* TEXT */
.return-text span {
    font-size: 11px;
    letter-spacing: 1px;
    color: #64748b;
}

.return-text strong {
    display: block;
    font-size: 15px;
    color: #0f172a;
    margin-top: 3px;
}

/* ICON */
.return-icon {
    width: 42px;
    height: 34px;
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
    transition: 0.35s ease;
}

.annual-return-card:hover .return-icon {
    transform: scale(1.08);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 576px) {

    .annual-return-hero {
        padding: 70px 15px;
    }

    .annual-return-hero h1 {
        font-size: 28px;
    }

    .annual-return-hero p {
        font-size: 14px;
    }

    .annual-return-section {
        padding: 50px 15px;
    }

    .annual-return-intro h2 {
        font-size: 20px;
    }

    .annual-return-intro p {
        font-size: 14px;
    }

    .annual-return-card {
        padding: 14px 16px;
    }
}
/* ================= HERO ================= */

.annual-report-hero {
    background: linear-gradient(135deg, var(--brand-dark), #020617);
    color: white;
    padding: 100px 20px;
}

.annual-report-hero h1 {
    font-size: 46px;
    font-weight: 700;
}

.annual-report-hero p {
    opacity: 0.7;
    font-size: 18px;
    margin-top: 10px;
}

/* ================= SECTION ================= */

.annual-report-section {
    background: linear-gradient(180deg, #ffffff, #f1f5f9);
    padding: 90px 20px;
}

.annual-report-intro {
    text-align: center;
    max-width: 850px;
    margin: auto;
    margin-bottom: 50px;
}

.annual-report-intro h2 {
    font-size: 28px;
    color: var(--text-dark);
}

.annual-report-intro p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* GRID */
.annual-report-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

/* CARD */
.annual-report-card {
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    padding: 20px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: all 0.35s ease;
}

.annual-report-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(30,58,138,0.12);
}

/* LEFT */
.report-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.report-text span {
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.report-text strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
}
.reviews{
    padding:60px 20px;
    background:#f4f7fb;
}

.container{
    max-width:1000px;
    margin:auto;
    text-align:center;
}

.title{
    font-size:32px;
    margin-bottom:40px;
    color:#244082;
}

/* SLIDER */
.slider{
    position:relative;
    overflow:hidden;
}

/* SLIDES */
.slides{
    display:flex;
    transition:0.5s;
}

/* CARD */
.card{
    min-width:100%;
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

/* TEXT */
.review-text{
    font-size:15px;
    color:#333;
    line-height:1.6;

    display:-webkit-box;
    -webkit-line-clamp:4; /* LIMIT TEXT */
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* NAME */
.card h4{
    margin-top:15px;
    color:#244082;
}

/* BUTTONS */
.prev, .next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:#244082;
    color:#fff;
    border:none;
    padding:10px;
    cursor:pointer;
    border-radius:50%;
}

.prev{ left:10px; }
.next{ right:10px; }

/* DOTS */
.dots{
    margin-top:15px;
}

.dots span{
    display:inline-block;
    width:10px;
    height:10px;
    background:#ccc;
    margin:5px;
    border-radius:50%;
    cursor:pointer;
}

.dots .active{
    background:#244082;
}


