
  @import url('https://fonts.googleapis.com/css2?family=Sulphur+Point&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --logo: url("../img/logo.png");
    --main-color: #fff;
    --main-secondary: #000;
    --text-main-color: #000;
    --text-secondary-color: #fff;
    --gradient-text: linear-gradient(89.97deg, #873c0b, #ff6600);

}
.gradient__text{
    background: var(--gradient-text);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
::-webkit-scrollbar{
    width: 10px;
    background: transparent;
}
::-webkit-scrollbar-thumb{
    background: linear-gradient(transparent, #873c0b);
    border-radius: 10px;
}
html{
    scroll-behavior: smooth;
}
body{
    background: #010615;
    font-family: 'Sulphur Point', sans-serif;
}
/* navbar */
.navbar .navbar-toggler{
    color: #fff;
    border: 2px solid #7f7f7f;
    border-radius: none;
    outline: none;
}
.navbar .navbar-toggler:focus{
    box-shadow: none;
}
@media all and (min-width: 992px) {
	.navbar .nav-item .dropdown-menu{ display: none; }

	.navbar .nav-item:hover .dropdown-menu{ display: block; }
	.navbar .nav-item .dropdown-menu{ margin-top:0; }
}
/* end navbar */
/* banner */
#banner{
    position: relative;
    background: url("../img/PHOTO-2023-08-14-04-57-57\ 16.jpg");
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    padding: 250px 0 200px;
}
#banner h2{
    margin: 0;
    padding: 0;
    font-size: 2.8em;
    font-weight: 900;
    color: #fff;
    text-transform: capitalize;
}
#banner p{
    margin: 1em 0 0;
    padding: 0;
    font-size: 1.2em;
    line-height: 1.5em;
    font-weight: 900;
    color: #fff;
}
/* end banner */
/* About Us */
#aboutUs .heading{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 20px auto;
}

#aboutUs .heading h1{
    font-size: 50px;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
}
#aboutUs .heading h1::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: #873c0b;
}
#aboutUs .heading p{
    font-size: 18px;
    color: #dfdfdf;
    margin-bottom: 35px;
}

#aboutUs .about{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
#aboutUs .about .about-image{
    flex: 1;
    margin-right: 40px;
    overflow: hidden;
    max-width: 350px;
}
#aboutUs .about .about-image img{
    width: 100%;
    height: auto;
    display: block;
    transition: 0.5s ease;
}
#aboutUs .about .about-content{
    flex: 1;
}
#aboutUs .about .about-content h2{
    font-size: 23px;
    margin-bottom: 15px;
    color: #fff;
}

#aboutUs .about .about-content p{
    font-size: 18px;
    line-height: 1.5;
    color: #dfdfdf;   
}
#aboutUs .about .about-content .read-more{
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6600;
    color: #fff;
    font-size: 19px;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 15px;
    transition: 0.3s ease;
}
#aboutUs .about .about-content .read-more:hover{
    background-color: #002366;
}
@media screen and (max-width: 768px){
    #aboutUs .heading{
        padding: 0px 20px;
    }
    #aboutUs .heading h1{
        font-size: 36px;
    }
    #aboutUs .heading p{
        font-size: 17px;
        margin-bottom: 0px;
    }
    #aboutUs .about{
        padding: 20px;
        flex-direction: column;
    }
    #aboutUs .about .about-image{
        margin-right: 0px;
        margin-bottom: 20px;
    }
    #aboutUs .about .about-content p{
        padding: 0px;
        font-size: 16px;
    }
    #aboutUs .about .about-content .read-more{
        font-size: 16px;
    }

}


/* End About Us */

  /* CTA (Call to Action) section */
  #parallax{
    color: #fff;
    margin: 0;
    padding: 0;
    perspective: 1px;
    transform-style: preserve-3d;
    overflow-x: hidden;
    font-family: var(--title-font);
    text-align: center;
  }
  #parallax .cta{
    box-sizing: border-box;
    padding: 140px 40px 140px;
    position: relative;
    transform-style: inherit;
    width: 100vw;
    background: url('../img/PHOTO-2023-08-14-04-57-57\ 8.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    
  }

  .bookBtn{
    background: var(--secondary-color);
    color: var(--primary-color);
    transition: .3s ease;
  }
  
  .bookBtn:hover{
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    background: var(--primary-color);
  }
  .btn-danger:hover{
    border: 1px solid #ff0000;
    color: #ff0000;
    background: var(--primary-color);
  }
  
  
  #parallax .btn{
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
  }
  #parallax .btn:hover{
    color: var(--secondary-color);
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    box-shadow: none;
  }
  /* end CTA */



/*projects  */
#projects{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /*min-height: 100vh;*/
    background: #010615;
}
#projects .heading{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 20px auto;
}

#projects .heading h1{
    font-size: 50px;
    color: #fff;
    /* margin-bottom: 25px; */
    position: relative;
}
#projects .heading h1::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: #873c0b;
}
.box-holder{
    display: flex;
    flex-wrap: wrap;
    z-index: 0;
    justify-content: center;
    align-items: center;
}
.box{
    position: relative;
    padding: 10px;
    max-width: 300px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px;
}
.box::before{
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    /* transform: skew(2deg, 2deg); */
    background: #fff;
    z-index: -1;
}
.box::after{
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: #fff;
    z-index: -1;
    filter: blur(20px);
}

