@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&family=Great+Vibes&display=swap');


/* =========================
   THEME (Green & Gold)
========================= */
:root {
    --green: #1b5e20;
    --gold: #f1c40f;
    --green-dark: #124016;
    --gold-dark: #d4ac0d;
    --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(--green) 0%, var(--gold) 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(--green), var(--gold))
}

.underline b {
    width: 18px;
    height: 6px;
    border-radius: 6px;
    background: var(--gold)
}




/* SECTION BASE */
.welcome-section {
  background: #fff;
  padding: 80px 0;
  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: #1b5e20;
  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: 58px;
  color: #7B1FA2; /* deep purple */
  text-align: center;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 20px;
  position: relative;
}

/* Optional decorative underline */
.welcome-heading::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #1b5e20, #f1c40f);
  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(--green), var(--gold));
    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)
}

.avatar1 {
    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
}

.avatar1 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(--green), var(--gold));
    -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(--green);
    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(--green), var(--gold));
    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(--green);
    font-weight: 600
}

.tb-right a {
    margin-left: 12px;
    color: var(--green);
    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(--green);
    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);
}



/* =======================================
   ANIMATED GRADIENT BACKGROUND (BASE)
======================================= */
.animated-bg {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,
            #1b5e20,
            #f1c40f,
            #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, #1b5e20cc, #f1c40fcc),
        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: 30px;
}

.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;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #1b5e20, #f1c40f);
  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);
}

.avatar1 {
  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;
}

.avatar1 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, #1b5e20, #f1c40f, #1b5e20);
  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 .avatar1 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: #1b5e20;
  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;
  }
}
/* ===== NAVBAR CORE & INLINE STYLES ===== */
:root {
    --nav-h: 88px;
    --accent1: #1b5e20;
    --accent2: #f1c40f;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1200;
    font-family: 'Jost', sans-serif;
    background: linear-gradient(135deg, #0a2540 0%, #153b61 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all .28s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.navbar.scrolled {
    padding: 6px 0;
    transform: translateY(0);
}

.nav-wrap {
    max-width: 1900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 25px;
}

/* logo - EXACT STYLING FROM SCREENSHOT */
.logo img {
    height: 90px;
    position: absolute;
    top: 0px;
    background-color: var(--card);
    padding: 15px 12px 12px 12px;

    border-radius: 0px 0px 10px 10px;
    transition: all 0.3s ease;
    box-shadow: 0 0 6px rgba(163, 42, 140, 0.9);
}

.aro-menu {
    list-style: none;
    display: flex;
    gap: 2px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.aro-menu a {
    display: inline-block;
    padding: 12px 16px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.5px;
    border-radius: 4px; /* Reduced from 8px */
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.aro-menu a:hover {
    color: #0a2540;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.aro-dropdown {
    position: relative;
}

.aro-submenu {
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.96);
    color: #222;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 6px 8px;
    display: none;
    transform-origin: top center;
    transition: .18s ease;
}

.aro-dropdown:hover>.aro-submenu {
    display: block;
}

.aro-submenu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.aro-submenu a {
    color: #222;
    display: block;
    border-radius: 4px;
    font-weight: 500;
}

.aro-submenu a:hover {
    background: linear-gradient(90deg, var(--accent1), var(--accent2));
    color: #fff;
    padding-left: 20px;
}

.aro-mobile-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 4px;
}

@media (max-width: 992px) {
    .aro-mobile-toggle { display: block; }
    .aro-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: #ffffff;
        padding: 0;
        gap: 0;
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
        border-radius: 0 0 8px 8px;
    }
    .aro-menu.active { display: flex; }
    .aro-menu li {
        width: 100%;
    }
    .aro-menu a {
      display: block;
      padding: 14px 24px;
      color: #0a2540;
      text-decoration: none;
      font-weight: 600;
      text-align: left;
      border-radius: 0;
      border-bottom: 1px solid #f0f0f0;
      border-left: 4px solid transparent;
      transition: all .25s ease;
  }
    .aro-menu a:hover {
      color: #1b5e20;
      background: #f4fbf6;
      border-left: 4px solid #1b5e20;
      padding-left: 30px;
    }
    .aro-dropdown:hover>.aro-submenu { display: none; }
    .aro-submenu {
        position: relative;
        top: 0;
        left: 0;
        display: none;
        background: transparent;
        box-shadow: none;
        padding-left: 10px;
    }
    .aro-dropdown.active>.aro-submenu { display: block; }
    .aro-submenu a {
        color: #444;
        padding: 10px 8px;
        background: #f6f6f6;
        margin: 6px 0;
        border-radius: 4px;
    }
}

