/* @import url('https://fonts.googleapis.com/css2?family=Courgette&display=swap'); */

* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
    border: 0;
}

  /*---x----NAV BAR---x------*/

  .navbar{
    width: 100%;
    position:fixed;
    z-index: 1;
  }

.navbar ul {
    height: 50px;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2C2C2A;
    color: #fff;
    padding: 1rem;
    
}

.navbar li {
    margin-right: 20px;
    position: relative;
    color: #FF0000;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.navbar a:hover {
    color: #FF0000;
}

.drop {
    position: absolute;
    z-index: 1;
    display: none;
    width: 300px;
    padding: 10px;

}

.drop ul {
background-color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0%;
    border-radius: 5px;
    gap: 20px;
}


.drop ul li a {
    color: white;
}

.drop  ul  li {
    text-align: start;
    padding: 1%;
    width: 100%;
    display: flex;
}

li:hover  .drop {
    display: flex;
    color: black;
} 

.navbar  img {
    width: 100%;
    height: 60px;
}

/*---x----NAV BAR END---x------*/

/*---x----SLIDER AREA---x------*/
 .slider-area {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url(/img/slider_img02.webp);
    background-repeat: no-repeat;
    display: flex;
    flex-direction: row-reverse;
    background-size: cover;
    background-position: center;
}

.container-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
    transform: translatex(50%);
}
.slider-item {
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    /* justify-content: center; */
    transform: translateY(20%);
    /* background-color: #007bff; */
}

.slider-item h1{
    text-align: center;
    padding: 0 20px;
    margin-bottom: 20px;
    color: #fff;
    font-size: 80px;
}

.slider-item p {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}


.container-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: column;
}

.item {
    width: 35%;
    height: 400px;
    background: #333;
}
.item h2 {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.item p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
}

