
/* CARD */
.package-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.package-card:hover{
    transform:translateY(-6px);
}

/* IMAGE */
.package-img{
    position:relative;
}

.package-img img{
    width:100%;
    height:220px;
    object-fit:cover;
}

/* RIBBON */
.ribbon{
    position:absolute;
    top:12px;
    left:-35px;
    background:#ff3b30;
    color:#fff;
    padding:6px 40px;
    font-size:12px;
    font-weight:600;
    transform:rotate(-35deg);
    z-index:2;
}

/* PRICE TAG */
.price-tag{
    position:absolute;
    bottom:12px;
    right:12px;
    background:rgba(0,0,0,0.75);
    color:#fff;
    padding:6px 10px;
    font-size:13px;
    border-radius:6px;
}

/* CONTENT */
.package-content{
    padding:14px;
}

.package-content h3{
    font-size:18px;
    margin:6px 0;
}

/* ? RATING (FIXED SPACING ISSUE) */
.rating{
    display:flex;
    align-items:center;
    gap:5px;
    margin:6px 0 8px 0;  /* IMPORTANT FIX */
    color:#f5a623;
    font-size:14px;
}

.rating span{
    color:#444;
    font-size:13px;
    margin-left:6px;
}

/* BUTTONS */
.package-btn-group{
    display:flex;
    gap:10px;
    margin-top:10px;
}

.call-btn1{
    flex:1;
    text-align:center;
    background:#0A3D91;
    color:#fff;
    padding:10px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.enquire-btn{
    flex:1;
    text-align:center;
    background:#FFD700;
    color:#000;
    padding:10px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}
.company-profile-box{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.company-profile-image{
    margin-bottom:25px;
}

.company-profile-image img{
    width:100%;
    border-radius:15px;
    display:block;
}

.company-profile-content h3{
    color:#003d99;
    font-size:30px;
    font-weight:700;
    margin-bottom:20px;
}

.company-profile-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:15px;
}

.profile-points{
    padding:0;
    margin:25px 0 0;
    list-style:none;
}

.profile-points li{
    padding:10px 0;
    border-bottom:1px solid #eee;
    font-weight:600;
    color:#003d99;
}
.footer{
    background:linear-gradient(135deg,#003d99,#0056d6);
    padding:70px 0 20px;
    color:#fff;
}

.footer-logo{
    text-align:center;
    margin-bottom:20px;
}

.footer-logo img{
    max-width:220px;
}

/* All Footer Content Center */


.footer-widget h3{
    color:#FFD700;
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
}

.footer-widget p{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    color:#dfe8ff;
    line-height:1.9;
    text-align:center;
}

/* Contact */
.footer-contact{
    list-style:none;
    padding:0;
    margin:20px 0;
}

.footer-contact li{
    margin-bottom:12px;
    color:#fff;
}

.footer-contact i{
    color:#FFD700;
    margin-right:8px;
}

.footer-contact a{
    color:#fff;
    text-decoration:none;
}

.footer-contact a:hover{
    color:#FFD700;
}

/* Social */
.footer-social{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-top:20px;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.3s;
}

.footer-social a:hover{
    background:#FFD700;
    color:#003d99;
}

/* Package Links */
.footer-links{
    list-style:none;
    padding:0;
    margin:20px 0 0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#dfe8ff;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#FFD700;
}

/* Copyright */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,.15);
    margin-top:40px;
    padding-top:20px;
    text-align:center;
}

.footer-bottom p{
    margin:0;
    color:#dfe8ff;
}
.footer-widget{
    text-align:center;
    width:100%;
    max-width:100%;
    margin:0 auto 35px;
}

.footer-contact-inline,
.footer-packages-inline{
    list-style:none;
    padding:0;
    margin:0 auto 30px;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    text-align:center;
}

.footer-contact-inline li,
.footer-packages-inline li{
    color:#fff;
}

.footer-contact-inline li:not(:last-child)::after,
.footer-packages-inline li:not(:last-child)::after{
    content:"|";
    margin-left:15px;
    color:#FFD700;
}

.footer-contact-inline a,
.footer-packages-inline a{
    color:#fff;
    text-decoration:none;
}

