﻿:root {
    --primary-color:#003399;
    --secondry-color:#019934;

    --success-color:#198754;
}

body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
/*input,
select,
textarea {
    max-width: 280px;
}*/

/* login-register page css*/

.login-main {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    /*background: url('../assets/images/login-bg.jpg') no-repeat fixed top right;
    background-size: auto auto;*/
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
    align-items: top;
    justify-content: flex-end;
    overflow: auto;
}

.login-box {
    position: relative;
    z-index: 2;
    width: 600px;
    margin-right: 10%;
    float: right;
    margin-top:50px;
}

.login-box-inr {
    background: #fff;
    width: 100%;
    float: left;
    text-align: center;
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.1);
    padding:0 20px;
}

.form, .form-group, .inpt {
    width: 100%;
    float: left;
    position: relative;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
    width: 100%;
    float: left;
}

    .form-group label {
        position: absolute;
        top: -10px;
        left: 5px;
        font-size: 12px;
        padding: 2px 7px;
        background: #fff;
        z-index: 2;
        color: #424951;
        font-weight:normal;
        font-family:"montserrat";
    }

input, select, textarea {
    font-family: "montserrat-light";
    font-size: 13px;
    outline: none;
    float: left;
    width: 100%;
    padding-left: 5px;
    border: #ccc solid thin;
    border-radius: 3px;
}

    input[type="text"], select {
        height: 35px;
        line-height: 32px;
    }

.inpt input, .inpt select {
    width: 100%;
    float: left;
}

.inpt input {
    padding: 5px 10px;
    line-height: 30px;
    height: auto;
}

.logo {
    width: 160px;
    float: left;
    padding: 7px 0;
}

.login-box .logo {
    float: left;
    display: block;
    margin: 15px 0 0;
    text-align: center;
    width: 100%;
}

.tab-design {
    width: 100%;
    float: left;
    border: none !important;
    margin:10px 0; 
}

.tab-content {
    width: 100%;
    float: left;
    border: none;
}


.nav-tabs {
    width: 100%;
    float: left;
    text-align: center;
    margin: 15px 0;
    border: none;
}


    .nav-tabs li {
        display: inline-block;
        float: none;
    }

    .nav-tabs > li > a {
        display: block;
        padding: 5px 15px;
        border: #ccc solid thin !important;
        color: #666 !important;
        border-radius: 30px !important;
        cursor: pointer;
        transition: all 0.4s ease;
        text-transform: uppercase;
        font-family: "montserrat-light";
        outline: none;
    }

        .nav-tabs > li > a:hover {
            color: var(--primary-color) !important;
            border-color: var(--primary-color) !important;
            background: none !important;
        }

    .nav-tabs > li.active > a {
        background: var(--secondry-color) !important;
        color: #fff !important;
        border-color: var(--secondry-color) !important;
        font-family: "montserrat-med";
    }

.btn {
    width: auto;
    padding: 5px 15px;
    background: none;
    border: none;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 16px;
    font-family: "montserrat";
    border-radius: 30px;
    display: inline-block;
    transition: all 0.4s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    border: var(--primary-color) solid thin;
}

    .btn-primary:hover {
        background: var(--secondry-color);
        border: var(--secondry-color) solid thin;
    }

.btn-primary-outline {
    border:var(--primary-color) solid thin;
    color:var(--primary-color);
}
    .btn-primary-outline:hover {
        background:var(--primary-color);
        color:#fff;
    }

.btn-small {
    padding:4px 10px !important;
    line-height:normal !important;
    font-size:12px;
    margin-top:5px;
}


.login-box-inr .btn {
    width: 100%;
}

.form-group input[type="text"], .form-group input[type="password"], .form-group input[type="email"], .form-group input[type="tel"], .form-group select {
    width: 100%;
    float: left;
}

select {
    height: 42px;
}

.form-control {
    height:42px;
}

.form-group .validation {
    text-align:left;
    color:#db1616;
    display:block;
}

