@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root{
    --main-color: #BFD0FF;
    --black: #222;
    --dark-blue: #000235;
    --white: #fff;
    --light-black: #777;
    --light-white: #fff9;
    --dark-bg: rgba(0,0,0,.7);
    --light-bg: #eee;
    --border: .1rem solid var(--light-white);
    --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
    --text-shadow:0 1.5rem 1rem rgba(0, 0, 0, 0.3);
}


*{
    font-family: "Outfit", sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    outline: none; border: none;
    text-decoration: none;
}


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

html::-webkit-scrollbar{
    width: 1rem;
}


html::-webkit-scrollbar-thumb{
    background-color: #4a4a4a;
}

html::-webkit-scrollbar-thumb:hover{
    background-color:#676666;
}
    
body {
    background-image: url('../images/bg-logo.png');
    background-repeat: repeat-y;
    background-position: center; 
    position: relative;
    background-size: auto 199%; 
    background-attachment: fixed;
}

    

section{
    padding: 5rem 10%;
}

@keyframes fadeIn {
    0%{
        transform: scale(0);
        opacity: 0;
    }
}


.btn{
    display: inline-block;
    background: var(--black);
    margin-top: 1rem;
    color: var(--white);
    font-size: 1.7rem;
    padding: 1rem 3rem;
    cursor: pointer;
}


.btn:hover{
    background: var(--dark-blue);
}


.heading-title{
    text-align: center;
    font-size: 5rem;
    margin-bottom: 5rem;
    text-transform: uppercase;
    color: var(--black);
}


.header{
    position: sticky;
    top: 0%; left: 0; right: 0;
    z-index: 1000;
    background-color: var(--dark-blue);
    display: flex;
    padding-top: 2rem;
    padding-bottom: 2rem;
    box-shadow: var(--box-shadow);
    align-items: center;
    justify-content: space-between;
}

.header .logo{
    font-size: 2.5rem;
    color: var(--white);
}

.header .navbar a{
    font-size: 2rem;
    margin-left: 2rem;
    color:var(--white);
}

.header .navbar a:hover{
    color: var(--main-color);
}

.header .menu-btn 
{ 
	background-color: var(--main-color); 
	padding: 1rem;
    color: #000;
}

.header .menu-btn:hover 
{
    background-color: var(--black);
}

.fa-bars{
    color: var(--white);
}

#menu-btn{
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--white);
    display: none;
}

.home{
    padding: 0;
}

.home  .slide{
    text-align: center;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
    background-position: center !important;
    min-height: 60rem;
}

.swiper-pagination-bullet {
    background-color: var(--white); 
    border: 3px solid var(--white); 
}

.swiper-pagination-bullet-active {
    background-color: var(--white); 
}


