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

html,
body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    /* background-color: rgb(15, 15, 15); */
    /* font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal; */
}
/* .navbars{
    display: grid;
} */
.class2 {
    /* background-color: black; */
    display: flex;
    position: relative;
    height: 40px;
    width: 25px;
    margin-top: 15px;
    margin-bottom: 5px;
    /* margin-left: 5px; */
}
/* .class2 {
    justify-content: center;
    display: grid;
    margin-top: 20px;
    height: 60px;
    width: 40px;

} */

.navbar {
    background: rgb(175 114 51);
    font-family: calibri;
    padding-right: 15px;
    padding-left: 15px;
}
.class1{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* .class2 a{
     font-size: 35px;
     font-weight: 600;
     color: white;
} */
.bars li{
    list-style: none;
    display: inline-block;
}

.bars li a{
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: bold;
    margin-right: 25px;
}
.bars li a:hover{
    color: rgb(193, 147, 101);
}

.tittle{
    font-size: 30px;
    background-image: url(Image.Index/desktop-wallpaper-wiki-indian-flag-background.jpg);
    background-size: contain;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  nav ul {
    position: absolute;
    top: 60px;
    left: -100%;
    flex-direction: column;
    background: #0a3d62;
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
  }

  nav ul.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }
}

.carousel{
    height: 100vh;
    margin-top: -50px;
    width: 100vw;
    overflow: hidden;
    position: relative;
    margin-top: 0px;
}
.carousel .list .item{
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}
.carousel .list .item img{
    width: 100%;
    height: 100%;
    object-fit:cover;
}

/* .carousel .list .item img:hover{
    width: 100%;
    height: 100%;
    object-fit: cover; */
    /* filter: saturate(100%); */
/* } */

.carousel .list .item .content{
    position: absolute;
    top: 20%;
    width: 1140px;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #0004;
}
.carousel .list .item .author{
    font-weight: bold;
    letter-spacing: 10px;
}
.carousel .list .item .title,
.carousel .list .item .topic{
    font-size: 5em;
    font-weight: bold;
    line-height: 1.3em;
}
.carousel .list .item .topic{
    color: #f1683a;
}
.carousel .list .item .buttons{
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 20px;
}
.carousel .list .item .buttons button{
    border: none;
    background-color: #eee;
    letter-spacing: 3px;
    font-family: Poppins;
    font-weight: 500;
}
.carousel .list .item .buttons button:nth-child(2){
    background-color: transparent;
    border: 1px solid #fff;
    color: #eee;
}


