/* ==========================================
   GLOBAL
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
}








/* =====================================
   STAR HEADER
===================================== */

.star-header {
    position: relative;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #173b5c;
    z-index: 999;
}


/* Navbar */

.star-header .navbar {
    min-height: 70px;
    padding: 0;
}


/* Container */

.star-header .container {
    max-width: 1400px;
}


/* =====================================
   LOGO
===================================== */

.star-logo {
    padding: 0;
    margin: 0;
}


.star-logo img {
    width: 145px;
    max-height: 58px;
    object-fit: contain;
    display: block;
}


/* =====================================
   NAVIGATION
===================================== */

.star-menu {
    align-items: center;
    gap: 5px;
}


.star-menu .nav-item {
    position: relative;
}


.star-menu .nav-link {
    position: relative;

    color: #183b5b;

    font-size: 12px;
    font-weight: 600;

    padding: 25px 15px !important;

    transition: all 0.3s ease;
}


/* Hover */

.star-menu .nav-link:hover {
    color: #e5aa17;
}


/* Active Menu */

.star-menu .nav-link.active {
    color: #183b5b;
}


/* Yellow Active Line */

.star-menu .nav-link.active::after {
    content: "";

    position: absolute;

    width: 28px;
    height: 2px;

    background: #ffc933;

    left: 50%;
    bottom: 17px;

    transform: translateX(-50%);

    border-radius: 10px;
}


/* =====================================
   DROPDOWN
===================================== */

.star-menu .dropdown-toggle::after {

    border: none;

    content: "⌄";

    font-size: 14px;

    margin-left: 6px;

    vertical-align: 1px;

}


/* Dropdown Box */

.star-dropdown {

    border: none;

    border-radius: 12px;

    padding: 10px;

    min-width: 250px;

    box-shadow:
        0 15px 40px rgba(16, 48, 75, 0.15);

}


/* Dropdown Items */

.star-dropdown .dropdown-item {

    font-size: 13px;

    color: #183b5b;

    padding: 10px 15px;

    border-radius: 7px;

}


.star-dropdown .dropdown-item:hover {

    background: #f5f9fc;

    color: #d89f00;

}


/* =====================================
   GET IN TOUCH BUTTON
===================================== */

.star-contact-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-width: 125px;

    height: 44px;

    padding: 0 22px;

    background: #ffc933;

    color: #173b5c;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    border-radius: 14px;

    box-shadow:
        0 8px 20px rgba(255, 201, 51, 0.28);

    transition: all 0.3s ease;

}


.star-contact-btn span {

    font-size: 17px;

    line-height: 1;

}


/* Hover */

.star-contact-btn:hover {

    background: #173b5c;

    color: #ffffff;

    transform: translateY(-2px);

}


/* =====================================
   MOBILE TOGGLER
===================================== */

.star-toggler {

    border: none;

    padding: 8px;

    box-shadow: none !important;

}


.star-toggler span {

    display: block;

    width: 25px;
    height: 2px;

    background: #183b5b;

    margin: 5px 0;

    border-radius: 10px;

}


/* =====================================
   TABLET RESPONSIVE
===================================== */

@media (max-width: 1199px) {

    .star-menu .nav-link {
        padding-left: 10px !important;
        padding-right: 10px !important;

        font-size: 11px;
    }


    .star-logo img {
        width: 125px;
    }


    .star-contact-btn {
        min-width: 110px;
        padding: 0 15px;
    }

}


/* =====================================
   MOBILE RESPONSIVE
===================================== */

@media (max-width: 991px) {

    .star-header .navbar {
        padding: 10px 0;
    }


    .star-logo img {
        width: 135px;
    }


    .star-menu {
        padding: 15px 0;
        gap: 0;
    }


    .star-menu .nav-link {

        padding: 12px 0 !important;

        border-bottom:
            1px solid #edf1f4;

    }


    .star-menu .nav-link.active::after {

        left: 0;

        transform: none;

        bottom: 6px;

    }


    .star-contact-btn {

        width: 100%;

        margin: 5px 0 15px;

    }


    .star-dropdown {

        box-shadow: none;

        border-left:
            2px solid #ffc933;

        border-radius: 0;

        margin-left: 10px;

    }

}




/* ==========================================
   HERO SECTION
========================================== */

.apex-hero-section {
    position: relative;
    overflow: hidden;

    padding: 80px 0 70px;

    min-height: 610px;

    background:
        linear-gradient(
            90deg,
            #f5faff 0%,
            #eaf5fc 48%,
            #dceefa 100%
        );
}


/* ==========================================
   BACKGROUND DECORATION
========================================== */

.hero-bg-shape {
    position: absolute;
    pointer-events: none;
}


/* Top Left */

.hero-bg-shape-1 {

    width: 280px;
    height: 280px;

    background: rgba(255, 201, 51, 0.10);

    border-radius: 50%;

    top: -180px;
    left: -120px;

}


/* Bottom Left */

.hero-bg-shape-2 {

    width: 400px;
    height: 250px;

    background: rgba(45, 113, 160, 0.05);

    border-radius: 50%;

    bottom: -180px;
    left: -100px;

}


