﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Add this to your site's CSS file */
img {
    max-width: 100%;
    height: auto;
}

.section {
    padding: 80px 0;
}

.section-light {
    background: #f8fafc;
}

.section-title {
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
}

/* ================= HERO SECTION FIX ================= */

.hero-section {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    line-height: 0;
}

.hero-bg {
    /* Change from absolute to relative so the image pushes the container height */
    position: relative;
    width: 100%;
    height: auto;
}

.responsive-img {
    width: 100%;
    height: auto; /* Ensures the image maintains its natural shape */
    display: block;
}

/* Adjust the overlay to sit on top of the relative image */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient( 90deg, rgba(42, 42, 42, 0.4) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.1) 70%, transparent 100% );
}


.hero-content {
    position: absolute; /* Place content over the image */
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 3;
}

.hero-text {
    max-width: 650px;
    color: white;
    animation: heroFade 1.2s ease;
}

    /* heading */

    .hero-text h1 {
        font-size: 3.4rem;
        font-weight: 700;
        line-height: 1.15;
        margin-bottom: 18px;
    }

    /* subtitle */

    .hero-text p {
        font-size: 1.25rem;
        margin-bottom: 28px;
        color: rgba(255,255,255,0.9);
    }

/* button */

.hero-btn {
    background: #f5a623;
    color: white;
    padding: 12px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all .25s;
}

    .hero-btn:hover {
        background: #e18f1b;
        color: white;
    }

/* fade animation */

@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* scroll indicator */

.scroll-indicator {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

    .scroll-indicator span {
        display: block;
        width: 26px;
        height: 42px;
        border: 2px solid white;
        border-radius: 18px;
        position: relative;
    }

        .scroll-indicator span::after {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            width: 4px;
            height: 6px;
            background: white;
            transform: translateX(-50%);
            border-radius: 3px;
            animation: scrollMove 1.6s infinite;
        }

@keyframes scrollMove {
    0% {
        opacity: 0;
        transform: translate(-50%,0)
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0;
        transform: translate(-50%,14px)
    }
}

/* responsive */

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: auto; /* Shorter height for phones */
    }

    .hero-bg {
        /* focus on the most important part of the PNG (e.g., top, center, or left) */
        background-position: center top;
        /* Optional: use 'contain' if you want to see the WHOLE image without cropping */
        /* background-size: contain; */
    }
}

@media (max-width:992px) {

    .hero-section {
        height: auto;
    }

    .hero-text h1 {
        font-size: 2.4rem;
    }

    .hero-text p {
        font-size: 1.05rem;
    }
}

@media (max-width:768px) {
    .scroll-indicator {
        bottom: 10px;
    }
}


/*.project-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
}

    .project-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }*/

.project-img {
    height: 220px;
    object-fit: cover;
}

.projects-section {
    padding: 80px 0;
}

.project-card {
    border: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all .3s;
}

    .project-card:hover {
        transform: translateY(-5px);
    }

.impact-section {
    background: #f5f7fb;
    padding: 70px 0;
}

.impact-box h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c5aa0;
}

.impact-box p {
    font-size: 16px;
    margin-top: 8px;
}

.gallery-preview {
    background: #f7f9fc;
    padding: 80px 0;
}

.gallery-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.gallery-item {
    transition: transform 0.3s ease;
}

    .gallery-item:hover {
        transform: translateY(-5px);
    }

.btn-outline-primary:hover {
    background-color: #007bff;
    color: white;
}

.cta-section {
    padding: 80px 0;
    background: #2c5aa0;
    color: white;
}

    .cta-section h2 {
        font-weight: 700;
        margin-bottom: 15px;
    }

    .cta-section p {
        font-size: 18px;
    }

/* Floating Video */

.floating-video {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 340px;
    max-width: 90vw;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
    z-index: 9999;
    overflow: hidden;
    transition: all .3s ease;
}

/* Header */

.video-header {
    background: #e18f1b; /* soft blue palette */

    color: white;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: move;
}

