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

.content {
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    margin: 0;
    /* padding: 20px; */
    background-color: transparent;
    color: #333;
    margin-left:57.5px;
    margin-right:10px;
}

  

html{
    background: #161616;
    height: 100%;

}



.hero-section {

    background:transparent;
    background: url('Images/cloud2.jpg') repeat center center;
    

    background-size: cover;
    /* color: #ffffff; */
    color: #000000;
    text-align: center;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35vh;
    padding-top:0px;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    /* margin-left:60px; */
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #0066ff;
    /* color: white; */
    color: white;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #0056e0;
}

.btn-secondary {
    background-color: transparent;
    /* color: white; */
    /* border: 2px solid white; */
    text-decoration: none;
    color: black;
    border: 2px solid black;
}

.btn-secondary:hover {
    background-color: white;
    color: #0066ff;
}


@media (max-width: 768px) {
    .btn {
        padding: 15px 45px;
        font-size: 1.25rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}


.sub-applications {
    /* background: #9bb9c5;  */
    /* background: transparent; */
    background: #161616;
    padding: 50px 20px;
    text-align: center;
    /* background: linear-gradient(rgb(255, 255, 255),rgb(249, 243, 244)); */
    /* background: url(/static/Images/test5.jpg) no-repeat center center; */
}

.sub-applications-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.sub-app-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.sub-app-card:hover {
    transform: translateY(-5px);
}

.sub-app-icon {
    width: 60px; 
}

.sub-app-card h4 {
    margin-bottom: 10px;
    color: #ffffff; 
    font-size:larger;
    margin-top:12px;
}

.sub-app-card p {
    color: #ffffff; 
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    letter-spacing:0.2px;
    /* background:black; */
    /* border:2px solid white; */
}

.sub-app-btn {
    background-color: #0056e0;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.sub-app-btn:hover {
    background-color: #003399;
}

@media (max-width: 768px) {
    .sub-applications-container {
        grid-template-columns: 1fr;
    }
}

.sub-applications-container {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
}




.sub-applications-container {
    display: flex;
    overflow: hidden;
    width: 100%; 
}

.sub-applications {

    padding: 20px 50px;
    padding-left:10px;
}


/*  */
/*  */
.sub-applications {
    overflow: hidden;
    display: flex;
    justify-content: center;
    /* position: relative; */
}

.sub-applications-container {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.sub-app-card {
    min-width: 250px;
    margin: 20px;
    /* background: #2f2929; */
    background:#005fc3;
    /* background:#758bdd; */
    /* background: #a7a7a7; */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    text-align: center;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



/*  */
body {
    /* font-family: Arial, sans-serif; */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.sub-applications {
    display: flex;
    justify-content: center;
    position: relative;
    margin-right: 20.5px;
    padding: 20px 0;
     height: 42vh;
     padding-top:40px;
     
}





.slick-slider{
    display:flex !important;
}



.sub-applications-container{
    display:flex;
    /* align-items:center; */
    justify-content:center;
    gap:5px;
}


.custom-arrow {
    background: #ffffff; 
    color: #000; 
    border: 1px solid #000; 
    border-radius: 50%; 
    width: 40px; 
    height: 40px; 
    opacity: 0.75; 
    transition: all 0.3s; 
    display:flex;
    align-items:center;
}

.custom-arrow:hover {
    background: #000; 
    color: #fff; 
    opacity: 1; 
}


.custom-arrow:before {
    font-family: "FontAwesome";
    content: "\f053"; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px; 
}

.slick-next.custom-arrow:before {
    content: "\f054"; 
}


.custom-arrow.slick-prev {
    margin-top:130px;
    margin-left:30px;
    left: 10px; 
    z-index: 10; 
}

.custom-arrow.slick-next {
    margin-top:130px;
    margin-right:30px;
    right: 10px; 
    z-index: 10; 
}


.sub-app-btn{
    /* background:black; */
    /* border-radius:4px; */
    background: #156fff;
}

/*  */

.content{
    font-family:"Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    /* font-size:14px; */
    font-weight:600;
    color:black;
    /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; */
}

.sub-app-card{
    color:white;
}

.navbar{
    z-index:999;
}
