/* Apply Montserrat font globally to the body */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'ClashDisplay-Medium', Tahoma, Geneva, Verdana, sans-serif;
}

/* Apply Montserrat font to all headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; /* Bold weight for headings */
}

/* Apply Montserrat font to paragraph, links, and text elements */
p, li, span, a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; /* Normal weight for body text */
}
.head1 {
    z-index: 2; 
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease, transform 1s ease;
}

.head1.fade-out {
    opacity:0.4;
    transform: translateY(-60px); /* Optional: adds some upward movement */
}
.bgv{ 
    transform:scale(1)!important;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out!important;
}
.intro{
    z-index: 1;
}
.slogan{
    font-size:20px;
    opacity: 1;
    transform: translateY(0);
    
}
.slogan.fade-in{

    opacity:1;
    transform:scale(1.2)!important; 
    transform: translateY(-10)!important;
    transition: opacity 2s ease, transform 3s ease;/* Optional: adds some upward movement */

}
.bgv.fade-out {
    opacity:0!important;
    transform: translateY(-60px)!important; /* Optional: adds some upward movement */
    transition: opacity 0.5s ease!important;

}
.intro2{
    transition: opacity 0.3s ease-in-out!important;
    z-index:2!important;

}
.navbar-nav {
    gap: 8px; /* Equal spacing between items */
}
.cd1{
    background-color: rgb(236, 236, 236);
    transform-origin: 20%;
    transition: ease-in;
}
.card:hover{
    transform: translateY(-10px);
    transition: ease-in;
    
}

.nav-link {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bolder;
    color: #303030 !important; /* Contrasting color */
    transition: color 0.3s;
}

.nav-link:hover {
    color: #000000 !important;
    background-color: rgba(80, 78, 78, 0.256);
    border-radius: 5px;
}

/* Premium Header Section Styling */
.premium-header {
    background-color: #343a40; /* Dark background for premium header */
    text-align: center;
    color: rgb(225, 225, 225);
    padding: 40px 0; /* Add vertical space for a premium look */
}

.premium-header h2 {
    font-size: 32px; /* Larger font for heading */
    font-weight: bold;
    margin-bottom: 10px;
}

.premium-header p {
    font-size: 18px;
    font-weight: 300; /* Lighter weight for the description */
    margin-top: 0;
}

.mi{
    display:block;
    position: relative;
    top:7%;
    left:33%;
    align-content: center;
    align-items: center;
    height:120px;
}
.vi{
    display:block;
    position: relative;
    left:35%;
    top:7%;
    align-content: center;
    align-items: center;
    height:135px;
}
.va{
    display:block;
    position: relative;
    left:35%;
    top:7%;
    align-content: center;
    align-items: center;
    height:120px;
}
/* Quick Links Section - Styling for normal positioning at the bottom of content */
.quick-links {
    background-color: #343a40;  /* Dark background for quick links section */
}

.quick-links .nav-link {
    font-weight: bold;
    font-size: 14px;
    padding: 10px 15px;
}

.quick-links .nav-link:hover {
    background-color: #ffeb3b;  /* Yellow color for hover effect */
    color: #333;
}

/* Footer Styling */
.footer {
    width: 100%;
    text-align: center;
    background-color: #343a40; /* Dark background for footer */
    color: white;
}

.footer .container-sm {
    max-width: 600px;  /* Optional: further limit the container width */
    margin: 0 auto;    /* Center the footer container */
}

/* Scroll Button */

.scroll-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background-color: #ffc107;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.scroll-to-top:hover {
    background-color: #ffc107;
}

/* Scroll effect */
.scroll-to-top::before {
    content: '↑';
    font-size: 24px;
    line-height: 1;
}