/* Right Side */

.hero-bg-shape-3 {

    width: 320px;
    height: 500px;

    background: rgba(255, 201, 51, 0.07);

    border-radius: 50%;

    top: -150px;
    right: -180px;

}


/* ==========================================
   HERO CONTENT
========================================== */

.apex-hero-content {
    position: relative;
    z-index: 5;

    padding-right: 25px;
}


/* ==========================================
   SMALL TAGLINE
========================================== */

.apex-hero-tag {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 22px;

}


.apex-hero-tag span {

    color: #385b78;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;

}


.apex-hero-tag i {

    width: 4px;
    height: 4px;

    background: #ffc933;

    border-radius: 50%;

}


/* ==========================================
   HEADING
========================================== */

.apex-hero-title {

    font-family: 'Playfair Display', serif;

    font-size: 52px;

    line-height: 1.08;

    font-weight: 700;

    color: #193c5c;

    margin-bottom: 25px;

}


.apex-hero-title span {

    display: block;

    color: #f7bd20;

    font-style: italic;

}


/* ==========================================
   DESCRIPTION
========================================== */

.apex-hero-description {

    max-width: 500px;

    color: #536d84;

    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 30px;

}


/* ==========================================
   BUTTONS
========================================== */

.apex-hero-buttons {

    display: flex;

    align-items: center;

    gap: 16px;

    flex-wrap: wrap;

}


.apex-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    min-height: 52px;

    padding: 0 24px;

    border-radius: 12px;

    font-size: 13px;

    font-weight: 700;

    transition: all 0.35s ease;

}


/* Yellow Button */

.apex-btn-primary {

    background: #ffc933;

    color: #183c5d;

    border: 2px solid #ffc933;

    box-shadow: 0 8px 22px rgba(255, 201, 51, 0.28);

}


.apex-btn-primary:hover {

    background: #183c5d;

    border-color: #183c5d;

    color: #ffffff;

    transform: translateY(-3px);

}


.btn-arrow {

    margin-left: 10px;

    font-size: 18px;

    line-height: 1;

}


/* Outline Button */

.apex-btn-outline {

    background: transparent;

    color: #183c5d;

    border: 2px solid #7991a5;

}


.apex-btn-outline:hover {

    background: #183c5d;

    border-color: #183c5d;

    color: #ffffff;

    transform: translateY(-3px);

}


/* ==========================================
   RIGHT IMAGE COLLAGE
========================================== */

.apex-hero-collage {

    position: relative;

    width: 100%;

    max-width: 680px;

    height: 470px;

    margin-left: auto;

}


/* ==========================================
   COLLAGE DECORATIVE SHAPES
========================================== */

.collage-shape {

    position: absolute;

    background: #ffc933;

    z-index: 1;

}


/* Top Shape */

.collage-shape-1 {

    width: 180px;

    height: 230px;

    top: -10px;

    left: 55px;

    transform: skew(-18deg);

    border-radius: 20px;

}


/* Bottom Shape */

.collage-shape-2 {

    width: 160px;

    height: 190px;

    bottom: 10px;

    left: 235px;

    transform: skew(-18deg);

    border-radius: 18px;

}


/* Right Shape */

.collage-shape-3 {

    width: 100px;

    height: 130px;

    top: 10px;

    right: 0;

    border-radius: 0 20px 0 25px;

}


/* ==========================================
   COMMON IMAGE CARD
========================================== */

.collage-card {

    position: absolute;

    overflow: hidden;

    z-index: 3;

    border: 5px solid #ffffff;

    background: #d9e5ec;

    border-radius: 18px;

    box-shadow:
        0 15px 35px
        rgba(22, 56, 82, 0.18);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;

}


.collage-card:hover {

    z-index: 10;

    box-shadow:
        0 25px 50px
        rgba(22, 56, 82, 0.28);

}


.collage-card img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

}


/* ==========================================
   AWARDS IMAGE
========================================== */

.collage-award {

    width: 315px;

    height: 190px;

    top: 0;

    left: 85px;

    transform: rotate(-2deg);

}


.collage-award:hover {

    transform:
        rotate(-2deg)
        translateY(-10px);

}


/* ==========================================
   CELEBRITY IMAGE
========================================== */

.collage-celebrity {

    width: 155px;

    height: 195px;

    top: 12px;

    right: 38px;

    transform: rotate(4deg);

}


.collage-celebrity:hover {

    transform:
        rotate(4deg)
        translateY(-10px);

}


/* ==========================================
   CAMERA IMAGE
========================================== */

.collage-camera {

    width: 190px;

    height: 175px;

    top: 205px;

    left: 15px;

    transform: rotate(-3deg);

}


.collage-camera:hover {

    transform:
        rotate(-3deg)
        translateY(-10px);

}


/* ==========================================
   EVENT IMAGE
========================================== */

.collage-event {

    width: 230px;

    height: 175px;

    top: 210px;

    left: 220px;

    transform: rotate(2deg);

}


.collage-event:hover {

    transform:
        rotate(2deg)
        translateY(-10px);

}


