/* =====================================================
   GLOBAL BASE
===================================================== */
* {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

a {
    text-decoration: none;
}

.animate,
.dept-card,
.service-card-modern,
.event-card,
.staff-card,
.gallery-item,
.chairman-card,
.message-box,
.about-box,
.yojana-card,
.form-card,
.contact-card {
    will-change: transform, opacity;
}

/* =====================================================
   FUTURISTIC TOPBAR
===================================================== */
.futuristic-topbar {
    position: relative;
    background: linear-gradient(120deg, rgba(255,255,255,0.7), rgba(0,0,0,0.9));
    backdrop-filter: blur(14px);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #ff512f, #ffe02f, #2490dd);
    border-image-slice: 1;
    padding: 8px 0;
    z-index: 999;
    overflow: hidden;
}

.futuristic-topbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 20%,
        rgba(255,255,255,0.35),
        transparent 80%
    );
    animation: shineMove 6s linear infinite;
}

@keyframes shineMove {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

.futuristic-topbar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -200px;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd369, transparent);
    animation: moveLine 4s linear infinite;
}

@keyframes moveLine {
    from { left: -200px; }
    to { left: 100%; }
}

.futuristic-topbar span {
    font-size: 13px;
    font-weight: 600;
    color: #000;
}

/* =====================================================
   NAVBAR
===================================================== */
.navbar {
    background: linear-gradient(to left, #000, #fff);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.navbar-brand {
    font-weight: 700;
    font-size: 16px;
    color: #000;
}

.navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff512f, #ffd369);
    transform: translateX(-50%);
    transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 70%;
}

@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
    }
}




/* =====================================================
   CAROUSEL
===================================================== */
.carousel-item img {
    width: 100%;
    height: 75vh;
    object-fit: cover;
    animation: zoomSlow 12s ease-in-out infinite;
}

@keyframes zoomSlow {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 60vh;
    }
}

/* ==============================
   FIXED NEWS TICKER (HORIZONTAL)
================================ */

.news-ticker {
    background: linear-gradient(90deg, #000, #222);
    overflow: hidden;
    position: relative;
}

.news-heading {
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 15px;
    white-space: nowrap;
}

.ticker-wrap {
    overflow: hidden;
    position: relative;
    flex: 1;
}

.ticker {
    display: flex;
    align-items: center;
    gap: 50px;
    width: max-content;
    animation: scrollTicker 30s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 14px;
    color: #fff;
}

.ticker:hover {
    animation-play-state: paused;
}

/* Smooth horizontal scroll */
@keyframes scrollTicker {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

/* ==============================
   CHAIRMAN SECTION – WHITE BG
================================ */

.chairman-section {
    background: #ffffff !important;
    position: relative;
    overflow: hidden;
}

.chairman-section::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(0,114,255,0.18), transparent 70%);
    border-radius: 50%;
}

.chairman-section::after {
    content: "";
    position: absolute;
    bottom: -90px;
    right: -90px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,81,47,0.18), transparent 70%);
    border-radius: 50%;
}

.chairman-card,
.message-box {
    background: #ffffff;
    border-left: 6px solid #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


/* ==============================
   ABOUT SECTION – WHITE BACKGROUND
================================ */

.about-modern {
    background: linear-gradient(135deg, #f9f9f9, #eef3f7);
    position: relative;
    overflow: hidden;
}

.about-modern::before {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(0,114,255,0.18), transparent 70%);
    border-radius: 50%;
}

.about-modern::after {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,81,47,0.18), transparent 70%);
    border-radius: 50%;
}

/* Inner box thoda soft look ke liye */
.about-box {
    background: #ffffff;
    border-left: 6px solid #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}



.about-banner {
    border: 1px solid #f0f0f0;
}

 


/* =====================================================
   SCROLL ANIMATION
===================================================== */
.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}


/* ==============================
   DEPARTMENTS – COLORED SECTION
================================ */

.departments-section {
    background: linear-gradient(135deg, #fff, #fff);
    position: relative;
    overflow: hidden;
}

/* Decorative soft blobs */
.departments-section::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(0,114,255,0.18), transparent 70%);
    border-radius: 50%;
}

