/*==================================================
 Southern Tourism Services
 style.css
 Part 1
==================================================*/

/*==============================
 Google Font
==============================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==============================
 Root Variables
==============================*/

:root{

    --primary:#4c8f12;
    --primary-dark:#2d5c09;
    --secondary:#f39c12;
    --light:#f8f9fa;
    --dark:#222;
    --white:#ffffff;
    --border:#e8e8e8;
    --shadow:0 10px 25px rgba(0,0,0,.08);

}

/*==============================
 Reset
==============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    font-size:16px;

    color:#444;

    background:#fff;

    overflow-x:hidden;

    line-height:1.8;

}

img{

    max-width:100%;

    display:block;

    height:auto;

}

a{

    text-decoration:none;

    transition:.3s;

}

ul{

    list-style:none;

    padding:0;

    margin:0;

}

section{

    padding:80px 0;

}

.container{

    max-width:1200px;

}

/*==============================
 Typography
==============================*/

h1,h2,h3,h4,h5,h6{

    color:#222;

    font-weight:700;

}

.section-title{

    font-size:38px;

    margin-bottom:20px;

    color:var(--primary-dark);

}

.section-subtitle{

    color:#777;

    font-size:17px;

    margin-bottom:50px;

}

/*==============================
 Top Bar
==============================*/

.top-bar{

    background:var(--primary);

    color:#fff;

    font-size:14px;

    padding:10px 0;

}

.top-bar a{

    color:#fff;

}

.top-bar i{

    margin-right:6px;

}

/*==============================
 Header
==============================*/

header{

    background:#fff;

    box-shadow:0 2px 15px rgba(0,0,0,.08);

    position:sticky;

    top:0;

    z-index:999;

}

.logo{

    height:75px;

    width:auto;

}

/*==============================
 Navbar
==============================*/

.navbar{

    padding:12px 0;

}

.navbar-nav .nav-link{

    color:#333;

    font-size:17px;

    font-weight:500;

    margin:0 10px;

    position:relative;

}

.navbar-nav .nav-link:hover{

    color:var(--primary);

}

.navbar-nav .nav-link.active{

    color:var(--primary);

}

.navbar-nav .nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-5px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.navbar-nav .nav-link:hover::after{

    width:100%;

}

/*==============================
 Dropdown
==============================*/

.dropdown-menu{

    border:none;

    border-radius:10px;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

    padding:10px 0;

}

.dropdown-item{

    padding:12px 20px;

    font-size:15px;

}

.dropdown-item:hover{

    background:var(--primary);

    color:#fff;

}

/*==============================
 Buttons
==============================*/

.btn{

    border-radius:50px;

    padding:12px 28px;

    font-weight:600;

}

.btn-success{

    background:var(--primary);

    border-color:var(--primary);

}

.btn-success:hover{

    background:var(--primary-dark);

    border-color:var(--primary-dark);

}

.btn-outline-success{

    color:var(--primary);

    border-color:var(--primary);

}

.btn-outline-success:hover{

    background:var(--primary);

    color:#fff;

}

/*==============================
 Cards
==============================*/

.card{

    border:none;

    border-radius:15px;

    box-shadow:var(--shadow);

    transition:.35s;

}

.card:hover{

    transform:translateY(-8px);

}

/*==============================
 Utilities
==============================*/

.bg-light{

    background:#f8f9fa!important;

}

.text-success{

    color:var(--primary)!important;

}

.shadow{

    box-shadow:var(--shadow)!important;

}

.rounded{

    border-radius:15px!important;

}

/*==============================
 Mobile Menu
==============================*/

.navbar-toggler{

    border:none;

}

.navbar-toggler:focus{

    box-shadow:none;

}

/*==============================
 Responsive
==============================*/

