html {
    font-size: 14px;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.5rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.container1 {
    width: 100%;
    padding: 0px;
     margin:0px;
}

a {
    text-decoration: none;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    color: #2f2f2f;
    text-decoration: underline;
}

    a:hover {
        color: #2f2f2f;
        text-decoration: none;
    }

    a.more {
        font-weight: 600;
    }

    /*-----navbar----*/

.custom-navbar-nav .nav-link.active {
    color: #ffffff !important;
    border-bottom: 2px solid #e94560;
    padding-bottom: 2px;
}

.custom-navbar {
    background: #3b5d50 !important;
    padding-top: 10px;
    padding-bottom: 10px;
}

    .custom-navbar .navbar-brand {
        font-size: 32px;
        font-weight: 600;
    }

        .custom-navbar .navbar-brand > span {
            opacity: .4;
        }

    .custom-navbar .navbar-toggler {
        border-color: transparent;
    }

        .custom-navbar .navbar-toggler:active, .custom-navbar .navbar-toggler:focus {
            -webkit-box-shadow: none;
            box-shadow: none;
            outline: none;
        }

@media (min-width: 992px) {
    .custom-navbar .custom-navbar-nav li {
        margin-left: 15px;
        margin-right: 15px;
    }
}

.custom-navbar .custom-navbar-nav li a {
    font-weight: 500;
    color: #ffffff !important;
    opacity: .5;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    position: relative;
}

@media (min-width: 768px) {
    .custom-navbar .custom-navbar-nav li a:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 8px;
        right: 8px;
        background: #f9bf29;
        height: 5px;
        opacity: 1;
        visibility: visible;
        width: 0;
        -webkit-transition: .15s all ease-out;
        -o-transition: .15s all ease-out;
        transition: .15s all ease-out;
    }
}

.custom-navbar .custom-navbar-nav li a:hover {
    opacity: 1;
}

    .custom-navbar .custom-navbar-nav li a:hover:before {
        width: calc(100% - 16px);
    }

.custom-navbar .custom-navbar-nav li.active a {
    opacity: 1;
}

    .custom-navbar .custom-navbar-nav li.active a:before {
        width: calc(100% - 16px);
    }

.custom-navbar .custom-navbar-cta {
    margin-left: 0 !important;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-left:10%;
  
}

@media (min-width: 768px) {
    .custom-navbar .custom-navbar-cta {
        margin-left: 40px !important;
    }
}

.custom-navbar .custom-navbar-cta li {
    margin-left: 0px;
    margin-right: 0px;
}

    .custom-navbar .custom-navbar-cta li:first-child {
        margin-right: 20px;
    }
/*---hero section---*/

.hero {
    height: 100vh; /* Full screen height */
    background: url('/Images/kula_hero.png') no-repeat center center;
    background-size: cover;
    position: relative;
}

.hero-overlay {
    /*background: rgba(0, 0, 0, 0.5);*/ /* Dark overlay for readability */
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.1rem;
}

/* About Section */
.about-subtitle {
    color: #813333;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
}

/* image effect */
.hover-effect {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

    .hover-effect:hover {
        transform: scale(1.02); 
        box-shadow: 0 30px 30px rgba(0,0,0,0.3); 
    }

/*.hover-effect {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .hover-effect:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    }
*/

/*--title effect--*/
/*.hover-title {
    display: inline-block;
    transition: transform 0.3s ease, letter-spacing 0.3s ease;
}

    .hover-title:hover {
        transform: scale(1.02);
        letter-spacing: 1px;
    }*/

.hover-title {
    display: inline-block;
    transition: all 0.4s ease;
}

    .hover-title:hover {
        transform: translateY(-5px);
        text-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }

/*--box --*/

.outer-box {
    width: 5cm;
    height: 10cm;
    border: 2px solid black;
    position: relative;
    box-sizing: border-box;
}

.inner-box {
    width: 100%;
    height: 80%;
    border: 2px solid blue;
    margin: 1px auto;
}

.name-box {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1.5cm;
    border-top: 2px solid black;
    text-align: center;
    line-height: 1.5cm;
    font-weight: bold;
}

/*Package*/

.package-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: 0.3s ease;
}

    .package-card:hover {
        transform: translateY(-8px);
    }

.image-wrapper {
    position: relative;
}

    .image-wrapper img {
        height: 220px;
        width: 100%;
        object-fit: cover;
    }

.badge-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #28a745;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
}

    .badge-tag.orange {
        background: #ff7a00;
    }

    .badge-tag.red {
        background: #ff3b3b;
    }

.price {
    color: #1e7e34;
    font-weight: bold;
}

.explore-btn {
    text-decoration: none;
    font-weight: 500;
    color: #000;
}

    .explore-btn:hover {
        color: #28a745;
    }

/* Service */
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

    .service-item:hover {
        background: var(--primary);
    }

    .service-item * {
        transition: .5s;
    }

    .service-item:hover * {
        color: var(--light) !important;
    }

.copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.copyright a {
        color: var(--light);
    }

.footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer-menu a:last-child {
        margin-right: 0;
        padding-right: 0;
        border-right: none;
    }