/* Reset */
:root {
    --main-color: #0078d4;
    --picklist-bg: rgba(246, 250, 255, 0.85);
    --picklist-focus: #e1f0ff;
    --card-bg: #fff;
    --shadow: 0 4px 24px rgba(0, 120, 212, 0.09);
    --primary: #b95161;
    --primary-light: #c37480;
    --primary-lighter: #f5e4e7;
    --text-dark: #2C2C2C;
    --text-mid: #666;
    --cream: #FFF9FA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Soft whitish patterned background */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f8f8;
    background-image:
        repeating-linear-gradient(45deg,
            rgba(0, 0, 0, 0.02),
            rgba(0, 0, 0, 0.02) 1px,
            transparent 1px,
            transparent 20px);
    background-repeat: repeat;
    max-width: 1600px;
    margin: 0 auto;
    /* Optional: adds spacing on smaller screens */
}
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #c37480;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Sections */
main {
    width: 100%;
    background-color: #fffefe;
}

.ngoImg {
    text-align: center;
}

.card-border {
    border-bottom: 1px solid #c4c4c4;
}

section {
    align-items: center;
    font-size: 3rem;
    color: #333;
    margin-bottom: 48px;
    padding: 0 12px;
}

.askAndGet {
    padding: 20px 0;
    text-align: center;
}

.askAndGet p {
    font-size: 16px;
    margin-bottom: 16px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    padding: 15px 30px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1000;
    transition: 0.3s ease;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
}

.logo-span {
    color: #c37480;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #111;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #b95161;
    text-shadow: 0 0 3px #b95161;
}

