@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Just+Another+Hand&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* =========================
   THEME (Blue & Purple)
========================= */
:root {
    --purple: #A32A8C;
    --blue: #2166A6;
    --purple-dark: #7e1f6a;
    --blue-dark: #184a78;
    --text: #2B2B2B;
    --muted: #667085;
    --card: #ffffff;
    --ring: 0 10px 30px rgba(0, 0, 0, .08);
    --glass: rgba(255, 255, 255, .18);
    --glass-border: rgba(255, 255, 255, .35);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
  
  font-weight: 400;
  color: #333;
}

body {

    margin: 0;
    color: var(--text);
    font: 16px/1.65;
    background: #fff;
    font-family: 'Jost', sans-serif;
}

a {
    text-decoration: none
}

/* containers */
.wrap {
    max-width: 1300px;
    margin-inline: auto;
    padding: 0 20px
}

.section {
    padding: 60px 0
}

.section.light {
    background: linear-gradient(180deg, #F6F7FF 0%, #FFFFFF 70%)
}

.section.soft {
    background: linear-gradient(180deg, #F2F6FB 0%, #FFFFFF 100%)
}

.section.gradient {
    background:
        radial-gradient(1300px 500px at 70% -50%, #7fb7e54d 0%, transparent 60%),
        radial-gradient(1000px 500px at -10% 120%, #c08ed94d 0%, transparent 60%),
        linear-gradient(135deg, var(--purple) 0%, var(--blue) 65%);
    color: #fff;
}

/* headings */
.title {
    margin: 0 0 28px;
    text-align: center;
    font-weight: 800;
    letter-spacing: .2px;
    color: inherit
}

.title .kicker {
    display: block;
    font-size: 14px;
    letter-spacing: .22em;
    text-transform: uppercase;
    opacity: .85;
    margin-bottom: 6px
}

.title h2 {
    margin: 0;
    font-size:30px
}

.underline {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 14px auto 0
}

.underline i {
    width: 54px;
    height: 6px;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--purple), var(--blue))
}

.underline b {
    width: 18px;
    height: 6px;
    border-radius: 6px;
    background: var(--blue)
}




/* SECTION BASE */
.welcome-section {
  background: #fff;
  padding: 80px 0;
  margin: 0px 50px;
  line-height: 1.8;
  color: #333;
}

/* CONTAINER */
.welcome-section .wrap {
  max-width: 950px;
  margin: auto;
  padding: 0 20px;
}

/* HANDWRITTEN HEADING */
.welcome-script {
  font-family: 'Great Vibes', cursive;
  font-size: 58px;
  text-align: center;
  color: #7B1FA2;
  margin-bottom: 40px;
}

/* BODY TEXT */
.welcome-body {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  color: #333;
}

.welcome-body p {
  margin-bottom: 18px;
}

.welcome-body strong {
  color: #A32A8C;
  font-weight: 600;
}

.welcome-body em {
  color: #000;
}

/* COMMITTEE MEMBERS */
.committee {
  margin-top: 40px;
  font-family: 'Jost', sans-serif;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.committee p {
  flex: 1 1 30%;
  font-size: 16px;
  color: #222;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .welcome-script {
    font-size: 42px;
  }
  .welcome-body {
    font-size: 16px;
  }
  .committee {
    flex-direction: column;
    align-items: flex-start;
  }
  .committee p {
    flex: 1 1 100%;
  }
}


/* ============================= WELCOME MESSAGE GRID ============================= */

/* ==========================================
   WELCOME SECTION — 80/20 SPLIT
========================================== */
.welcome-grid.wide-split {
  /* display: grid;
  align-items: start; */
  gap: 40px;
  grid-template-columns: 5fr 0fr; /* 80% / 20% split */
}

/* LEFT COLUMN (Text) */
.welcome-text {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}

.welcome-text p {
  margin-bottom: 18px;
}

/* RIGHT COLUMN (Image) */
.welcome-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}


/* .welcome-grid.wide-split {
  border-left: 5px solid rgba(163,42,140,0.15);
  padding-left: 30px;
}
 */

/* ==========================================
   RESPONSIVE BEHAVIOR
========================================== */
@media (max-width: 992px) {
  .welcome-grid.wide-split {
    grid-template-columns: 1fr; /* stack */
  }

  .welcome-image {
    order: -1; /* image on top for mobile */
    text-align: center;
  }

  .welcome-image img {
    width: 85%;
    max-width: 400px;
    margin-bottom: 24px;
  }

  .welcome-text {
    text-align: left;
    font-size: 16px;
  }
}


.welcome-heading {
  font-family: 'Great Vibes', cursive;  /* choose your favorite from above */
  font-size: 62px;
  color: #7B1FA2; /* deep purple */
  text-align: center;
  letter-spacing: 5px;
  font-weight: 600;
  margin-bottom: 5px;
  position: relative;
}

/* Optional decorative underline */
.welcome-heading::after {
  content: "";
  display: block;
  /* width: 120px; */
  /* height: 3px; */
  /* background: linear-gradient(90deg, #A32A8C, #2166A6); */
  margin: 10px auto 0;
  border-radius: 2px;
}



#welcome {
  background: linear-gradient(135deg, rgba(163,42,140,0.03), rgba(33,102,166,0.05));
  border-radius: 20px;
  padding: 60px 0;
}





