@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Lora", serif;
}

:root {
    --primary-color: #0072bb;
    --secondary-color: #009e9d;
    --gradient-color: linear-gradient(90deg, #0072bb, #009e9d);
}

/* ===== TOP HEADER ===== */
.top-header {
    background: var(--gradient-color);
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.top-header a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
    transition: 0.3s;
}

.top-header a:hover {
    color: #e0f7fa;
}

/* ===== NAVBAR ===== */
.navbar {
    background: #fff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 80px;
}

.navbar-nav .nav-link {
    color: #004b7c;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s;
    font-family: "Lora", serif;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--secondary-color);
    transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color);
}

/* ===== BUTTON STYLE ===== */
.btn-custom {
    background: var(--gradient-color);
    color: #fff !important;
    border: none;
    border-radius: 30px;
    padding: 8px 20px;
    transition: 0.3s;
}

.btn-custom:hover {
    background: #004b7c;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 991px) {
    .top-header {
        text-align: center;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        margin: 8px 0;
    }
}


/* Section */
.contact-form-section {
    background: linear-gradient(135deg, #f8fbff, #e9f5ff);
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(90deg, #0072bb, #009e9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Form Box */
.contact-form {
    background: #fff;
    border-radius: 15px;
    border: 1px solid rgba(0, 115, 187, 0.3);
    transition: 0.4s ease;
}

.contact-form:hover {
    box-shadow: 0 0 30px rgba(0, 114, 187, 0.15);
}

/* Input Fields */
.form-control,
.form-select {
    border-radius: 10px;
    border: 1.5px solid #dce3ea;
    transition: all 0.3s ease;
    box-shadow: none;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 114, 187, 0.1);
}

/* Label */
.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

/* Button */
.btn-gradient {
    background: var(--gradient-color);
    color: #fff !important;
    border: none;
    border-radius: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(0, 114, 187, 0.3);
}

.btn-gradient:hover {
    background: linear-gradient(90deg, #009e9d, #0072bb);
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 114, 187, 0.5);
}

/* Right Side Image */
.contact-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.contact-image:hover img {
    transform: scale(1.1);
}

/* .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 114, 187, 0.3), rgba(0, 158, 157, 0.3));
    border-radius: 15px;
    pointer-events: none;
} */

/* Adjusted spacing for heading and content */
.contact-form-section h2 {
    margin-bottom: 0.5rem;
}

.contact-form-section p {
    margin-bottom: 0;
}