/* =====================
  COMMON
===================== */

* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.expo-body {
    margin: 0;
    /* min-height: 100vh; */
    background: #0B0B0B;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}

.expo-container {
    width: 100%;
    max-width: 380px;
    /* padding: 20px; */
}

.expo-card {
    background: #141414;
    border-radius: 16px;
    padding: 5px 22px 15px 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* =====================
   LOGO & HEADINGS
===================== */

.expo-logo {
    text-align: center;
}

.expo-logo img {
    width: 70%;
}

.expo-title {
    font-size: 19px;
    font-weight: 600;
    text-align: center;
    margin: 0 0 6px;
}

.expo-subtitle {
    font-size: 13px;
    color: #CCCCCC;
    text-align: center;
    margin-bottom: 22px;
    margin-top: 0px;
}

/* =====================
   FORM ELEMENTS (index)
===================== */

.form-group {
    margin-bottom: 14px;
}

input {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    outline: none;
    background: #1F1F1F;
    color: #FFFFFF;
    font-size: 14px;
}

input::placeholder {
    color: #888;

}

/* =====================
   BUTTONS
===================== */

.primary-btn {
    width: 100%;
    /* margin-top: 12px; */
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    color: #FFFFFF;
    background: linear-gradient(135deg, #FF8A00, #ca2672);
    box-shadow: 0 6px 18px rgba(255, 138, 0, 0.35);
    transition: transform 0.2s ease;
}

.primary-btn:active {
    transform: scale(0.98);
}

/* =====================
   FOOTER
===================== */

.expo-footer {
    margin-top: 18px;
    font-size: 13px;
    color: #AAAAAA;
    text-align: center;
}

.gipl {
    color: #d3d3d3 !important;
    text-decoration: none;
}

.gipl:hover {
    color: #6287ff;
    text-decoration: none;
}

/* =====================
   unity-details
===================== */

.details-card {
    background: #1C1C1C;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Header */
.details-header {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.details-header img {
    width: 30%;
}

/* Banner */
.details-banner {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.details-banner img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Subtitle */
.details-subtitle {
    text-align: center;
    font-size: 13px;
    color: #FFC247;
    margin-bottom: 12px;
}

/* Divider */
.details-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #333, transparent);
    margin: 15px 0;
}

/* Description */
.details-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #E0E0E0;
    text-align: justify;
    margin-bottom: 14px;
}

/* Highlights – FIXED 2x2 GRID */
.details-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.details-highlight-box {
    background: #1C1C1C;
    border-radius: 14px;
    padding: 10px;
    text-align: center;
    border: 1px solid rgba(255, 194, 71, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.25s ease;
}

.details-highlight-box i {
    font-size: 24px;
    color: #FFC247;
    margin-bottom: 6px;
}

.details-highlight-box h4 {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 4px;
}

.details-highlight-box span {
    font-size: 11px;
    color: #9a9a9a;
}

/* Project Link */
.details-link {
    text-align: center;
    font-size: 14px;
    margin-bottom: 15px;
}

.details-link a {
    color: #FFC247;
    text-decoration: none;
    font-weight: 500;
}

/* ================= THANK YOU PAGE ================= */

.thankyou-container {
    width: 100vh;
    /* max-width: 380px; */
    /* padding: 20px; */
}

.thankyou-card {
    text-align: center;
    padding-bottom: 18px;
    /* margin: 20px; */
}

/* Logo */
.thankyou-logo img {
    width: 65%;
    margin-bottom: 5px;
}

/* Titles */
.thankyou-title {
    font-size: 18px;
    font-weight: 600;
    margin: 6px 0 6px;
}

.thankyou-subtitle {
    font-size: 13px;
    color: #BBBBBB;
    margin-bottom: 18px;
}

/* Coupon Box */
.coupon-box {
    background: #1F1F1F;
    border-radius: 14px;
    padding: 14px 12px;
    margin-bottom: 16px;
    border: 1px dashed rgba(255, 138, 0, 0.5);
    margin-top:30px;
}

.coupon-label {
    display: block;
    font-size: 11px;
    color: #AAAAAA;
    margin-bottom: 6px;
}

.coupon-code {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #FFC247;
}

/* Offer Text */

.coupon-offer {
    font-size: 30px;
    margin-bottom: 8px;
    margin-top:0;
}

.coupon-offer span {
    color: #FFC247;
    font-weight: 500;
    font-size: 26px;
    margin-top: 3px;
}

/* thankyou Note */
.coupon-note {
    font-size: 15px;
    color: #999999;
    margin-bottom: 20px;
    margin-top: 25px;
        text-align: left;
}

/* thankyou Button Override */

.thankyou-btn {
    max-width: 220px;
    margin: 0 auto 10px;

}

.map {

  color: #c7c6c6;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid gray;
    padding: 10px;
    border-radius: 7px;
}

/* thankyou Footer */

.thankyou-footer {
    font-size: 11px;
    color: #888888;
    margin-top: 10px;

}


/* Fade-in and slide-up animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional: stagger effect for children */
.thankyou-card>* {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.thankyou-card>*:nth-child(1) {
    animation-delay: 0.2s;
}

.thankyou-card>*:nth-child(2) {
    animation-delay: 0.4s;
}

.thankyou-card>*:nth-child(3) {
    animation-delay: 0.6s;
}

.thankyou-card>*:nth-child(4) {
    animation-delay: 0.8s;
}

.thankyou-card>*:nth-child(5) {
    animation-delay: 1s;
}


/* social media icons */

.social-icons {
    text-align: center;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    font-size: 18px;
    color: #d3d3d3;
    text-decoration: none !important;
    border: none !important;
}

.social-icons a:hover {
    color: #fb7b26;
}

/* .fab {
    background: #1f1f1f;
    padding: 10px 15px;
    border-radius: 4px;
} */

.fab-text {
    margin-top: 8px;
    margin-bottom: 10px;
}

.social-fb{
    border-radius: 8px;
    width: 42px !important;
}

.social-insta{
    width: 42px !important;
}