html{
    scroll-behavior:smooth;
}

*,*::before,*::after{
    box-sizing:border-box;
}

body{
    margin:0;
    padding:0;
    font-family:'Poppins', Arial, Helvetica, sans-serif;
    font-size:16px;
    line-height:1.7;
    color:#333;
    background-color:#ffffff;
    overflow-x:hidden;
}

.container{
    width:100%;
    padding-right:15px;
    padding-left:15px;
    margin-right:auto;
    margin-left:auto;
}

/* Small devices (≥576px) */
@media (min-width:576px){
    .container{
        max-width:540px;
    }
}

/* Medium devices (≥768px) */
@media (min-width:768px){
    .container{
        max-width:720px;
    }
}

/* Large devices (≥992px) */
@media (min-width:992px){
    .container{
        max-width:960px;
    }
}

/* Extra large devices (≥1200px) */
@media (min-width:1200px){
    .container{
        max-width:1140px;
    }
}

/* XXL screens (optional modern) */
@media (min-width:1400px){
    .container{
        max-width:1320px;
    }
}


.section-title{
    position:relative;
    font-weight:700;
}
.section-title::after{
    content:'';
    width:60px;
    height:3px;
    background:#ff9800;
    display:block;
    margin-top:10px;
}

/*Top Bar Alert*/
.notice-bar{
    background:linear-gradient(90deg,#1a237e,#283593);
    overflow:hidden;
    white-space:nowrap;
    padding:12px 0;
}

.notice-track{
    display:inline-block;
    padding-left:100%;
    animation:scroll-left 40s linear infinite;
    font-size:15px;
    font-weight:500;
    color:#fff;
}

.notice-track a{
    color:#ffeb3b;
    font-weight:600;
    text-decoration:none;
    margin:0 6px;
}

.notice-track a:hover{
    text-decoration:underline;
}

/* SCROLL ANIMATION */
@keyframes scroll-left{
    0%   { transform:translateX(0); }
    100% { transform:translateX(-100%); }
}

/* Pause on hover (professional touch) */
.notice-bar:hover .notice-track{
    animation-play-state:paused;
}

/* Mobile */
@media(max-width:768px){
    .notice-track{
        font-size:14px;
    }
}



/* ===============================
   HERO / CAROUSEL
================================ */
/* ===== HERO SLIDER ===== */
.hero-slider{
    position:relative;
}

#header-carousel .carousel-item{
    height:85vh;
    position:relative;
}

#header-carousel img{
    width:100%;
    height:100%;
    object-fit:cover;
    animation:zoomEffect 6s ease;
}

/* Overlay */
.carousel-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to bottom,
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.65)
    );
    z-index:1;
}

/* FORCE CENTER CAPTION */
#header-carousel .carousel-caption{
    position:absolute !important;
    top:50% !important;
    left:50% !important;
    transform:translate(-50%,-50%) !important;

    width:100%;
    max-width:900px;
    padding:0 15px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;
    z-index:5;
}

/* Caption Text */
#header-carousel .carousel-caption h1{
    font-size:52px;
    font-weight:800;
    color:#ffffff;
    margin-bottom:10px;
    animation:fadeUp .9s ease;
}

#header-carousel .carousel-caption p{
    font-size:20px;
    color:#f1f1f1;
    margin-bottom:25px;
    animation:fadeUp 1.2s ease;
}

/* Button */
.btn-hero{
    background:linear-gradient(135deg,#ff9800,#f57c00);
    color:#fff;
    padding:12px 30px;
    font-weight:600;
    border-radius:30px;
    box-shadow:0 10px 25px rgba(0,0,0,0.3);
    animation:fadeUp 1.5s ease;
}
.btn-hero:hover{
    background:#e65100;
    color:#fff;
}

/* Indicators */
.carousel-indicators li{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#fff;
    opacity:0.6;
}
.carousel-indicators .active{
    background:#ff9800;
    opacity:1;
}

/* Animations */
@keyframes fadeUp{
    from{opacity:0; transform:translateY(30px);}
    to{opacity:1; transform:translateY(0);}
}
@keyframes zoomEffect{
    from{transform:scale(1);}
    to{transform:scale(1.08);}
}

/* Responsive */
@media(max-width:991px){
    #header-carousel .carousel-item{
        height:60vh;
    }
    #header-carousel .carousel-caption h1{
        font-size:28px;
    }
    #header-carousel .carousel-caption p{
        font-size:16px;
    }
}

/* ===== POPUP ===== */
.popup-box{
    border-radius:16px;
    box-shadow:0 30px 70px rgba(0,0,0,.45);
}

/* ================================
   COLORFUL ABOUT SECTION
================================ */