.departments-section::after {
    content: "";
    position: absolute;
    bottom: -90px;
    right: -90px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,81,47,0.18), transparent 70%);
    border-radius: 50%;
}

 
/* Department Card */
.dept-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    border-left: 6px solid #000;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

/* Hover effect */
.dept-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 16px 36px rgba(0,0,0,0.15);
    border-left-color: #ff512f;
}

/* Icon circle */
.icon-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff, #000);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0,114,255,0.3);
}

.icon-circle img {
    width: 55%;
    height: auto;
}

/* Title */
.dept-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0072ff;
    margin-bottom: 0.6rem;
}

/* Description */
.dept-card p {
    font-size: 0.95rem;
    color: #555;
}



/* ==============================
   OUR SERVICES – COLORED SECTION
================================ */

.services-modern {
    background: linear-gradient(135deg, #f9f9f9, #eef3f7);
    position: relative;
    overflow: hidden;
}

/* Decorative blobs */
.services-modern::before {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(0,114,255,0.18), transparent 70%);
    border-radius: 50%;
}

.services-modern::after {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,81,47,0.18), transparent 70%);
    border-radius: 50%;
}

/* Service Card */
.service-card-modern {
    position: relative;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
    transition: all 0.35s ease;
}

.service-card-modern:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}

/* Overlay stronger for readability */
.card-overlay {
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.85)
    );
}

/* Card Content */
.card-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
}

.card-content a {
    display: inline-block;
    margin-top: 10px;
    color: #ffd369;
    font-weight: 600;
    transition: 0.3s;
}

.card-content a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #0072ff;
}

.swiper-pagination-bullet-active {
    background: #ff512f;
}


/* ==============================
   PUBLIC GRIEVANCE – PREMIUM LOOK
================================ */

.public-grievance {
    background: linear-gradient(135deg, #fff, #fff);
    position: relative;
    overflow: hidden;
}

/* Decorative background circles */
.public-grievance::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(0,114,255,0.18), transparent 70%);
    border-radius: 50%;
}

.public-grievance::after {
    content: "";
    position: absolute;
    bottom: -90px;
    right: -90px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,81,47,0.18), transparent 70%);
    border-radius: 50%;
}

/* Grievance Card */
.grievance-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 6px solid #000;
}

.grievance-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.18);
}

/* Text */
.message-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* Button */
.btn-modern {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    /*background: linear-gradient(90deg, #0072ff, #00c6ff);*/
     background: linear-gradient(135deg, #fff, #000);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0,114,255,0.45);
}

/* Image Wrapper */
.grievance-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.grievance-img-wrapper img {
    transition: transform 0.6s ease;
}

.grievance-img-wrapper:hover img {
    transform: scale(1.08);
}

.grievance-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,114,255,0.25),
        rgba(0,198,255,0.25)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.grievance-img-wrapper:hover .grievance-overlay {
    opacity: 1;
}


/* ==============================
   YOJANA – GOVERNMENT SCHEMES
================================ */

.yojana-section {
    background: linear-gradient(135deg, #f9f9f9, #eef3f7);
    position: relative;
    overflow: hidden;
}

/* Decorative background blobs */
.yojana-section::before {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(0,114,255,0.18), transparent 70%);
    border-radius: 50%;
}

.yojana-section::after {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,81,47,0.18), transparent 70%);
    border-radius: 50%;
}

/* Yojana Card */
.yojana-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.1);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.yojana-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* Icon box */
.icon-box {
    width: 110px;
    height: 110px;
    margin: 0 auto 15px;
    border-radius: 30%;
     background: linear-gradient(135deg, #fff, #000);
    /*background: linear-gradient(135deg, #0072ff, #00c6ff);*/
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,114,255,0.35);
}

.icon-box img {
    width: 65%;
    height: auto;
    border-radius: 20%;
}

/* Title */
.yojana-card h5 {
    font-weight: 700;
    color: #0072ff;
    margin-bottom: 8px;
}

/* Description */
.yojana-card p {
    font-size: 0.95rem;
    color: #555;
    min-height: 50px;
}

/* Button */
.yojana-card .btn-modern {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 22px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 25px;
    background: linear-gradient(135deg, #fff, #000);
    /*background: linear-gradient(90deg, #ff512f, #dd2476);*/
    color: #fff;
    transition: all 0.3s ease;
}

.yojana-card .btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(221,36,118,0.45);
}