.home  .slide .content{
    width: 85rem;
    display: none;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.video-container .video-frame{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.home .swiper-slide-active .content{
    display: inline-block;
}


.home  .slide .content span{
    display: block;
    font-size: 2.2rem;
    color: var(--white);
    padding-bottom: 1rem;
    text-shadow: var(--text-shadow);
    text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
}


.home  .slide .content h3{
    font-size: 7rem;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
    text-shadow: var(--text-shadow);
    padding: 1rem 0;
    text-shadow: 2px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
}



.home  .slide .content .btn{
    animation:fadeIn .4s  linear backwards .4s;
}

.home .swiper-button-next,
.home .swiper-button-prev{
    top:inherit;
    left: inherit;
    bottom: 0;
    right: 0;
    height: 7rem;
    width: 7rem;
    background: var(--white);
    color: var(--black);
}


.home .swiper-button-next:hover,
.home .swiper-button-prev:hover{
    background: var(--dark-blue);
    color: var(--white);
}


.home .swiper-button-next:after,
.home .swiper-button-prev:after{
    font-size: 2rem;
}

.home .swiper-button-prev{
    right: 7rem;
}

.home-about{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    animation-name: slideInLeft;
    animation-duration: 1s;
    animation-timing-function: ease-in;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: none;
}


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

.home-about .image img{
    width: 100%;
}


.home-about .content{
    background: var(--dark-blue);
    flex: 1 1 41rem;
    padding: 3rem;
}

.home-about .content h3{
    font-size: 3rem;
    color: var(--white);
    margin-top: 30px;
}

.home-about .content h1{
    font-size: 3rem;
    color: var(--white);
    text-align: center;
}

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

.home-about .content .schedule{
    font-size: 1.2rem;
    padding: 1rem 0;
    padding-left: 1.5rem;
    line-height: 3;
    color: var(--white);
}



.services{
    padding-bottom: 12rem;
}

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


.services .box-container .box{
    padding: 3rem 2rem;
    text-align: center;
    background: var(--dark-blue);
}   


.services .box-container .box:hover{
    background: var(--main-color);
    cursor: pointer;
    transform: translateY(-7px);
    transition: transform 0.3s ease 0s;
}


.services .box-container .box img{
    height: 7rem;
}


.services .box-container .box h3{
    color:var(--white);
    font-size: 1.7rem;
    padding-top: 1rem;
}


.services .box-container .box img{
    height: 7rem;
}



.our-team{
    display: flex;
    min-height: 20vh;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    position: relative;
}

.our-team .our-team-logo {
    width: 150px; 
    height: auto; 
    position: absolute;
    margin-top: 10px;
    top: 0; 
}

.our-team .team-container h1 {
    margin-top: 25px;
}

.our-team::before{
    content: '';
    position: absolute;
    width: 100%;
    background: var(--dark-blue);
    clip-path: inset(47% 0 0 0);
    z-index: -1;
    height: 100%;
}


::selection{
    background: var(--dark-blue);
    color: var(--main-color);
  }

.team-container{
    max-width: 1500px;
    width: 300%;
    overflow: hidden;
    padding: 80px 0;
}

.team-container .main-card{
    display: flex;
    justify-content: space-evenly;
    width: 200%;
    transition: 1s;
}

#two:checked ~ .main-card{
    margin-left: -100%;

}

.team-container .main-card .cards{
    width: calc(100% / 2 - 10px);
    display: flex;
    flex-wrap: wrap;
    margin: 0 20px;
    justify-content: space-between;
}


.main-card .cards .card{
    width: calc(100% / 3 - 10px);
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
}

.main-card .cards .card:hover{
    transform: translateY(-15px);
}

.cards .card .content{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
  
.cards .card .content .img{
    height: 130px;
    width: 130px;
    border-radius: 50%;
    padding: 3px;
    background: var(--dark-blue);
    margin-bottom: 14px;
}

.card .content .img img{
    height: 100%;
    width: 100%;
    border: 3px solid #ffff;
    border-radius: 50%;
    object-fit: cover;
}
  
.card .content .name{
    font-size: 20px;
    font-weight: 500;
}
  
.card .content .job{
    font-size: 20px;
    color: var(--black);
}
  
.team-container .button{
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px;
}

.button label{
    height: 15px;
    width: 15px;
    border-radius: 20px;
    background: var(--dark-blue);
    margin: 0 4px;
    cursor: pointer;
    transition: all 0.5s ease;
}
  
.button label.active{
    width: 35px;
  }

#one:checked ~ .button .one{
    width: 35px;
  }

#one:checked ~ .button .two{
    width: 15px;
}

#two:checked ~ .button .one{
    width: 15px;
}
  
#two:checked ~ .button .two{
    width: 35px;
}
  
input[type="radio"]{
    display: none;
}
 

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

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

.home-packages .box:hover{
    transform: translateY(-10px);
}

.home-packages .box-container .box{
    border: var(--border);
    box-shadow: var(--box-shadow);
    background: var(--white);
    cursor: pointer;
    display: none;
    transition: transform 0.5s ease;
}

.home-packages .box-container .box:nth-child(-n+4) {
    display: inline-block; 
  }

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

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

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

