* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body{
    font-family: 'Jost', sans-serif;
    background:#0b0f19;
    color:#fff;
	font-size: 18px;
}

/* NAVBAR */
.navbar{
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.05);
}
/* NAVBAR STYLE */
.custom-navbar{
    background: rgba(11,15,25,0.7);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    transition: 0.3s;
}

/* LOGO SIZE */
.logo-img{
    height:72px;
    transition:0.3s;
}

/* NAV LINKS */
.navbar-nav .nav-link{
    color:#fff;
    font-weight:500;
    margin-right:6px;
    position:relative;
	letter-spacing: 2px;
    font-weight: bold;
}

/* HOVER EFFECT */
.navbar-nav .nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;
    width:0%;
    height:2px;
    background:#ff6a00;
    transition:0.3s;
}

.navbar-nav .nav-link:hover::after{
    width:100%;
}

/* MOBILE */
@media(max-width:991px){

.logo-img{
    height:40px;
}

.navbar-nav{
    margin-top:15px;
}

.navbar-nav .nav-link{
    padding:10px 0;
}

}

.navbar-toggler-icon {
    filter: invert(1);
}
.navbar-nav .nav-item{
    margin-left: 20px;
}

.btn-main{
    background: linear-gradient(45deg,#ff6a00,#ff3d00);
    color:#fff;
    font-weight:600;
    padding:10px 22px;
    border-radius:50px;
    border:none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.4);
	text-decoration: none;
}

/* HOVER EFFECT */
.btn-main:hover{
    background: linear-gradient(45deg,#ff3d00,#ff6a00);
    color:#fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.6);
}

/* CLICK EFFECT */
.btn-main:active{
    transform: scale(0.96);
}

/* OPTIONAL: NAVBAR VERSION SMALL */
.navbar .btn-main{
    padding:8px 18px;
    font-size:0.9rem;
}

/* Remove outline & focus ring */
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}
.navbar-toggler{
    border: none;
    padding: 6px 8px;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden; /* IMPORTANT */
}

/* Background Video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(11,15,25,0.8), rgba(11,15,25,0.3));
    z-index: 1;
}

/* Content above video */
.hero .container {
    position: relative;
    z-index: 2;
}

/* Text styles */
.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
}

.hero p {
    color: #ddd;
}

/* Button */
.btn-main {
    background: linear-gradient(45deg,#ff6a00,#ff3d00);
    border: none;
    padding: 12px 28px;
    color: #fff;
}

/* HERO FOOTER */
.hero-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 2;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.4); /* semi-transparent */
    backdrop-filter: blur(6px);
}

.hero-footer p {
    color: #fff;
    margin: 0;
    font-size: 18px;
}

.hero-footer strong {
    color: #ff6a00;
    /*display: block;*/
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .hero-footer .col-md-4 {
        margin-bottom: 10px;
    }
	.hero-footer p {
    font-size: 14px;
	}
}

.owl-nav button {
            background-color: #fff;
            color: white !important;
            width: 40px;
            height: 40px;
            border-radius: 50% !important;
            margin: 0 10px;
        }
        
        .owl-nav {
            text-align: center;
            margin-top: 20px;
        }


.banner-section {
  background: url("../images/banner.webp") no-repeat center center;
  background-size: cover;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* adjust opacity (0.3–0.6) */
  z-index: 1;
}

.banner-section .container {
  position: relative;
  z-index: 2;
}

/* Form */
.form-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .hero-video {
        display: none;
    }

    .hero {
        background:
          linear-gradient(rgba(11,15,25,0.8), rgba(11,15,25,0.9)),
          url("../images/hero/hero.webp") center/cover no-repeat;
    }
}

.feature-card-box {
    background: #1c3261;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: 0.3s ease;
    height: 100%;
}