/* ==========================================
   INFLUENCER IMAGE
========================================== */

.collage-influencer {

    width: 145px;

    height: 135px;

    top: 205px;

    right: 0;

    transform: rotate(5deg);

}


.collage-influencer:hover {

    transform:
        rotate(5deg)
        translateY(-10px);

}


/* ==========================================
   VISION TEXT
========================================== */

.hero-collage-text {

    position: absolute;

    right: 10px;

    bottom: 0;

    z-index: 5;

    text-align: right;

    color: #183c5d;

    font-family: 'Playfair Display', serif;

    transform: rotate(-6deg);

}


.hero-collage-text span {

    display: block;

    font-size: 18px;

    font-style: italic;

}


.hero-collage-text strong {

    display: block;

    font-size: 19px;

    font-style: italic;

}


/* Yellow Hand Drawn Line */

.hero-hand-line {

    position: absolute;

    width: 110px;

    height: 25px;

    border-top: 3px solid #ffc933;

    border-radius: 50%;

    right: 0;

    bottom: -20px;

    transform: rotate(-6deg);

}


/* ==========================================
   LARGE TABLET
========================================== */

@media (max-width: 1199px) {

    .apex-hero-title {
        font-size: 46px;
    }


    .apex-hero-collage {
        transform: scale(0.92);
        transform-origin: center right;
    }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .apex-hero-section {

        padding: 70px 0 45px;

    }


    .apex-hero-content {

        text-align: center;

        padding-right: 0;

        margin-bottom: 60px;

    }


    .apex-hero-tag {

        justify-content: center;

    }


    .apex-hero-description {

        margin-left: auto;

        margin-right: auto;

    }


    .apex-hero-buttons {

        justify-content: center;

    }


    .apex-hero-collage {

        margin: auto;

    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .apex-hero-section {

        padding: 55px 0 30px;

    }


    .apex-hero-title {

        font-size: 38px;

        line-height: 1.12;

    }


    .apex-hero-tag {

        gap: 5px;

    }


    .apex-hero-tag span {

        font-size: 7px;

        letter-spacing: 1.5px;

    }


    .apex-hero-description {

        font-size: 13px;

        line-height: 1.8;

    }


    .apex-hero-collage {

        height: 350px;

        transform: scale(0.82);

        transform-origin: top center;

        margin-bottom: -50px;

    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .apex-hero-title {

        font-size: 32px;

    }


    .apex-hero-buttons {

        flex-direction: column;

    }


    .apex-btn {

        width: 100%;

    }


    .apex-hero-collage {

        transform: scale(0.65);

        width: 150%;

        margin-left: -25%;

        margin-bottom: -120px;

    }


    .hero-collage-text {

        display: none;

    }


    .hero-hand-line {

        display: none;

    }

}












/* =========================================
   SERVICES SECTION
========================================= */

.star-services-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background:
        linear-gradient(
            135deg,
            #f7fbfe 0%,
            #edf6fb 50%,
            #e4f0f8 100%
        );
}


/* Background Decorative Shape */

.star-services-bg-shape {
    position: absolute;
    width: 280px;
    height: 280px;
    top: -130px;
    left: -130px;
    background: rgba(255, 201, 51, 0.10);
    clip-path: polygon(
        50% 0%,
        61% 35%,
        98% 35%,
        68% 57%,
        79% 94%,
        50% 72%,
        21% 94%,
        32% 57%,
        2% 35%,
        39% 35%
    );
}


/* =========================================
   SECTION HEADING
========================================= */

.star-section-heading {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto 45px;
}


.star-small-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #d69f00;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 10px;
}


.star-small-title span {
    width: 25px;
    height: 1px;
    background: #ffc933;
}


.star-section-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: #193c5d;
    margin-bottom: 10px;
}


.star-section-heading p {
    max-width: 600px;
    margin: auto;
    font-size: 12px;
    line-height: 1.8;
    color: #60768b;
}


/* =========================================
   SERVICES GRID
========================================= */

.star-services-grid {
    position: relative;
    z-index: 2;
}


/* =========================================
   SERVICE CARD
========================================= */

.star-service-card {
    position: relative;
    height: 100%;
    min-height: 310px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid #cbdce8;
    border-radius: 10px;
    transition: all 0.35s ease;
}


.star-service-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    border-color: #ffc933;
    box-shadow: 0 20px 40px rgba(28, 65, 94, 0.12);
}


/* =========================================
   SERVICE IMAGE
========================================= */

.star-service-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
}


.star-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


.star-service-card:hover .star-service-image img {
    transform: scale(1.08);
}


/* =========================================
   SERVICE CONTENT
========================================= */

.star-service-content {
    position: relative;
    padding: 20px 15px 18px;
}


/* Yellow Icon */

.star-service-icon {
    position: absolute;
    top: -22px;
    left: 16px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffc933;

    border: 4px solid #f4f9fc;

    border-radius: 50%;

    color: #193c5d;

    font-size: 19px;

    box-shadow: 0 5px 12px rgba(255, 201, 51, 0.25);
}


/* Service Heading */

.star-service-content h3 {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: #193c5d;
    margin: 18px 0 8px;
}