/* Responsive Carousel Text */
@media (max-width: 1024px) {
  .swiper-slide {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .swiper-slide {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .swiper-slide {
    font-size: 1.5em;
  }
}

/* thumbail */
.thumbnail{
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 20px;
}
.thumbnail .item{
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
}
.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.thumbnail .item .content{
    color: #fff;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}
.thumbnail .item .content .title{
    font-weight: 500;
}
.thumbnail .item .content .description{
    font-weight: 300;
}
/* arrows */
.arrows{
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}
.arrows button{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee4;
    border: none;
    color: #fff;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
}
.arrows button:hover{
    background-color: #fff;
    color: #000;
}

/* animation */
.carousel .list .item:nth-child(1){
    z-index: 1;
}

/* animation text in first item */

.carousel .list .item:nth-child(1) .content .author,
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons
{
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}
@keyframes showContent{
    to{
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
.carousel .list .item:nth-child(1) .content .title{
    animation-delay: 1.2s!important;
}
.carousel .list .item:nth-child(1) .content .topic{
    animation-delay: 1.4s!important;
}
.carousel .list .item:nth-child(1) .content .des{
    animation-delay: 1.6s!important;
}
.carousel .list .item:nth-child(1) .content .buttons{
    animation-delay: 1.8s!important;
}
/* create animation when next click */
.carousel.next .list .item:nth-child(1) img{
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}
@keyframes showImage{
    to{
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.carousel.next .thumbnail .item:nth-last-child(1){
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}
.carousel.prev .list .item img{
    z-index: 100;
}
@keyframes showThumbnail{
    from{
        width: 0;
        opacity: 0;
    }
}
.carousel.next .thumbnail{
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext{
    from{
        transform: translateX(150px);
    }
}

/* running time */

.carousel .time{
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 3px;
    background-color: #f1683a;
    left: 0;
    top: 0;
}

.carousel.next .time,
.carousel.prev .time{
    animation: runningTime 3s linear 1 forwards;
}
@keyframes runningTime{
    from{ width: 100%}
    to{width: 0}
}


/* prev click */

.carousel.prev .list .item:nth-child(2){
    z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img{
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}
@keyframes outFrame{
    to{
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.carousel.prev .thumbnail .item:nth-child(1){
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}
.carousel.next .arrows button,
.carousel.prev .arrows button{
    pointer-events: none;
}
.carousel.prev .list .item:nth-child(2) .content .author,
.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .topic,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons
{
    animation: contentOut 1.5s linear 1 forwards!important;
}

@keyframes contentOut{
    to{
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}
@media screen and (max-width: 678px) {
    .carousel .list .item .content{
        padding-right: 0;
    }
    .carousel .list .item .content .title{
        font-size: 30px;
    }
}



.counters {
    padding: 3em 2em;
    background: #4193ff;
    color: #fff;
    text-align: center;
}
.counters > div {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4em 2em;
}
.counter {
    position: relative;
}
.counter h1{
    font-size: 3em;
    margin-bottom: 0.5em;
}
.counter:not(:last-child)::before{
    content: '';
    background: #fff;
    position: absolute;
    width: 2px;
    height: 3em;
    top: 50px;
    transform: translateY(-50%);
    right: -1em;
}



/* Counters Responsive */
@media (max-width: 1024px) {
  .counters {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .counters {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}

.info{
    position:relative;
    width: 60%;
}

/* 
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
} */

.container1 {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 20px;
}

.main-content {
    flex: 3;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 60%;
}

.main-content h1 {
    font-size: 28px;
    color: #333;
}

.main-content h2 {
    font-size: 24px;
    color: #007bff;
    margin-top: 10px;
}

.main-content p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.image-section img {
    width: 100%;
    border-radius: 8px;
}

.sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 40%;
}

.sidebar .related-news, .sidebar .recent-news, .video1, .container2, .container22{
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.sidebar img {
    width: 100%;
    border-radius: 8px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

.sidebar ul li a:hover {
    text-decoration: underline;
}

.sidebar video{
    width: 400px;
    height: 250px;
    display: flex;
}

.sidebar .container2{
    width: 70vmin;
    position: relative;
    border: 10px solid #ffffff;
    overflow: hidden;

} 
.sidebar .container22{
    width: 100%;
    height: auto;
    /* position: relative; */
    /* border: 10px solid #ffffff; */
    /* overflow: hidden; */

} 

@media (max-width: 1024px) {
  .container {
    flex-direction: column;
    padding: 20px;
  }

  .sidebar {
    order: 2; /* Sidebar goes below main content */
  }
}

/* .sidebar .container22:hover{
    width: 110%;
} */

.img-container{
    width: 100%;
    display: flex;
    animation: slide 10s infinite;
}

@keyframes slide{
    0%{
        transform: translateX(0);
    }
    25%{
        transform: translateX(0);
    }
    30%{
        transform: translateX(-100%);
    }
    50%{
        transform: translateX(-100%);
    }
    55%{
        transform: translateX(-200%);
    }
    75%{
        transform: translateX(-200%);
    }
    80%{
        transform: translateX(-300%);
    }
    100%{
        transform: translateX(-300%);
    }
}



.slide-container{
    max-width: 1120px;
    width: 100%;
    padding: 40px 0;
  }
  .slide-content{
    margin: 0 40px;
    overflow: hidden;
    border-radius: 25px;
  }
  .card{
    border-radius: 25px;
    background-color: #FFF;
  }
  .image-content,
  .card-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
  }
  .image-content{
    position: relative;
    row-gap: 5px;
    padding: 25px 0;
  }
  .overlay{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #4070F4;
    border-radius: 25px 25px 0 25px;
  }
  .overlay::before,
  .overlay::after{
    content: '';
    position: absolute;
    right: 0;
    bottom: -40px;
    height: 40px;
    width: 40px;
    background-color: #4070F4;
  }
  .overlay::after{
    border-radius: 0 25px 0 0;
    background-color: #FFF;
  }
  .card-image{
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background: #FFF;
    padding: 3px;
  }
  .card-image .card-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #4070F4;
  }
  .name{
    font-size: 18px;
    font-weight: 500;
    color: #333;
  }
  .description{
    font-size: 14px;
    color: #707070;
    text-align: center;
  }
  .button{
    border: none;
    font-size: 16px;
    color: #FFF;
    padding: 8px 16px;
    background-color: #4070F4;
    border-radius: 6px;
    margin: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .button:hover{
    background: #265DF2;
  }
  .button a{
    color: #fff;
  }
  
  .swiper-navBtn{
    color: #6E93f7;
    transition: color 0.3s ease;
  }
  .swiper-navBtn:hover{
    color: #4070F4;
  }
  .swiper-navBtn::before,
  .swiper-navBtn::after{
    font-size: 35px;
  }
  .swiper-button-next{
    right: 0;
  }
  .swiper-button-prev{
    left: 0;
  }
  .swiper-pagination-bullet{
    background-color: #6E93f7;
    opacity: 1;
  }
  .swiper-pagination-bullet-active{
    background-color: #4070F4;
  }
  
  @media screen and (max-width: 768px) {
    .slide-content{
      margin: 0 10px;
    }
    .swiper-navBtn{
      display: none;
    }
  }



  /* slider */
  .slider11 {
    height: 250px;
    margin: 100px;
    position: relative;
    width: 90%;
    display: grid;
    place-item: center;
}
.slide-track11 {
    display: flex;
    width: calc(250px*18);
    animation: scroll 40s linear infinite;
}
.slide-track:hover11 {
    animation-play-state: paused;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100%{
        transform: translateX(calc(-250px*9));
    }
}
.slide11 {
    height: 200px;
    width: 250px;
    display: flex;
    align-items: center;
    padding: 15px;
    perspective: 100px;
}
.track11 {
    width: 200px;
    height: 200px;
    object-fit: cover;
    /* filter: saturate(0%); */
    /* width: 100%; */
    transition: transform 1s;
}
.track11:hover {
    transform: translateZ(20px);
    /* filter: saturate(100%); */
}

/* .slider::before,
.slider::after {
    background: linear-gradient(to right, rgba(250, 250, 250, 1) 0%,
    rgba(250, 250, 250, 0) 100%);
    content: '';
    height: 100%;
    position: absolute;
    width: 15%;
    z-index: 2;
} */
.slider11::before {
    left: 0;
    top: 0;
}
.slider11::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}





/* footer */

footer{
    background-color: #111;

}
.footerContainer{
    width: 100%;
    padding: 70px 30px 20px 0px;
}
.SocialIcon{
    display: flex;
    justify-content: center;
}
.SocialIcon a{
    text-decoration: none;
    padding: 10px;
    background-color: white;
    margin: 10px;
    border-radius: 50%;
}
.SocialIcon a i{
    font-size: 2em;
    color: black;
    opacity: 0.9;
}
.SocialIcon a:hover i{
    color: white;
    transition: 0.5s;
}
.footerNav{
    margin: 30px 0;
}
.footerNav ul{
    display: flex;
    justify-content: center;
}
.footerNav ul li a{
    color: white;
    margin: 20px;
    text-decoration: none;
    font-size: 1.3em;
    opacity: 0.7;
    transition: 0.5s;
}
.footerNav ul li a:hover{
    opacity: 1;
}
.footerBottom{
    background-color: #000;
    padding: 20px;
    text-align: center;
}
.footerBottom p{
    color: white;
}
.designer{
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0px 5px;
}
.contact{
    display: grid;
    align-items: center;
    justify-content: center;

}
.contact-content{
    color: white;
    margin-top: 25px;
}
.managed{
    color: white;
    margin-top: 20px;
}
.contact-number{
   color: rgb(235, 202, 158);
}
.contact-number:hover{
    color: rgb(198, 150, 150);
}
.mail{
    color: rgb(235, 202, 158);
}
.mail:hover{
    color: rgb(198, 150, 150);
}