.university-dtl {
    position:absolute;
    top:100px;
    left:50px;
    text-align:center;
    width:40%;
}

    .university-dtl img {
        max-width:90%;
    }

.university-dtl h3 {
    font-family:"Poppins";
    font-weight:800;
    font-size:40px;
    text-transform:uppercase;
    margin-top:30px;
    color:var(--primary-color);
}
    .university-dtl h3 span {
        display:block;
        font-weight:700;
        color:var(--secondry-color);
    }


@media only screen and (max-width:1366px) {
    .login-box {
        margin-right:3%;
    }
}
@media only screen and (max-width:1280px) {
    .login-main {
        background-position: top left;
    }
    .login-box {
        width:45%;
    }
}
@media only screen and (max-width:1100px) {
    .login-box {
        width: 40%;
    }
    .university-dtl h3 {
        font-size:35px;
    }
}

@media only screen and (max-width:991px) {
    body {
        background: url('../assets/images/login-bg.jpg') no-repeat fixed top right;
        background-size:cover;
    }
    .login-main {
        background: none;
        padding:20px 0 ;
        position:relative;
        height:auto;
    }

    .login-box {
        width:600px;
        max-width:95%;
        float:none;
        margin:0 auto ;
    }

    .university-dtl {
        position:relative;
        width:100%;
        top:0;
        left:0;
    }
    .login-box-inr .logo{
        display:none;
    }

    body {
        padding-top:20px;
    }

    .university-dtl img {
        width:300px;
    }
    .university-dtl h3 {
        margin:25px 0;
        font-size:25px;
    }
}

@media only screen and (max-width:600px) {
    .login-main {
        padding:10px 0;
    }
}


/*loading animation start*/

