* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    overflow-x: hidden;
    background-color: #f3f4f6 !important;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.1)
    );
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
    padding-bottom: 10px;
}

.navbar .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.2);
    transition: 0.3s ease;
}

.navbar .nav-link:hover {
    color: #ff0033 !important;
    text-shadow: 0 0 12px #ff0033;
}

.navbar-brand img {
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.3));
}

/* Banner Section */
.banner {
    position: relative;
    height: 700px;
    overflow: hidden;
}
.banner svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    height: 100%;
    background-image: url("../storage/img/bg2.jpg");
    background-size: cover;
    background-position: center;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 35%;
    transform: translate(-50%, -50%);
    /* text-align: center; */
    z-index: 2;
    /* max-width: 900px; */
    padding: 20px;
}

.banner-content h1 {
    font-size: 3rem;
    font-weight: bold;
    float: left;
    color: white;
    text-transform: uppercase;
}

.banner-content .btn {
    margin-top: 20px;
    font-size: 1.1rem;
    padding: 10px 30px;
    background-color: #ff0033;
    border: none;
    border-radius: 30px;
}

.banner-content .dates {
    margin-top: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

/* Wave Animation */
.wave-divider {
    position: relative;
    width: 100%;
    line-height: 0;
    margin-top: -1px;
    z-index: 2;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 120px;
}

@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 1.8rem;
    }

    .banner-content .btn {
        font-size: 1rem;
        padding: 8px 20px;
    }

    .banner-content .dates {
        font-size: 1rem;
    }
}

.btn-register {
    position: relative;
    background: linear-gradient(135deg, #ff0033, #240b36);
    color: #fff !important;
    border-radius: 50px !important;
    font-weight: 600;
    padding: 10px 40px !important;
    transition: 0.3s ease;
    border: none;
    z-index: 1;
    overflow: hidden;
}

.btn-register::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 30px;
    background: conic-gradient(from 0deg, #ff0033, #240b36, #ff0033);
    animation: spinBorder 3s linear infinite;
    z-index: -1;
}

.btn-register:hover {
    box-shadow: 0 0 15px rgba(195, 20, 50, 0.6);
}

@keyframes spinBorder {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#starfall {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

.star {
    position: absolute;
    top: -10px;
    width: 2px;
    height: 12px;
    background: white;
    opacity: 0.8;
    animation: fall linear;
    animation-duration: 2s;
    box-shadow: 0 0 6px white;
}
@keyframes fall {
    to {
        transform: translateY(100px);
        opacity: 0;
    }
}
.home-section {
    position: relative;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Poppins", sans-serif;
    color: #0d47a1;
    overflow: hidden;
}
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.home-section {
    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
}
.home-section::before,
.home-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite alternate;
}
.home-section::before {
    width: 200px;
    height: 200px;
    background: #03313b;
    top: -60px;
    left: -80px;
}

.home-section::after {
    width: 220px;
    height: 220px;
    background: #04bfe8;
    bottom: -70px;
    right: -90px;
}

@keyframes float {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(25px);
    }
}

/* ====== CONTENT STYLES ====== */
.home-content {
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.home-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #000;
    letter-spacing: 1.5px;
    margin-bottom: 0.8rem;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.home-content h3 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 0.6rem;
    font-weight: 600;
    opacity: 0;
    animation: slideIn 0.8s ease 0.4s forwards;
}

.home-content h2 {
    font-size: 1.6rem;
    color: #000;
    margin-bottom: 1.8rem;
    font-weight: 700;
    opacity: 0;
    animation: riseIn 0.8s ease 0.8s forwards;
}

/* ====== BUTTON ====== */
.btn {
    display: inline-block;
    background: #8b0000;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
    opacity: 0;
    animation: popIn 0.8s ease 1.2s forwards;
}

.btn:hover {
    background: #b71c1c;
    transform: scale(1.05);
}

