
body {
    font-family: 'Inter', sans-serif;
    height: 100vh;
    background: #ffffff;
}
a {
    text-decoration: none;
}
h1{
    font-family: 'Ogg Medium', serif;
    font-size: 65px;
}
/* Main Container */
.container-rlms {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100vh;
}

/* Left Section (Content) - Increased Width */
.left {
    width: 75%; /* Increased width */
    padding: 60px;
    display: flex;
    flex-direction: column;
    
}

.left h1 {
    font-family: "Ogg TRIAL";
    font-size: 65px;
    color: #2c190c;
    margin-bottom: 10px;
}

.left p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    width: 60%;
}

.buttons {
    margin-top: 20px;
}

.buttons button {
    padding: 14px 20px;
    font-size: 16px;
    margin-right: 12px;
    border: none;
    cursor: pointer;
    background: #f89a3d;
    color: #fff;
    transition: 0.3s;
    border-radius: 5px;
}

.button {
    padding: 14px 20px;
    font-size: 16px;
    margin-right: 12px;
    border: none;
    cursor: pointer;
    background: #f89a3d;
    color: #fff;
    transition: 0.3s;
    border-radius: 5px;
}

.buttons button:hover {
    background: #d87d2b;
}

.button:hover {
    background: #d87d2b;
}

/* Right Section (Background Image) - Reduced Width */
.right {
    width: 75%; /* Reduced width */
    height: 140vh;
    background: url('/images/heroimg_c.png') center/cover no-repeat;
    position: relative;
}

/* Dark Overlay on Image */
.overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; 
}

/* Vertical Navigation */
.nav-links {
    position: absolute;
    top: 50%;
    right: 13%;
    transform: translateY(-50%);
    font-size: 30px;
    font-weight: regular;
    color: #2c190c;
}

.nav-links a {
    text-decoration: none;
    color: #2c190c;
    margin: 10px 0;
    display: block;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f89a3d;
}

/* Email in Bottom Right */
.email {
    position: absolute;
    right: 5px;
    bottom: 30px;
    font-size: 12px;
    transform: rotate(90deg);
    color: #2c190c;
}

/* ========================
   Responsive Adjustments
   ======================== */
@media (max-width: 3000px) {
    .left {
        width: 80%;
        padding: 50px;
    }

    .right {
        width: 80%;
    }
    .nav-links {
        position: absolute;
        top: 50%;
        right: 7%;
        transform: translateY(-50%);
        font-size: 30px;
        font-weight: regular;
        color: #2c190c;
    }
    .navbar{
        display: none;
    }
}
@media (max-width: 1200px) {
    .nav-links {
        top: 90%;
        display: flex;
        justify-content: center;
        padding: 15px 0;
        text-align: center;
        width: 100%;
    }

    .nav-links a {
        color: white;
        text-decoration: none;
        margin: 0 10px;
        font-size: 14px;
        transition: color 0.3s;
    }

    .nav-links a:hover {
        color: #f89a3d;
    }
}

@media (max-width: 1024px) {
    .left {
        width: 58%;
        padding: 40px;
    }

    .right {
        width: 92%;
    }
}