/* Title */

.video-title {
    font-weight: 600;
    letter-spacing: .3px;
}

/* Controls */

.video-controls button {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    margin-left: 10px;
    cursor: pointer;
}

    .video-controls button:hover {
        color: #ff8c42; /* orange accent */
    }

/* Video */

.video-body video {
    width: 100%;
    display: block;
}

/* Minimized */

.floating-video.minimized .video-body {
    display: none;
}

/* Icon Mode */

.floating-video.icon-mode {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #3f6fb5;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .floating-video.icon-mode::after {
        content: "?";
        color: white;
        font-size: 22px;
    }

    .floating-video.icon-mode .video-header,
    .floating-video.icon-mode video {
        display: none;
    }

/* Mobile */

@media (max-width:768px) {

    .floating-video {
        width: 260px;
        bottom: 15px;
        right: 15px;
    }
}

.doc-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    transition: all .2s;
}

    .doc-card:hover {
        transform: translateY(-3px);
    }

    .doc-card i {
        font-size: 40px;
        color: #e74c3c;
        margin-bottom: 15px;
    }

    .doc-card h5 {
        margin-bottom: 12px;
    }

    .doc-card a {
        text-decoration: none;
        font-weight: 600;
        color: #3f6fb5;
    }

.consultation-cta {
    background: #eef3fb;
    padding: 40px 0;
    border-top: 1px solid #d9e2f1;
    border-bottom: 1px solid #d9e2f1;
}

    .consultation-cta h3 {
        color: #3f6fb5;
        font-weight: 600;
    }

    .consultation-cta p {
        color: #555;
        margin-top: 8px;
    }

.btn-consult {
    background: #ff8c42;
    color: white;
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
}

    .btn-consult:hover {
        background: #ff7a25;
        color: white;
    }

.badge-new {
    background: #ff8c42;
    color: white;
    font-size: 12px;
    padding: 4px 8px;
    margin-left: 10px;
    border-radius: 4px;
    animation: pulseBadge 1.5s infinite;
}

@keyframes pulseBadge {

    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }

    100% {
        transform: scale(1)
    }
}

.consult-floating {
    position: fixed;
    left: 25px;
    bottom: 100px;
    background: #ff8c42;
    color: white;
    padding: 12px 18px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: all .2s;
}

    .consult-floating:hover {
        background: #2c5aa0;
        color: white;
        transform: translateY(-2px);
    }

.donate-floating {
    position: fixed;
    left: 25px;
    top: 100px;
    background: #2c5aa0;
    color: white;
    padding: 12px 18px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: all .2s;
}

    .donate-floating:hover {
        background: #ff7a25;
        color: white;
        transform: translateY(-2px);
    }

/* Scroll Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

.curve-divider {
    position: relative;
    margin-top: -1px;
    line-height: 0;
}

    .curve-divider svg {
        display: block;
        width: 100%;
        height: 90px;
    }

    .curve-divider path {
        fill: #ffffff;
    }

/* Consent form */
/* overlay */

.consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}


/* modal */

.consent-container {
    background: white;
    width: 420px;
    max-width: 90%;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    animation: fadeIn .35s ease;
}


/* header */

.consent-header {
    text-align: center;
    margin-bottom: 15px;
}

.consent-logo {
    height: 60px;
    margin-bottom: 8px;
}

.consent-subtitle {
    font-size: 14px;
    color: #666;
}


/* content */

.consent-content {
    background: #f7f8fa;
    padding: 12px;
    border-radius: 6px;
    max-height: 180px;
    overflow-y: auto;
    font-size: 14px;
    margin-bottom: 15px;
}


/* inputs */

.consent-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}


/* buttons */

.consent-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

.btn-consent-accept {
    flex: 1;
    background: #2ca44f;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-consent-reject {
    flex: 1;
    background: #6c757d;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
}