/* ====== LINK ====== */
.download-link {
    color: #0d47a1;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0;
    animation: fadeIn 0.8s ease 1.6s forwards;
}

.download-link:hover {
    text-decoration: underline;
}

/* ====== ANIMATIONS ====== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    .home-content h1 {
        font-size: 2.2rem;
    }
    .home-content h2 {
        font-size: 1.3rem;
    }
    .home-content h3 {
        font-size: 1rem;
    }
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

.gradient-line {
    width: 120px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(to right, #8b0000, #240b36);
    animation: pulseLine 3s ease-in-out infinite;
}

@keyframes pulseLine {
    0% {
        transform: scaleX(1);
        opacity: 0.6;
    }
    50% {
        transform: scaleX(1.3);
        opacity: 1;
    }
    100% {
        transform: scaleX(1);
        opacity: 0.6;
    }
}

/* about code here */
.chair-welcome-section {
    z-index: 9999;
}
.placement-section {
    background: #03313b;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.placement-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #b8c7e6 2px, transparent 2px),
        linear-gradient(#d9e3f7 1px, transparent 1px),
        linear-gradient(90deg, #d9e3f7 1px, transparent 1px);
    background-size: 50px 50px, 50px 50px, 50px 50px;
    opacity: 0.45;
    z-index: 0;
}
.custom-card {
    position: relative;
    z-index: 2;
}
.placement-section p {
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.2px;
}
.chiarmam-img {
    z-index: 9999;
}
.chiarmam-img img{
    border: 3px solid #fff;
}

.gradient-line1 {
    width: 120px;
    height: 4px;
    border-radius: 2px;
    position: absolute;
    z-index: 9999;
    background: linear-gradient(to right, #8b0000, #240b36);
}
.chair-welcome-section {
    z-index: 9999;
}
.welcome-box {
    z-index: 9999;
}

.welcome-box p {
    font-size: 15px;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    font-family: sans-serif;
    text-align: justify;
    padding-right: 20px;
}

.text-gradient {
    background: linear-gradient(to right, #8b0000, #240b36);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 1.2rem;
}

/* about code end here */

/* card section */

.cardbox {
    position: relative;
    padding: 5px;
    border-radius: 0px;
    background: #fff;
    overflow: hidden;
    height: 423px;
}

.cardbox::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 205%;
    background-color: #fff;
    /* background: conic-gradient(from 0deg, #240b36, #8b0000, #240b36); */
    animation: rotateBorder 4s linear infinite;
    z-index: 0;
}

.card-content {
    position: relative;
    z-index: 1;
    height: 413px;
    background-color: #fff;
    border-radius: 15px;
    padding: 5px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.card-content .org-desig {
    position: relative;
    background: linear-gradient(135deg, #ff0033, #240b36); /* gradient */
    -webkit-background-clip: text; /* gradient text ke liye */
    -webkit-text-fill-color: transparent; /* text transparent rakho taki gradient dikhe */
    font-weight: 600 !important;
    padding: 3px 0px !important;
    border-radius: 7px !important;
    border: none;
    transition: 0.3s ease;
}

.card-content .org-desig:hover {
    box-shadow: 0 0 15px rgba(195, 20, 50, 0.6);
}
.card-content:hover {
    transform: scale(1.01);
}

.img-wrap img {
    border-radius: 7px;
    width: 100%;
    height: 200px;
}

.info h5 {
    font-size: 1.1rem;
    font-weight: 600;
}

.info p {
    font-size: 0.9rem;
    color: #555;
}

.social-icons {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card-content:hover .social-icons {
    opacity: 1;
}

/* .social-icons a {
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 13px;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: background 0.3s ease, transform 0.3s ease;
} */
.social-icons .fa-facebook-f {
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-icons .fa-twitter {
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 12px;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: background 0.3s ease, transform 0.3s ease;
}
.social-icons .fa-linkedin-in {
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    padding: 9px 11px;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    background: #8b0000;
    border-radius: 50px;
}

@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* comitte code here */

.committee-section {
    /* background: linear-gradient(to right, #f9f9f9, #eef2f3); */
    font-family: sans-serif;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

.simple-list {
    list-style: none; /* remove default bullets */
    padding-left: 0;
}

.simple-list li {
    padding: 6px 0;
    font-size: 0.95rem;
    line-height: 1.4;
    position: relative;
    padding-left: 20px; /* space for custom bullet */
}

/* 🔹 Custom bullet (Arrow ➤) */
.simple-list li::before {
    content: "➤";
    position: absolute;
    left: 0;
    color: #000;
    font-size: 0.9rem;
}

.simple-list strong {
    color: #03313b;
    font-weight: 600;
}

.footer {
    height: auto;
    background-color: #03313b;
}
.f-left a {
    text-decoration: none;
}
.midd-footer a {
    text-decoration: none;
    display: block;
    line-height: 30px;
    color: #fff;
}

@media (max-width: 600px) {
    .midd-footer img {
        margin-top: 20px;
    }
}
.award-section {
    position: relative;
    background: rgba(200, 200, 200, 0.3);
    padding: 10px 0;
    overflow: hidden;
}
.fixed-bubbles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.fixed-bubbles span {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    animation: bubblePop 6s infinite ease-in-out;
    opacity: 0.7;
    filter: blur(1px);
}

/* Fixed 5 bubbles */
.fixed-bubbles span:nth-child(1) {
    width: 50px;
    height: 60px;
    left: 15%;
    top: 65%;
    animation-delay: 0s;
}

.fixed-bubbles span:nth-child(2) {
    width: 50px;
    height: 60px;
    left: 40%;
    top: 75%;
    animation-delay: 1s;
}

.fixed-bubbles span:nth-child(3) {
    width: 50px;
    height: 60px;
    left: 65%;
    top: 68%;
    animation-delay: 2s;
}

.fixed-bubbles span:nth-child(4) {
    width: 80px;
    height: 100px;
    left: 25%;
    top: 85%;
    animation-delay: 1.5s;
}

.fixed-bubbles span:nth-child(5) {
    width: 160px;
    height: 160px;
    left: 75%;
    top: 82%;
    animation-delay: 2.5s;
}

/* Fulta → phutta animation */
@keyframes bubblePop {
    0% {
        transform: scale(0.6);
        opacity: 0.5;
    }
    45% {
        transform: scale(1.2);
        opacity: 0.9;
    }
    60% {
        transform: scale(1.6); /* Foolna */
        opacity: 1;
    }
    62% {
        transform: scale(0.1); /* Phutna */
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.award-section .container {
    position: relative;
    z-index: 10;
}
.committee-list {
    padding-left: 0;
}

.committee-list li {
    list-style: none;
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 0.7px;
    position: relative;
    padding-left: 18px;
}

.committee-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    background: linear-gradient(45deg, #ff7b7b, #ff1818);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 6px;
    box-shadow: 0 0 6px rgba(255, 0, 0, 0.4);
}
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}
.flip-box {
    width: 250px;
    height: 230px;
    background-color: #8b0000;
    border-radius: 10px;
    position: relative;
    color: white;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}
.flip-box .top,
.flip-box .bottom,
.flip-box .flip {
    position: absolute;
    width: 100%;
    height: 50%;
    font-size: 80px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    display: flex;
    backface-visibility: hidden;
}
.top {
    top: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
}
.bottom {
    bottom: 0;
    border-top: 2px solid rgba(255, 255, 255, 0.4);
}
.flip {
    top: 0;
    transform-origin: bottom;
    background-color: #8b0000;
    font-size: 95px;
    height: 50%;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    transform: rotateX(90deg);
}
.time-wrapper {
    text-align: center;
}

.label {
    color: black;
    font-size: 20px;
    margin-top: 5px;
    font-weight: 600;
    letter-spacing: 0.7px;
}
.count-down {
    background-color: #fff;
    padding-bottom: 40px;
}
/* har page ka header image hoga */
.themes-section {
    margin: 0 !important;
    padding: 0 !important;
}

.banner-wrapper {
    position: relative;
    width: 100%;
}

.banner-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Center text */
.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    padding-top: 60px !important;
}

/* Text styling */
.banner-text h1 {
    top: 55%;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    color: white;
}

.banner-text p {
    font-size: 16px;
    margin: 5px 0 0;
}

.theme-title1 {
    font-size: 2.5rem;
    color: #000;
    font-weight: 800;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.theme-title1::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #eee, #fff);
    border-radius: 2px;
    animation: expandLine1 1s ease-out 0.5s forwards;
}

@keyframes expandLine1 {
    to {
        width: 70px;
    }
}
/*footer area start here*/
.footer {
    background: #03313b; /* Beautiful Blue */
    color: #fff;
    border-top: 2px solid #ccc;
    padding: 40px 0px 10px 0px;
}
.footer-section {
    margin-bottom: 20px;
}

.footer h4 {
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
    color: #fff;
}

.footer h4::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #fff; /* Orange Line */
}
.footer-links li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links li a:hover {
    color: #ffeb3b; /* Yellow on Hover */
}

.footer-bottom {
    font-size: 14px;
}
.footer-contact span a {
    text-decoration: none;
    color: #000;
}
.bg-scattered-circles {
    position: relative;
    overflow: hidden;
    height: auto;
}
.circle {
    position: absolute;
    width: 2.5px;
    height: 2.5px;
    background-color: #fff;
    border-radius: 50%;
    animation: moveCircles 10s linear infinite,
        fadeCircles 3s ease-in-out infinite;
}

@keyframes moveCircles {
    0% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(50px) translateY(50px);
    }
    100% {
        transform: translateX(0) translateY(0);
    }
}
@keyframes fadeCircles {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}
@media (max-width: 1440px) {
    .footer-section .f-img {
        width: 250px !important;
    }
    .footer-section .f-img1 {
        width: 125px !important;
    }
}
.footer ul {
    list-style: disc;
}
.footer-contact-form {
    margin-top: 15px;
    padding: 15px;
    border-radius: 12px;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
}

/* Gradient Border */
.footer-contact-form::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1.5px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00c8ff, #0096c7, #00c8ff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Inputs */
.footer-contact-form input,
.footer-contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 8px 10px;
    margin-bottom: 10px;
    border-radius: 6px;
    font-size: 14px;
}

/* Focus effect */
.footer-contact-form input:focus,
.footer-contact-form textarea:focus {
    border-color: #00c8ff;
    box-shadow: 0 0 8px rgba(0, 200, 255, 0.4);
}

/* Button */
.footer-contact-form button {
    width: 100%;
    background: linear-gradient(135deg, #8b0000, #ff3a3a);
    border: none;
    color: #fff;
    padding: 9px;
    border-radius: 25px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.footer-contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 200, 255, 0.5);
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 20px !important;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
@media (max-width: 600px) {
    .home-section::before {
        width: 120px;
        height: 120px;
        background: #03313b;
        top: -60px;
        left: -80px;
    }

    .home-section::after {
        width: 140px;
        height: 140px;
        background: #04bfe8;
        bottom: -70px;
        right: -90px;
    }
}
@media (max-width: 768px) {
    .flip-box {
        width: 60px;
        height: 65px;
    }

    .flip-box .top,
    .flip-box .bottom {
        font-size: 18px;
        height: 50%;  /* half height */
        border-radius: 6px;
    }
    .time-wrapper .label{
        font-size: 10px!important;
    }
}
.footer-logos-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* always 2 per row */
    gap: 5px;
}

/* logo card */
.logo-box{
    height: 110px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* image */
.logo-box img{
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.ceie img{
    max-height: 110px;
}