/* Description */

.star-service-content p {
    min-height: 62px;
    color: #5f7488;
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 12px;
}


/* Learn More */

.star-service-content a {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #244661;
    text-decoration: none;

    font-size: 11px;
    font-weight: 700;

    transition: 0.3s ease;
}


.star-service-content a span {
    color: #dca300;
    font-size: 15px;
}


.star-service-content a:hover {
    color: #dca300;
}


/* =========================================
   WIDE BOTTOM CARDS
========================================= */

.star-service-card-wide {
    min-height: 270px;
}


.star-service-card-wide .star-service-image {
    height: 110px;
}


.star-service-card-wide .star-service-content {
    padding-top: 20px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .star-services-section {
        padding: 70px 0;
    }


    .star-section-heading h2 {
        font-size: 27px;
    }


    .star-service-card {
        min-height: 300px;
    }

}


@media (max-width: 767px) {

    .star-services-section {
        padding: 55px 0;
    }


    .star-section-heading {
        margin-bottom: 30px;
    }


    .star-section-heading h2 {
        font-size: 24px;
        line-height: 1.3;
    }


    .star-small-title {
        letter-spacing: 2px;
    }


    .star-service-card,
    .star-service-card-wide {
        min-height: auto;
    }


    .star-service-image {
        height: 180px;
    }


    .star-service-card-wide .star-service-image {
        height: 180px;
    }

}








/* =========================================
   ABOUT US SECTION
========================================= */

.star-about-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #ffffff;
}


/* =========================================
   LEFT VISUAL AREA
========================================= */

.star-about-visual {
    position: relative;
    width: 100%;
    max-width: 540px;
    height: 520px;
    margin: auto;
}


/* Yellow Background Shape */

.star-about-yellow-shape {
    position: absolute;

    width: 350px;
    height: 420px;

    background: #ffc933;

    border-radius: 30px;

    top: 45px;
    left: 10px;

    transform: rotate(-7deg);

    opacity: 0.95;
}


/* Main Image */

.star-about-main-image {
    position: absolute;

    width: 390px;
    height: 450px;

    left: 45px;
    top: 20px;

    overflow: hidden;

    border-radius: 22px;

    border: 8px solid #ffffff;

    box-shadow:
        0 25px 60px rgba(20, 54, 80, 0.18);

    z-index: 2;
}


.star-about-main-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* Small Image */

.star-about-small-image {
    position: absolute;

    width: 190px;
    height: 150px;

    right: 0;
    bottom: 15px;

    overflow: hidden;

    border-radius: 18px;

    border: 6px solid #ffffff;

    box-shadow:
        0 18px 40px rgba(20, 54, 80, 0.18);

    z-index: 4;
}


.star-about-small-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================
   EXPERIENCE BOX
========================================= */

.star-about-experience {
    position: absolute;

    top: 65px;
    right: -15px;

    width: 175px;

    padding: 20px;

    background: #193c5d;

    color: #ffffff;

    border-radius: 16px;

    box-shadow:
        0 15px 35px rgba(25, 60, 93, 0.25);

    z-index: 5;
}


.star-about-experience strong {
    display: block;

    color: #ffc933;

    font-size: 42px;

    font-weight: 700;

    line-height: 1;
}


.star-about-experience span {
    display: block;

    margin-top: 8px;

    font-size: 12px;

    line-height: 1.5;

    color: #e7eff5;
}


/* Decorative Star */

.star-about-star {
    position: absolute;

    top: -5px;
    left: -10px;

    color: #ffc933;

    font-size: 65px;

    z-index: 5;

    text-shadow:
        0 8px 20px rgba(255, 201, 51, 0.25);
}


/* =========================================
   ABOUT CONTENT
========================================= */

.star-about-content {
    padding-left: 25px;
}


/* Small Label */

.star-about-label {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #d69f00;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 15px;
}


.star-about-label span {
    width: 35px;
    height: 2px;

    background: #ffc933;
}


/* =========================================
   HEADING
========================================= */

.star-about-content h2 {
    font-family: 'Playfair Display', serif;

    color: #193c5d;

    font-size: 43px;

    line-height: 1.18;

    font-weight: 700;

    margin-bottom: 20px;
}


.star-about-content h2 span {
    display: block;

    color: #dca300;

    font-style: italic;
}


/* =========================================
   PARAGRAPH
========================================= */

.star-about-content p {
    color: #60768b;

    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 15px;
}


.star-about-intro {
    color: #385a76 !important;

    font-size: 15px !important;

    font-weight: 500;
}


/* =========================================
   FEATURES
========================================= */

.star-about-features {
    margin-top: 25px;
    margin-bottom: 28px;
}


.star-about-feature {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 20px;
}


/* Icon */

.star-feature-icon {
    min-width: 48px;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #fff7dc;

    color: #d69f00;

    border-radius: 12px;

    font-size: 22px;
}


/* Feature Text */

.star-about-feature h4 {
    color: #193c5d;

    font-size: 16px;

    font-weight: 700;

    margin-bottom: 5px;
}