@media (max-width: 768px) {
    .container-rlms {
        flex-direction: column;
        height: auto;
    }

    .left {
        text-align: start;
        padding: 10px;
        padding-top: 0px;
        display: flex;
        width: 100vw;
        height: auto;
        flex-direction: column;
        align-items: start;
    }

    .left h1 {
        font-size: 15px;
        font-family: 'Ogg Medium', serif;
    }

    .left p {
        width: 70%;
        font-size: 5px;
    }

    .buttons button {
        width: 100%;
        margin-bottom: 10px;
    }

    .right {
        height: auto;
        background-position: center;
    }
/* Move nav-links to bottom */
.nav-links {
    position: absolute;
    top: 87%; /* Place it at the bottom */
    width: 100%; /* Make it full-width */
    text-align: end; /* Center align links */
    font-size: 20px;
    font-weight: bold;
    color: #2c190c;
    display: flex;
    flex-direction: column; /* Stack links vertically */
}


    .nav-links a {
        color: #2c190c;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s;
    }

    .nav-links a:hover {
        color: #f89a3d;
    }
    .navbar{
        display: block;
        width: 90vw;

    }
    .navbarin{
        display: none;
    }
    .para{
        display: none;
    }
    .buttons{
        width: 70%;
        display: flex;
    }
}
@media (max-width: 380px) {
    .nav-links {
    margin-top:50px;
    position: absolute;
    bottom:  0%; /* Place it at the bottom */
    width: 100%; /* Make it full-width */
    text-align: end; /* Center align links */
    font-size: 10px;
    font-weight: bold;
    color: #2c190c;
    display: flex;
    flex-direction: column; /* Stack links vertically */
}
}

/* Extra Small Screens */
@media (max-width: 480px) {
    .nav-links {
    position: absolute;
    margin-top:60px;
    bottom:  0%; /* Place it at the bottom */
    width: 100%; /* Make it full-width */
    text-align: end; /* Center align links */
    font-size: 200px;
    font-weight: bold;
    color: #2c190c;
    display: flex;
    flex-direction: column; /* Stack links vertically */
}
    .buttons button {
        width:90%;
    padding: 5px 10px;
    font-size: 8px;
    margin-right: 12px;
    border: none;
    cursor: pointer;
    background: #f89a3d;
    color: #fff;
    transition: 0.3s;
    border-radius: 5px;
}
    .creationsection {
    width: 100%; /* Full viewport width */
    height: auto; /* Full viewport height */
    background-image: url('/images/creationsbg.png');
    background-size: cover; /* Ensure the image covers the entire area */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Prevent repeating */
    background-color: black;
}
   .overlay-text-course h3{
        font-size: 12px;
        width: 100px;
    }
    .overlay-text-course p{
        font-size: 8px;
        width: 100px;
    }
    .button {
        padding: 14px 20px;
        font-size: 10px;
        margin-right: 12px;
        border: none;
        cursor: pointer;
        background: #f89a3d;
        color: #fff;
        border-radius: 5px;
        width: 100%;
    }
    .left h1 {
        font-size: 30px;
        font-family: 'Ogg Medium', serif;
    }

    .left p {
        font-size: 10px;
    }

    .buttons button {
        font-size: 10px;
        padding: 10px 15px;
    }

    .right {
        height: 60vh;
    }
    .ansection {
        display: flex;
        justify-content: center;
        align-items: center;
        height:     500vh;
        width: 100vw;
    }
    .carousel-container {
        position: relative;
        width: 5%;
        height: 5%;
        overflow: hidden;
    }
    .carousel-image {
        position: absolute;
        width: 5%;
        height: 5%;
        object-fit: cover;
        opacity: 1;
        transition: opacity 1s linear;
    }
    .carousel-image.active {
        opacity: 1;
    }
    
}


.ansection {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 130vh;
}
.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.carousel-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s linear;
}
.carousel-image.active {
    opacity: 1;
}

.faculty-container {
    width: 100%;
    overflow-x: auto; /* Enables horizontal scrolling */
    white-space: nowrap; /* Prevents elements from wrapping */
    padding: 20px 0;
}

.faculty-row {
    display: flex;
    gap: 20px; /* Space between faculty cards */
}

.faculty-card {
    flex: 0 0 50%; /* Fixed width for each faculty */
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    white-space: normal; /* Allows text to wrap properly */
}

.faculty-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.faculty-card p {
    width: 100%;
    text-align: justify; /* Makes paragraph text readable */
    margin: 10px 0;
}

/* Ensure the container adjusts with content */
.position-relative-cd {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 60%;
}

/* Ensure image expands when content grows */
.position-relative-cd img {
    width: 100%;
    height: auto;
    display: block;
}