.home-packages .box-container .box .content h3{
    font-size:  2.5em;
}

.home-packages .box-container .box .content p{
    font-size:  1.5em;
    color: var(--light-black);
    line-height: 2;
    padding:1rem 0 ;
}


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

.home-packages .load-more .btn:hover{
    transform: translateY(-7px);
    transition: transform 0.3s ease 0s;
}



 /* COMPANY-BLOG.PHP CODES */
 .events-article {
    background: #f9f9f9;
    padding: 2em 0;
    font-size: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
    justify-items: center;
    align-items: center; 
}

.section-header {
    font-size: 2em;
    color: #333;
    text-align: center;
    margin-bottom: 1em;
}

.section-header p{
    text-align: center;
}


.event-container {
    max-width: 1600px;
    width: 100%;
    overflow: hidden;
    padding: 80px 0;
}

.grid-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
}

.event-item {
    width: 270px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.event-item:hover {
    transform: translateY(-10px);
}

.card-banner {
    width: 100%;
    overflow: hidden;
}

.card-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.card-content {
    padding: 1em;
    text-align: left;
}

.card-badge {
    display: block;
    font-size: 0.8em;
    color: #666;
    margin-bottom: 0.5em;
}

.card-title {
    font-size: 1.2em;
    margin: 0.5em 0;
}

.small-title {
    font-size: 1em;
}

.card-text {
    font-size: 0.9em;
    color: #333;
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    background-color: white;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    z-index: 1000;
    overflow: hidden;
    max-height: 150%;
}

.popup img {
    width: 100%;
    max-height: 58rem;
    height: auto;
}

.popup-content {
    padding: 20px;
}

.popup-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.popup-text {
    color: #555;
    font-size: 1.5rem;
    text-align: justify;
    padding: 1rem;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
}

.about_section {
    margin: 10px;
}

.about_section h2,
.about_section h3 {
    font-size: 36px;
    line-height: 46px;
    color: var(--black);
    text-align: center;
}

.about_section h3 {
    font-size: 50px;
    margin-bottom: 10px;
}

.about_section p
{
    font-size: 20px;
    line-height: 46px;
    margin-bottom: 10px;
    text-align: justify;

}

.about_section .logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px; 
}

.about_section .about_content {
    text-align: center; 
}

.about_section .logo {
    display: block;
    margin: 0 auto 20px; 
}


.about_section .row {
    display: flex;
    align-items: center; 
}

.about_section .about_content {
    text-align: left; 
    padding-right: 50px; 
}

.about_section .about_img {
    text-align: right;
}

.about_section .about_img img {
    width: 50%;
    border-radius: 5px;
    box-shadow: 0 16px 28px 0 rgba(0, 0, 0, .2);
    margin-bottom: 20px;
}

.about_section .about_img img 
{
    width: 55%;
    border-radius: 5px;
    box-shadow: 0 16px 28px 0 rgba(0,0,0,.2);
}
.about_section .about_img_3 
{
    margin: -150px 200px -500px 550px;
}
.about_section .about_img_2 
{
    margin: -150px  0 270px;
}

.about_section .about_img_1
{
    margin: -10px 180px 200px 150px;
}


.contact_btn {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    font-size: 1.7rem;
    padding: 1rem 3rem;
    cursor: pointer;
    margin-top: 1rem;
}

.about_content .contact_btn {
    display: flex;
    justify-content: center;
}

.swal2-popup {
    font-family: 'Outfit', sans-serif !important;
}
.swal2-title {
    font-size: 25px !important;
    font-weight: 600 !important;
}
.swal2-html-container {
    font-size: 18px !important;
}




.footer{
    background: url(../images/footer-background.jpg);
    background-size: cover;
    background-position: center;
}


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


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

.footer .box-container .box a{
    color:var(--white);
    font-size: 1.5rem;
    padding-bottom: 1.5rem;
    display: block;
}


.footer .box-container .box a i{
    color: var(--main-color);
    padding-right: .5rem;
    transition: all .5s;
}


