* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
}


.topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#fff;
    font-size:14px;
    overflow:hidden;
}


/* LEFT SIDE */

.top-left{
    background:#032626;
    padding:10px 30px;
    flex:1;
    position:relative;
}

.top-left::after{
    content:'';
    position:absolute;
    top:0;
    right:-45px;

    width:90px;
    height:100%;

    background:#ff4b3e;
    transform:skewX(-35deg);
    z-index:1;
}


/* RIGHT SIDE */

.top-right{
    background:#ff4b3e;
    padding:10px 35px 10px 70px;

    display:flex;
    align-items:center;
    gap:22px;
}


/* LINKS */

.topbar a{
    color:#fff;
    text-decoration:none;
    position:relative;
    z-index:2;
}

.topbar i{
    margin-right:8px;
}


/* Vertical Divider */

.top-right a{
    padding:0 12px;
    border-right:1px dashed rgba(255,255,255,.4);
}

.top-right a:last-child{
    border-right:none;
}


/* Hover */

.topbar a:hover{
    opacity:.85;
}


/* Responsive */

@media(max-width:768px){

    .topbar{
        flex-direction:column;
    }

    .top-left,
    .top-right{
        width:100%;
        text-align:center;
        justify-content:center;
        padding:12px 20px;
    }

    .top-left::after{
        display:none;
    }

    .top-right{
        flex-wrap:wrap;
        gap:10px;
    }
}

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px 30px;
    background:#fff;
    box-shadow:0 2px 8px rgba(0,0,0,.1);
}

.logo img{
    height:55px;
}

.nav-links{
    display:flex;
    gap:25px;
    list-style:none;
}

.nav-links a{
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active{
    color: #FF6F61 !important;
    font-weight: 600;
}
/* .login-btn{
    background:#00796b;
    color:white;
    padding:10px 18px;
    border-radius:25px;
    text-decoration:none;
}
.login-btn:hover{
    color: white;
} */


.glow-on-hover {
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: #00796b;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #00796b
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00796b;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}
.hamburger{
    display:none;
    font-size:26px;
    cursor:pointer;
}




@media(max-width:992px){

    .hamburger{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:white;
        flex-direction:column;
        display:none;
        padding:20px;
    }

    .nav-links.active{
        display:flex;
    }

    .login-btn{
        display:none;
    }

    .topbar{
        flex-direction:column;
        gap:10px;
    }
}



/* Footer Section CSS  */

/* FOOTER */

.footer {
    background: #032626;
    color: #fff;
    padding: 60px 40px;
}

.footer-container{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:40px;
}

.footer-col{
    flex:1;
    min-width:220px;
}

.footer-logo img{
    width:240px;
    margin-bottom:15px;
}

.footer p{
    color:#d8e6e6;
    line-height:1.7;
    font-size:15px;
}

.footer h4{
    font-size:28px;
    margin-bottom:20px;
    color:#fff;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links a{
    text-decoration:none;
    color:#d8e6e6;
    transition:.3s;
}

.footer-links a:hover{
    color:#ff5a4d;
    padding-left:5px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:18px;
    color:#d8e6e6;
}

.contact-item i{
    color:#fff;
    font-size:18px;
    margin-top:3px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.15);
    margin-top:40px;
    padding-top:20px;
    text-align:center;
    color:#c7d7d7;
}

/* Responsive */

@media(max-width:768px){

    .footer{
        padding:40px 25px;
    }

    .footer-container{
        flex-direction:column;
    }

    .footer-col{
        width:100%;
    }

    .footer-logo img{
        width:180px;
    }
}




/* ALL PAGE BOTTOM SECTION  */
.cta-section{

    /* YOUR BG IMAGE */
    background-image:url("../images/bottom-bg.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    border-radius:24px;
    overflow:hidden;
    margin:60px auto;
    max-width:1400px;

    position:relative;
}


/* Dark Overlay */

.cta-overlay{
    background:rgba(0,0,0,.35);
    padding:90px 30px;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}


/* Content */

.cta-content{
    max-width:900px;
}

.cta-content h2{
    color:#fff;
    font-size:48px;
    font-weight:700;
    margin-bottom:18px;
}

.cta-content p{
    color:#f1f1f1;
    font-size:17px;
    line-height:1.8;
    margin-bottom:35px;
}


/* Buttons */

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:22px;
    flex-wrap:wrap;
}

.cta-buttons a{
    text-decoration:none;
    padding:14px 38px;
    border-radius:35px;
    font-weight:600;
    transition:.35s;
    min-width:210px;
}


/* .btn-ticket{
    background:#ff675d;
    color:white;
}

.btn-ticket:hover{
    background:#ff4d40;
    transform:translateY(-2px);
} */
.btn-ticket{
    position:relative;
    display:inline-block;
    padding:14px 48px;
    border-radius:35px;
    background:#ff675d;
    color:#fff;
    text-decoration:none;
    overflow:hidden;
    z-index:1;
    transition:.3s;
}


/* Split Layers */

.btn-ticket::before,
.btn-ticket::after{
    content:'';
    position:absolute;
    top:0;
    width:0%;
    height:100%;
    background:#f7493c;
    transition:.45s ease;
    z-index:-1;
}

.btn-ticket::before{
    left:50%;
}

.btn-ticket::after{
    right:50%;
}


/* Hover */

.btn-ticket:hover{
    color:white;
    transform:translateY(-2px);
}

.btn-ticket:hover::before{
    width:50%;
    left:0;
}

.btn-ticket:hover::after{
    width:50%;
    right:0;
}


/* .btn-category{
    background:#028b8b;
    color:white;
}

.btn-category:hover{
    background:#026b6b;
    transform:translateY(-2px);
} */
.btn-category{
    position:relative;
    display:inline-block;
    padding:14px 48px;
    border-radius:35px;
    background:#028b8b;
    color:#fff;
    text-decoration:none;
    overflow:hidden;
    z-index:1;
    transition:.3s;
}


/* Split Layers */

.btn-category::before,
.btn-category::after{
    content:'';
    position:absolute;
    top:0;
    width:0%;
    height:100%;
    background:#026161;
    transition:.45s ease;
    z-index:-1;
}

.btn-category::before{
    left:50%;
}

.btn-category::after{
    right:50%;
}


/* Hover */

.btn-category:hover{
    color:white;
    transform:translateY(-2px);
}

.btn-category:hover::before{
    width:50%;
    left:0;
}

.btn-category:hover::after{
    width:50%;
    right:0;
}


/* Responsive */

@media(max-width:992px){

    .cta-overlay{
        padding:70px 25px;
    }

    .cta-content h2{
        font-size:36px;
    }

    .cta-content p{
        font-size:15px;
    }
}


@media(max-width:576px){

    .cta-section{
        border-radius:18px;
        margin:40px 15px;
    }

    .cta-overlay{
        padding:55px 20px;
    }

    .cta-content h2{
        font-size:28px;
        line-height:1.4;
    }

    .cta-content p{
        font-size:14px;
        line-height:1.7;
    }

    .cta-buttons{
        flex-direction:column;
        align-items:center;
    }

    .cta-buttons a{
        width:100%;
        max-width:260px;
    }
}