@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --blue: #4385a9;
}

* {
    margin: 0; 
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;
}

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

label{
    position: absolute;
    width: 45px;
    height: 22px;
    right: 20px;
    top: 20px;
    border: 2px solid;
    border-radius: 20px;
}
label:before{
    position: absolute;
    content: '';
    width:20px;
    height: 20px;
    border-radius: 50%;
    background: #000;
    cursor: pointer;
    transition: 0.4s;
}
label.active:before{
    left: 24px;
    background: #fff;
}

body.night{
    background: #000;
    color: #fff;
}
body.night .icons-container{
    background: #101010;
    color: #fff;
}

body.night .bg-boz{
    background: #101010;
    color: #fff;
}

body.night header{
    background: #101010;
    color: #fff;
}
body.night header a{
    color: #101010;
    color: #fff;
}

section{
    padding: 2rem 9%;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 10px 20px;
}

.logo {
    color: white;
    font-size: 24px;
    width: 170px;
}

.nav-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin-left: 20px;
}

.nav-list a {
    color: black;
    text-decoration: none;
    padding: 5px 10px;
   
}

/*.nav-list a:hover {
    background-color: white;
    border-radius: 5px;
}*/

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 25px;
    background-color: black;
    margin: 3px 0;
}
.menu{
    display: none;
}

@media (max-width: 780px) {
    .nav-list a {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #333;
    }

    .nav-list.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
    .logo{
        width: 100px;
    }
    .bar{
        margin-left: 500px;
        /*margin-bottom: ;*/
    }

 
}


/* .heading{
    text-align: center;
    font-size: 4rem;
    color: #333;
    padding: 1rem;
    margin: 2rem 0;
    background: #eee;
}

.heading span{
    color: var(--blue);
}

.btn{
    /* display: inline-block; */
    /* margin-top: 1rem;
    margin-left: 30rem;
    border-radius: 5rem;
    background: #333;
    color: #fff;
    padding: 0.9rem 3.5rem;
    cursor: pointer;
    font-size: 1.7rem;
   
}

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

header{
        position: fixed;
        top: 0; left: 0; right: 0;
        width: 100%;
        height: 80px;
        background: rgba(243, 239, 239, 0.8);
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 1100;
}

.logo
{
    height:50px;
    margin-left:20px;
}
.logo img
{
    width: 100%;
    height: 100%;
    border:none;
}
#shownav{
    height: 50px;
    width: 50px;
    border: none;
    font-size: 30px;
    cursor: pointer;
    transition: all ease-in-out 0.7s;
}
#shownav img{
    border: none;
}
.navbar, .navbar.sticky{
    position: fixed;
    top: 0;
    right: -100%;
    display: flex;
    flex-direction: column;
    height: 100dvh;
    align-items: center;
    justify-content: space-evenly;
    z-index: 9999;
    transition: right 0.5s ease-in-out;
    background-color: rgba(128, 128, 128, 0.7);
    backdrop-filter: blur(5px);
    border-left: 3px solid black;
}


.navbar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 5px 30px;
    flex: 1;
}

.navbar > a, .navbar > .dropdown {
    flex: 1; 
    text-align: center; 
}
#hidenav{
    position: absolute;
    cursor: pointer;
    top: 10px;
    left: 20px;
    font-size: 2rem;
    height: 50px;
    width: 50px;
    text-align: center;
}
.dark-btn-navbar{
   padding-left: 6em;
   margin-bottom: 5em;
}

header .navbar a{
    font-size: 2rem;
    padding: 0 1.5rem;
    color: #282727;
    display: flex;
    flex-wrap: nowrap;


}

.navbar a {
    color: #333;
    padding: 10px 0;
    text-decoration: none;
    font-size: 17px;
}

.navbar a:hover{
    background-color: white;
    color: black;
} */ */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(164, 159, 159);
    min-width: 150px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 5px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
    
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dark-btn-navbar {
    margin-left: auto; 
}


#toggler {
    display: none;
}

.fas.fa-bars {
    display: none;
}

.home{
    /* display: flex; */
    /* align-items: center; */
    min-height: 100vh;
    /* background: url(img/bg-home.png)no-repeat; */
    /* background-size: cover; */
    /* background-position: center; */
    padding: 0;
}