.star-about-feature p {
    margin: 0;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================
   BUTTON
========================================= */

.star-about-btn {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 15px 25px;

    background: #193c5d;

    color: #ffffff;

    text-decoration: none;

    border-radius: 12px;

    font-size: 13px;

    font-weight: 700;

    transition: all 0.35s ease;

    box-shadow:
        0 10px 25px rgba(25, 60, 93, 0.18);
}


.star-about-btn span {
    color: #ffc933;

    font-size: 19px;

    transition: 0.3s ease;
}


.star-about-btn:hover {
    background: #ffc933;

    color: #193c5d;

    transform: translateY(-4px);
}


.star-about-btn:hover span {
    color: #193c5d;

    transform: translateX(4px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .star-about-section {
        padding: 70px 0;
    }


    .star-about-content {
        padding-left: 0;
        margin-top: 30px;
    }


    .star-about-visual {
        margin: auto;
    }


    .star-about-content {
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }

}


@media (max-width: 767px) {

    .star-about-section {
        padding: 60px 0;
    }


    .star-about-visual {
        height: 430px;

        transform: scale(0.88);

        transform-origin: top center;

        margin-bottom: -40px;
    }


    .star-about-content h2 {
        font-size: 34px;
    }


    .star-about-label {
        letter-spacing: 3px;
    }

}


@media (max-width: 500px) {

    .star-about-visual {
        width: 115%;

        margin-left: -7.5%;

        transform: scale(0.72);

        transform-origin: top center;

        margin-bottom: -130px;
    }


    .star-about-content h2 {
        font-size: 29px;
    }


    .star-about-content p {
        font-size: 13px;
    }


    .star-about-feature {
        gap: 12px;
    }

}








/* =========================================
   VISION & MISSION SECTION
========================================= */

.star-vision-mission-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        linear-gradient(135deg, #edf7fc 0%, #f8fcff 50%, #eef6fb 100%);
}


/* =========================================
   BACKGROUND CIRCLES
========================================= */

.vm-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}


.vm-circle-one {
    width: 420px;
    height: 420px;
    background: rgba(255, 201, 51, 0.08);
    top: -220px;
    left: -150px;
}


.vm-circle-two {
    width: 350px;
    height: 350px;
    border: 50px solid rgba(25, 60, 93, 0.03);
    bottom: -220px;
    right: -100px;
}


/* =========================================
   SECTION HEADING
========================================= */

.star-vm-heading {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto 50px;
}


.star-vm-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    color: #d69f00;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 14px;
}


.star-vm-label span {
    width: 30px;
    height: 2px;
    background: #ffc933;
}


.star-vm-heading h2 {
    font-family: 'Playfair Display', serif;

    color: #193c5d;

    font-size: 42px;

    font-weight: 700;

    margin-bottom: 15px;
}


.star-vm-heading h2 em {
    color: #dca300;
    font-style: italic;
}


.star-vm-heading p {
    color: #63788b;

    font-size: 14px;

    line-height: 1.8;

    max-width: 600px;

    margin: auto;
}


/* =========================================
   VISION / MISSION CARD
========================================= */

.star-vm-card {
    position: relative;

    height: 100%;

    min-height: 390px;

    padding: 55px 45px 45px;

    border-radius: 24px;

    overflow: hidden;

    transition: all 0.4s ease;
}


/* Vision */

.star-vision-card {
    background: #ffffff;

    border: 1px solid #d9e7f0;

    box-shadow:
        0 20px 50px rgba(25, 60, 93, 0.08);
}


/* Mission */

.star-mission-card {
    background: #193c5d;

    color: #ffffff;

    box-shadow:
        0 20px 50px rgba(25, 60, 93, 0.18);
}


/* Hover */

.star-vm-card:hover {
    transform: translateY(-10px);
}


/* =========================================
   CARD NUMBER
========================================= */

.vm-number {
    position: absolute;

    top: 18px;
    right: 28px;

    font-family: 'Playfair Display', serif;

    font-size: 75px;

    font-weight: 700;

    line-height: 1;

    color: rgba(25, 60, 93, 0.06);
}


.star-mission-card .vm-number {
    color: rgba(255, 255, 255, 0.06);
}


/* =========================================
   ICON
========================================= */

.vm-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffc933;

    border-radius: 18px;

    color: #193c5d;

    font-size: 28px;

    margin-bottom: 25px;

    box-shadow:
        0 10px 25px rgba(255, 201, 51, 0.25);
}


.star-mission-card .vm-icon {
    background: #ffc933;
}


/* =========================================
   SMALL TITLE
========================================= */

.vm-small-title {
    color: #d69f00;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 8px;
}


.star-mission-card .vm-small-title {
    color: #ffc933;
}


/* =========================================
   CARD HEADING
========================================= */

.vm-content h3 {
    font-family: 'Playfair Display', serif;

    color: #193c5d;

    font-size: 35px;

    font-weight: 700;

    margin-bottom: 18px;
}


.star-mission-card .vm-content h3 {
    color: #ffffff;
}


/* =========================================
   CARD PARAGRAPH
========================================= */

.vm-content p {
    color: #65798b;

    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 22px;
}