/* utility grids */
.grid {
    display: grid;
    gap: 22px
}

@media (min-width:768px) {
    .cols-2 {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (min-width:992px) {
    .cols-3 {
        grid-template-columns: repeat(3, 1fr)
    }

    .cols-4 {
        grid-template-columns: repeat(4, 1fr)
    }
}

/* cards */
.card {
    background: var(--card);
    border-radius: 18px;
    padding: 25px;
    box-shadow: var(--ring)
}

.glass {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: saturate(140%) blur(8px);
    -webkit-backdrop-filter: saturate(140%) blur(8px)
}

/* numbered icon */
.icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
    flex: 0 0 auto
}

.highlight {
    display: flex;
    gap: 14px
}

.highlight h4 {
    margin: 6px 0 6px;
    font-size: 16px
}

.muted {
    color: var(--muted)
}

/* committee */
.person {
    text-align: center;
    padding: 26px;
    border-radius: 20px
}

.avatar {
    width: 124px;
    height: 124px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, .75)
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.person h5 {
    margin: 0 0 6px;
    font-size: 20px
}

.person p {
    margin: 0;
    font-size: 14px;
    opacity: .9
}

/* venue */
.venue-wrap {
    display: grid;
    gap: 24px
}

@media (min-width:992px) {
    .venue-wrap {
        grid-template-columns: 1.2fr 1fr
    }
}

.venue-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 14px;
    background: #EFF6FF;
    box-shadow: var(--ring)
}

.venue-title {
    margin: 0;
    text-align: center;
    background: linear-gradient(90deg, var(--purple), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2
}

/* registration */
.reg-card {
    padding: 22px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--ring)
}

.reg-head {
    font-weight: 800;
    color: var(--purple);
    font-size: 20px;
    margin-bottom: 12px
}

.price-item {
    background: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    margin: 10px 0;
    border: 1px solid #E6E6F0
}

.price-item b {
    display: block;
    margin-bottom: 6px
}

.price-item small {
    display: block;
    color: #1f5a90;
    font-weight: 700
}

/* attractions */
.attract .card {
    padding: 0;
    overflow: hidden
}

.attract img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block
}

.attract .body {
    padding: 16px
}

.attract h4 {
    margin: 0 0 6px
}

.attract p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 14px
}

/* buttons – clean (no bubble) */
.clean-btn,
.btn {
    display: inline-grid;
    place-items: center;
    padding: 12px 22px;
    border-radius: 999px;
    border: 0;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    box-shadow: 0 12px 28px rgba(33, 102, 166, .28);
    transition: all .35s ease
}