.box:nth-child(1),
.box:nth-child(1){
    background: linear-gradient(#060c217f, #060c217f), url("../img/indoAfro2.jpeg"); 
    background-size: cover;
}
.box:nth-child(2),
.box:nth-child(2){
    background: linear-gradient(#060c217f, #060c217f), url("../img/DSC_0321.JPG"); 
    background-size: cover;
}
.box:nth-child(3),
.box:nth-child(3){
    background: linear-gradient(#060c217f, #060c217f), url("../img/sydney2.jpeg"); 
    background-size: cover;
}
.box:nth-child(4),
.box:nth-child(4){
    background: linear-gradient(#060c217f, #060c217f), url("../img/PHOTO-2023-08-13-17-52-43.jpg"); 
    background-size: cover;
}
.box:nth-child(1)::before,
.box:nth-child(1)::after{
    background: linear-gradient(-235deg, #89ff00, #010615, #00bcd4);
}
.box:nth-child(2)::before,
.box:nth-child(2)::after{
    background: linear-gradient(-235deg, #ff0000, #010615, #d4ff00);
}
.box:nth-child(3)::before,
.box:nth-child(3)::after{
    background: linear-gradient(-235deg, #ffffff, #010615, #ff0033);
}
.box:nth-child(4)::before,
.box:nth-child(4)::after{
    background: linear-gradient(-235deg, #0b00d4, #010615, #ff6600);
}

.box .glass{
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    display: block;
    background: rgba(255, 255, 255, .1);
    pointer-events: none;
}

.box .content{
    padding: 20px;
    color: #fff;
}

/* end projects */

/* aboutthehead */
#aboutme{
    background: #03032e;
    display: flex;
    justify-content: center;
    align-items: center;
}
#aboutme h1{
    color: #fff;
    margin-bottom: 25px;
    position: relative;
}
#aboutme h1::after{
    content: "";
    position: absolute;
    width: 120px;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: #ff6600;
}
#aboutme p{
    color: #fff;
}
#aboutme .img-box{
    max-height: 500px;
    max-width: 400px;
}
#aboutme .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* end aboutthehead */

/* contact us */
#contact{
    background: linear-gradient(90deg, #0e3959 0%, #0e3959 30%, #002366 30%, #002366 100%);
}
.contactUs{
    position: relative;
    width: 100%;
    padding: 40px 100px;
}
.contactUs .title{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
}
.contactUs .title h2{
    color: #fff;
    font-weight: 500;
}
.form{
    grid-area: form;
}
.info{
    grid-area: info;
}
.map{
    grid-area: map;
}
.contact{
    padding: 40px;
    background: #fff;
    box-shadow: 0 5px 35px rgba(0, 0, 0, 0.15);
}
.contactBox{
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 5fr 4fr;
    grid-template-areas: 
    "form info"
    "form map";
    grid-gap: 20px;
    margin-top: 20px;
}
.contact h3{
    color: #002366;
    font-weight: 500;
    font-size: 1.4em;
    margin-bottom: 10px;
}
/* form box */
.formBox{
    position: relative;
    width: 100%;
}
.formBox .row50{
    display: flex;
    gap: 20px;
}
.inputBox{
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    width: 50%;
}
.formBox .row100 .inputBox{
    width: 100%;
}
.inputBox span{
    color: #873c0b;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 500;
}
.inputBox input{
    padding: 10px;
    font-size: 1.1em;
    outline: none;
    border: 1px solid #002366;
}
.inputBox textarea{
    padding: 10px;
    font-size: 1.1em;
    outline: none;
    border: 1px solid #002366;
    resize: none;
    min-height: 220px;
    margin-bottom: 10px;
}
.inputBox button{
    background: #873c0b;
    color: #fff;
    border: none;
    font-size: 1.1em;
    max-width: 120px;
    font-weight: 500;
    cursor: pointer;
    padding: 14px 15px;
}
.inputBox::placeholder{
    color: #999;
}
/* end form box */

/* info box */
.info{
    background: #0e3959;
}
.info h3{
    color: #fff;
}
.info .infoBox div{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.info .infoBox div span{
    min-width: 40px;
    height: 40px;
    color: #fff;
    background: #00bcd4;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    border-radius: 50%;
    margin-right: 15px;
}
.info .infoBox div p{
    color: #fff;
    font-size: 1.1em;
}
.info .infoBox div a{
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
}
.sci{
    margin-top: 40px;
    display: flex;
}
.sci li{
    list-style: none;
    margin-right: 15px;
}
.sci li a{
    color: #ccc;
    font-size: 2em;
}
.sci li a:hover{
    color: #fff;
}
/* end info */

/* map */
.map{
    padding: 0;
}
.map iframe{
    width: 100%;
    height: 100%;
}
/* end map */

/* responsiveness */
@media (max-width: 991px){
    #contact{
        background: #002366;
    }
    .contactUs{
        padding: 20px;
    }
    .contactBox{
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas: 
        "form"
        "info"
        "map";
    }
    .contact{
        padding: 20px;
    }
    .map{
        padding: 0;
        min-height: 300px;
    }
    .formBox .row50{
        display: flex;
        gap: 0;
        flex-direction: column;
    }
    .inputBox{
        width: 100%;
    }
}
/* end contact us */

/* modal images */
#indoAfrican{
    background-color: #ad5e21;
    color: #fff;
}
#recycle{
    background-color: #f5f5dc;
}
#insideOut{
    background-color: #03032e;
    color: #fff;
}
#sydneyOpera{
    background-color: #deb887;
}
.modal-content p{
    font-size: 20px;
}
.modal-content .btn-close{
    /* color: #ff0000 !important; */
    background-color: #ff0000;
}
.gallery .img-box{
    max-height: 480px;
}
.gallery .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.gallery img{
    max-width: 100%;
    background: #fff;
    padding: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}