.star-mission-card .vm-content p {
    color: #d5e2ec;
}


/* =========================================
   DIVIDER LINE
========================================= */

.vm-line {
    width: 100%;
    height: 1px;

    background: #e2ebf1;

    margin-bottom: 18px;
}


.star-mission-card .vm-line {
    background: rgba(255, 255, 255, 0.15);
}


/* =========================================
   HIGHLIGHT
========================================= */

.vm-highlight {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #193c5d;

    font-size: 13px;

    font-weight: 600;
}


.vm-highlight span {
    color: #e1a600;

    font-size: 18px;
}


.star-mission-card .vm-highlight {
    color: #ffffff;
}


.star-mission-card .vm-highlight span {
    color: #ffc933;
}


/* =========================================
   BOTTOM QUOTE
========================================= */

.star-vm-bottom {
    position: relative;

    max-width: 750px;

    margin: 55px auto 0;

    text-align: center;

    padding: 0 40px;
}


.vm-quote-icon {
    font-family: 'Playfair Display', serif;

    color: #ffc933;

    font-size: 65px;

    height: 45px;

    line-height: 1;
}


.star-vm-bottom p {
    font-family: 'Playfair Display', serif;

    font-size: 20px;

    font-style: italic;

    line-height: 1.6;

    color: #193c5d;

    margin: 0;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .star-vision-mission-section {
        padding: 75px 0;
    }


    .star-vm-heading h2 {
        font-size: 36px;
    }


    .star-vm-card {
        min-height: auto;
    }

}


@media (max-width: 767px) {

    .star-vision-mission-section {
        padding: 60px 0;
    }


    .star-vm-heading {
        margin-bottom: 35px;
    }


    .star-vm-heading h2 {
        font-size: 29px;
        line-height: 1.3;
    }


    .star-vm-heading h2 em {
        display: block;
    }


    .star-vm-label {
        font-size: 9px;
        letter-spacing: 2px;
    }


    .star-vm-card {
        padding: 40px 25px 35px;
        border-radius: 18px;
    }


    .vm-content h3 {
        font-size: 30px;
    }


    .star-vm-bottom {
        margin-top: 40px;
        padding: 0 15px;
    }


    .star-vm-bottom p {
        font-size: 17px;
    }

}








/* =========================================
   PORTFOLIO SECTION
========================================= */

.star-portfolio-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;

    background: #ffffff;
}


/* =========================================
   BACKGROUND DECORATION
========================================= */

.portfolio-bg-shape {
    position: absolute;
    pointer-events: none;
}


.portfolio-shape-left {
    width: 260px;
    height: 260px;

    border: 45px solid rgba(255, 201, 51, 0.08);
    border-radius: 50%;

    top: 100px;
    left: -160px;
}


.portfolio-shape-right {
    width: 350px;
    height: 350px;

    background: rgba(25, 60, 93, 0.025);

    border-radius: 50%;

    right: -180px;
    bottom: -100px;
}


/* =========================================
   SECTION HEADING
========================================= */

.star-portfolio-heading {
    position: relative;
    z-index: 2;

    max-width: 750px;

    margin: 0 auto 30px;
}


.star-portfolio-label {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    color: #d69f00;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 14px;
}


.star-portfolio-label span {
    width: 30px;
    height: 2px;

    background: #ffc933;
}


.star-portfolio-heading h2 {
    font-family: 'Playfair Display', serif;

    color: #193c5d;

    font-size: 42px;
    font-weight: 700;

    margin-bottom: 15px;
}


.star-portfolio-heading h2 em {
    color: #dca300;
    font-style: italic;
}


.star-portfolio-heading p {
    max-width: 600px;

    margin: auto;

    color: #63788b;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   PORTFOLIO FILTER
========================================= */

.portfolio-filter {
    position: relative;
    z-index: 3;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    flex-wrap: wrap;

    margin-bottom: 45px;
}


.portfolio-filter-btn {
    border: 1px solid #d9e5ed;

    background: #f7fbfd;

    color: #526d83;

    padding: 10px 20px;

    border-radius: 30px;

    font-size: 12px;

    font-weight: 600;

    transition: all 0.3s ease;
}


.portfolio-filter-btn:hover,
.portfolio-filter-btn.active {
    background: #ffc933;

    border-color: #ffc933;

    color: #193c5d;
}


/* =========================================
   PORTFOLIO CARD
========================================= */

.portfolio-card {
    position: relative;

    height: 320px;

    overflow: hidden;

    border-radius: 18px;

    background: #193c5d;

    box-shadow:
        0 15px 35px rgba(25, 60, 93, 0.12);
}


.portfolio-card-large {
    height: 320px;
}


.portfolio-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.6s ease;
}


.portfolio-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 38, 58, 0.95) 0%, rgba(15, 38, 58, 0.25) 55%, rgba(15, 38, 58, 0.05) 100%);
    transition: 0.4s ease;
}


.portfolio-card:hover img {
    transform: scale(1.08);
}


.portfolio-card:hover::after {
    background:
        linear-gradient(
            to top,
            rgba(25, 60, 93, 0.98),
            rgba(25, 60, 93, 0.35)
        );
}


