* {
    padding: 0;
    margin: 0;
    font-family:'Times New Roman', Times, serif;
}

body {
    overflow-x: hidden;
}

/* Navigation ar */
.navbar-nav .nav-link:hover {
    color: #DBC6C0 !important; /* Set the text color to white on hover */
}

/* Style for the name in the home section */

.heading {
    font-size: 5rem;
    font-weight: 900;
    margin-top: 120px;
    background-image: linear-gradient(to top, #4D6489 0%,  #1C3150 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    moz-text-fill-color: transparent;
}

/* For background image in the home section */

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 111%;
    background-image: url('images/background.png');
    background-size: cover;
    background-position: center;
    opacity: 0.11;
    animation: fadeEffect 5s infinite alternate;
}

/* About section */

.web-title,
.app-title {
    font-size: 50px;
}

.banner {
    transition: transform 0.3s ease;
}

/* Hovering banners in about section */
.banner:hover {
    transform: scale(1.05);
}


/* For small devices */

@media (max-width: 320px) {

    .container-fluid {
        padding: 20px !important;
    }
    .container-fluid .container .heading {
        font-size: 1rem;
        margin-top: 40px;
    }

    .min-vh-100 {
        min-height: 50vh !important;
    }

    .background-image {
        max-height: 70%;
    }

    /*About section */  
    .card-body .web-title {
        font-size: 20px;
    }
    
    .card-body .app-title {
        font-size: 20px;
    }

    /* Contact section */
    .logo-icon {
        font-size: 10px;
    }

    .container-contact-section .info-text {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    
    .container-fluid {
        padding: 30px !important;
    }

    .container-fluid .container .heading {
        font-size: 2rem;
        margin-top: 50px;
    }

    .min-vh-100 {
        min-height: 50vh !important;
    }

    .background-image {
        max-height: 80%;
    }

    /*About section */  
    .card-body .web-title {
        font-size: 20px;
    }
    
    .card-body .app-title {
        font-size: 20px;
    }

}

/* For medium devices */
@media (max-width: 768px) {
    .container .heading {
        font-size: 80px;
    }

    /* Contact section */
    .logo-icon {
        font-size: 80px;
    }

    .info-text {
        font-size: 20px;
    }
}