@media(max-width:991px){

.logo{

height:60px;

}

.navbar-collapse{

background:#fff;

margin-top:15px;

padding:20px;

border-radius:10px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.navbar-nav{

text-align:center;

}

.navbar-nav .nav-link{

padding:12px 0;

margin:0;

}

.btn-success{

width:100%;

margin-top:10px;

}

.section-title{

font-size:30px;

text-align:center;

}

}

@media(max-width:576px){

body{

font-size:15px;

}

.logo{

height:50px;

}

.section-title{

font-size:26px;

}

.top-bar{

text-align:center;

font-size:13px;

}

}

/*==================================================
style.css
Part 2
Hero, About, Services
==================================================*/

/*==============================
Hero Section
==============================*/

.hero{

    background:#eef9e8;

    padding:25px 0;

    overflow:hidden;

}

/*==============================
Continuous Film Slider
==============================*/

.film-slider{

    width:100%;

    overflow:hidden;

    position:relative;

}

.film-track{

    display:flex;

    width:max-content;

    animation:filmRoll 35s linear infinite;

}

.film-slider:hover .film-track{

    animation-play-state:paused;

}

.film-item{

    width:300px;

    background:#fff;

    margin-right:12px;

    border-radius:12px;

    overflow:hidden;

    flex-shrink:0;

    box-shadow:0 8px 20px rgba(0,0,0,.12);

    transition:.3s;

}

.film-item:hover{

    transform:translateY(-8px);

}

.film-item img{

    width:100%;

    height:180px;

    object-fit:cover;

    transition:.4s;

}

.film-item:hover img{

    transform:scale(1.08);

}

.film-title{

    background:var(--secondary);

    color:#fff;

    text-align:center;

    padding:12px;

    font-size:18px;

    font-weight:600;

}

@keyframes filmRoll{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-1860px);

}

}

/*==============================
About Section
==============================*/

.about-section{

    padding:80px 0;

}

.about-section img{

    border-radius:15px;

    box-shadow:var(--shadow);

}

.about-section h2{

    font-size:40px;

    margin-bottom:20px;

}

.about-section p{

    color:#666;

    margin-bottom:18px;

}

/*==============================
Statistics
==============================*/

.counter-box{

    text-align:center;

    padding:20px;

}

.counter-box h2{

    color:var(--primary);

    font-size:42px;

    font-weight:700;

}

.counter-box p{

    color:#666;

}

/*==============================
Feature Cards
==============================*/

.feature-card{

    background:#fff;

    border-radius:15px;

    padding:35px 25px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

    height:100%;

}

.feature-card:hover{

    transform:translateY(-10px);

}

.feature-card i{

    font-size:55px;

    color:var(--primary);

    margin-bottom:20px;

}

.feature-card h4{

    margin-bottom:15px;

}

/*==============================
Services
==============================*/

.service-box{

    display:flex;

    align-items:center;

    margin-bottom:18px;

}

.service-box i{

    width:42px;

    height:42px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-right:15px;

    font-size:18px;

}

/*==============================
Destination Cards
==============================*/

.destination-card{

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.35s;

    height:100%;

}

.destination-card:hover{

    transform:translateY(-10px);

}

.destination-card img{

    width:100%;

    height:220px;

    object-fit:cover;

    transition:.4s;

}

.destination-card:hover img{

    transform:scale(1.08);

}

.destination-card .card-body{

    padding:20px;

}

.destination-card h5{

    margin-bottom:10px;

    color:var(--primary-dark);

}

/*==============================
Image Hover
==============================*/

.image-hover{

    overflow:hidden;

    border-radius:15px;

}

.image-hover img{

    transition:.5s;

}

.image-hover:hover img{

    transform:scale(1.1);

}

/*==============================
Responsive
==============================*/

@media(max-width:991px){

.about-section{

text-align:center;

}

.about-section h2{

font-size:32px;

}

.film-item{

width:240px;

}

.film-item img{

height:150px;

}

.destination-card img{

height:190px;

}

}

@media(max-width:576px){

.hero{

padding:15px 0;

}

.film-item{

width:210px;

}

.film-item img{

height:130px;

}

.film-title{

font-size:15px;

padding:8px;

}

.about-section h2{

font-size:28px;

}

.feature-card{

padding:25px;

}

.destination-card img{

height:170px;

}

}

/*==================================================
 style.css
 Part 3
 Tour Packages, Contact & CTA
==================================================*/


/*==================================
Package Section
==================================*/

.package-section{

    background:#f8f9fa;

}

