*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'open sams', sams-serif;
}
body{
 width: 100%;
 height: 100vh;
 min-height: 100vh; 
 background-color: #000;
 background-image: url('images/trip2.jpg');
 background-size: cover;
 background-position: center;
 background-attachment: fixed;
}
li{
 list-style: none;   
}

a{
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease-in-out;

  
}
a:hover{
    color: yellow;
    background-color: green;
}
/* HEADER*/
header{
  display: flex;
  margin-top: 0%;
  justify-content: space-between;
  align-items: center;
  background-color: #2c3e50;
  color: white;
  padding: 0px 100px;
  border-top: solid crimson 4px;
  position: fixed;
  z-index: 999;
  width: 100%; 
}
.navbar{
    display: flex;
    margin-top: 0%;
    width: 100%;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    backdrop-filter: blur 10px;
    z-index: 999;
    padding: 10px 15px;
    background-color: #2c3e50;
    color: white;
}
.logo{
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #3a6cf4
  text-transform: uppercase
  font-weight: 700;
  font-size: 1.8em;
  padding-right: 20px;
  
  }
.logo img{
  width: 30px;
  border-radius: 50%;
  margin-right: 10px;
  }
  .links img{
    border-radius: 50%;
  }
vbar .links{
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  list-style: none;
  max-width: 100%;
  }
.navbar .links li a{
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  margin-right: 10px;
  padding: 0.5rem 1rem;
  border-radius:  0 0.5rem 0 0.5rem   ;
  }
.navbar .links li a:hover{
  background-color: green;
  color: yellow;

ul li a:hover:after{
    width: 100%;
}
 
 
}
.navbar .logo{
    font-size: 1.5rem;
    font-weight: bold;
    padding-left: 0.5rem;
    border-radius: 50%;
} 

.navbar .links{
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  list-style: none;
  max-width: 100%;
  margin-right: 100px;
}
.navbar .toggle_btn{
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;  
}
.action_btn{
    background-color: orange;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2 ease;
}
.action_btn:hover{
   scale: 1.05;
   color: #fff;
}
.action_btn:active{
    scale: 0.95;
}
/*DROPDOWN MENU*/
.dropdown_menu{
   display: none; 
   position: absolute;
   right: 2rem;
   top: 60px;
   height: 0; 
   width: 300px;
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(15px);
   border-radius: 10px;
   overflow: hidden;
   transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.dropdown_menu.open{
    height: 520px;
    width: 100px;
   
   
}
.dropdown_menu li{
  padding: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
 
}
.dropdown_menu .action_btn{
   width: 100%;
   display: flex;
   justify-content: center; 
}

/*HERO*/
section #hero{
    height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 1px;   
}
#hero h1{
    font-size: 3rem;
    margin-bottom: 1rem;
    margin-top: 2px;
}



  .slider {
    height: 100vh;
    display: flex;
    align-items: center ;
    color: white;
    font-size: 25px;
    padding: 0px 40px 340px 100px;
    background-size: cover;
    
    background-attachment: fixed;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.1);
    background-position: center;
}
.slider span {
   color: red; 
}
.slider a {
 color: white;   
 text-decoration: none;
 background-color: #f2d620;
 padding: 10px;
 border-radius: 10px;
 display: inline-block;
 margin: 20px;
 font-size: 20px;
 transition: ease 1s;
 align-items: center
}
.slider a:hover {
    font-size: 25px;
    background-color: blue;
}


 
.main h2 {
  color: #fff;
  font-size: 1.4em;
  font-weight: 500;
 
}
.mian h1 {
   color: #c1110b;
   font-size: 2em;
   font-weight: 700;
   letter-spacing: 1px;
   margin-top: 10px;
   margin-bottom: 10px
}
.main-btn {
   color: #ece934;
   display: inline-block;
   background-color: #0a49f6;
   text-decoration: none;
   font-size: 1.1em;
   font-weight: 600; 
   padding: 0.9375em;
   letter-spacing: 1px
   border-radius: 15px
   margin-bottom: 40px;
   transition: 0.7s ease;
}

.main-btn:hover {
    background-color: hsl(243, 89%, 36%);
    transform: scale(1.1); 
}
.title {
   display: flex;
   justify-content: center;
   color: White;
   font-size: 3.2em;
   font-weight: 800;
   margin-bottom: 30px; 
}

.content {
   display: flex;
   justify-content: center;
   flex-direction: row;
   flex-wrap: wrap;
   color: white;
}

.card {
    display: flex;
    background-color:black;
    width: 27.25em;
    box-shadow: 0 5px 25px rgba(1 1 1 / 15%);
    display: inline-block;
    position: relative;
    border-radius: 0.25em;
    padding: 25px;
    margin: 15px;
    transition: 0.7s ease;
    border: var(--clr-card) 0.125em solid;
    justify-items: center;
    height: 350px;
 }
 .card img{
  transition: 1s;
  padding: 15px;
  width: 200px;
 }
 
 .card:hover {
     transform: scale(1.1); 
 }
 .card img:hover{
  filter: grayscale(100%);
  transform: scale(1.1);
 }
 
 .icon {
     color: hwb(47 40% 6%);
     font-size: 8em;
     text-align: center;
 }
 
 .info {
     text-align: center;
     text-indent:30px;  
 }
 

 .info h3 {
    
     color: yellow;
     font-size: 1.2em;
     font-weight: 700;
     margin: 10px;
 }