/* animation */

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: scale(.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== SECTION BACKGROUND ===== */

.video-section-premium {
    padding: 80px 0;
    background: linear-gradient(180deg,#f8f9fb 0%, #eef3fb 100%);
    position: relative;
    overflow: hidden;
}

    .video-section-premium::before {
        content: "";
        position: absolute;
        top: -80px;
        left: 0;
        width: 100%;
        height: 150px;
        background: #fff;
        border-bottom-left-radius: 50% 40px;
        border-bottom-right-radius: 50% 40px;
    }

/* ===== TEXT ===== */

.video-title {
    font-weight: 700;
    color: #2f6fb2;
    margin-bottom: 10px;
}

.video-subtitle {
    color: #666;
    margin-bottom: 35px;
}

/* ===== VIDEO CARD ===== */

.video-card {
    position: relative;
    display: inline-block;
    cursor: pointer;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform .3s ease;
}

    .video-card img {
        width: 100%;
        max-width: 650px;
        display: block;
    }

    .video-card:hover {
        transform: translateY(-5px);
    }

/* overlay gradient */

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(0,0,0,0.1),rgba(0,0,0,0.5));
}

/* ===== PLAY BUTTON ===== */

.play-button-premium {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: rgb(255, 140, 66, 0.70);
    color: white;
    font-size: 14px;
    width: 40px;
    height: 25px;
    border-radius: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(255,140,66,0.6);
    transition: 0.3s;
}

.video-card:hover .play-button-premium {
    transform: translate(-50%,-50%) scale(1.15);
    background: #ff7a1a;
}

/* ===== MODAL OVERLAY ===== */
.video-thumb-img {
    width: 100%;
    max-width: 650px;
    display: block;
    border-radius: 14px;
}


.video-modal-premium {
    display: none; /* ✅ ONLY THIS */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    /* Keep alignment but DO NOT force display */
    align-items: center;
    justify-content: center;
    animation: fadeIn .3s ease;
}

/* ===== SMALLER MODAL BOX ===== */

.video-modal-content-premium {
    position: relative;
    width: 80%;
    max-width: 720px; /* 👈 smaller width */
    background: #000;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* video size */

.video-modal-premium video {
    width: 100%;
    height: auto;
    max-height: 70vh; /* 👈 prevents full height */
    border-radius: 8px;
}

/* close button */

.video-close-premium {
    position: absolute;
    top: -35px;
    right: 0;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

.video-modal-content-premium {
    animation: scaleIn .25s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/*Partner With Us*/
.partner-section {
    background: var(--bg-light);
}

.partner-subtitle {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(44, 62, 80, 0.75);
}

/* LEFT INFO */
.partner-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-box {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

    .info-box:hover {
        transform: translateY(-4px);
    }

    .info-box i {
        width: 42px;
        height: 42px;
        background: rgba(74,144,226,0.1);
        color: var(--primary);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* FORM */
.partner-card {
    background: var(--card-bg);
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

/* INPUT */
.modern-input {
    border-radius: 12px;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    transition: 0.25s ease;
}

    .modern-input:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 2px rgba(74,144,226,0.15);
    }

/* BUTTON */
.partner-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    color: #fff;
    transition: 0.3s ease;
}

    .partner-btn:hover {
        background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark));
        transform: translateY(-2px);
    }

/* ANIMATION */
.partner-card,
.info-box {
    animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*DONATE*/
.donate-section {
    background: #f8fbff;
}

.donate-content {
    max-width: 560px;
}

.donate-tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0d6efd;
    background: rgba(13, 110, 253, 0.08);
    border-radius: 999px;
    letter-spacing: 0.3px;
}

.donate-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1e2a3a;
    line-height: 1.2;
}

.donate-text {
    font-size: 1.05rem;
    color: #5b6574;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.donate-highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2d3748;
    font-weight: 500;
}

    .highlight-item i {
        width: 38px;
        height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #ffffff;
        color: #0d6efd;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
        font-size: 0.95rem;
    }

.donate-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.donate-card-header {
    margin-bottom: 22px;
}

    .donate-card-header h4 {
        font-size: 1.4rem;
        font-weight: 700;
        color: #1e2a3a;
    }

    .donate-card-header p {
        color: #6b7280;
        font-size: 0.96rem;
    }

.donate-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.detail-row {
    display: flex;
    flex-direction: column;
    padding: 14px 16px;
    background: #f8fafc;
    border-radius: 14px;
    border: 1px solid #eef2f7;
}

    .detail-row .label {
        font-size: 0.82rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #64748b;
        margin-bottom: 4px;
    }

    .detail-row .value {
        font-size: 1rem;
        font-weight: 600;
        color: #1f2937;
        word-break: break-word;
    }

@media (max-width: 991.98px) {
    .donate-title {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .donate-card {
        padding: 22px 18px;
    }

    .donate-title {
        font-size: 1.75rem;
    }

    .donate-text {
        font-size: 1rem;
    }
}

/*Transparency Section*/

:root {
    --primary: #4A90E2;
    --primary-dark: #3B7DC4;
    --accent: #F4A261;
    --accent-dark: #E76F51;
    --bg-light: #F8FAFC;
    --text-dark: #2C3E50;
    --card-bg: #FFFFFF;
}

.transparency-minimal {
    background: var(--bg-light);
}

.transparency-head h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.9rem;
    animation: fadeUp 0.7s ease both;
}

.transparency-head p {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(44, 62, 80, 0.75);
    font-size: 1rem;
    line-height: 1.8;
    animation: fadeUp 0.9s ease both;
}

.mini-badge {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(74, 144, 226, 0.10);
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    animation: fadeDown 0.7s ease both;
}

.doc-min-card {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
    padding: 20px 18px;
    background: var(--card-bg);
    border-radius: 18px;
    text-decoration: none;
    border: 1px solid rgba(74, 144, 226, 0.08);
    box-shadow: 0 8px 24px rgba(44, 62, 80, 0.05);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    animation: fadeUp 0.8s ease both;
}

    .doc-min-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 34px rgba(74, 144, 226, 0.12);
        border-color: rgba(74, 144, 226, 0.18);
        text-decoration: none;
    }