/* =========================================
   PORTFOLIO CONTENT
========================================= */

.portfolio-overlay {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    z-index: 2;
}


.portfolio-category {
    display: inline-block;

    color: #193c5d;

    background: #ffc933;

    padding: 6px 10px;

    border-radius: 20px;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 10px;
}


.portfolio-overlay h3 {
    color: #ffffff;

    font-family: 'Playfair Display', serif;

    font-size: 24px;

    line-height: 1.25;

    font-weight: 600;

    max-width: 80%;

    margin: 0;
}


/* Arrow Button */

.portfolio-arrow {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #ffffff;

    color: #193c5d;

    border-radius: 50%;

    font-size: 22px;

    text-decoration: none;

    transition: all 0.3s ease;
}


.portfolio-arrow:hover {
    background: #ffc933;

    color: #193c5d;

    transform: rotate(45deg);
}


/* =========================================
   VIEW ALL BUTTON
========================================= */

.portfolio-bottom {
    position: relative;
    z-index: 2;

    margin-top: 45px;
}


.portfolio-view-btn {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 15px 27px;

    background: #193c5d;

    color: #ffffff;

    border-radius: 12px;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.35s ease;
}


.portfolio-view-btn span {
    color: #ffc933;

    font-size: 18px;

    transition: transform 0.3s ease;
}


.portfolio-view-btn:hover {
    background: #ffc933;

    color: #193c5d;

    transform: translateY(-4px);
}


.portfolio-view-btn:hover span {
    color: #193c5d;

    transform: translateX(5px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .star-portfolio-section {
        padding: 75px 0;
    }

    .star-portfolio-heading h2 {
        font-size: 36px;
    }

}


@media (max-width: 767px) {

    .star-portfolio-section {
        padding: 60px 0;
    }

    .star-portfolio-heading h2 {
        font-size: 29px;
        line-height: 1.3;
    }

    .star-portfolio-heading h2 em {
        display: block;
    }

    .star-portfolio-label {
        letter-spacing: 2px;
    }

    .portfolio-filter {
        gap: 7px;
        margin-bottom: 30px;
    }

    .portfolio-filter-btn {
        padding: 8px 14px;
        font-size: 11px;
    }

    .portfolio-card,
    .portfolio-card-large {
        height: 280px;
    }

    .portfolio-overlay h3 {
        font-size: 21px;
    }

}



/* =========================================
   EVENT SCHEDULE SECTION
========================================= */

.star-event-schedule-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0 70px;
    background: linear-gradient(135deg, #edf7fc 0%, #f8fcff 50%, #eef6fb 100%);
    color: #ffffff;
}


/* =========================================
   BACKGROUND TEXT
========================================= */

.schedule-bg-text {

    position: absolute;

    top: -55px;
    left: 50%;

    transform: translateX(-50%);

    font-size: 130px;

    font-weight: 800;

    letter-spacing: 8px;

    color: rgba(255, 255, 255, 0.025);

    white-space: nowrap;

    pointer-events: none;
}


/* =========================================
   HEADING
========================================= */

.schedule-heading {

    position: relative;

    z-index: 2;

    margin-bottom: 45px;
}


.schedule-subtitle {

    display: inline-block;

    color: #ffc933;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 8px;
}


.schedule-heading h2 {

    font-family: 'Playfair Display';

    font-size: 42px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: 1px;

    margin: 0;

    color: #000000;
}


.schedule-heading h2 span {

    color: #ff3d91;
}


/* =========================================
   DAY COLUMN
========================================= */

.schedule-day {

    position: relative;

    padding: 0 25px;
}


/* Divider */

.schedule-day-right {

    border-left: 1px solid rgba(255, 255, 255, 0.08);
}


/* =========================================
   DAY TITLE
========================================= */

.schedule-day-title {

    position: relative;

    display: table;

    margin: 0 auto 32px;

    padding: 11px 22px;

    border: 2px solid rgba(255, 61, 145, 0.30);

    border-radius: 40px;

    color: #193c5d;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.5px;

    box-shadow:
        0 0 20px rgba(255, 61, 145, 0.10);
}


.schedule-day-title::after {

    content: "";

    position: absolute;

    width: 10px;
    height: 10px;

    background: #ff3d91;

    left: 50%;
    bottom: -7px;

    transform: translateX(-50%) rotate(45deg);
}


.schedule-day-title span {

    color: #ff3d91;

    margin-right: 6px;
}


/* =========================================
   SCHEDULE ITEM
========================================= */

.schedule-item {

    display: flex;

    min-height: 128px;

    margin-bottom: 26px;

    border-radius: 20px;

    overflow: hidden;

    background: linear-gradient(to top, rgba(15, 38, 58, 0.95) 0%, rgb(15 38 58) 55%, rgb(11 60 102) 100%);

    transition: all 0.35s ease;
}


.schedule-item:hover {

    transform: translateY(-5px);

    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.25);
}


/* =========================================
   TIME BOX
========================================= */

.schedule-time {

    width: 105px;

    flex-shrink: 0;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 15px;

    background:#ffc933;
        
}