/* Keep overlay inside the image */
.overlay-text-course {
    position: absolute;
    top: 10%; /* Align to top */
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    padding: 20px;
    text-align: center;
}

/* Make sure the image height increases if content grows */
.overlay-text-course h3, 
.overlay-text-course p {
    margin: 10px 0;
    word-wrap: break-word;
}

/* Prevent the overlay from exceeding the image */
.position-relative-cd {
    min-height: 200px; /* Minimum height to avoid overlapping */
    overflow: hidden; /* Prevents content from escaping */
}


.coursebg{
    background: linear-gradient(to right, #060407 0%, #1E0F0A 68%, #634835 97%);
}


.lpcontainer {
    width: 500px;
    height: 300px;
    background-color: #DD8E39; /* Match your background */
    position: relative;
    padding: 20px;
}

/* Creating circular cutouts at the corners */
.lpcontainer::before,
.lpcontainer::after {
    content: "";
    position: absolute;
    width: 40px; /* Adjust for size */
    height: 40px;
    background-color: #1a0a04; /* Match outer background */
    border-radius: 50%;
}

.lpcontainer::before {
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
}

.lpcontainer::after {
    bottom: 0;
    right: 0;
    transform: translate(50%, 50%);
}
.signuploginsection{
    background-color: #0C0C0C;
    height: 130vh;
    width: 100vw;
}

.overlay-text-login {
    position: absolute;
    top: 40%;
    left: 40%;
    transform: translate(-50%, -50%);    
    padding: 20px;
    width: 50%; /* Adjust as needed */   
}
.formd{
    margin-top: 20%;
}

@media (max-width: 992px) {
    .overlay-text-login {
        top: 50%;
        width: 70%;
    }
}

@media (max-width: 768px) {
    .overlay-text-login {
        top: 55%;
        width: 80%;
    }

    .d-flex.flex-row {
        flex-direction: column !important;
    }

    .overlay-text-login input {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .overlay-text-login {
        top: 50%;
        left: 50%;
        width: 90%;
    }

    .overlay-text-login h1 {
        font-size: 18px;
    }

    .overlay-text-login button {
        font-size: 14px;
        padding: 8px;
    }
    .overlay-text-login .d-flex.text-start {
        margin-bottom: 10px; /* Reduce bottom margin */
    }
    
    .overlay-text-login form {
        margin-top: 0; /* Remove extra top margin */
        padding-top: 10px; /* Adjust padding if needed */
    }
    .formd{
        margin-top: 0px;
    }
    .imaged{
        width: 95vw;
    }
    .logo{
        width: 20%;
        height: 20%;
    }
    .imagebg{
        width: 95vw;
        height: 95vh;
    }
}



.text-container {
    position: relative;
}

.overlay-text {
    position: absolute;
    top: 20%;
    left: 19%;
    transform: translate(-50%, -50%);    
    padding: 20px;
    width: 40%; /* Adjust width as needed */
    
}

@media (max-width: 768px) {
    .overlay-text {
        width: 90%;
        top: 30%; /* Adjust position for smaller screens */
    }
}



.creationsection {
    width: 100%; /* Full viewport width */
    height: 120vh; /* Full viewport height */
    background-image: url('/images/creationsbg.png');
    background-size: cover; /* Ensure the image covers the entire area */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Prevent repeating */
}

 .eventtable {
            width: 100%;
            border-collapse: collapse;
        }
 .tablebox  {
            border: 15px solid #ffffff;
            padding: 10px;
            text-align: end;
            font-size: 20px;
            width: 150px;
            height: 150px;
            background-color: #CFC4C0;
        }
         .tablebox {
            background-color: #CFC4C0;
        }
        .event {
            background-color: #F79E2F;
            padding: 5px;
            border-radius: 5px;
            text-decoration: none;
        }
        .nav-buttons {
            margin: 10px 0;
        }
        
        .extra-small-image, .small-image {
        width: 80%; /* Adjust the size as needed */
        height: 30%; /* Keep it square */
        cursor: pointer;
    }