.doc-min-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.12), rgba(244, 162, 97, 0.14));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.doc-min-card:hover .doc-min-icon {
    transform: scale(1.08) rotate(-4deg);
    color: var(--accent-dark);
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.16), rgba(231, 111, 81, 0.18));
}

.doc-min-content h5 {
    margin: 0 0 6px 0;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.45;
}

.doc-min-content span {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--primary);
    transition: color 0.25s ease;
}

.doc-min-card:hover .doc-min-content span {
    color: var(--accent-dark);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767.98px) {
    .transparency-head h2 {
        font-size: 1.8rem;
    }

    .transparency-head p {
        font-size: 0.96rem;
    }

    .doc-min-card {
        padding: 16px;
        gap: 14px;
    }

    .doc-min-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        font-size: 1.15rem;
    }

    .doc-min-content h5 {
        font-size: 0.98rem;
    }
}

/*Contact US*/
.contact-section {
    background: var(--bg-light);
}

.contact-subtitle {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(44, 62, 80, 0.75);
}

/* MAP */
.map-card {
    border-radius: 18px;
    overflow: hidden;
    height: 260px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

    .map-card iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

/* INFO */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

    .info-item i {
        width: 42px;
        height: 42px;
        background: rgba(74,144,226,0.1);
        color: var(--primary);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .info-item p {
        margin: 0;
        color: #555;
    }

/* FORM */
.contact-card {
    background: var(--card-bg);
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

/* INPUT */
.modern-input {
    border-radius: 12px;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    transition: 0.25s ease;
}

    .modern-input:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 2px rgba(74,144,226,0.15);
    }

/* BUTTON */
.submit-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    color: #fff;
    transition: 0.3s ease;
}

    .submit-btn:hover {
        background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark));
        transform: translateY(-2px);
    }

/* ANIMATION */
.contact-card,
.info-item,
.map-card {
    animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}