/* Resetting base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #20232a;
    color: #fff;
    line-height: 1.6;
}

/* Navbar styles */
nav {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

ul li a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
}

ul li a:hover {
    color: #ffd700;
    transform: scale(1.1);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
}

.hamburger i {
    display: block;
    font-size: 40px;
    transition: transform 0.3s ease;
}

.cross {
    display: none;
}

@media screen and (max-width: 800px) {
    .hamburger {
        display: block;
    }

    .cross {
        display: block;
        position: absolute;
        top: 17px;
        right: 24px;
        font-size: 24px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.9);
        width: 100%;
        padding: 20px;
    }

    .nav-links.show {
        display: flex;
        animation: slide-in 0.3s ease;
        animation-fill-mode: forwards;
        overflow-y: auto;
        justify-content: start;
        align-items: start;
    }

    .nav-links li {
        margin-bottom: 20px;
    }
}

/* Heading Styling */
h1.heading {
    font-size: 48px;
    text-align: center;
    margin: 10px;
    color: #f5ba13;
    animation: fadeInDown 1s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
header {
    text-align: center;
    padding: 20px 0;
}

h1 {
    font-size: 40px;
    letter-spacing: 2px;
    color: #f5ba13;
    margin-top: 20px;
    margin-bottom: 30px;
}

/* Main Layout */
.main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 40px;
    height: auto;
    flex-wrap: wrap; /* Added to ensure responsiveness */
}

.left,
.right {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.left {
    flex: 1;
    min-width: 300px; /* Ensuring it does not get too small */
}

.right {
    flex: 2;
    text-align: center;
}

.right h2 {
    margin-bottom: 30px;
    font-size: 2rem;
}

/* Contact Information */
.contact-info {
    margin-bottom: 20px;
}

.contact-info h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #f5ba13;
}

/* Input Fields with Icons */
.inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-field {
    position: relative;
}

.input-field i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #f5ba13;
    font-size: 18px;
}

.input-field input,
.input-field textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.input-field input:focus,
.input-field textarea:focus {
    background-color: #444;
    outline: none;
}

/* Button */
.btn {
    display: inline-block;
    background-color: #f5ba13;
    color: #20232a;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
    background-color: #fff;
    color: #20232a;
    transform: scale(1.05);
}

/* Footer Styles */
footer {
    background-color: #181a1e;
    padding: 20px 0;
    text-align: center;
    margin-top: 60px;
}

.footer-content p {
    font-size: 0.9rem;
}

.footer-socials {
    margin-top: 15px;
}

.social-icon {
    color: #f5ba13;
    font-size: 24px;
    margin: 0 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    color: #fff;
    transform: scale(1.2);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .main {
        flex-direction: column;
    }

    .right,
    .left {
        width: 100%;
    }

    .input-field input,
    .input-field textarea {
        padding-left: 40px;
    }

    .btn {
        width: 100%;
    }

    nav {
        padding: 10px;
    }

    ul {
        flex-direction: column;
        gap: 15px;
    }

    ul li {
        display: block;
    }

    ul li a {
        padding: 10px;
    }
}

/* Toast Styles */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1000;
}

.toast.show {
    opacity: 1;
}
.pdf2{
    display: none;
  }
  @media screen and (max-width: 800px) {
      .pdf1{
        display: none;
      }
      .pdf2{
        display: block;
      }
    }
  
::-webkit-scrollbar {
    width: 12px;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #5e5d5d; /* Dark color for the thumb */
    border-radius: 6px;
  }
  
  ::-webkit-scrollbar-track {
    background-color: #222; /* Dark color for the track */
  }  