/* Global Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-font: "Poppins", sans-serif;
    --secondary-font: "Montserrat", sans-serif;
    --primary-color: #fff;
    --navbackground-color: #09182f;
    --accent-color: #4e97d0;
    --hover-accent: #d1461d;
    --shadow-dark: rgba(0, 0, 0, 0.2);
}

body {
    font-family: var(--primary-font);
    background-color: #f8f9fa;
    color: #333;
}

/* Navbar start */
.custom-navbar {
    background-color: var(--navbackground-color);
}

.custom-navbar .navbar-nav .nav-link {
    color: var(--primary-color);
    font-family: var(--primary-font);
    text-transform: capitalize;
}

/* Navbar end */


/* Welcome Section start */
.welcome-section {
    padding: 60px 0;
    background-color: #f7f5fc;
}

.welcome-title {
    font-weight: 700;
    font-size: 37px;
    color: var(--accent-color);
    text-transform: capitalize;
    font-family: var(--primary-font);
}

.welcome-title span {
    color: #0b0b0b!important; ;
}

.welcome-text {
    font-size: 16px;
    color: #000;
    margin-top: 20px;
    text-transform: capitalize;
    font-family: var(--primary-font);
    text-align: justify;
    /* line-height: 1.8; */
}

.welcome-underline {
    width: 80px;
    height: 4px;
    background: #0b0b0b;
    margin: 10px 0 20px 0;
    position: relative;
}

.welcome-underline::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 4px;
    background: var(--accent-color) !important;
    left: -25px;
    top: 0;
}

.welcome-btn {
    background-color: var(--navbackground-color) !important;
    color: #fff;
    font-family: var(--primary-font);
    border-radius: 5px;
    font-weight: 300;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    margin-top: 30px;
    transition: 0.3s;
}

.welcome-btn:hover {
    background-color: var(--hover-accent);
    transform: scale(1.03);
}
/* Welcome Section end */







/* Contact Us Section */
.hero {
    background: linear-gradient(135deg, #007bff, #00c2cb);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    font-weight: bold;
}

.contact-section {
    padding: 60px 0;
}

.contact-info {
    background: #f7f7f7;
    padding: 30px;
    border-radius: 8px;
    text-align: left;
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
/* Contact Us Section end */


/* Section Styles */

.section-title span {
    color: var(--navbackground-color, #09182f);
}

.section-underline {
    width: 60px;
    height: 4px;
    background-color: var(--accent-color, #09182f) !important;
    border-radius: 2px;
    margin: 10px auto;
}

.section-subtext {
    color: #555;
    font-size: 16px;
}


/* Contact Section Styles */
.contact-section {
    background-color: #f5f7fa;
}

.contact-form .form-control {
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #ccc;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--navbackground-color);
    outline: none;
    box-shadow: none;
}


.btn-accent {
    background-color: var(--navbackground-color);
    color: white;
    padding: 10px 30px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: var(--navbackground-color);
    transform: scale(1.05);
}



.section-title {
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 700;
}

.section-title span {
    color: var(--navbackground-color);
}

.section-underline {
    width: 60px;
    height: 4px;
    background-color: var(--navbackground-color);
    border-radius: 2px;
    margin: 10px auto;
}

.section-subtext {
    color: #555;
    font-size: 16px;
}

/* Achievements Section */
.achievements-gallery {
    background-color: #f8f9fa !important;
}

.gallery-card img {
    width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
}

.gallery-card p {
    font-weight: 500 !important;
    font-size: 16px !important;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation Class */
.animated-card {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
}

/* Optional: Stagger delay for each card */
.animated-card:nth-child(1) {
    animation-delay: 0.2s !important;
}

.animated-card:nth-child(2) {
    animation-delay: 0.4s !important;
}

.animated-card:nth-child(3) {
    animation-delay: 0.6s !important;
}

/* Achievements Section end */


/* Contact Section Styles */
.veborra-contact-area {
    padding: 60px 20px;
    background-color: #fefefe;
    font-family: var(--primary-font);
}

.veborra-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Container & Section */
.veborra-contact-area {
    padding: 80px 20px;
    background: #f5f7fb;
    font-family: 'Poppins', sans-serif;
}

/* Grid Layout */
.veborra-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form */
.veborra-contact-form {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-top: 5px solid #4690d6;
    transition: all 0.3s ease;
}

.veborra-contact-form h2 {
    background: linear-gradient(45deg,#4690d6,#4690d6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 28px;
    margin-bottom: 25px;
}

.veborra-contact-form input,
.veborra-contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 10px;
    transition: border 0.3s ease;
}

.veborra-contact-form input:focus,
.veborra-contact-form textarea:focus {
    border-color: #4690d6;
    outline: none;
}

.veborra-contact-form button {
    background:#4690d6;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.veborra-contact-form button:hover {
    background:#4690d6;
}

/* Info + Map Section */
.veborra-info-map {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 25px;
}

/* Address Box */
.veborra-address-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid#4690d6;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.veborra-address-box h3 {
    color:#4690d6;
    font-size: 22px;
    margin-bottom: 15px;
}

.veborra-address-box p {
    color: #333;
    margin-bottom: 10px;
}

.veborra-address-box a {
    color: #4690d6;
    text-decoration: none;
    font-weight: 500;
}

/* Map Box */
.veborra-map-box iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 991px) {
    .veborra-container {
        grid-template-columns: 1fr;
    }
}