.schedule-time small {

    display: block;

    color: #193c5d;

    font-size: 9px;

    font-weight: 600;

    margin-bottom: 9px;

    text-transform: uppercase;
}


.schedule-time strong {

    color: #193c5d;

    font-size: 12px;

    line-height: 1.5;

    font-weight: 700;
}


/* =========================================
   EVENT INFORMATION
========================================= */

.schedule-info {

    padding: 22px 22px;

    flex-grow: 1;
}


.schedule-info h3 {

    color: #ffffff;

    font-size: 17px;

    font-weight: 700;

    margin-bottom: 8px;
}


.schedule-info p {

    color: #b6aec2;

    font-size: 12px;

    line-height: 1.6;

    margin-bottom: 10px;
}


.schedule-info a {

    color: #ff3d91;

    font-size: 10px;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}


.schedule-info a:hover {

    color: #ffc933;
}


/* =========================================
   BUTTON
========================================= */

.schedule-bottom {

    margin-top: 10px;
}


.schedule-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 13px 25px;

    background:
        linear-gradient(
            90deg,
            #ff3d91,
            #e92d7c
        );

    color: #ffffff;

    border-radius: 30px;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.35s ease;

    box-shadow:
        0 10px 25px rgba(255, 61, 145, 0.25);
}


.schedule-btn:hover {

    background: #ffc933;

    color: #211638;

    transform: translateY(-3px);
}


.schedule-btn span {

    font-size: 17px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .schedule-day-right {

        border-left: none;

        margin-top: 25px;
    }


    .star-event-schedule-section {

        padding: 70px 0 60px;
    }

}


@media (max-width: 767px) {

    .star-event-schedule-section {

        padding: 60px 0 50px;
    }


    .schedule-bg-text {

        font-size: 70px;

        top: -25px;
    }


    .schedule-heading h2 {

        font-size: 27px;

        line-height: 1.15;
    }


    .schedule-day {

        padding: 0;
    }


    .schedule-item {

        min-height: auto;

        border-radius: 15px;
    }


    .schedule-time {

        width: 95px;

        padding: 12px 8px;
    }


    .schedule-info {

        padding: 18px 15px;
    }


    .schedule-info h3 {

        font-size: 15px;
    }

}


@media (max-width: 450px) {

    .schedule-item {

        flex-direction: column;
    }


    .schedule-time {

        width: 100%;

        flex-direction: row;

        gap: 15px;

        padding: 15px;
    }


    .schedule-time small {

        margin-bottom: 0;
    }

}









/* Footer Section Styling */
.footer-section {
    background-color: #0b1c3d; /* Matches the Deep Navy Blue theme */
    color: #ffffff;
    font-size: 0.9rem;
}

.footer-section .brand-title {
    font-size: 1.25rem;
    letter-spacing: 1px;
    line-height: 1;
}

.footer-section .brand-subtitle {
    font-size: 0.5rem;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.footer-heading {
    font-size: 1.1rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #ffcc00; /* Vibrant Gold Accent */
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Footer Link Elements */
.footer-links .footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links .footer-link:hover {
    color: #ffcc00;
    transform: translateX(4px);
}

/* Social Icon Buttons */
.social-icon-btn {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon-btn:hover {
    background-color: #ffcc00;
    color: #0b1c3d;
    transform: translateY(-3px);
}

/* Footer Bottom Bar */
.copyright-text, .footer-bottom-links a {
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #ffcc00 !important;
}










/* --- Floating Widget Container --- */
        .floating-contact {
            position: fixed;
            right: 20px;
            bottom: 30px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        /* --- Common Button Styles --- */
        .contact-btn {
            position: relative;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 24px;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        /* --- WhatsApp Specific Styling --- */
        .whatsapp-btn {
            background-color: #25d366;
            animation: pulse-whatsapp 2s infinite;
        }

        /* --- Phone Specific Styling --- */
        .phone-btn {
            background-color: #007bff;
            animation: pulse-phone 2s infinite;
            animation-delay: 1s; /* Staggered pulse effect */
        }

        /* --- Hover Animations --- */
        .contact-btn:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
        }

        /* --- Tooltip (Text that appears on hover) --- */
        .contact-btn::after {
            content: attr(data-tooltip);
            position: absolute;
            right: 70px;
            background-color: #333;
            color: #fff;
            padding: 5px 10px;
            font-size: 13px;
            white-space: nowrap;
            border-radius: 4px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, transform 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            pointer-events: none;
        }

        /* Tooltip Arrow */
        .contact-btn::before {
            content: '';
            position: absolute;
            right: 62px;
            border-width: 5px;
            border-style: solid;
            border-color: transparent transparent transparent #333;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease;
        }

        /* Show Tooltip on Hover */
        .contact-btn:hover::after,
        .contact-btn:hover::before {
            opacity: 1;
            visibility: visible;
            transform: translateX(-5px);
        }

        /* --- Keyframe Animations (Pulsing effect) --- */
        @keyframes pulse-whatsapp {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        @keyframes pulse-phone {
            0% {
                box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.6);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
            }
        }