.feature-card-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-card-box p {
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

/* Hover effect */
.feature-card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* CARDS */
.card-custom{
    background:#111827;
    border-radius:15px;
    padding:25px;
    transition:.3s;
}

.card-custom:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

.apply-steps-section {
    padding: 0 0 80px 0;
    background: #f8f9fa;
    color: #fff;
}

.steps-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.step-box {
    position: relative;
    flex: 1;
    padding: 30px;
    border-radius: 16px;
    color: #fff;
    text-align: center;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Colors */
.step-1 { background: #1565c0; }
.step-2 { background: #f7931e; }
.step-3 { background: #ff6f3c; }

/* Arrow effect */
.step-box::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    border-left: 20px solid currentColor;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    z-index: 2;
}

/* Match arrow color with box */
.step-1::after { border-left-color: #1565c0; }
.step-2::after { border-left-color: #f7931e; }

/* Remove arrow from last box */
.step-3::after {
    display: none;
}

/* Typography */
.step-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.step-box p {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
	font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .steps-wrapper {
        flex-direction: column;
    }

    .step-box::after {
        display: none;
    }
}



.video-bg-section {
    position: relative;
   
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* Video styling */
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Dark overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* adjust darkness */
    z-index: 2;
}

/* Content on top */
.video-bg-section .content {
    position: relative;
    z-index: 3;
    text-align: center;
}

/* SECTION */
.section{
    padding:80px 0;
}
.bg-cream{
    background-color: hsl(35, 30%, 92%);
}

.btn-callback-ux{
    display:inline-flex;
    align-items:center;
    gap:8px;

    background: linear-gradient(135deg, #0b1220, #0f1b35);
    color:#fff;
    font-size:14px;
    font-weight:500;

    padding:10px 18px;
    border-radius:6px;
    text-decoration:none;

    border:1px solid rgba(255,255,255,0.08);

    transition: all 0.3s ease;
}

/* ICON */
.btn-callback-ux i{
    font-size:14px;
    transition: transform 0.3s ease;
}

/* HOVER */
.btn-callback-ux:hover{
    color:#fff;
    background: linear-gradient(135deg, #0f1b35, #162447);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* ICON MOVE */
.btn-callback-ux:hover i{
    transform: translate(3px, -3px);
}

.about-box{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    color:#333;
}

/* spacing tweak */
.about-box p{
    margin-bottom:12px;
    line-height:1.6;
}

/* CARD */
.highlight-card{
    background:#1c3261;
    padding:25px;
    border-radius:14px;
    text-align:center;
    color:#fff;
    height:100%;
    transition:0.3s;
    border:1px solid rgba(255,255,255,0.05);
}

/* ICON */
.highlight-card .icon{
    font-size:28px;
    margin-bottom:15px;
    color:#ff6a00;
}

/* TITLE */
.highlight-card h5{
    font-weight:600;
    margin-bottom:10px;
}

/* TEXT */
.highlight-card p{
    font-size:14px;
    opacity:0.8;
}

/* HOVER */
.highlight-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.5);
}











/* CTA */
.cta{
    background:linear-gradient(135deg,#ff6a00,#ff3d00);
    padding:60px;
    border-radius:20px;
    text-align:center;
}


/*hero text*/
.hero-info{
    display:inline-block;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 18px 24px;
    border-radius: 12px;
    color:#fff;
    max-width: 630px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* text styling */
.hero-info p{
    margin:0;
    line-height:1.6;
}

.small-text{
    font-size: 0.9rem;
    opacity:0.85;
}

/* mobile tweak */
@media(max-width:576px){
    .hero-info{
        padding:15px;
        text-align:center;
    }
}






/* REMOVE DEFAULT ICON */
.custom-accordion .accordion-button::after{
    display:none;
}

/* BUTTON STYLE */
.custom-accordion .accordion-button{
    background:#fff;
    color:#111;
    font-weight:600;
    border-radius:8px !important;
    margin-bottom:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    position:relative;
    padding-right:50px;
}

/* PLUS ICON */
.custom-accordion .accordion-button::before{
    content:"+";
    position:absolute;
    right:20px;
    font-size:20px;
    transition:0.3s;
}

/* MINUS ICON WHEN OPEN */
.custom-accordion .accordion-button:not(.collapsed)::before{
    content:"−";
    transform:rotate(180deg);
}

/* BODY */
.custom-accordion .accordion-body{
    background:#fff;
    border-radius:0 0 10px 10px;
    margin-top:-10px;
    padding:20px;
    color:#333;
}

/* ACTIVE */
.custom-accordion .accordion-button:not(.collapsed){
    background:#1c3261;
    color:#fff;
}

/* CARD */
.award-card{
    background:#111827;
    padding:25px;
    border-radius:14px;
    text-align:center;
    color:#fff;
    transition:0.3s;
    border:1px solid rgba(255,255,255,0.06);
    height:100%;
}

/* ICON */
.award-icon{
    font-size:30px;
    color:#ffb300;
    margin-bottom:15px;
}

/* TITLE */
.award-card h6{
    font-weight:600;
}

/* HOVER EFFECT */
.award-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.5);
}

/* NOTE TEXT */
.award-note{
    max-width:700px;
    margin:auto;
    opacity:0.85;
    font-size:15px;
}

/* BOX */
.info-box{
    background:#fff;
    padding:30px;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    height:100%;
}

/* ITEM */
.info-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:15px;
}

/* ICON */
.info-item i{
    font-size:18px;
    color:#ff6a00;
    margin-top:3px;
}

/* TEXT */
.info-item p{
    margin:0;
    color:#333;
}

/* LIST */
.apply-list{
    padding-left:0;
    list-style:none;
}

.apply-list li{
    position:relative;
    padding-left:22px;
    margin-bottom:12px;
    color:#333;
}

/* CUSTOM BULLET */
.apply-list li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#ff6a00;
    font-weight:bold;
}










/* CARD */
.guest-card{
    background:#111827;
    padding:20px;
    border-radius:14px;
    text-align:center;
    color:#fff;
    transition:0.3s;
}

/* IMAGE */
.guest-card img{
    width:100%;
    border-radius:10px;
    margin-bottom:15px;
}

/* NAME */
.guest-card h5{
    margin-bottom:5px;
    font-weight:600;
}

/* DESIGNATION */
.guest-card p{
    font-size:14px;
    opacity:0.7;
}

/* HOVER */
.guest-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.5);
}

/* OWL NAV */
.guest-slider .owl-nav{
    position:absolute;
    top:-70px;
    right:0;
}

.guest-slider .owl-nav button{
    background:#1f2937 !important;
    color:#fff !important;
    width:40px;
    height:40px;
    border-radius:50% !important;
    margin-left:10px;
    transition:0.3s;
}

.guest-slider .owl-nav button:hover{
    background:#ff6a00 !important;
}












/* CTA BOX */
.cta-box{
    background: linear-gradient(135deg,#ff6a00,#ff3d00);
    padding:60px 30px;
    border-radius:20px;
    color:#fff;
    max-width:900px;
    margin:auto;
    box-shadow:0 20px 50px rgba(255,106,0,0.4);
}

/* TEXT */
.cta-box h2{
    font-weight:700;
}

.cta-box .small-text{
    opacity:0.9;
}

/* BUTTON OVERRIDE */
.cta-box .btn-main{
    background:#fff;
    color:#111;
    font-weight:600;
}

/* BUTTON HOVER */
.cta-box .btn-main:hover{
    background:#111;
    color:#fff;
}

/* MOBILE */
@media(max-width:576px){
    .cta-box{
        padding:40px 20px;
    }
}

.glightbox {text-decoration: none;}

/* SECTION BACKGROUND */
.contact-section{
    background:#0b1220;
    color:#fff;
}

/* SUBTEXT */
.contact-sub{
    color:#b0b8c5;
}

/* CARD */
.contact-card{
    background:rgba(255,255,255,0.02);
    border:1px solid rgba(255,255,255,0.08);
    padding:35px 25px;
    border-radius:12px;
    transition:0.3s;
    height:100%;
}

/* HOVER */
.contact-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,0.5);
}

/* ICON BASE */
.contact-card .icon{
    width:60px;
    height:60px;
    margin:0 auto 20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

/* ICON COLORS */
.icon.email{
    background:rgba(255,87,34,0.15);
    color:#ff5722;
}

.icon.whatsapp{
    background:rgba(37,211,102,0.15);
    color:#25d366;
}

.icon.phone{
    background:rgba(255,87,34,0.15);
    color:#ff5722;
}

/* TEXT */
.contact-card h5{
    margin-bottom:10px;
}

.contact-card p{
    color:#b0b8c5;
    font-size:14px;
}

/* LINKS */
.contact-card a{
    display:inline-block;
    margin-top:10px;
    font-weight:500;
    color:#ff6a00;
    text-decoration:none;
}

/* HOVER LINK */
.contact-card a:hover{
    text-decoration:underline;
}

/* FOOTER BASE */
.footer-ux{
    background:#000;
    color:#fff;
    padding:60px 0 20px;
}

/* LOGO */
.footer-logo img{
    max-height:70px;
    margin-bottom:30px;
}

/* CONTENT */
.footer-content{
    margin-bottom:30px;
}

/* HEADINGS */
.footer-ux h6{
    font-weight:600;
    margin-bottom:15px;
}

/* TEXT */
.footer-ux p{
    color:#b0b8c5;
    font-size:14px;
    line-height:1.6;
}

/* LINKS */
.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:8px;
}

.footer-links a{
    color:#b0b8c5;
    text-decoration:none;
    transition:0.3s;
}

.footer-links a:hover{
    color:#ff6a00;
}

/* SOCIAL */
.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,0.05);
    color:#fff;
    transition:0.3s;
}

.footer-social a:hover{
    background:#ff6a00;
    transform:translateY(-3px);
}

/* BOTTOM */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    padding-top:15px;
}

.footer-bottom p{
    font-size:13px;
    color:#8a93a5;
}

/* MOBILE */
@media(max-width:768px){

.footer-content{
    text-align:center;
}

.footer-social{
    justify-content:center;
}

}

.apply-float-btn {
    position: fixed;
    right: 0;
    bottom: 40px;

    background: linear-gradient(45deg,#ff6a00,#ff3d00);
    color: #fff;
    padding: 12px 9px;
    text-decoration: none;
    font-weight: 600;

    border-radius: 0 8px 8px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);

    /* Vertical text */
    writing-mode: vertical-rl;
    transform: rotate(180deg);

    z-index: 999;

    /* Hidden initially */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Show button */
.apply-float-btn.show {
    opacity: 1;
    visibility: visible;
}

/* Hover effect */
.apply-float-btn:hover {
    background: linear-gradient(45deg,#ff3d00,#ff6a00);
    color: #fff;
}