.package-card{

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.35s;

    height:100%;

}

.package-card:hover{

    transform:translateY(-10px);

}

.package-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.package-card .card-body{

    padding:25px;

}

.package-card h5{

    color:var(--primary-dark);

    margin-bottom:10px;

}

.package-card ul{

    margin:20px 0;

}

.package-card ul li{

    padding:6px 0;

    color:#555;

}


/*==================================
Package Price
==================================*/

.package-price{

    font-size:30px;

    color:var(--primary);

    font-weight:700;

}

.package-price span{

    font-size:15px;

    color:#777;

    font-weight:400;

}


/*==================================
Package Badge
==================================*/

.package-badge{

    position:absolute;

    top:15px;

    left:15px;

    background:var(--secondary);

    color:#fff;

    padding:6px 15px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}


/*==================================
Testimonials
==================================*/

.testimonial-card{

    background:#fff;

    padding:30px;

    border-radius:15px;

    box-shadow:var(--shadow);

    text-align:center;

    transition:.35s;

    height:100%;

}

.testimonial-card:hover{

    transform:translateY(-8px);

}

.testimonial-card img{

    width:90px;

    height:90px;

    border-radius:50%;

    object-fit:cover;

    margin:0 auto 20px;

}

.testimonial-card h5{

    margin-top:15px;

}

.testimonial-card p{

    color:#666;

}

.rating{

    color:#ffc107;

    font-size:18px;

}


/*==================================
Contact Section
==================================*/

.contact-info{

    background:#fff;

    padding:35px;

    border-radius:15px;

    box-shadow:var(--shadow);

    height:100%;

}

.contact-item{

    display:flex;

    align-items:flex-start;

    margin-bottom:25px;

}

.contact-item i{

    width:55px;

    height:55px;

    background:var(--primary);

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    margin-right:18px;

}


/*==================================
Contact Form
==================================*/

.contact-form{

    background:#fff;

    padding:35px;

    border-radius:15px;

    box-shadow:var(--shadow);

}

.contact-form .form-control{

    height:55px;

    border-radius:8px;

    border:1px solid #ddd;

    margin-bottom:18px;

}

.contact-form textarea{

    height:150px !important;

    resize:none;

}

.contact-form .form-control:focus{

    border-color:var(--primary);

    box-shadow:none;

}


/*==================================
Google Map
==================================*/

.map{

    border-radius:15px;

    overflow:hidden;

    box-shadow:var(--shadow);

}

.map iframe{

    width:100%;

    height:450px;

    border:0;

}


/*==================================
Call To Action
==================================*/

.cta{

    background:linear-gradient(rgba(76,143,18,.9),rgba(76,143,18,.9)),
               url("../images/cta-bg.jpg");

    background-size:cover;

    background-position:center;

    color:#fff;

    text-align:center;

    padding:80px 0;

}

.cta h2{

    color:#fff;

    font-size:42px;

}

.cta p{

    font-size:18px;

    margin:20px auto;

    max-width:700px;

}


/*==================================
Responsive
==================================*/

@media(max-width:991px){

.package-card img{

height:190px;

}

.contact-info{

margin-bottom:30px;

}

.map iframe{

height:350px;

}

.cta h2{

font-size:34px;

}

}


@media(max-width:576px){

.package-card img{

height:170px;

}

.package-price{

font-size:24px;

}

.testimonial-card{

padding:20px;

}

.contact-form{

padding:25px;

}

.contact-info{

padding:25px;

}

.contact-item{

display:block;

text-align:center;

}

.contact-item i{

margin:0 auto 15px;

}

.cta{

padding:60px 20px;

}

.cta h2{

font-size:28px;

}

.cta p{

font-size:16px;

}

}

/*==================================================
 style.css
 Part 4 (Final)
 Footer & Utilities
==================================================*/


/*==============================
Footer
==============================*/

.footer{

    background:#2d5c09;

    color:#fff;

    padding:70px 0 25px;

}

.footer-logo{

    height:70px;

    margin-bottom:20px;

}

.footer h5{

    color:#fff;

    margin-bottom:25px;

    font-weight:600;

}