.cust-loading, .alert-popup {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-ellipsis div.circle {
        position: absolute;
        top: 33px;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: var(--secondry-color);
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }

        .lds-ellipsis div.circle:nth-child(1) {
            left: 8px;
            animation: lds-ellipsis1 0.6s infinite;
        }

        .lds-ellipsis div.circle:nth-child(2) {
            left: 8px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div.circle:nth-child(3) {
            left: 32px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div.circle:nth-child(4) {
            left: 56px;
            animation: lds-ellipsis3 0.6s infinite;
        }

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}
/*loading animation end*/


.hide-show-number {
    position: relative;
}

.inpt-text-hide-show {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 25px;
    height: 25px;
    font-size: 20px;
    line-height: normal;
    text-align: center;
    color:#666;
}

.login-box-inr .logo img {
        width:200px;
}

.btn-secondary-outline {
  color: #424951;
  border: #424951 solid thin;
  border-radius: 30px;
  font-size: 14px;
  margin: 0 5px;
  margin-bottom: 7px;
}

.btn-secondary-outline:hover {
  background: #424951;
  color: #fff;
}

.login-box .btn-secondary-outline {
  padding: 0 5px;
  margin: 4px 0;
  width: auto;
  font-size: 11px;
  height: auto;
}

    .login-box .btn-secondary-outline:not(:last-child) {
        margin-right:5px;
    }


    /* General Body Styles */
    body {
        font-family: Arial, sans-serif; /* Changed from Inter, as external font link is removed */
        background-color: #f7f7f7; /* Light grey background */
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* Custom Color Definitions */
    .text-maroon-900 { color: #800000; /* Dark maroon from logo */ }
    .bg-maroon-900 { background-color: #800000; /* Dark maroon from logo */ }
    .border-maroon-900 { border-color: #800000; /* Dark maroon from logo */ }
    .text-gold-500 { color: #D4AF37; /* Gold from logo */ }
    .bg-gold-500 { background-color: #D4AF37; /* Gold from logo */ }

    /* Main Container */
    #srisri-university-landing-page {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 2.5rem 1rem; /* Equivalent to py-10 px-4 */
    }

    /* Header Section Styles (converted from Tailwind) */
    .header-section {
        width: 100%;
        max-width: 80rem; /* max-w-7xl (1280px) */
        display: flex;
        flex-direction: column; /* Default: column for mobile */
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem 1rem; /* py-6 px-4 */
        background-color: #FFFFFF;
        border-radius: 0.75rem; /* rounded-xl */
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
        margin-bottom: 2.5rem; /* mb-10 */
    }
    .header-logo-container {
        display: flex;
        align-items: center;
        gap: 1rem; /* space-x-4 */
        margin-bottom: 1rem; /* mb-4 */
    }
    .header-logo-img {
        height: 6rem; /* h-24 */
        width: 6rem; /* w-24 */
        border-radius: 50%; /* rounded-full */
        object-fit: cover;
    }
    .header-title {
        font-size: 2.25rem; /* text-3xl */
        font-weight: 800; /* font-extrabold */
        color: #800000; /* text-maroon-900 */
        line-height: 1.25; /* leading-tight */
    }
    .header-subtitle {
        font-size: 1.125rem; /* text-lg */
        font-weight: 500; /* font-medium */
        color: #4B5563; /* text-gray-700 */
        margin-top: 0.25rem; /* mt-1 */
    }

    /* Hero Section Styles (converted from Tailwind) */
    .hero-section {
        width: 100%;
        max-width: 80rem; /* max-w-7xl */
        text-align: center;
        margin-bottom: 3rem; /* mb-12 */
    }
    .hero-title {
        font-size: 3rem; /* text-4xl */
        font-weight: 700; /* font-bold */
        color: #800000; /* text-maroon-900 */
        margin-bottom: 1.5rem; /* mb-6 */
        line-height: 1.25; /* leading-tight */
    }
    .hero-description {
        font-size: 1.25rem; /* text-xl */
        color: #4B5563; /* text-gray-700 */
        line-height: 1.625; /* leading-relaxed */
        max-width: 42rem; /* max-w-3xl */
        margin-left: auto;
        margin-right: auto; /* mx-auto */
    }

    /* Features Section with Cards Styles (converted from Tailwind) */
    .features-section {
        width: 100%;
        max-width: 80rem; /* max-w-7xl */
        display: grid;
        grid-template-columns: 1fr; /* Default: 1 column for mobile */
        gap: 2rem; /* gap-8 */
        margin-bottom: 3rem; /* mb-12 */
    }
    .feature-card {
        background-color: #FFFFFF;
        border-radius: 0.75rem; /* rounded-xl */
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
        padding: 2rem; /* p-8 */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }
    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    .feature-icon {
        color: #800000; /* text-maroon-900 */
        font-size: 3.125rem; /* text-5xl */
        margin-bottom: 1rem; /* mb-4 */
    }
    .feature-title {
        font-size: 1.875rem; /* text-3xl */
        font-weight: 700; /* font-bold */
        color: #800000; /* text-maroon-900 */
        margin-bottom: 0.5rem; /* mb-2 */
    }
    .feature-description {
        color: #4B5563; /* text-gray-700 */
        font-size: 1.125rem; /* text-lg */
    }
    .feature-tag {
        margin-top: 1rem; /* mt-4 */
        padding: 0.5rem 1rem; /* px-4 py-2 */
        background-color: #D4AF37; /* bg-gold-500 */
        color: #FFFFFF;
        border-radius: 9999px; /* rounded-full */
        font-size: 0.875rem; /* text-sm */
        font-weight: 600; /* font-semibold */
    }

    /* Contact Section Styles (converted from Tailwind) */
    .contact-section {
        width: 100%;
        max-width: 80rem; /* max-w-7xl */
        background-color: #800000; /* bg-maroon-900 */
        color: #FFFFFF;
        border-radius: 0.75rem; /* rounded-xl */
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
        padding: 2rem; /* p-8 */
        display: flex;
        flex-direction: column; /* Default: column for mobile */
        align-items: center;
        justify-content: space-between;
        margin-bottom: 2.5rem; /* mb-10 */
    }
    .contact-info {
        margin-bottom: 1.5rem; /* mb-6 */
    }
    .contact-title {
        font-size: 1.875rem; /* text-3xl */
        font-weight: 700; /* font-bold */
        margin-bottom: 1rem; /* mb-4 */
    }
    .contact-item {
        font-size: 1.125rem; /* text-lg */
        margin-bottom: 0.5rem; /* mb-2 */
        display: flex;
        align-items: center;
    }
    .contact-item .icon { /* For emojis */
        color: #D4AF37; /* text-gold-500 */
        margin-right: 0.5rem; /* mr-2 */
        font-size: 1.25em; /* Adjust emoji size */
    }
    .contact-item a {
        color: #FFFFFF;
        text-decoration: none;
    }
    .contact-item a:hover {
        text-decoration: underline;
    }
    .social-media-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .social-media-title {
        font-size: 1.5rem; /* text-2xl */
        font-weight: 700; /* font-bold */
        margin-bottom: 1rem; /* mb-4 */
    }
    .social-icons {
        display: flex;
        gap: 1.5rem; /* space-x-6 */
        font-size: 1.875rem; /* text-3xl */
    }
    .social-icon-link { /* Renamed to avoid conflict with existing class in previous iteration */
        color: #FFFFFF;
        transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
        text-decoration: none;
    }
    .social-icon-link:hover {
        transform: translateY(-3px) scale(1.1);
        color: #D4AF37; /* Gold on hover */
    }

    /* Footer Styles */
    .footer-section {
        width: 100%;
        max-width: 80rem; /* max-w-7xl */
        text-align: center;
        color: #4B5563; /* text-gray-600 */
        font-size: 0.875rem; /* text-sm */
        padding-top: 1rem;
        padding-bottom: 1rem; /* py-4 */
    }

    /* Primary Button Styles */
    .btn-primary {
        background-color: #D4AF37;
        color: #FFFFFF;
        padding: 0.75rem 1.5rem;
        border-radius: 9999px;
        font-weight: 600;
        transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
        text-decoration: none; /* Ensure it looks like a button not a link */
        display: inline-block; /* Allows padding and transitions */
        white-space: nowrap; /* Prevent text wrapping */
    }
    .btn-primary:hover {
        background-color: #B8860B; /* Darker gold */
        transform: translateY(-2px);
    }

    /* Responsive Media Queries (converted from Tailwind breakpoints) */
    /* Small screens (sm): >= 640px */
    @media (min-width: 640px) {
        #srisri-university-landing-page {
            padding-left: 1.5rem; /* sm:px-6 */
            padding-right: 1.5rem; /* sm:px-6 */
        }
        .header-title {
            font-size: 2.25rem; /* sm:text-4xl */
        }
        .header-subtitle {
            font-size: 1.25rem; /* sm:text-xl */
        }
        .hero-title {
            font-size: 3.75rem; /* sm:text-5xl */
        }
    }

    /* Medium screens (md): >= 768px */
    @media (min-width: 768px) {
        .header-section {
            flex-direction: row; /* md:flex-row */
        }
        .header-logo-container {
            margin-bottom: 0; /* md:mb-0 */
        }
        .btn-primary {
            margin-top: 0; /* md:mt-0 */
        }
        .features-section {
            grid-template-columns: 1fr 1fr; /* md:grid-cols-2 */
        }
        .contact-section {
            flex-direction: row; /* md:flex-row */
        }
        .contact-info {
            margin-bottom: 0; /* md:mb-0 */
            width: 50%; /* md:w-1/2 */
        }
        .social-media-container {
            align-items: flex-end; /* md:items-end */
            width: 50%; /* md:w-1/2 */
        }
    }

    /* Large screens (lg): >= 1024px */
    @media (min-width: 1024px) {
        #srisri-university-landing-page {
            padding-left: 2rem; /* lg:px-8 */
            padding-right: 2rem; /* lg:px-8 */
        }
        .hero-title {
            font-size: 4.5rem; /* lg:text-6xl */
        }
        .features-section {
            grid-template-columns: 1fr 1fr 1fr; /* lg:grid-cols-3 */
        }
    }

