body {

    font-family: 'Raleway', sans-serif !important;
    scroll-behavior: smooth;
}

.navbar-banner {
    background-color: #fff;
    border-bottom: 4px solid #f20533;
    
}

.nav-text {
    color: #000;
    margin-right: 10px;
    font-weight: 500;
    font-size: 18px;
}

.navbar img {
    width: 65px;
}

.download-btn {
    margin-right: 10px;
    font-weight: 19px;
    font-size: 18px;
}

.download-btn {
    position: relative;
    margin-right: 10px;
    font-weight: 600;
    font-size: 18px;
    background-color: #ffa500;
    border: none;
    overflow: hidden;
}

.download-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.2) 30%, rgba(255, 255, 255, 0) 70%);
    transition: all 0.6s ease-in-out;
    transform: skewX(-25deg);
}

.download-btn:hover::before {
    left: 100%;
}

.menu-bar {
    width: 100%;
    max-width: 38px;
    color: #fff;
}

.nav-text:hover {
    color: #000;
}

/* .nav-button:hover{
    background-color: aliceblue;
} */

.nav-link.active {
    color: #ffa500 !important;
    font-weight: 700;
}


.navbar-items li a {
    position: relative;
}


.navbar-items li a::after {
    content: '';
    width: 0;
    height: 3px;
    background: #ffa500;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

.navbar-items li a:hover::after {
    width: 100%;
}




/* Custom styles for the mobile screen container */
.mobile-screen {
    width: 100%;
    max-width: 300px;
    max-height: 650px;
    /* Height of the mobile screen */
    margin: 0 auto;
    border: 5px solid #000;
    /* Simulates a mobile device frame */
    border-radius: 30px;
    overflow: hidden;
    /* Ensures content stays within the mobile screen */
    background-color: #000;
    /* Background color of the mobile screen */
    margin-top: 20px;
    margin-bottom: 20px;
}

/* banner section */
.banner-sec {
    background-image: url(../images/good-morning-good-evening_gif.gif);
    background-size: cover;
    background-repeat: no-repeat;
}

/* .video-btn {
    display: none;
} */

.content-section {
    margin-top: 40px;
    padding: 20px;
}

.content-section h1 {
    font-size: 68px;
    font-weight: bolder;
}

.content-section h2 {
    font-size: 50px;
    font-weight: bolder;
    color: #fff;
}


.content-section p {
    color: #fff;
    font-size: 20px;
    font-weight: bolder;
}


.carousel-item video {
    width: 100%;
    height: auto;
    /* Maintain aspect ratio of videos */
}

.banner-text2 {
    color: #fc8019;
}

.banner-text3 {
    color: #046a38;
}

.banner-text1{
    background-image: url(../images/inian_flag.avif);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    
}

/* Adjust the mobile screen size on smaller devices */
@media (max-width: 767.98px) {
    .mobile-screen {
        max-width: 80%;
        max-height: 500px;
        /* Adjusted height for smaller screens */
    }

    .content-section h1 {
        color: #fff;
    }

    .content-section p {
        color: #ffa500;
    }

    .content-section {
        text-align: center;
    }
}

@media (max-width: 912.98px) {
    .mobile-screen {
        max-width: 80%;
        max-height: 500px;
        /* Adjusted height for smaller screens */
    }

    .content-section h1 {
        color: #fff;
    }

    .content-section p {
        color: #ffa500;
    }

    .content-section {
        text-align: center;
    }
}


/* Footer */
.footer {
    background-color: #000;
    /* background-image: url('https://blog.chingari.io/wp-content/uploads/2020/09/chingari-stars_1594881458.png'); */
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    padding: 25px 0;
}

.footer h5 {
    color: #fff;
    font-weight: bold;
    margin-bottom: 25px;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: none;
}

.social-icons a {
    margin-right: 15px;
    color: white;
    font-size: 25px;
}

.social-icons a i {
    height: 100%;
    transition: 0.5s;
}

.social-icons a i:hover {
    box-shadow: 0 0 60px #ffa500;
}

.social-icons a:hover {
    color: #ff5722;
}


.social_btns:hover {
    border: 1px solid #ff5722;
    transition: all 0.5s ease;
}

.social_btns {
    border: 1px solid #fff;
    margin-bottom: 5px;
    border-radius: 5px;
}

.list-unstyled i {
    margin-right: 5px;
    margin-bottom: 10px;
}

.list-unstyled li a:hover {
    color: #ff5722;
    padding-left: 10px;
    transition: all 0.5s ease;
}

.contact-items a:hover {
    color: #ff5722;
    transition: all 0.5s ease;
    cursor: pointer;
}

.newsletter input[type="email"] {
    border-radius: 5px;
    padding: 5px;
    width: 100%;
}

.newsletter input[type="submit"] {
    background-color: #ff5722;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .footer-logo {
        margin-bottom: 30px;
    }
}


/* Go to top button css starts */

#gototop-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #fc8019;
    color: white;
    cursor: pointer;
    border-radius: 50%;
  }
  
  #gototop-btn img {
    width: 30px;
    height: 40px;
  }
  
  
  /* Go to top button css ends */