.clean-btn:hover,
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(33, 102, 166, .35);
    filter: brightness(1.06)
}

.clean-btn:active,
.btn:active {
    transform: translateY(0)
}

/* anchors */
.anchor {
    scroll-margin-top: 110px
}

/* =========================
   TOP CONTACT BAR
========================= */
.topbar {
    background: #fff;
    border-bottom: 1px solid #e9eef4;
    padding: 6px 0;
    font-size: 14px
}

.tb-wrap {
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 20px
}

.tb-left span {
    margin-right: 20px;
    color: var(--purple);
    font-weight: 600
}

.tb-right a {
    margin-left: 12px;
    color: var(--purple);
    text-decoration: none;
    font-size: 16px
}



/* =========================
   HERO
========================= */
.hero {
    min-height: 86vh;
    background: linear-gradient(135deg, #F3EAF6, #EEF4FA), url('https://images.unsplash.com/photo-1581090469153-4e27b48ff24e?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center
}

.hero .content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px
}

.hero h1 {
    font-size: 52px;
    line-height: 1.15;
    color: var(--purple);
    font-weight: 800;
    margin: 0
}

.hero p {
    font-size: 20px;
    color: #444;
    margin: 18px auto 26px;
    max-width: 780px
}



/* TOP AREA */
.footer-top {
    padding: 60px 0 40px;
    /* background: url('https://aroicon2026.com/wp-content/uploads/2025/10/city-footer.png') */
    bottom center no-repeat;
    background-size: cover;
}

.footer-grid {
    display: grid;
    gap: 40px;
}

@media (min-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.footer-col h3 {
    margin: 0 0 15px;
    font-size: 22px;
    font-weight: 700;
}

.footer-logo {
    height: 110px;
    margin: 5px 0 6px;
}

.footer-logo-small {
    height: 45px;
    margin-bottom:0px;
}

.footer-col p {
    margin: 6px 0 8px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
}

/* FLAG COUNT BAR */
.flag-count {
    text-align: center;
    background: #062b44;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.7px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* LINKS ROW */
.footer-links {
    text-align: center;
    padding: 14px 0;
    background: #062338;
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    justify-content: center;
}

.footer-links a {
    color: #fff;
    opacity: 0.9;
    font-size: 14px;
    transition: 0.3s;
    font-weight: 500;
}

.footer-links a:hover {
    opacity: 1;
}

/* COPYRIGHT */
.footer-bottom {
    background: #051a2a;
    text-align: center;
    padding: 14px 0;
    opacity: 0.95;
    font-size: 85%;
    font-weight: 500;
}


/* =======================================
   ANIMATED GRADIENT BACKGROUND (BASE)
======================================= */
.animated-bg {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,
            #A32A8C,
            #2166A6,
            #6F2DBD,
            #2F6CC0);
    background-size: 400% 400%;
    animation: gradientMove 12s ease-in-out infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


/* =======================================
   WAVY ABSTRACT SHAPES (TOP & BOTTOM WAVES)
======================================= */
.animated-bg::before,
.animated-bg::after {
    content: "";
    position: absolute;
    width: 180%;
    height: 180px;
    left: -40%;
    background-repeat: no-repeat;
    opacity: 0.22;
    animation: waveMove 18s linear infinite;
    pointer-events: none;
}

/* Top Wave */
.animated-bg::before {
    top: -20px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='1200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 67 C 300 200 600 -40 1200 80 L1200 0 L0 0 Z' fill='%23ffffff' fill-opacity='0.35'/%3E%3C/svg%3E");
}

/* Bottom Wave */
.animated-bg::after {
    bottom: -40px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='1200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 117 C 400 -40 700 220 1200 90 L1200 200 L0 200 Z' fill='%23ffffff' fill-opacity='0.25'/%3E%3C/svg%3E");
    animation-delay: -9s;
}

@keyframes waveMove {
    0% {
        transform: translateX(0) translateY(0);
    }

    50% {
        transform: translateX(-8%) translateY(6px);
    }

    100% {
        transform: translateX(0) translateY(0);
    }
}


/* =========================================
   GLOWING DOTS (Particle Layer)
========================================= */

.glow-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
}

/* Base dot styling */
.glow-dots span {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #ffffff, rgba(255, 255, 255, 0));
    border-radius: 50%;
    filter: blur(4px);
    opacity: 0.65;
    animation: dotFloat 12s infinite ease-in-out;
}

/* Glow Motion */
@keyframes dotFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-40px) scale(1.3);
        opacity: 1;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
}