.btn_t2{
    background-color: red;
    width: 180px;
    border: none;
    height: 50px;
    border-radius: 5px;
    color: white;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* .btn {
    display: inline-block;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    height: 50px;
    width: 200px;
    text-decoration: none;
    transition: color 0.2s ease;
    margin: 10px;
    padding: 10px 20px;
    border-radius: 5px;
    margin-left: 80px;
    background-color: #FF0000;
} */

/* .btn_t1:hover */
/* .btn:hover {
    background-color: #2C2C2A;
    color:#FF0000;
} */

@media screen and (max-width:768px) {

    .slider-area {
        height: auto;
        padding: 50px 0;
    }

    .container-slider {
        flex-direction: column;
        align-items: center;
    }

    .slider-item {
        margin-bottom: 10px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    p {
        font-size: 16px;
    }

    .btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}

.container-item { 
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.item {
    text-align: center;
    color: #fff;
}

.item h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.item p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    background-color: #FF0000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #2C2C2A;
        color: #FF0000;
    }

@media screen and (max-width: 768px) {
    .container-item {
        height: auto;
    }

    .item {
        margin: 20px;
    }

    .item h2 {
        font-size: 24px;
    }

    .item p {
        font-size: 14px;
    }
}

/*---x----SLIDER AREA END---x------*/

/*---x----ABOUT AREA---x------*/

.section-title {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    flex-direction: column;
    margin-top: 150px;
    color: #333;
}

.section-title h4 {
    font-size: 20px;
    /* margin-top: 20px; */
    /* position: fixe/d; */
    color: #666;
    /* margin-bottom: 10px; */
}

.area  {
    font-size: 36px;
    /* margin-top: 30px; */
    color: #333;
    line-height: 1.5;
    font-family: 'Times New Roman', Times, serif;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.desc {
    font-size: 18px;
    /* margin-top: 10px; */
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

button {
    background-color: #fff;
    color: red;
    border: none;
    border-radius:10px ;
    padding: 10px 20px;
    font-size: 10px;
    border: 1px solid red;
    cursor: pointer;
    line-height: 1.5;
    /* transition: background-color 0.3s; */
}

button:hover {
    background-color: #2C2C2A;
        color: #FF0000;
}

@media (max-width: 768px) {
    .section-title {
        margin-bottom: 10px;
    }

    .area {
        font-size: 24px;
    }

    .desc {
        font-size: 14px;
        margin-bottom: 10px;
    }

    button {
        padding: 5px 10px;
        font-size: 14px;
    }
}
    button {
        padding: 15px 30px;
        font-size: 20px;
    }

/*---x----ABOUT AREA END---x------*/

/*---x----SLIDE INNER---x------*/
.container-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 3%;
    background-color: #F9FAF1;
}

.content-image {
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    /* background-color: #2C2C2A; */
}

.swiper {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-image {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: center;
}

/* .content-image {
    height: 40vh;
    width: 20%;
    margin: 20px;
    transition: transform 0.2s;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
} */

.content-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: opacity 0.2s;
}

.content-image:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.content-image:hover img {
    opacity: 0.8;
}

.content-image {
    animation: fade-in 1s;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .swiper {
        height: 50vh;
    }
    .container-image{
        flex-direction: column;
    }
    .content-image {
        margin: 10px;
    }

    .content-image img {
        width: 150px;
        height: 150px;
    }
}

.content-image:nth-child(1) {
    animation-delay: 0.2s;
}

.content-image:nth-child(2) {
    animation-delay: 0.4s;
}

.content-image:nth-child(3) {
    animation-delay: 0.6s;
}

.content-image:nth-child(4) {
    animation-delay: 0.8s;
}
/*---x----SLIDE INNER END---x------*/

/*---x----VIDEO AREA---x------*/

.video-item {
        text-align: center;
        /* display: flex; */
        padding: 20px;
        border: 1px solid #ddd;
        border-radius: 8px;
        background-color: #fff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     }

     .video-item iframe {
        width: 80%;
        /* height: 100%; */
        height: 506px;
        border-radius: 8px;
     }

@media screen and (max-width:768px) {
  .video-item iframe{
    width: 100%;
    height: 600px;
  }
}
/*---x----VIDEO AREA END---x------*/

/*---x----FEATURES-AREA---x------*/

.features-area {
    padding: 50px 0;
    background-color: rgb(254, 255, 251);
}

.container-content {
    /* max-width: 1200px; */
    /* margin: 0 auto; */
    display: flex;
    align-items: center;
    /* flex-wrap: wrap; */
    padding: 20px;
    justify-content: center;
    gap: 30px;
}

.feature-item {
    background-color: rgb(254, 255, 251);
    width: 33%;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    display: flex;
}

.feature-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.feature-item:hover img {
    transform: scale(1.1);
}

.feature-item h4 {
    font-size: 20px;
    font-family:serif ;
    color: #666;
}

.feature-item h4:hover {
    color: #FF0000;
}

.feature-item p {
    font-size: 16px;
    color: #666;
}
@media screen and (max-width:768px) {
    .features-area{
        padding: 20px;
    }
    .container-content{
        flex-direction: column;
    }
    .feature-item{
        width: 100%;
    }
}
/*---x----FEATURES-AREA END--x------*/

/*---x----PROJECT-AREA--x------*/ 
.project-area{
    background-color: rgb(249, 250, 241);
    padding-bottom: 40px;
}
.container-project {
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.5;
    padding: 30px;
}
.project-item{
    margin: 0 auto;
    width: 800px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    background-color: rgb(249, 250, 241);
}
.project-item h2{
    font-size: 2.2rem;
}
.container-row {
    width: 100%;
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: center;
    align-items: center;
    background-color: #F9FAF1;
    padding: 1%;
    gap: 30px;
}

.row-item {
    width: 500px;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

 .row-item span {
    font-size: 10px;
    /* margin-left: 130px; */
    
}

.row-item img {
    width: 100%;
    height: 80%;
    border-radius: 10px;
    /* margin-left: 50px; */
    margin-top: 10%;
    object-fit: cover;
    transition: transform 0.2s;
} 

.row-item img:hover {
    margin-left: 70px;
    transition: margin-left 0.8s;
}

.row-item p {
    font-size: 16px;
    /* margin-left: 60px; */
    margin-top: 20px;
   
}
.btn {
    background-color: #fff;
    color: #FF0000;
    height: 50px;
    width: 190px;
    border: 1px solid #FF0000;
    padding: 10px 20px;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 100px auto;
    transition: background-color 0.2s;
}

.btn:hover {
    background-color: #FF0000;
    color: #fff;
}  

@media screen and (max-width: 768px) {
    .project-item{
        width: 100%;
    }
    .project-item h2{
        font-size: 1.5rem;
    }
    .container-row{
        flex-direction: column;
        padding: 0;
    }
    .row-item{
        width: 100%;
        height: auto ;
    }
    .row-item img{
        width: 90%;
        height: 200px;
    }
}
  /*---x----PROJECT-AREA END--x------*/

/*---x----TEAM-AREA--x------*/
  
.team-area {
    padding: 50px 0;
}

.container-team{
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.team-item1{
    line-height: 55px;
}

.sub-title {
    font-size: 10px;
    font-weight: bold;
    color: #333;
    position: relative;
    top: 50%;
    font-family: sans-serif;
    /* transform: translatex(50%); */
    /* margin-right: 100px; */
    /* left: 0; */
    /* transition: all 0.5s ease-in-out; */
}

.title {
    font-size: 40px;
    font-weight: bold;
    color: #333;
    /* margin-bottom: 20px; */
    /* margin-right: 100px; */
}

.team-container1 {
    display: flex;
    flex-wrap: wrap;
    padding: 2%;
    width: 100%;
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: center;
}
.team-container2 {
    display: flex;
    flex-wrap: wrap;
    padding: 2%;
    gap: 10px;
    justify-content: center;
}
 
.team-item {
    margin: 20px;
    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 250px;
    text-align: center;
}

.team-item img {
    border-radius: 10px;
    width: 100%;
    height: 300px;
    position: absolute;
    object-fit: cover;   
    transition: all 0.5s ease-in-out;
} 

.info{
    width: 100%;
    height: 100%;
    opacity: 0;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    background: linear-gradient(to bottom, transparent 40%, #000 100%);
    transition: 0.9s ease;
    position: relative;
    flex-direction: column;
    justify-content: flex-end;
}
.info:hover{
    opacity: 1;
}
 .info a {
    text-decoration: none;
    color: #fff;
    transition: color 0.2s ease-in-out;
} 

/* .team-item a:hover {
    color: #007bff;
}  */

.info h3 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
    transition: color 0.2s ease-in-out;
}

.info h3:hover {
    color: #fff;
    text-decoration: underline;
} 

.info span {
    font-size: 16px;
    color: #fff;
    transition: color 0.2s ease-in-out;
}

.info span:hover {
    color: #007bff;
} 

.info span:hover {
    color: #007bff;
} 

@media screen and (max-width: 768px) {
   .team-item1 .title{
    font-size: 1.5rem;
   }
}
/*---x----TEAM-AREA END-x------*/

/*---x----BLOG-AREA-x------*/

.blog-area {
    padding: 30px;
    background-color: rgb(249, 250, 241);
    font-family: Arial, sans-serif;

}

.blog-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-direction: row; */
    padding: 2%;
    background-color: rgb(249, 250, 241);
    /* flex-wrap: wrap; */
    gap: 20px;
}

.blog-item {
    background-color: inherit;
    /* border: 1px solid #ddd; */
    border-radius: 8px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
    text-align: left;
    width: 35%;
    height: 450px;
    transition: transform 0.8s ease-in-out;
}
.blog-item img {
    width: 100%;
    height: 330px;
    color: #fff;
    border-radius: 10px;
    border: 1px solid;
    transition: transform 0.6s ease-in-out, filter 0.8s ease-in-out;
}

.blog-item img:hover {
    color: #ff0000;
}

.blog-item h2 {
    font-size: 18px;
    margin: 15px 10px;
    line-height: 1.4;
    color: #333;
    transition: color 0.3s ease-in-out;
}

.blog-item h2:hover {
    color: #ff0000;
}

.blog-item h4 {
    color: #777;
    font-size: 14px;
    display: inline-block;
    margin: 15px 10px;
    vertical-align: middle;
}

.blog-item h5 {
    color: #777;
    font-size: 14px;
    display: inline-block;
    margin: 5px 10px 5px 0;
    vertical-align: middle;
}

.blog-item h4:hover {
    color: #ff0000;
    cursor: pointer;
}

.blog-item h5:hover {
    color: #ff0000;
    cursor: pointer;
}

.blog-item span {
    font-size: 14px;
    color: #000;
    text-align: left;
    display: flex;
    margin-left: 20px;
    height: 50px;
    font-weight: 100;
}
.blog-item h1 {
    font-size: 3rem;
    color: #000;
    text-align: left;
    display: flex;
    width: 60%;
    margin-left: 20px;
    /* height: 50px; */
    font-weight: 600;
}

.btn_t1 {
    display: flex;
    background-color: #fff;
    color: #ff0000;
    padding: 10px 15px;
    border-radius: 5px;
    width: 180px;
    text-align: center;
    align-items: center;
    justify-content: center;
    border: 1px solid #FF0000;
    margin-top: 15px;
    cursor: pointer;
    margin-left: 20px;
    text-transform: uppercase;
}

.btn_t1:hover {
    background-color: #ff0000;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .blog-area {
        background-color: #f9f9f9;
        padding: 20px;
        font-family: Arial, sans-serif;
    }

    .blog-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .blog-item {
        margin-bottom: 20px;
        height: auto;
        justify-content: space-between;
        width: 100%;
    }

    .blog-item img {
        border-radius: 5px;
        height: auto;
    }

    .blog-item h2 {
        font-size: 10px;
    }

    .blog-item h4,
    .blog-item h5 {
        font-size: 12px;
    }

    .btn_t1 {
        padding: 8px 10px;
        font-size: 14px;
    }
}
/*---x----BLOG-AREA END--x------*/

/*---x----NEW/* General Styles for the Newsletter Area */
.newsletter-area {
    background-color: rgb(249, 250, 241);
    padding: 50px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.container-newletter {
    width: 150vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50vh;
    margin: 0 auto;
    background-color: #fff;
}

.row-newletter{
    width: 600px;
}
.row-newletter h5 {
    font-size: 15px;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.row-newletter p {
    font-size: 1.5em;
    color: #555;
    margin-top: 20px;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 20px;
    /* flex-direction: column; */
    align-items: center;
}

.newsletter-form input[type="text"] {
    display: flex;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    height: 55px;
    width: 60%;
}

.newsletter-form input[type="email"] {
    width: 60%;
    height: 55px;
    display: flex;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.newsletter-form button {
    background-color: #ff0000;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    width: 150px;
    height: 55px;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: -10px;
    transition: background-color 0.3s ease-in-out;
}

.newsletter-form button:hover {
   background-color: #555;
}

.form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.form-check input[type="checkbox"] {
    margin-right: 10px;
}

.form-check span {
    font-size: 14px;
    color: #555;
}

@media (max-width: 768px) {
    .container-newletter{
        width: 100%;
    }
    .row-newletter{
        width: 90%;
    }
    .row-newletter p{
        font-size: 1.1rem;
    }
    .newsletter-form{
        flex-direction: column;
    }
    .newsletter-form input[type='text'] {
        width: 100%;
    }
    .newsletter-form input[type='email'] {
        width: 100%;
    }
    .newsletter-form button{
        width: 100%;
    }
    .form-check span{
        font-size: 0.8rem;
    }
}
/*---x----NEWLETTER-AREA ENDx------*/

/*---x----FOOTER--AREA----x------*/
.footer-container {
    /* display: flex; */
    /* flex-wrap: wrap; */
    justify-content: center;
    align-items: center;
    background-image: url(/img/footer_bg.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    height: 85vh;
    padding: 20px;
    gap: 20px;
}

.footer-items{
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.footer-item {
    /* flex: 1; */
    /* background-color: burlywood; */
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 20px;
    margin: 10px;
    height: 400px;
}

.footer-item img {
    width: 230px;
    height: 230px;
    object-fit: cover;
}


.footer-item h3 {
    color: #fff;
    padding-bottom: 10px;
    font-size: 1.5rem;
    text-decoration: none;
}

.footer-item p {
    font-size: 16px;
    color: rgb(155, 155, 155);
    margin: 5px 0;
    line-height: 1.5;
    text-align: left;
}

.footer-item a p{
    text-decoration: underline;
}
.footer-item p:hover {
    color: #ff0000;
    transition: color 0.3s ease;

}

.footer-item ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 5px;
    flex-direction: column;
}

.footer-item ul li {
    margin: 5px 0;
}

.footer-item ul li a {
    text-decoration: none;
    font-size: 17px;
    color: rgb(155, 155, 155);
    transition: color 0.3s ease;
}

.footer-item ul li a:hover {
    text-decoration: underline;
    color: #ff0000;
}

.footer-container a {
    text-decoration: none;
    color: #fff;
}

.footer-container a:hover {
    color: #ff0000;
}
/* 
.footer-bottom p {
    font-size: 15px;
    color: #fff;
    transform: translatex(140%);
} */

.footer-bottom {
    display: flex;
    height: 100px;
    width: 100%;
    gap: 40px;
    flex-direction: column;
    justify-content: center;
    /* text-align: center; */
    align-items: center;
    padding-left: -20px;
}

.footer-bottom p{
    color: rgb(155, 155, 155);
    font-size: 18px;
}

.end{
    width: 300px;
    height: 100px;
    display: flex;
    gap: 10px;
}
.linked-icon{
    width: 50px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: 1px solid #FF0000;
}
.linked-icon a i {
    color: #FF0000;
}
.linked-icon:hover{
    background-color: #FF0000;
    color: #fff;
}
.linked-icon a i:hover {
    color: #fff;
}

@media screen and (max-width:768px) {
    .footer-items{
        flex-direction: column;
    }
    .footer-container{
        height: auto;
    }
    .footer-item{
        height: auto;
    }
}

/*---x----FOOTER--END--x------*/