.footer p{

    color:#d8d8d8;

    line-height:1.8;

}

.footer a{

    color:#d8d8d8;

    transition:.3s;

}

.footer a:hover{

    color:#fff;

    padding-left:5px;

}

.footer-links li{

    margin-bottom:12px;

}

.footer hr{

    border-color:rgba(255,255,255,.15);

}


/*==============================
Social Icons
==============================*/

.social-icons{

    display:flex;

    gap:10px;

}

.social-icons a{

    width:42px;

    height:42px;

    background:#198754;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    font-size:18px;

    transition:.35s;

}

.social-icons a:hover{

    background:#fff;

    color:#198754;

    transform:translateY(-4px);

}


/*==============================
Floating Buttons
==============================*/

.whatsapp-btn,
.call-btn,
#topBtn{

position:fixed;

right:20px;

width:56px;

height:56px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

color:#fff;

font-size:22px;

z-index:9999;

text-decoration:none;

box-shadow:0 10px 20px rgba(0,0,0,.2);

transition:.3s;

}

.whatsapp-btn{

background:#25D366;

bottom:155px;

}

.call-btn{

background:#0d6efd;

bottom:90px;

}

#topBtn{

bottom:25px;

background:var(--primary);

border:none;

display:none;

cursor:pointer;

}

.whatsapp-btn:hover,
.call-btn:hover,
#topBtn:hover{

transform:translateY(-5px);

}


/*==============================
Copyright
==============================*/

.copyright{

padding-top:20px;

font-size:15px;

color:#ccc;

}


/*==============================
Animation
==============================*/

.fade-up{

animation:fadeUp .8s ease;

}

@keyframes fadeUp{

0%{

opacity:0;

transform:translateY(30px);

}

100%{

opacity:1;

transform:translateY(0);

}

}


/*==============================
Section Spacing
==============================*/

.py-80{

padding:80px 0;

}

.mt-50{

margin-top:50px;

}

.mb-50{

margin-bottom:50px;

}


/*==============================
Utility
==============================*/

.text-primary{

color:var(--primary)!important;

}

.bg-primary{

background:var(--primary)!important;

}

.rounded-15{

border-radius:15px;

}

.shadow-custom{

box-shadow:var(--shadow);

}


/*==============================
Selection
==============================*/

::selection{

background:var(--primary);

color:#fff;

}


/*==============================
Scrollbar
==============================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#eee;

}

::-webkit-scrollbar-thumb{

background:var(--primary);

border-radius:20px;

}


/*==============================
Responsive
==============================*/

@media(max-width:991px){

.footer{

text-align:center;

}

.social-icons{

justify-content:center;

margin-bottom:20px;

}

.footer-logo{

margin:auto auto 20px;

}

}


@media(max-width:768px){

.footer{

padding-bottom:100px;

}

.whatsapp-btn{

bottom:140px;

right:15px;

width:50px;

height:50px;

}

.call-btn{

bottom:80px;

right:15px;

width:50px;

height:50px;

}

#topBtn{

bottom:20px;

right:15px;

width:50px;

height:50px;

}

}


@media(max-width:576px){

body{

font-size:15px;

}

section{

padding:60px 0;

}

.footer h5{

margin-top:20px;

}

.footer-links{

text-align:center;

}

}

/* Mobile Bottom Bar */
.mobile-bottom-bar{
    display:none;
}

@media (max-width:768px){

    .mobile-bottom-bar{
        position:fixed;
        left:0;
        bottom:0;
        width:100%;
        height:65px;
        background:#198754;
        display:flex;
        z-index:99999;
        box-shadow:0 -3px 12px rgba(0,0,0,.2);
    }

    .mobile-bottom-bar a{
        flex:1;
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        color:#fff;
        text-decoration:none;
        font-size:13px;
        font-weight:600;
        border-right:1px solid rgba(255,255,255,.2);
    }

    .mobile-bottom-bar a:last-child{
        border-right:none;
    }

    .mobile-bottom-bar i{
        font-size:22px;
        margin-bottom:4px;
    }

    /* Prevent content from being hidden behind the bar */
    body{
        padding-bottom:70px;
    }
}