.Trips h2 {
    text-align: center;
    font-size: 25px;
    margin: 30px 0px;
     color: white;
}
.Trips .container {
    display: flex;
    flex-wrap: wrap;
    padding: 0px 80px;
    justify-content: center;
}
.Trips .card {
    margin: 0px 20px;
    padding: 10px;
    width: 20em;
    margin-bottom: 50px;
    text-align: center;
    margin-right: 20px;
    border-radius: 20px;
    border: solid;
    background-color:black;
    padding-bottom: 10px;
    overflow: hidden;
}
.card h3 {
    color: red;
    text-align: center;
}
.card p{
    font-size: 20px;
}
.Trips button {
    border-radius: 0px 10px;
    color: white;
    background-color: #1abc9c;
    padding: 0px 30px;
    border: none;
}

.main1{
    border: red;
   padding-top: 0%; 
   margin-top: 0px;  
}
Musa{
    position: fixed;
    top: 0px;}
    
    
@property --angle{
   syntax: "<angle>";
initial-value: 0deg;
inherits: false;
}
 .card::after, .card::before{
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: conic-gradient(from var(--angle), #ff4545, #00ff99, #006aff, #ff0095, #ff4545);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  padding: 3px;
  border-radius: 10px;
  animation: 3s spin limear infinite;
 }
 @keyframes spin{
  from{
    --angle: 0deg;
  }
  to{
    --angle: 360deg;

  }
 }
 .card::before{
  filter: blur(1.5rem);
  opacity: 0.5;
  
 }
 .card:hover {
     transform: scale(1.1); 
 }

 .icon {
     color: #3a6cf4;
     font-size: 8em;
     text-align: center;
 }
 
 .info {
     text-align: center;
 }
 
 .info h3 {
     color: #fff;
     font-size: 1.2em;
     font-weight: 700;
     margin: 10px;
 }

/* button */
.btn1 {
    margin: 100px;
    padding: 15px 40px;
    border: none;
    outline: none;
    color: #fff;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 12px;
    width: 150px;
    height: 60px;
  }
  .btn1::after {
    content: "";
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #333;
    left: 0;
    top: 0;
    border-radius: 10px;
  }
  
  /* glow */
  .btn1::before {
    content: "";
    background: linear-gradient(
      45deg,
      #FF0000, #FF7300, #FFFB00, #48FF00,
      #00FFD5, #002BFF, #FF00C8, #FF0000
    );
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 600%;
    z-index: -1;
    width: calc(100% + 4px);
    height:  calc(100% + 4px);
    filter: blur(8px);
    animation: glowing 20s linear infinite;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
    opacity: 0;
  }
  
  @keyframes glowing {
    0% {background-position: 0 0;}
    50% {background-position: 400% 0;}
    100% {background-position: 0 0;}
  }
  
  /* hover */
  .btn1:hover::before {
    opacity: 1;
  } 
  .btn1:active:after {
    background: transparent;
  }
  .btn1:active {
    color: #fff;
    font-weight: bold;
}
.main-btn1{
    color: white;
    font-size: 15px;
    text-decoration: none;
    font-style: normal;
}

.btn1:hover{
transform: scale(1.1); 
}
.social-icons a :hover {
  transform: scale(1.1); 
}
#card4{ 
  visibility: hidden; 
}
#card5{ 
  visibility: hidden; 
}
#card6{
    visibility: hidden;
}
#card7{
  visibility: hidden;
}
#card8{
  visibility: hidden;
}
#card9{
  visibility: hidden;
}

    /*This is footer codes*/
footer{
  width: 100%;
  height: auto;
  background: #2c3e50;
  margin-top: 50px;
  color: white;
  border-color: red;
  border-top: 5px solid red;
  display: flex;
 
  align-items:flex-end;
}
.container{
  width: 1140px;
  height: auto;
  margin: auto;
  border: 40px 0px ; 
}
.box{
  width: 33.3%;
  height: auto;
  float: left;
}
h1{
  font-size: 32px;
  font-weight: 500;
  padding: 8px 12px;
  
}
.about{
  padding: 0px 12px;
}

.copyright{
  text-align: center;
  padding: 30px 0px;
  clear: both;
  display: flex;
}

.c-link li{
    padding: 8px 12px;
    text-align: center;
    list-style: none;
    cursor: pointer;
    position:relative;
    margin-left: 60%;
}
.c-link li:hover{
  background: #2ecc71;
  color: black;
}
.contact{
    margin-left: 60%;
}

/*RESPOSIVE DESIGN*/
@media(max-width: 992px){
    .navbar .links,
    .navbar .action_btn{
       display: none;
    }
   .navbar .toggle_btn{
    display: block;
   }
   .dropdown_menu{
    display: block;
   } 
}
@media(max-width: 576px){
  .dropdown_menu{
    left: 2rem;
    width: unset;
  }
}
# info {
  font-size: 500px;
  color: #c1110b;
}
 



 