
/*font for mepC from google fonts*/

@import url('https://fonts.googleapis.com/css2?family=Poppins'); 

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}
 a{
    text-decoration: none;
 }

 ul{
    list-style: none;
 }

 .active{
     color: red;  
 }
a{
    color: whitesmoke;
}
a:hover{
    color: red;
}
 body, html{
    overflow-x: hidden;
 }
 body{
    scroll-behavior: smooth;
 }
.navbar{

    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 20px;
    color: whitesmoke;
}

.nav-links{

    display: flex;
    align-items: center;
}
 
.nav-links li{

    margin: 0 30px;

}

header{

    width: 100vw;
    height: 95vh;
    background-image: url('img/MI.jpg');
    background-position: bottom;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.header-content{

    margin-bottom: 150px;
    color: whitesmoke;
    text-align: center;
}

.header-content h2{

    font-size: 4vmin;
    color: whitesmoke;
}

.line{
    width: 150px;
    height: 4px;
    background-color: red;
    margin: 10px auto;
    border-radius: 5px;
}

.header-content h1{

    font-size: 10vmin;
    margin-top: 50px;
    margin-bottom: 30px;
}

.ctn{

    padding: 10px 20px;
    background-color: red;
    border-radius: 30px;
    color: whitesmoke;
}

.menu-btn{
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    cursor: pointer;
    display: none;
}

/*events*/
section{
    width: 80%;
    margin: 80px auto;
   
}
.title{
    text-align: center;
    font-size: 4vmin;
    color: #49497e;
}
.row{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.row .col {
    display: flex;
    flex-direction: column;
    align-items: center;
    
}
.events .row{
    margin-top: 50px;

}
h4{
    font-size: 3vmin;
    color: #484872;
    margin: 20px auto;
}
p{
    color: #7c7c7c;
    padding: 0px 40px;
}
.events .ctn{
    margin-top: 30px;

}
/* About us */

.explore{
    width: 100%;
    height: 80vh;
    background-image: url('img/ABT.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
}

.explore-content {
    width: 50%;
    padding: 50px;
    color: white;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.explore-content h1 {
    font-size: 7vmin;
    /* margin: 50px; */

}
.explore-content .line{
    margin-bottom:10px ;
}
.explore-content p {
    color: #f0f4f8;
}

.explore-content .ctn{
    margin-top: 20px;
}


/* ABOUT OVER */
.content-col{
    width: 40%;
}
.image-col{
    width: 60%;
}
.tours .image-gallery{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
}
.image-gallery img{
    max-width: 300px;
    margin: 10px;

}
.content-col h1{
    font-size: 7vmin;
    color: #484872;
}
.content-col .line{
    margin-left: -1px;
}
.content-col p{
    padding: 0;
    margin: 30px auto;

}
.content-col .ctn{
    margin-left: -100px;
}

footer {
    background-color: #3f3d66; /* Dark Blue */
    color: #ffffff;
    text-align: center;
    padding: 15px;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 90%;
    margin: auto;
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
}

.footer-container a {
    color: #ffffff;
    text-decoration: none;
    
}

.footer-container a:hover {
    text-decoration: underline;
}

/* Show desktop view by default */
.desktop-view {
    display: block;
    color: #fff;
}

.mobile-view {
    display: none;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-view {
        display: none;
        color: #fff;
    }

    .mobile-view {
        display: block;
        color: #fff;
    }
}

/*clients*/

.clients-section {
    text-align: center;
    padding: 20px;
}

.clients-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Clients Container */
.clients-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.clients-container img {
    max-width: 270px; /* Adjust size as needed */
    height: auto;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
    .clients-container {
        flex-direction: column;
    }

    .clients-container img {
        max-width: 80%;
    }
}


/*offer*/

.offer-container {
    background: #ff5722;
    color: white;
    padding: 50px;
    border-radius: 0px;
    margin-top: 70px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
}
.offer-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
.offer-details {
    font-size: 18px;
    margin-bottom: 15px;
}
.offer-btn {
    display: inline-block;
    background: white;
    color: #ff5722;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}
.offer-btn:hover {
    background: #ffccbc;
}
@media (max-width: 600px) {
    .offer-container {
        padding: 15px;
    }
    .offer-title {
        font-size: 20px;
    }
    .offer-details {
        font-size: 16px;
    }
    .offer-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}

/*get in touch*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
/* *{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'poppins',sans-serif;
} */
.contact-form{
    position: relative;
    min-height: 100vh;
    z-index: 0;
    background: #aed9e8;
    padding: 30px;
    justify-content: center;
    display: grid;
    grid-template-rows: 1fr auto 1fr;
    align-items: center;
}
.container{
    max-width: 800px;
    margin-top: 0 auto;
}
.contact-form h1{
    text-align: center;
    font-size: 2.5rem;
    font-weight: 400;
    color: #fff;
    font-family: 'poppins';
}
.contact-form h2{
    line-height: 40px;
    margin-bottom: 5px;
    font-size: 30px;
    font-weight: 500;
    color: #69275c;
    text-align: center;
}
.contact-form .main{
    position: relative;
    display: flex;
    margin: 30px 0;
}
.content{
    flex-basis: 50%;
    padding: 3em 3em;
    background: #fff;
    box-shadow: 2px 9px 49px -17px rgba(156, 39, 148, 0.1);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.form-img{
    flex-basis: 50%;
    background: #f0f4f8;
    background-size: cover;
    padding: 40px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    align-items: center;
    display: grid;
}
.form-img img{
    max-width: 100%;
}
.btn,
button,
input{
    border-radius: 35px;
}

.contact-form form{
    margin: 30px 0;
}
.contact-form input,
textarea{
    outline: none;
    margin-bottom: 15px;
    font-stretch: 16px;
    color: #999;
    padding: 14px 20px;
    width: 100%;
    display: inline-block;
    box-sizing: border-box;
    border: none;
    background: #fcfcfc;
    transition: 0.3s ease;
}
.contact-form input:focus{
    background: transparent;
    border: 1px solid #69275c;
}
.contact-form button{
    font-size: 18px;
    color: #fff;
    width: 100%;
    background: #aed9e8;
    font-weight: 600;
    transition: 0.3s ease;
    padding: 14px 15px;
    border: 1px solid #aed9e8;

}
@media(max-width:736px){
    .contact-form .main{
        flex-direction: column;
    }
    .contact-form form{
        margin-top: 30px;
        margin-bottom: 10px;

    }
    .form-img{
        border-radius: 0;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        order: 2;
    }
    .content{
        order: 1;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }
}




/*services*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
.wrapper{
    font-family: 'poppins',sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fafafa;
}
.wrapper h1{
    font-size: 3em;

    margin: 25px;
}
.content-box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 1000px;
    margin-top: 30px;
}
.card{
    min-height: 220px;
    width: 320px;
    padding: 30px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
    margin: 10px 4px;
    box-shadow: 0px 15px 30px rgba(0,0,0,0.2);
}
.card i{
    margin: 20px;
    color: #581ed6;
}
.card h2{
    margin-bottom: 12px;
    font-weight: 400;
    text-align: center;
}
.card p{
    color: #6c757d;
    text-align: center;
}
.card:hover i,
.card:hover p{
    color: #fff;
}
.card:hover h2{
    font-weight: 600;
}
.card:nth-child(1):hover{
    background: linear-gradient(45deg,
                                   #F3CFE8 0% ,
                                   rgba(136, 113, 199, 0.7)100% ) ,
                                    url('bg.jpg');
                                    background-size: cover;
}
.card:nth-child(2):hover{
    background: linear-gradient(45deg,
    #F3CFE8 0% ,
                                   rgba(136, 113, 199, 0.7)100% ) ,
                                    url('bg2.jpg');
                                    background-size: cover;
}
.card:nth-child(3):hover{
    background: linear-gradient(45deg,
    #F3CFE8 0% ,
                                   rgba(136, 113, 199, 0.7)100% ) ,
                                    url('bg3.jpg');
                                    background-size: cover;
}
.card:nth-child(4):hover{
    background: linear-gradient(45deg,
    #F3CFE8 0% ,
                                   rgba(136, 113, 199, 0.7)100% ) ,
                                    url('bg4.jpg');
                                    background-size: cover;
}
.card:nth-child(5):hover{
    background: linear-gradient(45deg,
    #F3CFE8 0% ,
                                   rgba(136, 113, 199, 0.7)100% ) ,
                                    url('bg5.jpg');
                                    background-size: cover;
}
.card:nth-child(6):hover{
    background: linear-gradient(45deg,
    #F3CFE8 0% ,
                                   rgba(136, 113, 199, 0.7)100% ) ,
                                    url('bg2.jpg');
                                    background-size: cover;
}
@media(max-width:991px){
    .wrapper{
        padding: 25px;
    }
    .wrapper h1{
        font-size: 2.5em;
        font-weight: 600;
    }
    .content-box{
        flex-direction: column;
        width: 100%;
    }
    .card{
        min-width: 300px;
        margin: 10px auto;
    }
}
/*code for mobile devices*/

@media only screen and (max-width:850px){

    .menu-btn{
        display: block;
    }

    .navbar{
        padding: 0;

    }
    .logo {
        position: absolute;
        top: 30px;
        left: 30px;
        
    }
    .nav-links{
        flex-direction: column;
        width: 100%;
        height: 100vh;
        justify-content: center;
        background: rgb(172, 172, 235);
        margin-top: -900px;
        transition: all 0.5s ease;

    }
    .mobile-menu{
        margin-top: 0px;
        border-bottom-right-radius: 50% ;
     
    
    }

    .nav-links li{
        margin: 30px auto;
    
    }

    /*event sec responsive*/
.row{
    flex-direction: column;
}
.row .col{
    margin: 20px auto;
}
.col img{
    max-width: 90%;
}
/*About explore*/

.explore-content{
    width: 100%;
    font-size: 12px;
    text-align: justify;

}

/* .explore-content .line{
    margin-bottom: 5px;
} */

.tours .col{

    width: 100%;

}
.image-gallery{
    justify-content: center;
    align-items: center;

}

.image-gallery img {
    width: 90%;
}
.footer{
    pad: 10px;
}
}

/*Animations*/

img{
    transition: transform .3s ease;
}

img:hover{
    transform: scale(1.1);

}
.ctn:hover {
    background: rgb(0, 0, 0);
    color: red;
    box-shadow: 2px 2px 5px rgb(60, 58, 58);
}
li:hover{
    color: red;
}

