/* General Reset */
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Header and Video */
#header {
    width: 100%;
    height: 150px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #85ABD9, );
}

.container {
    padding: 0px;
    position: relative;
    z-index: 1;
}


.navbar-brand {
    display: inline-block;
    text-decoration: none;
}

/* Base styling for the UKF text */
.brand-text {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Navbar */


.nav {
    display: flex;
    align-items: center;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link::after {
    content: '';
    width: 0;
    height: 3px;
    background: #000e79 !important;
    position: absolute;
    left: 0;
    margin-left: 10px;
    bottom: 0px;
    transition: 0.3s;
}

.nav-link:hover {
    color: #000e79 !important;
    /* Change color on hover */
}

.nav-link:hover::after {
    width: 90%;
}

.header {
    margin-top: 15%;
    font-size: 30px;
}



/* Navbar Button */
.btn-primary {
    color: #ffffff;
    background-color: #ff5700;
    border: none;
    margin-left: 20px;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #000e79;
}

/* Sidebar styles for small screens */
@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        left: -250px;
        top: 0;
        width: 250px;
        height: 100%;
        background: linear-gradient(to bottom, #85ABD9, #c1def3);
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        z-index: 1050;
    }

    .sidebar.show {
        left: 0;
    }

    .sidebar ul {
        padding: 20px 0;
        list-style: none;
    }

    .sidebar ul li {
        padding: 15px;
        border-bottom: 1px solid #ddd;
    }

    .sidebar ul li a {
        text-decoration: none;
        color: #000e79;
        font-size: 18px;
        display: flex;
        align-items: center;
    }

    .sidebar ul li a i {
        margin-right: 10px;
    }

    .close-btn {
        font-size: 24px;
        position: absolute;
        right: 15px;
        top: 15px;
        cursor: pointer;
    }
}

/* Responsive Navbar */
/* Media query for responsive view */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .navbar-toggler {
        margin-right: 40px;
    }

    .brand-text {
        font-size: 20px;
        /* Reduce font size for smaller screens */
        letter-spacing: 1.5px;
        margin-left: 30px;
        /* Tighter spacing */
        text-shadow: none;
        /* Remove heavy shadow on small screens for clarity */
        transform: none;
        /* Disable scaling on smaller screens */
    }

    .navbar-brand:hover .brand-text {
        transform: none;
        /* Disable zoom effect on mobile */
        text-shadow: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-link {
        font-size: 16px;
        padding: 10px 0;
    }

    .brand-text {
        font-size: 20px;
        /* Reduce font size for smaller screens */
        letter-spacing: 1.5px;
        /* Tighter spacing */
        text-shadow: none;
        /* Remove heavy shadow on small screens for clarity */
        transform: none;
        /* Disable scaling on smaller screens */
    }

    .quote-container h1 {
        font-size: 2rem;
    }

    #header {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .nav {
        flex-direction: column;
    }

    .nav-link {
        font-size: 14px;
    }

    .btn-primary {
        padding: 8px 16px;
    }

    .quote-container h1 {
        font-size: 1.5rem;
    }
}


/*------------------------------------------------------------- contact us--------------------------------------------------*/

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #85ABD9, #EAF2F8);
    color: #fff;
}

.contact-section {
    display: flex;
    flex-wrap: wrap;
    background-color: #1c1c1c;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem;
}

.info-section {
    flex: 1;
    background: linear-gradient(to bottom, #4f94d4, #73a5d8, #a4caef);
    padding: 40px;
    color: #fff;
}

.info-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.info-section p {
    line-height: 1.6;
    font-size: 16px;
}

.info-section .social-media {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.info-section .social-media a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}

.form-section {
    flex: 1.5;
    background-color: #1c1c1c;
    padding: 40px;
}

.form-control {
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 0;
    padding-left: 2.5rem;
    box-shadow: none;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

.input-group-text {
    background-color: #333;
    border: none;
    color: #ffffff;
}

.form-section form button {
    width: 100%;
    margin: 20px auto 0;
    background-color: #ff5700;
    color: #fff;
    cursor: pointer;
    border-radius: 7px;
    transition: background-color 0.3s;
    border: none;
    padding: 12px;
    font-size: 18px;
}

.form-section form button:hover {
    background-color: #000e79;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.privacy {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy a {
    color: #4f94d4;
    text-decoration: none;
}

.privacy a:hover {
    text-decoration: underline;
}

.form-group {
    margin-bottom: 20px;
}

.form-control::placeholder {
    color: #cccccc;
    opacity: 1;
}

.input-group .form-control {
    border-radius: 5px !important;
}

.input-group .input-group-text {
    border-radius: 5px 0 0 5px !important;
}

.input-group .form-control {
    border-radius: 0 5px 5px 0 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }

    .info-section,
    .form-section {
        padding: 30px;
    }

    .info-section h2 {
        font-size: 24px;
    }

    .info-section p {
        font-size: 14px;
    }

    .form-section form button {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        margin-top: 60px;
    }

    .info-section,
    .form-section {
        padding: 20px;
    }

    .info-section h2 {
        font-size: 22px;
    }

    .info-section p {
        font-size: 13px;
    }

    .form-section form button {
        font-size: 14px;
        padding: 10px;
    }

    label {
        font-size: 14px;
    }

    .privacy {
        font-size: 12px;
    }
}


/*------------------------------------------------------------- Footer--------------------------------------------------*/

.footer {
    background-color: #111;
    color: #fff;
    padding: 50px 20px;
    position: relative;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-contact h4 {
    color: #a4c2ff;
    margin-top: -7px;
    font-size: 30px;
}

.footer-contact p {
    margin-left: 5px;
    color: #fff;
}

.footer-logo {
    flex: 1;
    margin-right: 100px;
    align-items: center;
    gap: 0;
}

.footer-logo img {
    max-width: 250px;
    margin: 0;
}

.footer-logo p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px !important;
    margin: 0;
}

.footer-logo span {
    font-size: 13px;
    color: #999;
}

.footer-links {
    flex: 1;
    margin: 0 20px;
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
}

.footer-links ul li a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

/* Updated Social Icons Styles with outline border and border-radius */
.social-icons a {
    color: #ffffff;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease;
    border: 1px solid #ffffff;
    border-radius: 50%;
    padding: 8px;
}

.social-icons a:hover {
    color: #f60;
    border-color: #f60;
}

/* Responsive Styles */
@media (max-width: 768px) {

    .footer {
        margin-top: 200px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo,
    .footer-links,
    .footer-newsletter,
    .footer-contact {
        flex: 1 1 100%;
        margin: 20px 0;
    }

    .footer-logo img {
        max-width: 180px;
    }

    .footer-logo p,
    .footer-logo span,
    .footer-links ul li a {
        font-size: 12px;
    }

    .footer-contact h4 {
        font-size: 24px;
    }

    .footer-contact p {
        font-size: 14px;
        margin-left: 0;
    }

    .social-icons {
        justify-content: center;
    }

    .social-icons a {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 10px;
    }

    .footer-logo img {
        max-width: 140px;
    }

    .footer-logo p,
    .footer-logo span,
    .footer-links ul li a {
        font-size: 11px;
    }

    .footer-contact h4 {
        font-size: 20px;
    }

    .footer-contact p {
        font-size: 13px;
    }

    .social-icons a {
        font-size: 16px;
    }
}


.footer {
    background: linear-gradient(135deg, #111 0%, #222 100%);
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.3);
}

.footer-links ul li a {
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-links ul li a:hover {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

.footer-logo img {
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.1);
}

.footer-contact h4,
.footer-links h4 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