/* ==============================
   GALLERY – PHOTO / MEDIA
================================ */

.gallery-section {
    background: linear-gradient(135deg, #fff, #fff);
    position: relative;
    overflow: hidden;
}

/* Decorative blobs */
.gallery-section::before {
    content: "";
    position: absolute;
    top: -70px;
    left: -70px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(0,114,255,0.18), transparent 70%);
    border-radius: 50%;
}

.gallery-section::after {
    content: "";
    position: absolute;
    bottom: -90px;
    right: -90px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,81,47,0.18), transparent 70%);
    border-radius: 50%;
}

/* Gallery item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0,0,0,0.1);
    transition: all 0.35s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.18);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.12);
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,114,255,0.35),
        rgba(0,198,255,0.35)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #ffffff;
    font-size: 2.2rem;
}

/* Section text */
.gallery-section h2 {
    margin-bottom: 10px;
}

.gallery-section p {
    color: #555;
    font-weight: 500;
    margin-bottom: 40px;
}


/* ==============================
   LIGHTBOX MODAL – PREMIUM LOOK
================================ */

#lightboxModal {
    background: rgba(0, 0, 0, 0.85);
}

#lightboxModal .modal-dialog {
    max-width: 90%;
}

#lightboxModal .modal-content {
    background: transparent;
    border: none;
}

#lightboxModal img {
    max-height: 85vh;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    animation: zoomInLightbox 0.4s ease;
}

/* Close button */
.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 1056;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: #ff512f;
}

/* Animation */
@keyframes zoomInLightbox {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}




/* ==============================
   EVENTS & NEWS – PREMIUM SECTION
================================ */

.events-news {
    background: linear-gradient(135deg, #f8fbff, #eef3f7);
    position: relative;
    overflow: hidden;
}

/* Decorative background blobs */
.events-news::before {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(0,114,255,0.18), transparent 70%);
    border-radius: 50%;
}

.events-news::after {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,81,47,0.18), transparent 70%);
    border-radius: 50%;
}

/* Heading underline animation */
.events-news .underline {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0072ff, #00c6ff);
    border-radius: 5px;
    animation: slideWidth 2s infinite alternate;
}

/* Event Card */
.event-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    position: relative;
}

/* Left color strip */
.event-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(135deg, #fff, #000);
    /*background: linear-gradient(180deg, #0072ff, #00c6ff);*/
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.16);
}

/* Event image */
.event-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-img img {
    transform: scale(1.12);
}

/* Date badge */
.date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(90deg, #ff512f, #dd2476);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Event body */
.event-body {
    padding: 1rem 1.2rem;
}

.event-body h5 {
    font-weight: 700;
    color: #0072ff;
    margin-bottom: 6px;
}

.event-body p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}


/* ==============================
   STAFF DIRECTORY – PREMIUM
================================ */

.staff-section {
    background: linear-gradient(135deg, #fff, #fff);
    position: relative;
    overflow: hidden;
}

/* Decorative blobs */
.staff-section::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(0,114,255,0.18), transparent 70%);
    border-radius: 50%;
}

.staff-section::after {
    content: "";
    position: absolute;
    bottom: -90px;
    right: -90px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,81,47,0.18), transparent 70%);
    border-radius: 50%;
}

/* Staff Card */
.staff-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    position: relative;
}

.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.16);
}

/* Staff image area */
.staff-img {
    position: relative;
    height: 230px;
    background: #f3f6fb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.staff-img img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.staff-card:hover .staff-img img {
    transform: scale(1.12);
}

/* Overlay with contact */
.staff-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fff, #000);
    /*background: linear-gradient(135deg, rgba(0,114,255,0.9), rgba(0,198,255,0.9));*/
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
    padding: 15px;
}

.staff-card:hover .staff-overlay {
    opacity: 1;
}

.staff-overlay p {
    margin: 4px 0;
}

/* Info */
.staff-info {
    padding: 1rem;
}

.staff-info h5 {
    margin-bottom: 4px;
    font-weight: 700;
    color: #0072ff;
}

.staff-info p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}