.home .content{
    max-width: 50rem;
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
}

.home .content h3{
    font-size: 5rem;
    color: #ffffff;
    font-weight: bold;
    /*text-shadow: 0 0 4px #ffffff;*/
}

.home .content span{
    font-size: 3.5rem;
    color: #a7e0ff;
    padding: 1rem 0;
    line-height: 1.5;
}

.home .content p{
    font-size: 1.5rem;
    color: #ffffff;
    padding: 1rem 0;
    line-height: 1.5;
    /*text-decoration: underline;*/
    text-decoration-style: solid;
}

/* .about .row{
    display: flow-root;
    align-items: center;
    gap: 2rem;
    /* flex-wrap:nowrap ; 
    padding: 2rem 0;
    padding-bottom: 3rem;
} */


/* General section styling */
.about {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;         /* Adds space between video and content sections */
    padding: 40px;
    text-align: center;
    max-width: 1200px; /* Sets a maximum width for the section to avoid overfilling */
    margin: auto;      /* Centers the entire .about section */
}

/* Container to keep video and content sections aligned */
.row {
    display: flex;
    justify-content: space-around; /* Spreads video and content evenly */
    gap: 40px;
    align-items: center;
    flex-wrap: nowrap;             /* Prevents wrapping on larger screens */
    max-width: 100%;               /* Ensures row doesn't exceed available width */
}

/* Styling for video container */
.video-container {
    width: 45%;                    /* Allows space for content side by side */
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;              /* Ensures video section stays within bounds */
    overflow: hidden;              /* Hides overflow if video is larger than container */
}

/* Styling for content section */
.content {
    width: 45%;
    text-align: center;
    max-width: 500px;              /* Limits content width to prevent overflow */
}

/* Button styling */
.btn {
    display: inline-block;          /* Centers button text */
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    margin-top: auto;
}

/* Responsive design adjustments for screens under 768px */
@media (max-width: 768px) {
    .row {
        flex-direction: column;     /* Stacks video and content vertically */
        gap: 20px;                  /* Reduces gap for small screens */
    }
    .video-container, .content {
        width: 100%;                /* Full width on small screens */
        max-width: none;            /* Removes width restriction */
    }
}







/* Add this CSS to your stylesheet */

@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Apply floating animation to the text elements */
.navbar .nav-link,
.home .content h3,
.home .content span,
.home .content p,
.home .content .btn {
    animation: floating 3s ease-in-out infinite;
}







.about .row .video-container{
    flex: 1 1 40rem;
    position: relative;
}

.about .row .video-container video{
    width: 100%;
    border: 1.5rem solid #fffefe;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
    height: 100%;
    object-fit: cover;
}

.about .row .video-container h3{
    position: absolute;
    top: 50%; transform: translateY(-50%);
    font-size: 3rem;
    background: #fff;
    width: 100%;
    padding: 1rem 2rem;
    text-align: center;
    mix-blend-mode: screen;
}

.about .row .content{
    flex:1 1 40rem;
}

.about .row .content h3{
    font-size: 3rem;
    color: #333;
}

.about .row .content p{
    font-size: 1.5rem;
    color: #999;
    padding: 0.5rem 0;
    padding-top: 1rem;
    line-height: 1.5;
}

.icons-container{
    background: #eee;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.icons-container .icons{
    background: #fff;
    border: 0.1rem solid rgba(0,0,0,0.1);
    padding: 2rem;
    display: flex;
    align-items: center;
    flex: 1 1 25rem;
}

.icons-container .icons h3{
    color: #333;
    padding-bottom: 0.5rem;
    font-size: 1.5rem;
}

.icons-container .icons span{
    color: #555;
    font-size: 1.3rem;
}

ul{
    font-size: 18px;
    font-weight: 600;
    gap: 20px;
    margin-left: 20px;
}
/*ul li .nav-link:hover{
    background: var(--blue);
    color: white;
    border-radius: 30px;
    transition: all 0.5s;
}*/
.card-body{
    position: relative;
    max-width: 7;
    font-size: 25px;
    text-align: center;
}