.about-colorful{
    padding:100px 0;
    background:linear-gradient(135deg,#eef9ff,#fdfefe);
}

/* ABOUT BADGE */
.about-badge{
    display:inline-block;
    background:#ff7043;
    color:#fff;
    padding:6px 14px;
    font-size:12px;
    letter-spacing:2px;
    font-weight:600;
    border-radius:20px;
    margin-bottom:15px;
}

/* TITLE */
.about-title{
    font-size:42px;
    font-weight:800;
    color:#1a237e;
    margin-bottom:20px;
}

/* PARAGRAPH */
.about-para{
    font-size:16px;
    line-height:1.9;
    color:#555;
    max-width:520px;
    margin-bottom:35px;
}

/* FEATURES GRID 2x2 */
.features-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-bottom:40px;
}

/* FEATURE BOX */
.feature-box{
    background:#fff;
    padding:22px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    text-align:left;
    transition:0.3s;
}

.feature-box:hover{
    transform:translateY(-6px);
}

/* ICON */
.feature-box i{
    font-size:30px;
    margin-bottom:12px;
}

/* TEXT */
.feature-box h4{
    font-size:18px;
    font-weight:700;
    margin-bottom:4px;
}

.feature-box span{
    font-size:14px;
    color:#666;
}

/* COLOR VARIANTS */
.feature-box.orange i{ color:#fb8c00; }
.feature-box.red i{ color:#e53935; }
.feature-box.blue i{ color:#1e88e5; }
.feature-box.green i{ color:#43a047; }

/* BUTTON */
.about-cta-btn{
    display:inline-block;
    padding:14px 42px;
    background:linear-gradient(135deg,#ff7043,#ff9800);
    color:#fff;
    font-weight:700;
    letter-spacing:1px;
    border-radius:30px;
    transition:0.3s;
}

.about-cta-btn:hover{
    background:linear-gradient(135deg,#ff9800,#ff7043);
    color:#fff;
    text-decoration:none;
}

/* IMAGE */
.about-img-box img{
    width:100%;
    border-radius:20px;
    box-shadow:0 25px 50px rgba(0,0,0,0.25);
}

/* RESPONSIVE */
@media(max-width:991px){
    .about-title{ font-size:30px; }
    .features-grid{ grid-template-columns:1fr; }
}




/* ===============================
   SERVICES / FACILITIES
================================ */
/* SECTION TEXT */
.section-tag{
    font-size:13px;
    letter-spacing:2px;
    font-weight:700;
    color:#ffcc80;
}

.section-heading{
    font-size:38px;
    font-weight:800;
    margin:10px 0 15px;
}

.section-sub{
    font-size:15px;
    line-height:1.7;
    max-width:320px;
}

/* FACILITY CARD */
.facility-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
    transition:0.35s;
}

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

/* IMAGE */
.facility-img img{
    width:100%;
    height:250px;
    object-fit:fill;
}

/* CONTENT */
.facility-content{
    padding:18px;
    text-align:center;
}

.facility-content h5{
    font-size:18px;
    font-weight:700;
    margin:8px 0 6px;
}

.facility-content p{
    font-size:14px;
    color:#666;
    line-height:1.6;
}

/* BADGE */
.facility-badge{
    display:inline-block;
    padding:4px 12px;
    font-size:12px;
    font-weight:700;
    border-radius:20px;
    background:#ff9800;
    color:#fff;
}

.facility-badge.blue{ background:#1e88e5; }
.facility-badge.green{ background:#43a047; }
.facility-badge.red{ background:#e53935; }
.facility-badge.purple{ background:#8e24aa; }

/* RESPONSIVE */
@media(max-width:991px){
    .section-heading{
        font-size:30px;
    }
}


/* ===============================
   WHY CHOOSE US – PREMIUM
================================ */

.why-choose{
    padding:100px 0;
    background:linear-gradient(135deg,#f7fbff,#ffffff);
}

/* Section heading */
.section-tag{
    font-size:13px;
    letter-spacing:2px;
    font-weight:700;
    color:#ff9800;
    display:inline-block;
    margin-bottom:10px;
}

.section-title{
    font-size:40px;
    font-weight:800;
    color:#1a237e;
    margin-bottom:15px;
}

.section-desc{
    font-size:16px;
    line-height:1.8;
    color:#555;
    max-width:600px;
    margin-bottom:35px;
}

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

/* COUNTER BOX */
.counter-box{
    background:#fff;
    padding:25px 15px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
    transition:0.3s;
}

.counter-box:hover{
    transform:translateY(-8px);
}

/* ICON */
.counter-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 15px;
    color:#fff;
    font-size:22px;
}

.counter-icon.blue{ background:#1e88e5; }
.counter-icon.green{ background:#43a047; }
.counter-icon.orange{ background:#fb8c00; }
.counter-icon.red{ background:#e53935; }

/* NUMBER */
.counter-box h3{
    font-size:32px;
    font-weight:800;
    color:#111;
    margin-bottom:6px;
}

/* LABEL */
.counter-box span{
    font-size:14px;
    font-weight:600;
    color:#666;
}

/* IMAGE */
.why-img img{
    width:100%;
    border-radius:22px;
    box-shadow:0 25px 55px rgba(0,0,0,0.25);
}

/* RESPONSIVE */
@media(max-width:991px){
    .counter-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .section-title{
        font-size:30px;
    }
}

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


/* ===============================
   NEWS & EVENTS
================================ */
/* ===============================
   NEWS & EVENTS
================================ */

.news-events{
    padding:90px 0;
    background:#f7fbff;
}

/* CARD */
.news-card,
.calendar-card{
    background:#ffffff;
    border-radius:16px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    padding:25px;
    height:100%;
}

/* TITLE */
.news-title{
    font-size:22px;
    font-weight:800;
    color:#1a237e;
    margin-bottom:18px;
    border-bottom:2px solid #ff9800;
    display:inline-block;
    padding-bottom:6px;
}

/* SCROLL AREA */
.news-scroll{
    height:380px;
    overflow:hidden;
    position:relative;
}

.news-scroll ul{
    list-style:none;
    padding:0;
    margin:0;
    animation:news-scroll 25s linear infinite;
}

.news-scroll li{
    padding:12px 0;
    font-size:15px;
    color:#444;
    border-bottom:1px dashed #ddd;
}

.news-scroll a{
    color:#1e88e5;
    font-weight:600;
    margin-left:6px;
    text-decoration:none;
}

.news-scroll a:hover{
    text-decoration:underline;
}

/* PAUSE ON HOVER */
.news-scroll:hover ul{
    animation-play-state:paused;
}

/* SCROLL ANIMATION */
@keyframes news-scroll{
    0%{ transform:translateY(0); }
    100%{ transform:translateY(-100%); }
}

/* CALENDAR */
.calendar-card iframe{
    width:100%;
    height:420px;
    border:none;
    border-radius:10px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .news-scroll{
        height:300px;
    }
}


/* ===============================
   BLOG / EVENTS GALLERY
================================ */
/* ===============================
   LUXURY EVENTS SECTION
================================ */

.events-luxury{
    padding:110px 0;
    background:
      radial-gradient(circle at top right,#e3f2fd,transparent 40%),
      #f8fbff;
}

/* LEFT CONTENT */
.events-content{
    padding-right:40px;
}

.events-label{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    color:#ff9800;
    margin-bottom:15px;
}

.events-content h2{
    font-size:42px;
    font-weight:800;
    line-height:1.2;
    color:#0d1b2a;
    margin-bottom:18px;
}

.events-content p{
    font-size:16px;
    line-height:1.8;
    color:#555;
    max-width:460px;
    margin-bottom:30px;
}

/* BUTTON */
.events-btn{
    display:inline-block;
    padding:14px 34px;
    background:linear-gradient(135deg,#ff9800,#ff6f00);
    color:#fff;
    font-weight:700;
    border-radius:50px;
    text-decoration:none;
    box-shadow:0 12px 30px rgba(255,152,0,0.35);
    transition:0.3s;
}

.events-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 40px rgba(255,152,0,0.45);
}

/* VISUAL GRID */
.events-visual-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    grid-auto-rows:220px;
    gap:22px;
}

/* CARD */
.visual-card{
    position:relative;
    border-radius:22px;
    overflow:hidden;
    background:#000;
    box-shadow:0 18px 45px rgba(0,0,0,0.18);
}

.visual-card.tall{
    grid-row:span 2;
}

.visual-card.wide{
    grid-column:span 2;
}

/* IMAGE */
.visual-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s ease;
}

/* OVERLAY */
.visual-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,0.65),transparent 60%);
    padding:22px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
}

.visual-overlay h4{
    color:#fff;
    font-size:18px;
    font-weight:700;
    margin:0;
}

.visual-overlay span{
    font-size:13px;
    color:#ffcc80;
    margin-top:4px;
}

/* HOVER */
.visual-card:hover img{
    transform:scale(1.08);
}

/* RESPONSIVE */
@media(max-width:992px){
    .events-content{
        padding-right:0;
        margin-bottom:40px;
    }
    .events-content h2{
        font-size:34px;
    }
    .events-visual-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:576px){
    .events-visual-grid{
        grid-template-columns:1fr;
        grid-auto-rows:220px;
    }
    .visual-card.wide{
        grid-column:span 1;
    }
}