.footer .box-container .box a:hover i{
    padding-right: 2rem;
}

.footer .credit{
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: .1rem solid var(--light-white);
    font-size: 2rem;
    color: var(--white);
}



/* MEDIA QUERIES RESPONSIVE */
@media (max-width: 1200px) {
    section {
        padding: 3rem 5%;
    }

    .popup {
        width: 80%;
    }

    .events-article {
        font-size: 3rem;
        display: flex;
        justify-content: center;
        align-items: center; 
    }

    .our-team .our-team-logo {
        width: 80px; 
        margin-top: 5px; 
    }

    .our-team .heading-title {
        margin-top: 50px;
    }

    .about_section p {
        font-size: 1.5rem;
    }

    .about_section .row {
        flex-direction: column-reverse;
    }

    .about_section .about_content {
        padding-right: 0; 
        margin-bottom: 20px; 
    }

    .about_section .about_img {
        text-align: center;
    }

    .about_section .about_img img {
        width: 100%;
        max-width: 400px;
        border-radius: 5px;
        box-shadow: 0 16px 28px 0 rgba(0, 0, 0, .2);
        margin-bottom: 20px;
    }

    .about_section .about_img_3,
    .about_section .about_img_2,
    .about_section .about_img_1 {
        margin: 0 auto;
        max-width: 400px;
    }
}

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

    section {
        padding: 3rem 2rem;
    }

    .home .slide .content h3 {
        font-size: 2.5rem;
    }

    .custom-swal-content {
        font-size: 2rem; 
    }

    .about_section h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    #menu-btn {
        display: inline-block;
        transition: .2s linear;
    }

    .contact-section {
        max-height: 714%;
    }

    .popup {
        width: 90%;
        max-width: 100%;
        top: 10%;
        transform: translate(-50%, 0);
    }


    #menu-btn.fa-times {
        transform: rotate(360deg);
    }

    .header .navbar {
        position: absolute;
        top: 99%;
        left: 0;
        right: 0;
        background-color: var(--dark-blue);
        border-top: var(--border);
        padding: 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;
        margin: 1rem 0; 
        text-align: center;
    }

    .main-card .cards .card {
        width: calc(50% - 10px); 
    }
}

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

    .popup {
        width: 100%;
        max-width: 100%; 
        top: 15%;
    }

    .contact-container {
        width: 450px; 
        height: 856px;
        display: grid;
        grid-template-columns: 1fr;
        justify-content: center;
        align-items: center;
        padding: 20px; 
        margin: 0 auto;
        align-items: left;
    }
    
    .events-article .section-header {
        font-size: 3.5rem;
    }


    .heading-title {
        font-size: 3rem;
    }

    .events-article {
        padding: 2rem 0;
    }

    .about_section .about_img img {
        width: 50%; 
    }
}


@media (max-width: 344px) {
    .home .slide .content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .main-card .cards .card {
        width: 100%;
    }
}

  @keyframes slideInLeft {
    from{
        transform: translateX(-300px);
    }
    to{
        transform: translateX(0);
    }
  }


.contact-section {
    padding: 100px; 
    font-size: 1rem;
    display: grid;
    place-content: center;
}


.contact-info h2
{
	font-size: 4rem;
	color: #303133;
	margin: 0 0 8px;
	font-weight: 400;
	line-height: 48px;
	letter-spacing: -0.04em;
}

.contact-info p
{
	font-size: 2rem;
    margin-bottom: 10px;
}

.contact-info h4 
{
    font-size: 1.5rem;
    line-height: 28px;
}

.contact-form 
{
    background-color: #fff;
    padding: 50px 40px;
    -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    border-radius: 3px;
}

.form-control
{
    background-color: #fff;
    border-radius: 5px;
    padding: 25px 10px;
    box-shadow: none;
    border: 2px solid #eee;
}

.form-control:focus 
{
    border-color: var(--dark-blue);
    box-shadow: none;
    outline: none;
}

 
