﻿.body {
    font-family: Arial, sans-serif;
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    width: 100%;
    height: auto;
}

.hero-background {
  
    background-image: linear-gradient(to bottom, #007bff, #0056b3);
    height: 70vh;
    position: relative;
    overflow: hidden;
}

.bpharma-logo {
    position: absolute;

    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    max-width: 80%;
    height: auto;
}

.grad-cap {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: auto;
    opacity: 0.9;
}

.college-building {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.student-image {
    position: absolute;
    right: 10%;
    bottom: 0;
    height: 70%;
    z-index: 2;
}

.form-section {
    position: relative;
    margin-top: -50px;
    margin-bottom: 50px;
    z-index: 20;
    padding: 0 15px;
}

.form-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.form-label {
    color: #555;
    font-weight: 600;
}

.btn-send {
    background-color: #0d2d62;
    color: white;
    font-weight: bold;
    padding: 10px;
    border: none;
    width: 100%;
    height: 100%;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .bpharma-logo {
        max-width: 70%;
    }

    .student-image {
        height: 60%;
        right: 5%;
    }
}

@media (max-width: 768px) {
    .hero-background {
        height: 60vh;
    }

    .bpharma-logo {
        max-width: 60%;
        top: 15%;
    }

    .student-image {
        height: 50%;
        right: 0;
    }

    .form-section {
        margin-top: -30px;
    }
}

@media (max-width: 576px) {
    .hero-background {
        height: 50vh;
    }

    .bpharma-logo {
        max-width: 80%;
        top: 10%;
    }

    .grad-cap {
        width: 60px;
    }

    .student-image {
        height: 40%;
        opacity: 0.8;
    }

    .form-container {
        padding: 15px;
    }
}