/* BLINK TAB */
.blink-tab {
    position: relative;
    font-weight: 600 !important;
    color: #fff !important;
    padding: 8px 14px !important;
    border-radius: 4px;
    animation: bgPulse 5s infinite ease-in-out;
}

@keyframes bgPulse {
    0% { background-color: #deb931; color: #fff; }
    25% { background-color: #deb931; color: #ffffffff; }
    50% { background-color: #deb931; color: #fff; }
    75% { background-color: #deb931; color: #fff; }
    100% { background-color: #deb931; color: #fff; }
}

.blink-tab:hover {
    animation: none;
    background-color: #cd2785 !important;
    color: #fff !important;
}

/* SOCIAL FIXED */
.social-fixed {
    position: fixed;
    top: 68%;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}
.social-fixed .icon {
    background: none;
    border-radius: 0;
    width: auto;
    height: auto;
    padding: 0;
    box-shadow: none;
}
.social-fixed .icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}
.social-fixed .icon:hover img {
    transform: scale(1.10);
    transition: 0.3s ease;
}
@media (max-width: 992px) {
    .social-fixed .icon img { width: 30px; height: 30px; }
    .social-fixed { top: 68%; right: 20px; }
}

/* SCROLLING BAR */
.scrolling-bar {
    width: 100%;
    background: var(--green-dark) !important;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    font-weight: bold;
}
.scroll-wrapper {
    display: flex;
    width: max-content;
    animation: scroll 31s linear infinite;
}
.scroll-text {
    padding-right: 50px;
    font-size: 16px;
}
@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* HERO SLIDESHOW */
.hero-slideshow {
    position: relative;
    height: 70vh;
    overflow: hidden;
}
@media (max-width: 992px){.hero-slideshow{height:50vh}}
@media (max-width: 800px){.hero-slideshow{height:45vh}}
@media (max-width: 700px){.hero-slideshow{height:40vh}}
@media (max-width: 600px){.hero-slideshow{height:35vh}}
@media (max-width: 540px){.hero-slideshow{height:30vh}}
@media (max-width: 470px){.hero-slideshow{height:25vh}}
@media (max-width: 400px){.hero-slideshow{height:22vh}}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroFadeSlide 18s infinite ease-in-out;
}

.hero-slide:nth-child(1){background-image:url('../Slider.png');animation-delay:0s}
    .hero-slide:nth-child(2) {
        background-image: url('../Radiation_oncology.png');
        animation-delay: 3s
    }
.hero-slide:nth-child(3){background-image:url('../slider1.png');animation-delay:6s}
.hero-slide:nth-child(4){background-image:url('../Slider.png');animation-delay:9s}
.hero-slide:nth-child(5){background-image:url('../slider1.png');animation-delay:12s}
.hero-slide:nth-child(6){background-image:url('../Slider.png');animation-delay:15s}
.hero-slide:nth-child(7){background-image:url('../slider1.png');animation-delay:18s}


    .hero-slide:nth-child(8) {
        background-image: url('../Radiation_oncology.png');
        animation-delay: 21s
    }

    

@keyframes heroFadeSlide {
    0%   {opacity:0}
    5%   {opacity:1}
    25%  {opacity:1}
    30%  {opacity:0}
    100% {opacity:0}
}

/* PERFECT AROICON STYLE LOGO */
.custom-aro-logo { display:flex; flex-direction:column; align-items:center; justify-content:center; background:#fff; padding:10px 15px; width:300px; font-family:'Arial', sans-serif; text-align:center; }
.aro-logo-top { color:#005b96; font-size:12px; font-weight:800; letter-spacing:1px; margin-bottom:2px; }
.aro-logo-main { font-size:32px; font-weight:900; letter-spacing:-1px; line-height:1; margin-bottom:4px; display:flex; align-items:center; justify-content:center; }
.aro-logo-main .up { color:#005b96; }
.aro-logo-main .ar { color:#c2185b; }
.aro-logo-main .icon-wheel { color:#7b1fa2; font-size:24px; margin:0 2px; }
.aro-logo-motto { color:#005b96; font-size:11px; font-style:italic; font-weight:600; margin-bottom:6px; }
.aro-logo-ribbon { background:linear-gradient(to right, #005b96, #0082c8); color:#ffeb3b; font-size:11px; font-weight:700; padding:4px 10px; border-radius:2px; width:100%; margin-bottom:6px; box-shadow:0 2px 4px rgba(0,0,0,0.2); }
.aro-logo-bottom { color:#333; font-size:8px; font-weight:800; letter-spacing:0.5px; }

/* ====================================================
   PREMIUM STYLES PORTED FROM STATIC DESIGN
==================================================== */

/* Premium Glass Card */
.glass-card {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.05) 0%, rgba(10, 37, 64, 0.1) 100%);
    border-radius: 12px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(10, 37, 64, 0.1);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.8), transparent);
    transform: rotate(45deg);
    animation: glassShine 6s infinite;
}

@keyframes glassShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Hero Section override for dark blue/gold */
.hero-premium {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a2540 0%, #153b61 100%);
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
    color: #ffffff;
}

.hero-premium::before, .hero-premium::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 151, 56, 0.15) 0%, rgba(201, 151, 56, 0) 70%);
}

.hero-premium::before {
    width: 600px;
    height: 600px;
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-premium::after {
    width: 400px;
    height: 400px;
    bottom: -50px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-overlay-premium {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiLz4KPC9zdmc+') repeat;
    opacity: 0.5;
}

.hero-content-premium {
    position: relative;
    z-index: 10;
    color: #ffffff;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Sponsors Premium */
.bg-dark-premium { background-color: #071524; color: #ffffff; }

.sponsor-tier-premium { margin-bottom: 3rem; text-align: center; }
.sponsor-tier-premium .tier-title { font-size: 1.5rem; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 2px; }
.sponsor-tier-premium .tier-title.platinum { color: #e5e4e2; }
.sponsor-tier-premium .tier-title.gold { color: #c99738; }
.sponsor-tier-premium .tier-title.silver { color: #c0c0c0; }

.sponsor-logos-premium { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.sponsor-logo-premium {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    min-width: 200px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.sponsor-logo-premium:hover { background: rgba(255, 255, 255, 0.1); transform: scale(1.05); }

/* CTA Section Premium */
.cta-section-premium {
    background: linear-gradient(135deg, #c99738 0%, #b0812b 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    text-align: center;
}
.btn-primary-premium {
    background: #0a2540;
    color: #ffffff;
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1.125rem;
    border: 2px solid transparent;
}
.btn-primary-premium:hover { background: #153b61; transform: translateY(-2px); color: #ffffff; box-shadow: 0 6px 20px rgba(201, 151, 56, 0.4); }

/* PREMIUM DROPDOWN STYLING (OPEN ON HOVER) */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    padding: 8px 0;
    margin-top: 0;
    display: none;
    background-color: #ffffff;
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    color: #0a2540 !important;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background-color: #f4fbf6;
    color: #1b5e20 !important;
    border-left: 3px solid #1b5e20;
    padding-left: 25px;
}

@media (min-width: 993px) {
    .dropdown:hover > .dropdown-menu {
        display: block;
        animation: slideUpFade 0.3s ease;
    }
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