.hamburger {
    display: none;
    font-size: 1.6rem;
    color: #111;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Pop up - Start */
/* Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Popup box */
.popup-content {
    background: #fff;
    width: 90%;
    max-width: 700px;
    border-radius: 16px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform: scale(0.7) translateY(50px);
    opacity: 0;
    animation: popupOpen 0.7s forwards;
}

/* Popup open animation */
@keyframes popupOpen {
    0% {
        opacity: 0;
        transform: scale(0.7) translateY(50px);
    }

    60% {
        opacity: 1;
        transform: scale(1.05) translateY(-10px);
    }

    80% {
        transform: scale(0.98) translateY(5px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Header */
.popup-header {
    background: linear-gradient(135deg, #c37480, #af5b69);
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.popup-header h2 {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    line-height: 1;
}

.popup-close {
    border: none;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

/* Body */
.popup-body {
    padding: 20px;
    color: #1e293b;
    line-height: 1.5;
    font-size: 0.95rem;
}

.popup-links {
    padding-left: 20px;
}

.popup-links li {
    margin: 0.5em 0;
}

.popup-links a {
    color: #2563eb;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
}

.popup-links a:hover {
    text-decoration: underline;
}

/* Footer */
.popup-footer {
    padding: 16px 20px;
    background: #f8fafc;
    text-align: right;
    border-top: 1px solid #e2e8f0;
}

.popup-footer button {
    background: linear-gradient(135deg, #22c55e, #15803d);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.popup-footer button:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.45);
}

/* Responsive for mobile */
@media (max-width: 600px) {
    .popup-content {
        width: 95%;
    }

    .popup-header h2 {
        font-size: 1.1rem;
    }

    .popup-body {
        font-size: 0.9rem;
        padding: 16px;
    }

    .popup-footer {
        padding: 12px 16px;
    }

    .popup-footer button {
        padding: 10px 16px;
        font-size: 0.95rem;
    }
}

/* Popup -end */

/* About Section - Start */
.about-section {
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    align-items: stretch;
    /* Ensures children match height */
}

.about-header {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.about-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=1200&h=300&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.header-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    color: #fff;
    text-align: center;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.about-subtitle {
    font-size: 1.05rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

/* Content */
.about-content {
    padding: 1rem;
}

.content-section {
    margin-bottom: 1.2rem;
}

.content-section:last-child {
    margin-bottom: 0;
}

.section-heading {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-lighter);
}

.content-section p {
    color: var(--text-mid);
    font-size: 16px;
    line-height: normal;
    margin-bottom: 0.8rem;
}

.content-section p:last-child {
    margin-bottom: 0;
}

/* Highlight box */
.highlight-box {
    background: var(--primary-lighter);
    border-left: 4px solid var(--primary);
    padding: 1.2rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box p {
    margin: 0;
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
}

/* Categories inline */
.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.8rem;
}

.category {
    background: var(--primary-lighter);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--primary-light);
}

/* Responsive */
@media (max-width: 768px) {
    .about-container {
        margin: 1rem;
    }

    .about-header {
        height: 180px;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-subtitle {
        font-size: 0.9rem;
    }

    .about-content {
        padding: 1.5rem 1.2rem;
    }
}

.about-para {
    margin: 20px 0;
}

.about-details,
.about-cards {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    color: #424141;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.about-details {
    grid-column: span 8;
    padding: 0 !important;
}

.about-details h2 {
    font-size: 24px;
    font-weight: 700;
}

.about-details p {
    font-size: 16px;
}

.about-cards {
    grid-column: span 4;
}

.card {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    border-radius: 10px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.card p {
    font-size: 0.95rem;
    line-height: 1.4;
}

/* About Section - End */

/* Carousal - Start */
.about-carousel {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    background: #fafafa;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    min-height: 390px;
    max-height: 425px;
    height: 100%;
    padding-bottom: 32px;
}

.carousel-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(.4, 2, .6, 1);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    text-align: center;
    padding: 0 6px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 380px;
}

.carousel-slide img {
    width: 75%;
    height: 310px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    background: #eee;
}

.carousel-caption {
    font-size: 1.02rem;
    color: #34495e;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.carousel-desc {
    font-size: 0.8rem;
    color: #282828;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    color: #0078d4;
    font-size: 2rem;
    padding: 0.1em;
    cursor: pointer;
    z-index: 1;
    transition: background 0.18s;
    user-select: none;
}

.carousel-btn:hover {
    background: rgba(0, 120, 212, 0.19);
}

.carousel-btn-prev {
    left: 10px;
}

.carousel-btn-next {
    right: 10px;
}

/* Carousal - End */
/* News Start */
.news-ticker-container {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    position: relative;
    height: 140px;
    background: #eef6fd;
    border-top: 2px solid #0078d4;
    box-shadow: 0 2px 7px rgba(0, 120, 212, 0.07);
    padding-top: 10px;
}

.news-ticker-track {
    display: flex;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
    height: 120px;
    will-change: transform;
}

.news-ticker-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 9px;
    background: #eee;
    cursor: pointer;
    box-shadow: 0 1px 6px rgba(0, 120, 212, 0.08);
    border: 2px solid #fff;
    transition: box-shadow 0.17s, transform 0.17s;
    display: block;
}

.news-ticker-img:hover {
    box-shadow: 0 5px 18px rgba(0, 120, 212, 0.13);
    transform: scale(1.1);
    border-color: #0078d4;
}

.news-ticker-container.paused .news-ticker-track {
    animation-play-state: paused !important;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.76);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 8000;
}

.lightbox-overlay.active {
    display: flex;
    animation: fadeIn 0.25s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-image {
    max-width: 94vw;
    max-height: 88vh;
    border-radius: 12px;
    box-shadow: 0 6px 38px rgba(0, 0, 40, 0.24);
    background: #fff;
    padding: 0.5rem;
    outline: none;
}

.lightbox-close {
    position: absolute;
    top: 2vw;
    right: 3vw;
    color: #fff;
    font-size: 2.2rem;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.33);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9000;
    transition: background 0.17s;
}

.lightbox-close:hover {
    background: rgba(0, 120, 212, 0.40);
}

@media (max-width:650px) {

    .news-ticker-container,
    .news-ticker-track {
        height: 52px;
    }

    .news-ticker-img {
        width: 38px;
        height: 38px;
    }

    .lightbox-close {
        top: 5vw;
        font-size: 1.5rem;
        width: 28px;
        height: 28px;
    }
}

/* News End */
/* Gallery - Start */
#gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 1200px;
    margin: 20px auto;
    padding: 10px;
}

#gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}


#pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

#pagination button {
    padding: 8px 14px;
    border: none;
    background-color: #ddd;
    color: #333;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

#pagination button:hover {
    background-color: #bbb;
}

#pagination button.active {
    background-color: #333;
    color: #fff;
}

/* Popup */
#popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#popup img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Close & navigation buttons */
#closeBtn {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
    user-select: none;
}

#closeBtn:hover {
    color: #ff4d4d;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s ease;
}

.nav-btn:hover {
    color: #ff4d4d;
}

#prevBtn {
    left: 50px;
}

#nextBtn {
    right: 50px;
}

