body {
font-family: Arial, Helvetica, sans-serif;
margin: 0%;
box-sizing: border-box;
height: 100%;
padding: 0;
display: flex;
flex-direction: column;
}


header {
    width: 100%;
    height: 9vh;
    /*  position: absolute; it is required else the position of nav bar shift little downward*/
}
 header nav {
    width: 100%;
    height: 10%;
    position: fixed;
    z-index: 1;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: large;
    background: linear-gradient(10deg, #22003c, #007bff);
    top: 0;
    
   
}
/* logo */
.logoarea{
    display: flex;
    align-items: center;
}
.logo {
    width: 90px;
    height: auto;
    padding-left: 50px;
  
  }

header nav h3 {
    font-style: auto;
    color: white;
    background-color: #22003c;
    padding: 10px  20px;
    
    border-radius: 10px;
}

header nav ul {
    display: flex;
    list-style: none;
}
header nav ul li {
    padding: 25px;
    
}
header nav .pagebar  li a {
    color: #f0faff;
    text-decoration: none;
}

header .pagebar li a:hover {
    /* color: #5fbaec; */
    color: #007bff;
    text-decoration: none;
}
.user_name {
    color: black;
    text-align: center;

}
header nav ul .login {
    color: #007bff;
    background-color: #22003c;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    position: relative;
   /* border: 2px solid #FC5C7D; */
}

header nav ul .login:hover {
    background-color: #f0faff;
    color: #22003c;
    
}

header .contain {
    width: 100%;
    height: 90%;

}
main {
    flex: 1;
    padding-bottom: 20px; /* This makes sure the content area takes up the remaining space */
}


/* Carousel Container */
.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: auto;
    filter: brightness(50%); /* Darkens the image */
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 80%;
    opacity: 1;
    transition: opacity 1s ease-in-out;
    z-index: 10; /* Ensures text is above the image */
}
.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
}
.hero-content p {
    font-size: 1.2rem;
}
.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    font-size: 1.1rem;
    text-decoration: none;
}


/* Navigation Arrows */
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

/* Carousel Indicators (Dots) */
.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.indicator {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: rgba(255, 255, 255, 0.9);
}

/* .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 80%;
    opacity: 1;
    transition: opacity 1s ease-in-out;
    z-index: 10; /* Ensures text is above the image */
    

    .services {
        text-align: center;
        padding: 50px 0;
    }
    
    .subtitle {
        font-style: italic;
        color: #555;
        max-width: 70%;
        margin: 0 auto 30px;
    }
    
    .services-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        justify-content: center;
        padding: 0 10%;
    }
    
    .service-box {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        transition: background 0.3s ease-in-out, transform 0.2s;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        cursor: pointer;
    }
    
    .service-box img {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    
    .service-box h3 {
        font-size: 18px;
        margin: 10px 0 0;
    }
    
    .service-box:hover {
        background: #039aff;
        color: white;
        transform: translateY(-5px);
    }
    
















main .contain .img {
    width: 100%;
    height: 100vh;
    background-image: url('../images/img1.jpg');
    background-size: cover;
    align-items: center;
    padding-top: 60px;
      
    
   
    
}
 .contain .img .txt {
    width: 80%;
    height: 100%;
    margin: auto;
    position: relative;
    top: 20%;
    align-items: center;
    text-transform: capitalize;
    text-shadow: 2px 2px 4px rgb(255, 255, 255);
    color: #000000;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 2px;
    font-size: 30px;   
  
}

main .contain .img .txt h3 {
    position: relative;
   
}
.contain_about {
    padding-top: 0px;
}

.contain_contact {
    padding-top: 60px;
}

/* Notification DIv */

/* Notification Box */
.notification-box {
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 1200px;
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
    border-left: 5px solid #007bff;
    animation: fadeIn 0.5s ease-in-out;
}

/* Header */
.notification-header {
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.notification-header h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

/* Clear All Button */
.clear-all {
    background: #ff4d4d;
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 12px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.clear-all:hover {
    background: #cc0000;
}

/* Notification List */
.notification-box ul {
    list-style: none;
    padding: 0;
}

.notification-box li {
    background: #f1f1f1;
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Hover Effect */
.notification-box li:hover {
    background: #a7aaaa;
    transform: scale(1.02);
}

/* Notification Icons */
.notif-icon {
    font-size: 18px;
    margin-right: 10px;
}

/* Dismiss Button */
.dismiss-btn {
    background: transparent;
    border: none;
    color: #ff4d4d;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.dismiss-btn:hover {
    color: #cc0000;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}







/* Basic footer styles */
footer {
    background: linear-gradient(10deg, #22003c, #49a1ff);
    color: white;           
    text-align: center;
    position: relative;
    bottom: 0; /* so that footer is placed at bottom*/
    width: 100%;
}

footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

footer .footer-content p {
    margin: 0;
    padding: 10px 0;
    font-size: 16px;
}

/* Footer social media icons */
footer .socials {
    list-style-type: none;
    padding: 0;
    margin: 15px 0;
    display: flex;
    justify-content: center;
}

footer .socials li {
    margin: 0 10px;
}

footer .socials li a {
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

footer .socials li a:hover {
    color: #ff6347; /* Change icon color on hover (tomato color) */
}

/* Footer bottom text */
footer .footer-bottom {
    margin-top: 20px;
}

footer .footer-bottom p {
    font-size: 14px;
    margin: 0;
}

footer .footer-bottom a {
    color: #ff6347; /* Highlight the link */
    text-decoration: none;
    transition: color 0.3s;
}

footer .footer-bottom a:hover {
    color: #ffffff; /* Change link color on hover */
}



/* This is to edit registration page*/
.form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
}




