@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

ul {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

body {
    background: #ffffff;
    color: #000;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
}


/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
    background: #fff;
    border-bottom: 1px solid #eee;
    z-index: 1000;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.logo {
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.college-name {
    font-weight: bold;
    text-transform: uppercase;
}

.nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #111;
    font-size: 14px;
}

/* ===== HERO ===== */
.hero {
    padding: 140px 0 80px;
}




.hero-left h2 {
    font-size: 35px;
    line-height: 1.1;
    font-weight: bold;
}

.hero-left span {
    display: block;
    font-size: 22px;
    margin: 15px 0;
    color: #666;
}

.hero-left p {
    margin-top: 20px;
    color: #444;
    line-height: 1.6;
    text-align: justify;
}

/* Right bold text */
.hero-right {
    font-size: 120px;
    font-weight: 900;
    color: #3f3b3b;
    text-align: right;
    line-height: 0.9;
    opacity: 0.1;
    animation: floatText 6s ease-in-out infinite;
}

@keyframes floatText {
    0% {
        transform: translateY(0px);
        opacity: 0.08;
    }

    50% {
        transform: translateY(-20px);
        opacity: 0.15;
    }

    100% {
        transform: translateY(0px);
        opacity: 0.08;
    }
}

/* ===== SECTION TITLE ===== */
.section-title {
    padding: 80px 8% 30px;
    font-size: 32px;
    font-weight: 700;
    position: relative;
}

.section-title:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 4px;
    background: #0b4e74;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

.wrap-sec {
    background-color: #feead3;
}

.comittee .inner {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    padding: 30px;
    background: #e9ecef;
    border-radius: 10px;
    margin-bottom: 20px;
}

.comittee .inner p {
    text-align: justify;
    padding-bottom: 10px;
}

.box-titlem {
    font-size: 21px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 54px;
    font-weight: bold;
}

.box-titlem span {
    font-size: 25px;
    opacity: 0.5;
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid;
    border-radius: 50%;
    padding: 5px;
    color: #000;
}

.btn1 {
    display: inline-block;
    padding: 5px 10px;
    margin: 5px;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
    font-size: 13px;
    font-weight: 500;
}

/* 🔵 BLUE */
.btn-blue {
    background: #0b4e74;
    animation: glowBlue 1.5s infinite;
}

@keyframes glowBlue {
    0% {
        box-shadow: 0 0 0px #0b4e74;
    }

    50% {
        box-shadow: 0 0 15px #1984c1;
    }

    100% {
        box-shadow: 0 0 0px #0b4e74;
    }
}

/* 🟢 GREEN */
.btn-green {
    background: #166534;
    animation: glowGreen 1.5s infinite;
}

@keyframes glowGreen {
    0% {
        box-shadow: 0 0 0px #166534;
    }

    50% {
        box-shadow: 0 0 15px #22c55e;
    }

    100% {
        box-shadow: 0 0 0px #166534;
    }
}

/* 🟠 ORANGE */
.btn-orange {
    background: #9a3412;
    animation: glowOrange 1.5s infinite;
}

@keyframes glowOrange {
    0% {
        box-shadow: 0 0 0px #9a3412;
    }

    50% {
        box-shadow: 0 0 15px #f97316;
    }

    100% {
        box-shadow: 0 0 0px #9a3412;
    }
}

.btn1:hover {
    background: #1984c1;
    color: #fff;
}

.footer {
    padding: 10px 0;
    text-align: center;
    border-top: 3px solid #ddd;
    background: #11242f;
    color: #fff;
}

.form-wrap {
    background-color: #feead3;
}

.form-wrap-title {
    font-size: 25px;
    color: #000;
    font-weight: bold;
    margin-bottom: 10px;
}

.warp-inner {
    padding: 100px 0 30px 0;
    margin: 20px 0;
}

.warp-inner p {
    text-align: justify;
}

.form-box {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
}

.payment-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #198754, #198754);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(11, 78, 116, 0.2);
}

/* Hover */
.payment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(11, 78, 116, 0.4);
    color: #fff;
}



/* TITLE */
.form-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 30px;
    background: #11242f;
    padding: 10px;
    color: #fff;
}

/* INPUT STYLE */
.form-control,
.form-select {
    border-radius: 8px;
    padding: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.form-control:focus,
.form-select:focus {
    border-color: #0b4e74;
    box-shadow: none;
}


/* BUTTON */
.btn-submit {
    background: #0b5ed7;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    margin-top: 20px;
}

.btn-submit:hover {
    background: #0b5ed7;
    color: #fff;
}

.form-label {
    margin-bottom: 10px;
    font-size: 14px;
}
.printapp{
    background-color: #607d8b;
}



@media screen and (max-width:991px){
    .hero {
        padding: 110px 0 0;
    }
    .hero-right{
        text-align: center;
        font-size: 100px;
    }
    .comittee .inner{
        padding: 20px;
    }
    .hero-left h2{
        font-size: 30px;
    }
}