.circle{
    position: absolute;
    background-color: var(--blue);
    height: 370px;
    width: 370px;
    top: -20px;
    left: 50px;
    border-radius: 50%;
    opacity: 0.8;  
}
.hero{
    position: relative;
    z-index: 1;
}

.py-5 .card-body .card-title{
    font-size: 30px;
}
.py-5 .card-body .card-subtitle{
    font-size: 60px;
}
.bg-mavi {
    background-color: var(--blue)
}

.bg-goy {
    background-color: #072035;
}

.bg-boz {
    background-color: #f1f1f1
}

.text-mavi {
    color: var(--blue)
}

.vh-50 {
    min-height: 50vh;
}

.features:hover {
    opacity: .5;
}

.serviceimgs {
    width: 98%;
    height: 98%;
    border: 2px solid #97aac3;
    border-radius: 20%;
}

.carousel-caption,
.carousel-item {
    height: 150px;
}

#bottom-carousel .carousel-indicators button {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
}

#bottom-carousel .carousel-indicators button.active {
    width: 50px !important;
    height: 50px !important;
}


.carousel-inner h6 {
    text-transform: uppercase;
    letter-spacing: .1rem;
}

.carousel-inner p {
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

footer p {
    opacity: 0.7;
    font-size: 1.7rem;
    line-height: 30px;
    color: #fff;
    font-weight: 400;
}

footer h5 {
    margin-top: 40px;
    font-size: 4rem;
    color: #fff;
    font-weight: 400;
    font-family: "Roboto";

}

body.night .mb-2{
    color: #000;
    font-size: small;
    text-align: left;
}

body.night .mb-0{
    color: #000;
    font-size: small;
    text-align: left;
}


.bt1 {
    background: url("img/feature-1.jpg") center/cover;
}

.bt2 {
    background: url("img/feature-2.jpg") center/cover;
}

.bt3 {
    background: url("img/feature-3.jpg") center/cover;
}

.bt4 {
    background: url("img/feature-4.jpg") center/cover;
}

.bt5 {
    background: url("img/feature-5.jpg") center/cover;
}



/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

section {
    padding: 60px 0;
    overflow: hidden;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
  }
  
  .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #2c4964;
  }
  
  .section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
  }
  
  .section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #1977cc;
    bottom: 0;
    left: calc(50% - 20px);
  }
  
  .section-title p {
    margin-bottom: 0;
  }

.services .icon-box {
    text-align: center;
    background: linear-gradient(106deg,#858383,#ffffff);
    border: none;
    padding: 20px 20px 20px 20px;
    transition: all ease-in-out 0.5s;
    width: 95%;
    border-radius: 4%;
  }
  
  .services .icon-box .icon {
    margin: 0 auto;
    width: 140px;
    height: 140px;
    background: #ffffff;
    border-radius: 20%;
    transition: all 0.3s ease-out 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transform-style: preserve-3d;
  }
  
  .services .icon-box .icon i {
    color: #fff;
    font-size: 28px;
  }
  
  .services .icon-box .icon::before {
    position: absolute;
    content: "";
    left: -8px;
    top: -8px;
    height: 100%;
    width: 100%;
    background: #badaf7;
    border-radius: 20%;
    transition: all 0.3s ease-out 0s;
    transform: translateZ(-1px);
  }
  
  .services .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
  }
  
  .services .icon-box h4 a {
    color: #4b4d4f;
  }
  
  .services .icon-box p {
    line-height: 24px;
    font-size: 18px;
    margin-bottom: 0;
  }
  
  .services .icon-box:hover {
    background: #b9cee1;
    border-color: #7b7b7b;
    transform: scale(1.05);
  }
  
  .services .icon-box:hover .icon {
    background: #fff;
  }
  
  .services .icon-box:hover .icon i {
    color: #1977cc;
  }
  
  .services .icon-box:hover .icon::before {
    background: #3291e6;
  }
  
  .services .icon-box:hover h4 a,
  .services .icon-box:hover p {
    color: #fff;
  }
  
body.night .mb-4{
    color: #000;
    padding-top:4px;
}

.mb-4{
    color: #000;
    padding-top: 4px;
}