.footer-contact-inline a:hover,
.footer-packages-inline a:hover{
    color:#FFD700;
}
/* Contact Icons Gold */
.footer-contact-inline i{
    color:#FFD700;
    margin-right:8px;
    font-size:16px;
}

/* Contact Links */
.footer-contact-inline a{
    color:#ffffff;
    text-decoration:none;
    transition:all 0.3s ease;
}

.footer-contact-inline a:hover{
    color:#FFD700;
}

/* Social Icons */
.footer-social{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    margin-top:30px;
}

.footer-social a{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,0.12);
    color:#FFD700;
    font-size:20px;
    border:1px solid rgba(255,215,0,0.3);
    transition:all 0.4s ease;
}

.footer-social a:hover{
    background:#FFD700;
    color:#003d99;
    transform:translateY(-4px);
    box-shadow:0 8px 20px rgba(255,215,0,0.35);
}

/* Package Links */
.footer-packages-inline a{
    color:#ffffff;
    text-decoration:none;
    transition:all 0.3s ease;
}

.footer-packages-inline a:hover{
    color:#FFD700;
}

/* Golden Separator */
.footer-contact-inline li:not(:last-child)::after,
.footer-packages-inline li:not(:last-child)::after{
    content:"|";
    color:#FFD700;
    margin-left:15px;
}

.hero-slider{
    margin:0;
    height:90vh;
}

.slides-wrapper{
    position:relative;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 1s ease;

    /* IMPORTANT FIX: REMOVE CENTER ALIGNMENT */
    display:block;
}

.slide.active{
    opacity:1;
    z-index:2;
}

/* DARK OVERLAY */
.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,0.55) 35%,
        rgba(0,0,0,0.25) 70%,
        rgba(0,0,0,0.10) 100%
    );
}

/* ? LEFT ALIGNED CONTENT (MAIN FIX) */
.content{
    position:absolute;
    top:50%;
    left:0;
    transform:translateY(-50%);

    z-index:3;
    color:#fff;

    max-width:650px;
    padding-left:90px;
    padding-right:20px;
    text-align:left;
}

/* TEXT STYLING */
.badge{
    display:inline-flex;
    gap:8px;
    align-items:center;
    background:rgba(255,255,255,0.12);
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
    margin-bottom:15px;
}

h1{
    font-size:52px;
    margin:10px 0;
    line-height:1.1;
}

p{
    font-size:16px;
    opacity:0.9;
    margin-bottom:10px;
}

.rating{
    margin:15px 0;
    color:#f5a623;
    display:flex;
    gap:8px;
    align-items:center;
    flex-wrap:wrap;
}

.rating span{
    color:#fff;
    font-size:8px;
    opacity:0.9;
}

.btns{
    display:flex;
    gap:15px;
    margin-top:20px;
}

/* BUTTONS */
.primary{
    background:#FFD700;
    color:#000;
    padding:12px 20px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.secondary{
    border:1px solid #fff;
    color:#fff;
    padding:12px 20px;
    border-radius:8px;
    text-decoration:none;
}

/* MOBILE FIX */
@media(max-width:768px){
    .content{
        padding-left:20px;
        max-width:90%;
    }

    h1{
        font-size:32px;
    }
}

/* HEADER MUST ALWAYS STAY ABOVE SLIDER */
header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 40px;   /* desktop spacious look */
    flex-wrap:nowrap;
}

header .logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:30px;
    font-weight:700;
    white-space:nowrap;
}

header .logo img{
    height:45px;   /* desktop logo size */
    width:auto;
}
header .call-btn{
    background:#FFD700;
    color:#000;
    padding:10px 18px;
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
    white-space:nowrap;
}
@media(max-width:768px){
    header{
        padding:10px 15px;
    }

    header .logo img{
        height:32px;
    }

    header .logo{
        font-size:14px;
        max-width:60%;
    }

    header .call-btn{
        font-size:13px;
        padding:6px 10px;
    }
}

/* HERO MUST NOT GO UNDER HEADER */
.hero-slider{
    position:relative;
    z-index:1;
}

/* ADD SAFE TOP SPACE FOR MOBILE HEADER */
@media(max-width:768px){
    .hero-slider{
        margin-top:70px; /* adjust based on your header height */
        height: calc(90vh - 70px);
    }

    .content{
        padding-top:20px;
    }
}


