@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --orange: #ffa500;
    
}

*{
    font-family: 'Montserrat' sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    outline: none; border: none;
    text-decoration: none;
    transition: all .2s linear;
}

*::selection{
    background:orange;
    color: #fff;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 6rem;
    scroll-behavior: smooth;
}



section{
    padding: 2rem 9%;
}

.heading{
    text-align: center;
    padding: 2.5rem 0;
    padding:10rem;
}

.heading span{
    font-size: 3.5rem;
    /*background: rgba(233, 26, 37, 0.2);*/
    background: purple;
    color: var(--orange);
    border-radius: .5rem;
    padding: .2rem 1rem;
}

.heading span .space{
    background: none;
}
.btn {
    display: inline-block;
    margin-top:1rem;
    background: var(--orange);
    color:#fff;
    padding: .8rem 3rem;
    border: .2rem solid var(--orange);
    cursor: pointer;
    font-size: 1.7rem;
}
.btn:hover{
    background:rgb(255,165, 0, .2);
    color: #fff;
}


header {
    position: fixed;
    top:0 ;left: 0; right: 0;
    /*background: #333;*/
    background: purple;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 9%;
}

header .logo {
    font-size: 2.5rem;
    font-weight: bolder;
    color: #fff;
    text-transform: uppercase;
}

header .logo span {
    color: orange;
}

header .navbar a{
color: #fff;
font-size: 2rem;
margin: 0 .8rem;
}

header .navbar a:hover{
    color: orange;
}

header .icons i{
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    margin-right:  2rem;
}

header .icons i:hover {
    color:var(--orange);
}

header .search-bar-container{
    position: absolute;
    top:100%; left: 0; right: 0;
    padding:1.5rem 2rem;
    background: #333;
    border-top: .1rem solid rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    z-index: 1001;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

header .search-bar-container.active{
    clip-path:polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

header .search-bar-container #search-bar{
    width: 100%;
    padding: 1rem;
    text-transform: none;
    color: #333;
    font-size: 1.7rem;
    border-radius: .5rem;
}

header .search-bar-container label{
    color: #fff;
    cursor: pointer;
    font-size: 3rem;
    margin-left: 1.5rem;
}

header .search-bar-container label:hover{
    color: var(--orange);
}

/* login form style  */


.login-form-container{
   position: fixed;
   top: -120%; left: 0; 
   z-index: 10000;
   min-height: 100vh;
   width: 100%;
   background: rgba(0,0,0,.7);
   display: flex;
   align-items:center;
   justify-content: center;
}

.login-form-container.active{
    top: 0;
}

.login-form-container form .btn{
    display: block;
    width: 100%;
}

.login-form-container form{
    margin: 2rem;
    padding: 1.5rem 2rem;
    border-radius: .5rem;
    background:#fff;
    width: 50rem;
}

.login-form-container form h3{
    font-size: 3rem;
    color:#444;
    text-transform: uppercase;
    text-align: center;
    padding: 1rem 0;
}

.login-form-container form .box{
    width: 100%;
    padding: 1rem;
    font-size: 1.7rem;
    color: #333;
    margin: .6rem 0;
    border: .1rem solid rgba(0,0,0, .3);
    text-transform: none;

}

.login-form-container form .box:focus{
    border-color: var(--orange);

}

.login-form-container form #remember {
    margin: 2rem 0;
}

.login-form-container form label{
    font-size: 1.5rem;
}

.login-form-container form .btn{
    display: block;
    width:100%;
}

.login-form-container form p{
    padding: .5rem 0;
    font-size: 1.5rem;
    color:#444;
}

.login-form-container form p a{
    color:var(--orange);
}

.login-form-container form p a:hover{
    color: #333;
    text-decoration: underline;
}

.login-form-container #form-close{
    position: absolute;
    top:2rem; right:3rem;
    font-size: 5rem;
    color: #fff;
    cursor: pointer;
}