/* Optional twinkle effect */
@keyframes twinkle {

    0%,
    100% {
        opacity: .5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}


/* ====================================================
   PREMIUM BACKGROUND IMAGE + GRADIENT BLEND (Option D)
   Works for Hero, Footer, or Any Section
==================================================== */

.bg-blend {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.bg-blend::before {
    content: "";
    position: absolute;
    inset: 0;

    /* Animate both gradient + image */
    background:
        linear-gradient(135deg, #A32A8Ccc, #2166A6cc),
        url("https://aroicon2026.com/wp-content/uploads/2025/10/city-footer.png") center/cover no-repeat;

    mix-blend-mode: overlay;
    /* MAGIC blend */
    opacity: 0.42;
    /* Adjust visibility */
    animation: blendMotion 18s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

/* Motion Effect */
@keyframes blendMotion {
    0% {
        transform: scale(1) translateY(0px);
    }

    50% {
        transform: scale(1.05) translateY(-16px);
    }

    100% {
        transform: scale(1) translateY(0px);
    }
}


/* =========================
   BREADCRUMB SECTION
========================= */
.breadcrumb-section {
  position: relative;
  background: linear-gradient(120deg, #6A1B9A 0%, #283593 40%, #0D47A1 100%);
  color: #fff;
  padding: 40px 0 20px 0px;
  overflow: hidden;
}

/* Optional Decorative Overlay */
.breadcrumb-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  background: linear-gradient(100deg, rgba(255,255,255,0.05) 10%, rgba(255,255,255,0) 60%);
  transform: skewX(-20deg);
  pointer-events: none;
}

.breadcrumb-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
}

/* Title */
.breadcrumb-content h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

/* Path Text */
.breadcrumb-content p {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

.breadcrumb-content a {
  color: #FFD700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-content a:hover {
  color: #fff;
  text-shadow: 0 0 6px rgba(255,255,255,0.6);
}

.breadcrumb-content span {
  margin: 0 8px;
  color: rgba(255,255,255,0.7);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .breadcrumb-section {
    padding: 50px 0;
  }
  .breadcrumb-content h2 {
    font-size: 28px;
  }
  .breadcrumb-content p {
    font-size: 14px;
  }
}


.three-gallery {
  padding: 80px 0;
  background: #fff;
}

.wrap3 {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.pic-card {
  position: relative;
  overflow: hidden;
  /* border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08); */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
}

.pic-card:hover {
  transform: translateY(-8px);
  /* box-shadow: 0 12px 35px rgba(0,0,0,0.14); */
}

.pic-card img {
  width: 100%;
  height: auto;
  max-width: 150px;
  border-radius: 50%;
  border: 3px solid #8f3790;
  margin: 0px auto;
  transition: transform 0.6s ease;
}

.pic-card:hover img {
  transform: scale(1.18); /* zoom */
}

.pic-card h3 {
  font-size: 20px;
  font-weight: 600;
  padding: 5px 10px 0px 10;
  margin: 0;
  color: #1E3A8A; /* Blue heading */
  text-align: center;
  /* border-top: 1px solid #eee; */
}

.pic-card p {
  font-size: 15px;
  font-weight: 400;
  padding: 0px 20px;
  margin: 0;
  color: #00071b; /* Blue heading */
  text-align: center;
  
}


.committee-section {
  background: #ffffff;
  padding: 30px 10 20 10;
  font-family: 'Jost', sans-serif;
}


.section-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #6A1B9A;
  margin-bottom: 12px;
}


/* ===== BASE SECTION ===== */
.committee-section {
  background: #ffffff;
  padding: 30px 10 20 10;
  font-family: 'Jost', sans-serif;
}


.section-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #6A1B9A;
  margin-bottom: 12px;
}


.title {
  text-align: center;
  margin-bottom: 60px;
}

.welcome-heading {
  font-size: 38px;
  font-weight: 700;
  color: #1E3A8A;
  position: relative;
}

.welcome-heading::after {
  content: "";
  display: block;

  margin: 14px auto 0;
  border-radius: 2px;
}

/* ===== GRID ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
  justify-content: center;
  align-items: stretch;
}

/* ===== PERSON CARD ===== */
.card.person {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 1px solid rgba(163,42,140,0.1);
}

/* ✨ Shimmer overlay */
.card.person::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -45%;
  width: 60%;
  height: 250%;
  background: linear-gradient(
    115deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 45%,
    rgba(255,255,255,0) 90%
  );
  transform: skewX(-20deg);
  opacity: 0;
  transition: all 0.6s ease;
}

/* Hover Animation */
.card.person:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 35px rgba(33,102,166,0.25);
  border-color: rgba(33,102,166,0.25);
}

/* Trigger shimmer on hover */
.card.person:hover::before {
  top: -50%;
  left: 120%;
  opacity: 1;
  transition: all 0.9s ease;
}

/* ===== AVATAR ===== */
.avatar {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: all 0.4s ease;
}

/* Rotating gradient border */
.avatar-border {
  position: absolute;
  top: -4px;
  left: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border-radius: 50%;
  background: conic-gradient(from 0deg, #A32A8C, #2166A6, #A32A8C);
  z-index: -1;
  animation: rotateRing 5s linear infinite;
}

/* Glow animation on hover */
.card.person:hover .avatar img {
  transform: scale(1.1);
  filter: brightness(1.15);
}
.card.person:hover .avatar-border {
  filter: drop-shadow(0 0 12px rgba(163,42,140,0.5));
}

/* ===== TEXT ===== */
.card.person h5 {
  font-size: 18px;
  font-weight: 700;
  color: #A32A8C;
  margin-top: 10px;
}

.card.person p {
  font-size: 15px;
  color: #333;
  margin: 6px 0 0;
}

/* ===== ANIMATIONS ===== */
@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .welcome-heading {
    font-size: 28px;
  }
  .avatar {
    width: 95px;
    height: 95px;
  }
  .card.person {
    padding: 22px 16px;
  }
}

/* ===== MASSAGE ===== */




/* Container */
.container {
    max-width: 1250px;
    margin: auto;
    padding: 0 0px;
}

/* Header Row: Title Left, Countdown Right */
.welcome-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.countdown-row {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.cd-box {
    background: #032c44;
    padding: 12px 38px 8px 38px;
    border-radius: 18px 18px 18px 0;
    text-align: center;
    min-width: 90px;
}

.cd-box span {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    display: block;
}

.cd-box small {
    font-size: 14px;
    color: #fff;
}


/* Bottom Divider Line */
.section-line {
    width: 100%;
    height: 1px;
    background: #e1e1e1;
    margin-top: 10px;
}

/* ------------------ RESPONSIVE ------------------ */
@media (max-width: 900px) {
    .welcome-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .countdown-row {
        justify-content: flex-start;
    }

    .cd-box {
        padding: 12px 28px 6px 28px;
        min-width: 80px;
    }
}

@media (max-width: 500px) {
    .welcome-title {
        font-size: 32px;
    }

    .cd-box span {
        font-size: 26px;
    }

    .cd-box small {
        font-size: 13px;
    }
}









/* Registration */
.fee-card-section{
  padding:60px 20px;
  /* background:#1f2a5a; */
}

/* Container */
.fee-card-container{
  max-width:1200px;
  margin:auto;
}

/* Title */
.fee-title{
  background:#d6336c;
  color:#fff;
  text-align:center;
  padding:16px;
  font-size:18px;
  font-weight:600;
  border-radius:10px 10px 0 0;
  margin-bottom:18px;
}

/* Grid */
.fee-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:14px;
  margin-bottom:14px;
}

/* Header */
.fee-head .head{
  color:#fff;
  padding:16px;
  font-weight:600;
  border-radius:8px;
  text-align:center;
  font-size:18px;
}

.head.pink{background:#c92d5c;}
.head.blue{background:#0b4ea2;}
.head.coral{background:#f26c6c;}
.head.green{background:#00b3a4;}

/* Cells */
.cell{
  background:#f6f6f6;
  padding:18px 14px;
  border-radius:8px;
  text-align:center;
  font-size:15px;
}

.cell.type{
  text-align:left;
  font-weight:600;
}

/* Button */
.reg-btn-wrap{
  text-align:center;
  margin:40px 0 10px;
  padding-bottom:20px;
}

.reg-btn{
  display:inline-block;
  background:linear-gradient(135deg,#ff4d6d,#d6336c);
  color:#fff;
  padding:14px 34px;
  border-radius:50px;
  font-size:16px;
  font-weight:600;
  text-decoration:none;
  transition:all 0.3s ease;
  box-shadow:0 8px 20px rgba(214,51,108,0.4);
}

.reg-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 28px rgba(214,51,108,0.55);
}

/* MOBILE */
@media(max-width:900px){

  .fee-grid{
    grid-template-columns:1fr;
    gap:10px;
  }

  .fee-head{
    display:grid;
  }

  .fee-head .head{
    font-size:18px;
    padding:14px;
  }

  .cell{
    text-align:left;
    font-size:15px;
  }

  .cell::before{
    content:attr(data-label);
    display:block;
    font-size:13px;
    font-weight:600;
    color:#555;
    margin-bottom:6px;
  }

  .cell.type::before{
    display:none;
  }

  .reg-btn{
    width:90%;
    max-width:320px;
    padding:16px 0;
    font-size:19px;
  }
}






/* MOBILE FIX */
@media(max-width:900px){

  /* Header ko hide kar do (mobile me labels use honge) */
  .fee-head{
    display:none;
  }

  /* Each row becomes a card */
  .fee-grid{
    grid-template-columns:1fr;
    gap:12px;
    background:#ffffff;
    padding:14px;
    border-radius:12px;
    margin-bottom:18px;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
  }

  /* TYPE */
  .cell.type{
    font-size:19px;
    font-weight:700;
    background:#f0f0f0;
    border-radius:8px;
    text-align:center;
  }

  /* Price cells */
  .cell{
    text-align:left;
    font-size:15px;
    padding:14px;
  }

  /* Heading ABOVE price */
  .cell::before{
    content:attr(data-label);
    display:block;
    font-size:13px;
    font-weight:600;
    color:#444;
    margin-bottom:6px;
  }

  .cell.type::before{
    display:none;
  }

  /* Button */
  .reg-btn{
    width:90%;
    max-width:320px;
    padding:16px 0;
    font-size:19px;
  }
}


@media(max-width:900px){

  /* Card header (ISOI Member / Non-ISOI Member etc.) */
  .cell.type{
    background:#0b4ea2;   /* same as Registration Fee */
    color:#fff;
    text-align:center;
    font-size:19px;
    font-weight:600;
    padding:14px 16px;
    border-radius:8px;
    margin-bottom:6px;
  }

}
/* Registration start */