@media (max-width: 600px) {
    #gallery img {
        height: 150px;
    }

    #prevBtn,
    #nextBtn {
        font-size: 36px;
    }
}

/* ******* awardes ******* */
.picker-modern-wrap {
    position: relative;
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 2.2rem auto;
}

.picker-select {
    width: 100%;
    max-width: 400px;
    font-size: 1.13rem;
    font-weight: 500;
    background: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right;
    border: 1.7px solid #eaeaea;
    outline: none;
    border-radius: 9px;
    color: #262626;
    box-shadow: 0 0.5px 10px #dedede1f, 0 1.5px 6px #ededed1a;
    padding: 0.6rem 2.3rem 0.8rem 0.9rem;
    appearance: none;
    transition: border 0.18s, box-shadow 0.18s;
}

.card-flex-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    align-items: flex-start;
}

.card-demo {
    background: #fff;
    border-radius: 11px;
    min-width: 255px;
    max-width: 305px;
    width: 100%;
    min-height: 380px;
    /* increased for desc */
    box-shadow: 0 4px 18px #dbdbdb38;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #ededed;
    transition: box-shadow 0.13s, border 0.15s;
    padding-bottom: 1.2rem;
}

.card-img {
    width: 93%;
    height: 260px;
    background: #bcd0e2;
    color: #fff;
    font-weight: 700;
    font-size: 1.07rem;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: fill !important;
    border-radius: 7px;
    margin: 0.6rem 0 0.8rem 0;
    object-fit: cover;
    box-shadow: 0 1.5px 8px #eaeaea44;
}

.card-name {
    text-align: center;
    font-weight: 600;
    font-size: 1.06rem;
    margin-bottom: 0.2rem;
    letter-spacing: 0.05px;
    color: #202022;
}

.card-place {
    text-align: center;
    font-size: 0.99rem;
    color: #787878;
    margin-bottom: 0.7rem;
}

.card-desccription {
    min-height: 56px;
    /* enough for 2-3 lines, adjust as needed */
    width: 90%;
    text-align: center;
    font-size: 0.87rem;
    color: #4b515a;
    margin: 0.3rem auto 0.2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /* keeps the card heights consistent */
}

.card-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.2rem 0 0.6rem 0;
}

.card-pagination button {
    border: none;
    background: #f2f2f2;
    color: #333;
    font-size: 1.08rem;
    border-radius: 5px;
    padding: 0.4em 0.95em;
    margin: 0 0.06em;
    cursor: pointer;
    box-shadow: 0 2px 9px #eaeaea23;
    transition: background 0.16s, color 0.16s, transform 0.19s;
    opacity: 0;
    animation: fadeInPageBtn 0.34s both;
}

@keyframes fadeInPageBtn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.card-pagination button.active {
    background: #c37480;
    color: #fff;
    transform: scale(1.12);
    box-shadow: 0 2px 14px #c3748029;
    z-index: 2;
}

.card-pagination button:not(.active):hover {
    background: #e2d4dd;
    color: #c37480;
    transform: scale(1.07);
}

@media (max-width: 600px) {
    .picker-modern-wrap {
        max-width: 99vw;
    }

    .picker-select {
        font-size: 1rem;
        max-width: 99vw;
    }

    .card-flex-grid {
        gap: 0.8rem;
    }

    .card-demo {
        min-width: 90vw;
        max-width: 99vw;
        padding-bottom: 1rem;
    }

    .card-img {
        height: 270px;
    }
}

/* Gallery - End */