#menu-bar{
    color:#fff;
    border: .1rem solid #fff;
    border-radius: .5rem;
    font-size: 3rem;
    padding: .5rem 1.2rem;
    cursor: pointer;
    display: none;
}



/* menu nav and login section is finished from here */

/*   home section */

.packages .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding:0rem 2rem 0rem;
}

.packages .box-container .box{
    flex:1 1 30rem;
    border-radius: .5rem;
    overflow: hidden;
    box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
}

.packages .box-container .box img{
    height: 25rem;
    width: 100%;
    object-fit: cover;
}

.packages .box-container .box .content{
    padding: 2rem;
}

.packages .box-container .box .content h3{
    font-size: 2rem;
    color: #333;
    text-transform: uppercase;
    padding: 1rem;
    color: blue;
    
}

.packages .box-container .box .content p{
    font-size: 1.7rem;
    color: #666;
    padding: 1rem;
}




/*-------index.html  header section style----*/

/* Slideshow container */
.slideshow-container {
    max-width:100%;
    position: relative;
    margin: auto;
  }
  
  /* Caption text */
  .text {
    color:white;
    font-size: 20px;
    padding: 8px 12px;
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  /* On smaller screens, decrease text size */
  @media only screen and (max-width: 300px) {
    .text {font-size: 11px}
    }
  
    /*  header container and home section */


.header_container {
    padding-block: 5rem 0;
    display: grid;
    gap:2rem;
    overflow: hidden;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

.header_image img {
    width:100%;
    height:30rem;
    margin-inline: auto;
    margin-top: 2rem;
    cursor: pointer;
}

.header_content h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
}

.header_content h1 {
    margin-bottom: 1rem;
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 5rem;
    text-align: center;
    color:var(--orange);
    cursor: pointer;
}

.header_content h3 {
    margin-bottom: 1rem;
    font-display: 1.25rem;
    font-weight: 600;
    color:blue;
    text-align: center;
    font-size: 1.7rem;
    cursor: pointer;
}

.header_content p {
    margin-bottom: 2rem;
    color: #444;
    text-align: center;
    line-height: 1.75rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.header_btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
}

.header_btns .btn:nth-child(2) {
    color: var(--secondary-color);
    background-color: transparent;
}

/*-------index.html  header section style----*/

.home {
    background-image:url("myimagefolder/1200x630wa-2~3.png");
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.home h2 span {
    font-size:1.2rem;
    color: rgb(230, 104, 59);
}



.home p {
    width: 50%;
    color: #fff;
    font-size: 0.9rem;
    line-height: 25px;
    animation-name: slidein;
    animation-duration: 3s;

}

.home h2 {
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 1px;
}



.home .btn {
    margin-top: 30px;
}

.home a {
    text-decoration: none;
    font-size:  0.9rem;
    padding: 13px 35px;
    background-color:  #fff;
    font-weight: 600;
    border-radius: 50px;
}

.home a.blue {
    color: #fff;
    background: rgba(21, 21, 100);
    transition: 0.3s ease;
}

.home a.blue:hover{
    color: rgba(21, 21, 100);;
    background: #fff;
}

.home a.yellow {
    color: #fff;
    background: #fdc938;
    transition: 0.3s ease;
}

.home a.yellow:hover {
    color: #FDC938;
    background: #fFF;
}

/*  style for about.html section   */

.service_grid {
    margin-top: 4rem;
    display: grid;
    gap: 4rem 1rem;
    grid-template-columns: repeat(2. 1fr);
    align-items: center;
}

.service_card {
    background: var(--orange);
    color:#fff;
    padding-block: 0 1.5rem;
    padding-inline: 1.5rem;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top-right-radius: 3rem;
    transition: 0.3s;

}

.service_card:hover {
    background-color: #fff;
    color:var(--orange);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.service_card span {
    display: inline-block;
    padding: 6px 14px;
    font-size: 2rem;
    color: var(--white);
    background-color: var(--o);
    transform: translateY(-50%);
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.service_card span i{
    background-color: var(--orange);
}

.service_card span i:hover{
    color: #fff;
}

.service_card:hover span {
    color: var(--orange);
    background-color: var(--white);
}

.service_card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: 0.3s;
}

.service_card p {
    color: var(--text-light);
    line-height: 1.75rem;
    transition: 0.3s;
    font-size: 1.7rem;
}

/*  about.html section style    */
.service_grid {
    margin-top: 4rem;
    display: grid;
    gap: 4rem 1rem;
}






/*   photo gallery section style   */

.gallery .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.gallery .box-container .box{
    overflow: hidden;
    box-shadow: 0 1rem 2rem rgba(0,0,0, .1);
    border: 1rem solid #fff;
    border-radius: .5rem;
    flex: 1 1 30rem;
    height: 25rem;
    position: relative;
}

.gallery .box-container .box img{
    height:100%;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-left: 6px solid orange;
    border-bottom: 2px solid orange;
    cursor: pointer;
}

.gallery .box-container .box .content{
    position: absolute;
    top:-100%; left:0;
    height: 100%;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    padding-top: 5rem;
}

.gallery .box-container .box:hover .content{
    top: 0;
}

.gallery .box-container .box .content h3{
    font-size: 2.5rem;
    color: var(--orange);
}

.gallery .box-container .box .content p{
    font-size: 1.5rem;
    color: #eee;
    padding: .5rem 0;
}

/*   contact section style  */

.contact .row{
    display: flex;
    flex-wrap: wrap;
    gap:1.5rem;
    align-items: center;
}

.contact .row .image{
    flex:1 1 35rem;
}

.contact .row .image img{
    width: 100%;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-left: 6px solid orange;
    border-bottom: 2px solid orange;
    cursor: pointer;
}

.contact .row form{
    flex:1 1 50rem;
    padding: 2rem;
    box-shadow:  0 1rem 2rem rgba(0,0,0,.1);
    border-radius:  .5rem;
}

.contact .row form .inputBox{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact .row form .inputBox input, .contact .row form textarea{
    width: 49%;
    margin: 1rem 0;
    padding: 1rem;
    font-size: 1.7rem;
    color: #333;
    background: #f7f7f7;
    text-transform: none;
}

.contact .row form textarea{
    height: 15rem;
    resize: none;
    width: 100%;
}

/*  section  style for about.html   */

.home-about{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
padding: 5rem;
    
}

.home-about .image{
    flex:1 1 41rem;
}

.home-about .image img{
    width:100%;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-left: 6px solid orange;
    border-bottom: 6px solid orange;
    cursor: pointer;
    

}

.home-about .content{
    flex:1 1 41rem;
    padding: 3rem;
    background:lightblue;
    padding: 5rem;
}

.home-about .content h3{
    font-size: 3rem;
    color:(--black);
}

.home-packages {
    background: var(--light-big);
}

.home-about .content p{
    font-size: 1.5rem;
    padding: 1rem 0;
    line-height: 2;
    color:(--black);
}

.home-packages .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
}

.home-packages .box-container .box{
    border:0.1rem solid #444;
    box-shadow: var(--box-shadow);
    background: var(--white);
}

.home-packages .box-container .box .image{
    height: 25rem;
    overflow: hidden;
}

.home-packages .box-container .box .image img{
    height: 100%;
    width:100%;
    object-fit: cover;
    cursor: pointer;
    transition:  .2s linear;
}

.home-packages .box-container .box .content{
 padding: 2rem;
 text-align: center;
}

.home-packages .box-container .box .content h3{
    font-size: 2.5rem;
    color: var(--black);
}

.home-packages .box-container .box .content p{
    font-size:1.5rem;
    color:#444;
    line-height: 2;
    padding:1rem 0;
}

.home-packages .load-more{
    text-align: center;
    margin-top: 2rem;
}

/*  style for mail container   */


/*   videos-container style for index.php page    */

  .container {
     height: 100%;
     width: 100%; 
  }

/*   social share link style   */


.social-share {
  display: flex;
  justify-content:center;
  align-items: center;
  gap: 10px;
}
.social-share a {
  display: center;
  padding: 8px 12px;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid white;
  transition: 500ms;
}

.social-share a:hover{
    transform: scale(2.2);
    color: orange;
}
.social-share .facebook { background: #3b5998; }
.social-share .twitter { background: #1da1f2; }
.social-share .linkedin { background: #0077b5; }


/*  subscribe  style start from here.  */


.subscribe-box .box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.subscribe-box form{
   box-shadow:  0 1rem 2rem rgba(0,0,0,.1);
   padding: 20px 30px 20px 20px;
   width: 100%;
   height: 100%;
   
}

.subscribe-box form h1 {
   font-size: 2.7rem;
   color:orange;
   display: center;
   margin: 10px;
   cursor: pointer;
   border-bottom: 1px solid white;
}

.subscribe-box p {
   font-size: 1.5rem;
   color: orange;
   margin: 10px;
   cursor: pointer;
}

.subscribe-box form input {
   background: #f7f7f7;
   height: 45px;
   width: 80%;
   margin: 10px;
   border: 1px solid orange;
   padding: 10px;

}

.subscribe-box form input:hover{
    border: 1px solid green;
}

.subscribe-box form button {
    height: 40px;
    width: 100px;
    padding: 10px;
    margin: 20px;
    background-color: orange;
    color: white;
    transition: 500ms;
    
}

.subscribe-box form button:hover{
    transform: scale(1.2);
    color: green;
}





/* footer section start from here   */


.footer {
    /*background: url(../myimagefolder/coventryimg.jpg);*/
    background-color: purple;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.footer .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
}

.footer .box-container .box h3 {
    color: white;
    font-size: 2.5rem;
    padding-bottom: 2rem;
}


.footer .box-container .box a{
    color:white;
    font-size: 1.5rem;
    padding-bottom: 1rem;
    display: block;
    transition: 5ms;
    
}

.footer .box-container .box a i{
    color: white;
    padding-right: .5rem;
    transition: .2s linear;
}

.footer .box-container .box a:hover{
    transform:  scale(1.1);
}

.footer .credit{
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: .1rem solid white;
    font-size: 2rem;
    color: white;
}
.footer .credit span{
    color: orange;
    font-size: 2.2rem;
    cursor: pointer;
}





 /*   media query  */

@media (max-width:1200px){
    html{
        font-size: 55%;
    }
}

@media (max-width:991px) {
    header {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    #menu-bar {
       display: initial;
    }

    header .navbar{
        position: absolute;
        top:100%; right:0; left:0;
        /*background: #333;*/
        background: purple;
        border-top: .1rem solid yahoo purple;
        padding: 1rem 2rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
     header .navbar.active{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
     }
 
    

    header .navbar a{
        display: block;
        border-radius: .5rem;
        padding: 1.5rem;
        margin: 1.5rem;
        background:indigo;
    }

    .header_container{
        padding-block: 0;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }

    .header_content:is(h2, h1, h3, p){ 
    
    text-align: left;

    }
    .header_btns{
        justify-content: flex-start;
    }
}

@media (max-width:450px){
    html{
        font-size: 50%;
    }
    .heading span{
        font-size: 2.4rem;
    }

    .service_grid{
        grid-template-columns:repeat(1, 1fr);
    }

    .intro_container{
        grid-template-columns:repeat(2, 1fr);
    }

    .contact .row form .inputBox input{
        width: 100%;
    }

    .header_image img{
        height: 100%;
        width: 100%;
    }
    .videos-container {
        height:100%;
        width: 100%;
    }
}


/*     style css for home section     */