.w-50 {
    width: 50%; /* Adjust the width as necessary */
}



/* media queries */
@media (max-width:991px){

    html{
        font-size: 55%;
    }

    header{
        padding: 2rem;
    }

    section{
        padding: 2rem;
    }

    .home{
        background-position: left;
    }
    
}

input[type="text"], input[type="email"], textarea {
    width: 100%; /* Adjust the width */
    height: 50px; /* Adjust the height */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.6rem;
}

/* Adjust the textarea height specifically */
textarea {
    height: 150px; /* Increase height for a larger textarea */
}

@media (max-width:768px){
    .home .content h3{
        font-size: 5rem;
    }

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

    .icons-container .icons h3{
        font-size: 2rem;
    }
    
    .icons-container .icons span{
        font-size: 1.7rem;
    }
     

}

@media (max-width:450px){

    html{
        font-size: 50%;
    }

    .heading{
        font-size: 3rem;
    }
    
}
form{
    position: relative;
}
#gallery .image-container {
    overflow: hidden;
    margin:20px 0;
}

#gallery .image-container img {
    transition: transform .5s ease;
    border: none;
}


#gallery .image-container:hover img {
    transform: scale(1.5);
}

#gallery .image-container img {
    transition: transform 0.5s ease; /* Smooth transition for the sliding effect */
}

#gallery .image-container img.sliding {
    transform: translateX(200px); /* Adjust the value based on how much you want to slide the image */

}

* {
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Poppins', sans-serif;
}

html {
    background-color: #eaf0f2;
}

header {
    text-align: center;
    padding-top: 100px;
    margin-bottom: 300px;
    font-size: 35px;
}

header h2 {
    color: #f0525f;
}

header span {
    color: #eaa03f;
}

/* The footer is fixed to the bottom of the page */

footer {
    position: fixed;
    bottom: 0;
}

@media (max-height:800px) {
    footer {
        position: static;
    }
    header {
        padding-top: 40px;
    }
}

.footer-distributed {
    background-color: #2d2a30;
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    font: bold 16px sans-serif;
    padding: 50px 50px 60px 50px;
    margin-top: 80px;
}

.footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
    display: inline-block;
    vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left {
    width: 30%;
}

.footer-distributed h3 {
    color: #ffffff;
    font: normal 36px 'Cookie', cursive;
    margin: 0;
}


.footer-distributed h3 span {
    color: #e0ac1c;
}

/* Footer links */

.footer-distributed .footer-links {
    color: #ffffff;
    margin: 20px 0 12px;
}

.footer-distributed .footer-links a {
    display: inline-block;
    line-height: 1.8;
    text-decoration: none;
    color: inherit;
}

.footer-distributed .footer-company-name {
    color: #8f9296;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
}

/* Footer Center */

.footer-distributed .footer-center {
    width: 35%;
}

.footer-distributed .footer-center i {
    background-color: #33383b;
    color: #ffffff;
    font-size: 25px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    margin: 10px 15px;
    vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope {
    font-size: 17px;
    line-height: 38px;
}

.footer-distributed .footer-center p {
    display: inline-block;
    color: #ffffff;
    vertical-align: middle;
    margin: 0;
}

.footer-distributed .footer-center p span {
    display: block;
    font-weight: normal;
    font-size: 14px;
    line-height: 2;
}

.footer-distributed .footer-center p a {
    color: #e0ac1c;
    text-decoration: none;
    ;
}

/* Footer Right */

.footer-distributed .footer-right {
    width: 30%;
}

.footer-distributed .footer-company-about {
    line-height: 20px;
    color: #92999f;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
}

.footer-distributed .footer-company-about span {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-distributed .footer-icons {
    margin-top: 25px;
}

.footer-distributed .footer-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    cursor: pointer;
    border-radius: 2px;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    line-height: 35px;
    margin-right: 3px;
    margin-bottom: 5px;
}

.footer-distributed .footer-icons a:hover {
    background-color: #33383b;
}

.footer-links a:hover {
    color: #3F71EA;
}

@media (max-width: 880px) {
    .footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
        display: block;
        width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }
    .footer-distributed .footer-center i {
        margin-left: 0;
    }
}       