/* Video - Start */
.featured-section {
    position: relative;
    padding: 4.5rem 0 2.8rem 0;
    background: linear-gradient(120deg, #f5e4e7 75%, #c37480 100%);
    overflow: hidden;
}

.featured-bg {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 240px;
    background: #c37480;
    border-radius: 0 0 180px 140px / 0 0 170px 90px;
    opacity: 0.23;
    z-index: 1;
}

.featured-title {
    position: relative;
    z-index: 2;
    color: #c37480;
    font-size: 2.3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.9rem;
    text-shadow: 0 3px 30px rgba(195, 116, 128, 0.09);
}

.featured-row {
    display: flex;
    gap: 2.2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}

.featured-card {
    background: #fff;
    border-radius: 26px;
    box-shadow: 0 11px 30px rgba(195, 116, 128, 0.09);
    padding: 1.2rem 1.2rem 0.9rem 1.2rem;
    min-width: 260px;
    max-width: 330px;
    flex: 1 1 260px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(2.2px);
    border: 2px solid #f5e4e7;
    transition: transform 0.17s, box-shadow 0.19s;
    overflow: visible;
    position: relative;
}

.featured-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 21px 55px 2px rgba(195, 116, 128, 0.13);
    border-color: #c37480;
}

.featured-frame {
    width: 100%;
    border-radius: 17px;
    aspect-ratio: 16/9;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(195, 116, 128, 0.10);
    background: #133458 linear-gradient(110deg, #f5e4e7 10%, #c37480 90%);
    position: relative;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 17px;
    display: block;
    background: #fff;
}

.featured-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(120deg, #c37480 70%, #f5e4e7 100%);
    box-shadow: 0 2px 23px rgba(195, 116, 128, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
    opacity: 0.94;
    transition: opacity 0.17s;
}

.featured-play::before {
    content: '';
    display: block;
    border-style: solid;
    border-width: 15px 0 15px 28px;
    border-color: transparent transparent transparent #fff;
    margin-left: 7px;
}

.featured-play.hide {
    opacity: 0;
    pointer-events: none;
}

.featured-caption {
    text-align: center;
    font-size: 1.15rem;
    color: #09376d;
    font-weight: 700;
    opacity: 0.96;
}

.featured-desig{
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 700;
    color: #3a3535;
}

@media (max-width:900px) {
    .featured-row {
        flex-direction: column;
        align-items: center;
    }

    .featured-card {
        max-width: 96vw;
    }
}

@media (max-width:600px) {
    .featured-title {
        font-size: 1.08rem;
    }

    .featured-card {
        max-width: 100vw;
        min-width: 0;
        padding: 0.38rem;
    }
}

/*Video - End*/
/* Responsive Design */
@media (max-width: 980px) {
    .about-carousel {
        width: 96vw;
        margin-top: 2rem;
    }
}

@media (max-width: 600px) {
    .about-carousel {
        width: 98vw;
        border-radius: 9px;
        min-height: 80vw;
    }

    .logo {
        font-size: 1rem;
    }

    .carousel-slide img {
        height: 310px;
    }

    .carousel-caption {
        font-size: 0.97rem;
    }

    .timeline-vcenter {
        display: none;
    }
}

/* Carousal - End */

/* Selection Process - Start */
    .section-container {
      max-width: 1300px;
      margin: 48px auto;
      padding-bottom: 32px;
      background: #fff;
      border-radius: 26px;
      box-shadow: 0 6px 32px #207bfc15, 0 1px 7px #0001;
    }
    .section-title {
      text-align: center;
      font-size: 2.25rem;
      font-weight: bold;
      color: #173b6c;
      letter-spacing: .04em;
      margin-top: 40px;
      margin-bottom: 10px;
      padding: 0 10px;
    }
    .section-title span {
      display: block;
      width: 110px;
      height: 4px;
      background: #c37480;
      margin: 9px auto 0 auto;
      border-radius: 2px;
    }
    .ceremony-info {
      text-align: center;
      font-size: 1.06rem;
      margin-bottom: 28px;
    }
    .ceremony-info img {
      margin-top: 24px;
      border-radius: 12px;
      box-shadow: 0 1px 6px #0001;
    }
    .cards-container {
      display: flex;
      flex-direction: column;
      gap: 32px;
      align-items: center;
      margin-top: 14px;
    }
    .process-card {
      display: flex;
      align-items: center;
      padding: 20px;
      background: #fafdff;
      border-radius: 20px;
      box-shadow: 0 2px 14px #197bfc14, 0 1px 8px #0001;
      max-width: 890px;
      width: 97%;
      position: relative;
      transition: box-shadow .17s, background .15s;
    }
    .process-card:hover {
      background: #e9f3fe;
      box-shadow: 0 6px 20px #197bfc24;
    }
    .icon-step-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-right: 20px;
      width: 70px;
    }
    .step-icon {
      font-size: 2.7rem;
      color: #c37480;
      background: #f0cbd0;
      border-radius: 14px;
      box-shadow: 0 1px 8px #207bfc14;
      width: 53px; height: 53px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 7px;
      padding: 4px;
    }
    .card-content {
      flex: 1;
      min-width: 0;
    }
    .card-title {
      font-size: 1.19rem;
      margin-bottom: 8px;
      color: #13366e;
      font-weight: 800;
      letter-spacing: 0.01em;
    }
    .card-desc {
      font-size: 1.08rem;
      color: #234;
      line-height: 1.62;
      text-align: left;
      margin: 0;
    }
    @media (max-width: 600px) {
      .section-container {padding:0 2vw;}
      .section-title {font-size:1.45rem;}
      .ceremony-info {font-size:1.03rem;}
      .cards-container {gap:16px;}
      .process-card {padding:12px 6vw 12px 10px;max-width:99vw;}
      .icon-step-wrap {width:40px;margin-right:12px;}
      .step-icon {font-size:1.5rem;width:27px;height:27px;}
      .step-number {font-size:0.90rem;min-width:20px;padding:2px 6px;}
      .card-title {font-size:1.03rem;}
      .card-desc {font-size:0.98rem;}
    }