/* Heading underline */
.staff-section .underline {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0072ff, #00c6ff);
    border-radius: 5px;
    animation: slideWidth 2s infinite alternate;
}
 
 
 /* ==============================
   DOWNLOADABLE FORMS – PREMIUM
================================ */

#forms {
    background: linear-gradient(135deg, #f9f9f9, #eef3f7);
    position: relative;
    overflow: hidden;
}

/* Decorative blobs */
#forms::before {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(0,114,255,0.18), transparent 70%);
    border-radius: 50%;
}

#forms::after {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,81,47,0.18), transparent 70%);
    border-radius: 50%;
}

/* Form Card */
.form-card {
    background: #ffffff;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 26px rgba(0,0,0,0.1);
    transition: all 0.35s ease;
}

.form-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* Icon circle */
.form-card .icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff, #000);
    /*background: linear-gradient(135deg, #0072ff, #00c6ff);*/
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,114,255,0.35);
}

.form-card .icon-circle i {
    color: #fff;
}

/* Title */
.form-card h5 {
    font-weight: 700;
    color: #0072ff;
}

/* Download button */
.download-btn {
    background: linear-gradient(135deg, #fff, #000);
    /*background: linear-gradient(90deg, #ff512f, #dd2476);*/
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    /*box-shadow: 0 8px 22px rgba(221,36,118,0.45);*/
    color: #fff;
}


/* ==============================
   FEEDBACK SECTION – PREMIUM
================================ */

#feedback {
    background: linear-gradient(135deg, #fff, #fff);
    position: relative;
    overflow: hidden;
}

/* Decorative blobs */
#feedback::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(0,114,255,0.18), transparent 70%);
    border-radius: 50%;
}

#feedback::after {
    content: "";
    position: absolute;
    bottom: -90px;
    right: -90px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,81,47,0.18), transparent 70%);
    border-radius: 50%;
}

/* Form Card */
#feedback .shadow-lg {
    border-radius: 20px;
    transition: all 0.35s ease;
}

#feedback .shadow-lg:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.16);
}

/* Form controls */
#feedback .form-control {
    border-radius: 12px;
    padding: 10px 14px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

#feedback .form-control:focus {
    border-color: #0072ff;
    box-shadow: 0 0 6px rgba(0,114,255,0.35);
}

/* Submit button */
#feedback button {
    background: linear-gradient(90deg, #28a745, #20c997);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

#feedback button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(40,167,69,0.45);
}

/* Right image card */
#feedback .card {
    border-radius: 20px;
    overflow: hidden;
}

#feedback .card img {
    transition: transform 0.5s ease;
}

#feedback .card:hover img {
    transform: scale(1.08);
}


/* ==============================
   CONTACT US – PREMIUM SECTION
================================ */

.contact-section {
    background: linear-gradient(135deg, #f9f9f9, #eef3f7);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative blobs */
.contact-section::before {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(0,114,255,0.18), transparent 70%);
    border-radius: 50%;
}

.contact-section::after {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,81,47,0.18), transparent 70%);
    border-radius: 50%;
}

/* Contact card */
.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.16);
}

/* Icon */
.contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.15);
}

/* Info */
.contact-info h5 {
    font-weight: 700;
    margin-bottom: 4px;
    color: #0072ff;
}

.contact-info p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}

/* Map */
.contact-section iframe {
    border-radius: 20px;
    width: 100%;
    height: 350px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}



/* =====================================================
   BUTTONS
===================================================== */
.btn-modern {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-modern::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
    transform: translateX(-100%);
}

.btn-modern:hover::after {
    animation: btnShine 0.8s;
}

@keyframes btnShine {
    to { transform: translateX(100%); }
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
    position: relative;
    background: linear-gradient(to left, #000, #fff);
    padding: 60px 0 20px;
    overflow: hidden;
}

.footer::before,
.footer::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, #ffd36955, transparent 70%);
    animation: floatOrb 8s infinite alternate;
}

.footer::before {
    top: -60px;
    left: -60px;
}

.footer::after {
    bottom: -60px;
    right: -60px;
}

@keyframes floatOrb {
    from { transform: translateY(0); }
    to { transform: translateY(30px); }
}