/* Selection Process - End */

/* Message Section */

.message-title{
    display: block;
    padding: 20px 0;
}
.message-heading{
    font-size: 24px;
    margin-bottom: 16px;
    text-align: center;
}
    .three-grid-section {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: auto auto;
      gap: 40px; /* Increased space between items */
      align-items: start;
      justify-items: center;
      max-width: 1300px;
      margin: 0 auto;
    }

    .grid-item {
      padding: 20px;
      border: 1px solid #bbb;
      text-align: center;
      font-size: 18px;
      width: 100%;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .grid-item img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* crops edges neatly to fill grid */
      display: block;
    }

    .item3 {
      grid-column: 1 / span 2;
      justify-self: center;
      width: 50%;
    }

    @media (max-width: 768px) {
      .three-grid-section {
        grid-template-columns: 1fr;
        gap: 20px; /* Reduced gap for mobile */
      }

      .item3 {
        grid-column: auto;
        width: 100%;
      }
    }

/* Footer Section */
.footer {
    background: #424040;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c37480;
}

.footer-social a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #b95161;
}

.footer-copy {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* HERO BANNER */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh;
    background-image: url('./images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #302f2f;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
}

.hero-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 20px;
    background-color: #c37480;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.hero-btn:hover {
    background-color: #9c535e;
}

/* Contact US Section - Start */
.contact-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    background: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1920&q=80') no-repeat center center;
    background-size: cover;
    color: #fff;
    text-align: center;
    min-height: 500px;
}

/* Overlay for readability */
.contact-overlay {
    background: rgba(0, 0, 50, 0.6);
    /* dark overlay */
    padding: 60px 20px;
    border-radius: 16px;
    max-width: 630px;
    width: 100%;
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Text and email styling */
.contact-container h3 {
    font-size: 2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-container p {
    font-size: 1rem;
    margin-bottom: 24px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Email button with icon */
.contact-email {
    display: inline-flex;
    align-items: center;
    font-size: 1.2rem;
    gap: 12px;
    /* space between icon and text */
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-email i {
    font-size: 1.2rem;
}

/* Hover effect */
.contact-email:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 600px) {
    .contact-section {
        padding: 60px 20px;
        min-height: 400px;
    }

    .contact-overlay {
        padding: 40px 16px;
    }

    .contact-container h3 {
        font-size: 1.5rem;
    }

    .contact-container p {
        font-size: 0.95rem;
    }

    .contact-email {
        font-size: 0.95rem;
        padding: 10px 16px;
    }
}

/* Contact US Section - End */

/* Responsive */
@media (max-width: 600px) {
    .hero {
        height: 60vh;
    }
    .hero-content h1{
        font-size: 30px;
    }
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-social {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* Mobile menu */
@media (max-width: 1024px) {
    .nav-links {
        position: absolute;
        top: 70px;
        right: 20px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(15px);
        flex-direction: column;
        width: 220px;
        border-radius: 12px;
        padding: 20px;
        display: none;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .nav-links a {
        padding: 10px 0;
    }

    /* About Section */
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-details,
    .about-cards {
        grid-column: span 12;
    }

}