/*******************************
          ROOT VARIABLES
*******************************/
:root {
  --primary: #6b21a8;
   --primary-light: #a855f7;
   --text-muted:#000!important;

    
    --radius: 14px;
    --radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/*******************************
          GLOBAL STYLES
*******************************/
body {
      font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
     font-family: 'Manrope', sans-serif;
    font-weight: 700;
    margin: 0 0 1.2rem;
    color: var(--primary);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.6rem, 3.8vw, 2.2rem); }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p { margin-bottom: 1.3rem; }

.line {
    width: 80px;
    height: 5px;
    background: var(--primary);
        margin: 15px auto;
    border-radius: 3px;
}

/* =====================================
   HERO + COUNTDOWN (slider-bg section)
===================================== */

.slider-bg {
    position: relative;
    background: url('../images/slider.jpg') center/cover no-repeat fixed;
    color: white;
      padding: 12rem 0 1rem;
    display: flex;
    align-items: center;background-color: #a8a3a3a3;
    background-blend-mode: multiply;
    align-items: center;
    background-attachment: fixed;
}

.hero {
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden; top:-60px;
        }

        .logo-section {
            display: flex;
            align-items: center;    justify-content: center;
            gap: 16px;
            margin-bottom: 0px;
        }

        .logo-icon {
            width: 72px;
            height: 72px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 34px;
            box-shadow: 0 10px 25px rgba(107, 33, 168, 0.3);
        }

        .main-heading {
            font-family: 'Manrope', sans-serif;
                font-size: 50px;
            line-height: 1.1;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
        }

        .purple-text {
            color: var(--primary);
        }

        .subtitle {
            font-size: 1.35rem;
            color: #fff;
            max-width: 580px;
            margin-bottom: 40px;
        }

        .details {
            display: flex;
            gap: 60px;
            margin-bottom: 50px;
            flex-wrap: wrap;    justify-content: center;
        }

        .detail-item {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .detail-icon {
            width: 58px;    padding: 30px;
            height: 58px;
            background: white;
            border: 2px solid var(--primary);
            color: var(--primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 8px 20px rgba(107, 33, 168, 0.15);
        }

        .register-btn {
            padding: 18px 42px;
            font-size: 1.25rem;
            font-weight: 600;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 10px 30px rgba(107, 33, 168, 0.35);
            transition: all 0.4s ease;
                margin-bottom: 30px;
    margin-top: 15px;
        }

        .register-btn:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(107, 33, 168, 0.45);
        }

        .countdown-section {
            background: white;
            border-radius: 24px;
           padding: 25px 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
        }

        .countdown-label {
            text-align: center;
            font-size: 1.1rem;
            color: #64748b;
            letter-spacing: 2px;
            margin-bottom: 25px;
            font-weight: 500;
        }

        .countdown-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            text-align: center;
        }

        .count-box {
            background: #f8fafc;
            border-radius: 20px;
            padding: 10px 10px;
            border: 1px solid #e0e7ff;
        }

        .count-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 6px;
        }

        .count-label {
            font-size: 0.95rem;
            color: #64748b;
            font-weight: 500;
            letter-spacing: 1px;
        }
        @media(max-width:768px){
             .count-label {
            font-size: 0.75rem;}
.hero {
    position: relative;
    display: flex
;
    align-items: center;
    overflow: hidden;
    top: 20px;}
        }
/* Registration / Housing Tabs + Form */

.form-content {
     background: rgb(255 255 255);
    backdrop-filter: blur(24px);
    border-radius: 22px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2.2rem;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.pro-tabs {
    margin-bottom: 1.8rem;
}

.pro-tab {
    flex: 1;
    border-radius: 10px;
    color: #475569;
    font-weight: 600;    display: flex;
    transition: var(--transition);
}
 p.pro-label   {padding-left: 10px;
    margin-bottom: 0px;
    padding-top: 5px;}
.pro-tab:hover,
.pro-tab.active {
    background: var(--primary)!important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(191,58,85,0.28);
}

.pro-tab .icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.pro-tab.active .icon {
    background: white;
}

.pro-tab img,
.pro-tab svg {
    width: 22px;
    height: 22px;
    transition: filter 0.3s;
}

.pro-tab.active img{

    filter: brightness(0) saturate(100%) invert(12%) sepia(92%) saturate(7450%) hue-rotate(335deg) brightness(92%) contrast(108%);
}
.pro-tab.active i {    color: #6b21a8;
}

/* Form fields consistency */
.form-control.with-icon,
.form-select.with-icon,
textarea.with-icon {
    padding-left: 3.1rem !important;
    height: 52px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(191,58,85,0.15);
}

.form-control-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    pointer-events: none;
    z-index: 5;
}

/* Buttons */
.btn {
    padding: 0.95rem 2.2rem;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    border-radius: 50px;
    background: var(--primary);
    color: white;
    border: none;
    transition: var(--transition);
}

.btn:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(191,58,85,0.3);
}

/* =====================================
          ABOUT SECTION (abouthomi)
===================================== */
.about-badge {
    position: relative;    justify-content: center;
    display: flex;
    bottom: 24px;
    left: 0px;
    background: white;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
    width: 280px;
}
.abouthomi {
      padding: 60px 20px 30px;
      background: linear-gradient(135deg, #f8fafc 0%, #ede9fe 100%);  position: relative;
            overflow: hidden;
}
      .abouthomi  .main-title {
            font-family: 'Manrope', sans-serif;
              font-size: 40px;
            line-height: 1.08;
            font-weight: 700;
            color: #1e2937;
        }
.floating-badge h5{color: var(--primary);}
    .abouthomi    .content-card {
            background: white;
            border-radius: 24px;
              padding: 20px 20px 5px 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
            height: 100%;
            transition: all 0.5s ease;
            border-left: 5px solid var(--primary);
        }

      .abouthomi  .content-card:hover {
            transform: translateY(-18px);
            box-shadow: 0 30px 70px rgba(107, 33, 168, 0.2);
        }

    .abouthomi    .pointer {
            color: var(--primary);
            font-size: 1.5rem;
            font-weight: bold;
            margin-right: 12px;
        }

     .abouthomi   .floating-badge {
            position: absolute;
               top: 3%;
    right: 3%;
            background: white;
            padding: 20px 30px;
            border-radius: 20px;
            box-shadow: 0 25px 60px rgba(107, 33, 168, 0.25);
            z-index: 10;
        }

      .abouthomi  .cta-button {
            background: linear-gradient(90deg, var(--primary), var(--accent));
            color: white;
            padding: 20px 55px;
            font-size: 1.35rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            transition: all 0.4s ease;
        }
  .abouthomi img   {height: 650px; width: 100%;
    object-fit: cover;}
      .abouthomi  .cta-button:hover {
            transform: scale(1.08) translateY(-6px);
        }
.abouthomi .badge{color: var(--primary);}
.caption {
    font-size: 0.85rem;
    color: white;
    background: rgb(191 58 85 / 98%);
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    text-align: center;
    margin-top: 1.4rem;
    position: relative;
}

/* =====================================
          SCHEDULE SECTION
===================================== */

.schedule-section {
    padding: 3rem 0px 30px 0px;
    background: white;
    position: relative;
    overflow: hidden;
}
/* DAY HEADER */

.schedule-section .header {
            text-align: center;
            margin-bottom: 50px;
        }

     .schedule-section   .header h1 {
            font-family: 'Manrope', sans-serif;
               font-size: 40px;    color: #6b21a8;
            font-weight: 700;
            background: linear-gradient(90deg, #6b21a8, #c026d3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

     .schedule-section   .event-info {
            background: white;
            display: inline-block;
            padding: 14px 40px;
            border-radius: 50px;
            box-shadow: 0 15px 40px rgba(107, 33, 168, 0.15);
            color: var(--primary);
            font-weight: 600;
            font-size: 1.3rem;
        }

      .schedule-section  .timeline {
            position: relative;
            max-width: 1150px;
            margin: 0 auto;
        }

     .schedule-section   .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 6px;
            background: linear-gradient(to bottom, #6b21a8, #c026d3);
            z-index: 1;
        }

      .schedule-section  .timeline-item {
            margin-bottom: 30px;
            position: relative;
        }

      .schedule-section  .timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 58px;
            height: 58px;
            background: white;
            border: 7px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: var(--primary);
            z-index: 3;
            box-shadow: 0 0 0 12px rgba(107, 33, 168, 0.2);
        }

      .schedule-section  .timeline-content {
            background: white;
            border-radius: 28px;
            padding: 38px 45px;
            box-shadow: 0 30px 85px rgba(0, 0, 0, 0.13);
            width: 48%;
        }

      .schedule-section  .timeline-item:nth-child(odd) .timeline-content { margin-left: auto; }
      .schedule-section  .timeline-item:nth-child(even) .timeline-content { margin-right: auto; }

      .schedule-section  .day-header {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 25px;
        }

      .schedule-section  .session {
            padding: 18px 0;
            border-bottom: 1px solid #f0e9ff;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

      .schedule-section  .session:last-child { border-bottom: none; }

      .schedule-section  .session-icon {
            font-size: 1.4rem;
            color: var(--primary);
            width: 28px;
            margin-top: 3px;
        }

      .schedule-section  .session-info {
            flex: 1;
        }

      .schedule-section  .time {
            font-weight: 700;
            color: #4c1d95;
            display: block;
            margin-bottom: 4px;
        }
/* RESPONSIVE */
@media(max-width:768px){
    .schedule-section .timeline-content {
    width: 100%;
    }
    .schedule-section .timeline-dot {
    position: absolute;
    left: 0%;}
    .schedule-section .timeline::before {
    content: '';
    position: absolute;
    left: 5%;}
  .ultimate-head p{padding: 0px 20px;}
  .service{margin: 0px 15px 20px 15px;}
  .abouthomi .main-title {
    font-family: 'Manrope', sans-serif;
    font-size: 30px;}
    .aaic-impact    .timeline {
        padding-left: 0rem;
    }
    .faq-registration {
    padding: 70px 20px 70px 20px;
}
.sectioncontact {
    padding: 0px 20px 60px 20px;}

}
/* =====================================
          SERVICES / ATTENDEE ASSISTANCE
===================================== */

.services {
    padding: 60px 20px 60px;
        background: linear-gradient(135deg, #f8fafc 0%, #f3e8ff 100%);
            position: relative;
            overflow: hidden;
}

     .services::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(107,33,168,0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

       .services  .section-title {
            font-family: 'Manrope', sans-serif;
              font-size: 40px;    color: #6b21a8;
            font-weight: 700;
            text-align: center;
            margin-bottom: 24px;
        }

      .services   .subtitle {
            text-align: center;
            max-width: 780px;
            margin: 0 auto 50px;
            font-size: 1.25rem;
            color: #475569;
            line-height: 1.8;
        }

     .services    .service-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            border: 1px solid rgba(107, 33, 168, 0.1);
        }

      .services   .service-card:hover {
            transform: translateY(-25px) scale(1.03);
            box-shadow: 0 40px 90px rgba(107, 33, 168, 0.25);
        }

      .services   .card-image-wrapper {
            position: relative;
            height: 280px;
            overflow: hidden;
        }

      .services   .card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

     .services    .service-card:hover .card-image {
            transform: scale(1.12);
        }

      .services   .card-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 68px;
            height: 68px;
            background: linear-gradient(135deg, var(--primary), #c026d3);
            color: white;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 10px 30px rgba(107, 33, 168, 0.4);
        }

     .services    .card-body {
            padding: 30px;
        }

      .services   .card-title {
           font-size: 22px;
            font-weight: 700;
            margin-bottom: 18px;
            color: #1e2937;
        }

/* =====================================
          ACCOMMODATION / HOTELS
===================================== */

.accommodation {
      padding: 60px 20px 60px;
     background: linear-gradient(135deg, #f8fafc 0%, #f3e8ff 100%);
}

    .accommodation    .header {
            text-align: center;
            margin-bottom: 50px;
        }

     .accommodation   .header h1 {
            font-family: 'Manrope', sans-serif;
               font-size: 40px;    color: #6b21a8;
            font-weight: 700;
        }

      .accommodation  .subtitle {
            max-width: 720px;
            margin: 0 auto;
            font-size: 1.25rem;
            color: #475569;
            line-height: 1.8;
        }

     .accommodation   .hotel-card {
            background: white;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
            transition: all 0.5s ease;
            position: relative;
        }

      .accommodation  .hotel-card:hover {
            transform: translateY(-30px);
            box-shadow: 0 45px 100px rgba(107, 33, 168, 0.25);
        }

     .accommodation   .hotel-image {
            height: 280px;
            object-fit: cover;
        }

      .accommodation  .price-badge {
            position: absolute;
            top: 25px;
            left: 25px;
            background: white;
            color: var(--primary);
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 700;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            text-align: center;
            line-height: 1.2;
        }

      .accommodation  .original-price {
            text-decoration: line-through;
            font-size: 0.95rem;
            color: #94a3b8;
        }

      .accommodation  .card-body {
            padding: 35px;
        }

      .accommodation  .hotel-category {
              font-size: 22px;
            font-weight: 700;
            margin-bottom: 16px;
            color: #1e2937;
        }

/* =====================================
          STATS
===================================== */
.aaic-impact{
    position:relative;
      padding: 60px 20px 60px;
    background:
        radial-gradient(circle at 10% 20%, rgba(168,85,247,.10), transparent 28%),
        radial-gradient(circle at 90% 15%, rgba(139,92,246,.08), transparent 25%),
        radial-gradient(circle at 50% 100%, rgba(192,132,252,.08), transparent 35%),
        linear-gradient(180deg,#ffffff,#faf8ff);
    overflow:hidden;
}

.aaic-impact::before,
.aaic-impact::after{
    content:"";
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    z-index:0;
    animation:floatGlow 10s infinite alternate ease-in-out;
}

.aaic-impact::before{
    width:260px;
    height:260px;
    background:rgba(168,85,247,.12);
    top:0;
    left:-80px;
}

.aaic-impact::after{
    width:320px;
    height:320px;
    background:rgba(192,132,252,.10);
    right:-100px;
    bottom:-100px;
}

@keyframes floatGlow{
    from{transform:translateY(0) translateX(0);}
    to{transform:translateY(-30px) translateX(30px);}
}


/* HEADER */
.aaic-impact .section-heading{
    text-align:center;
    margin-bottom:80px;
}

.aaic-impact  .badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 14px 28px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(107, 33, 168, 0.12);
    border-radius: 100px;

    box-shadow:
        0 10px 30px rgba(107, 33, 168, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.9);

    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #6b21a8;

    line-height: 1.4;
    text-align: center;

    max-width: 100%;
    white-space: normal;
    flex-wrap: wrap; margin-bottom: 20px;

    transition: all 0.4s ease;
}

.aaic-impact  .badge i{
    width: 42px;
    height: 42px;
    min-width: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: linear-gradient(135deg, #6b21a8, #a855f7);
    color: #fff;
    font-size: 16px;

    box-shadow: 0 8px 20px rgba(107, 33, 168, 0.25);
}

/* Tablet */
@media (max-width: 992px){
 .aaic-impact    .badge{
        font-size: 14px;
        padding: 12px 20px;
        border-radius: 24px;
    }

  .aaic-impact   .badge i{
        width: 38px;
        height: 38px;
        min-width: 38px;
    }
}

/* Mobile */
@media (max-width: 768px){
  .aaic-impact   .badge{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;

        padding: 14px 16px;
        font-size: 13px;
        line-height: 1.5;
        border-radius: 20px;

        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
    }

 .aaic-impact    .badge i{
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 14px;
    }
}

/* Small Phones */
@media (max-width: 480px){
 .aaic-impact    .badge{
        font-size: 12px;
        padding: 12px 14px;
        gap: 8px;
    }

 .aaic-impact    .badge i{
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 12px;
    }
}

/* Extra Small */
@media (max-width: 360px){
 .aaic-impact    .badge{
        font-size: 11px;
        padding: 10px 12px;
    }
}

.aaic-impact .section-heading h2{
 font-family: 'Manrope', sans-serif;
        font-size: 40px;    color: #6b21a8;
    font-weight: 700;
    margin-bottom:22px;
}
.aaic-impact  .hero-content{margin-left: 30px;}
.aaic-impact .section-heading p{
    max-width:850px;
    margin:auto;
    color:#6b7280;
    font-size:20px;
    line-height:1.8;
}

/* MAIN GRID */
.aaic-impact .impact-layout{
    display:grid;
    grid-template-columns:1.35fr 1fr;
    gap:32px;
    align-items:stretch;
}

/* LEFT PANEL */
.aaic-impact .hero-panel{
    position:relative;
    background:rgba(255,255,255,.75);
    border:1px solid rgba(255,255,255,.95);
    border-radius:36px;
    padding:50px;
    backdrop-filter:blur(22px);
    box-shadow:
        0 25px 80px rgba(17,24,39,.06),
        inset 0 1px 0 rgba(255,255,255,.9);
    flex-direction:column;
    justify-content:space-between;
    overflow:hidden;
    transition:.4s ease;
}

.aaic-impact .hero-panel:hover{
    transform:translateY(-8px);
}

.aaic-impact .hero-panel::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(168,85,247,.10), transparent 70%);
    top:-80px;
    right:-60px;
}

/* Brain */
.aaic-impact .brain-wrap{
    position:relative;
       width: 270px;
    height: 120px;
    margin-bottom:40px;
}

.aaic-impact .brain-core{
    width:100%;
    height:100%;
    border-radius:50%;
    background:linear-gradient(135deg,#8b5cf6,#d946ef);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:50px;
    color:white;
    box-shadow:0 20px 50px rgba(168,85,247,.28);
    /* animation:pulse 3s infinite ease-in-out; */
}

.aaic-impact .ring{
    position:absolute;
    border-radius:50%;
    border:1px solid rgba(168,85,247,.18);
    animation:spin 14s linear infinite;
}

.aaic-impact .ring.one{
    inset:-18px;
}

.aaic-impact .ring.two{
    inset:-40px;
    animation-direction:reverse;
}

@keyframes spin{
    from{transform:rotate(0deg);}
    to{transform:rotate(360deg);}
}

@keyframes pulse{
    0%,100%{transform:scale(1);}
    50%{transform:scale(1.05);}
}

.aaic-impact .hero-content h3{
    font-size:35px;
    line-height:1.15;
    font-weight:900;
    color:#111827;
    margin-bottom:22px;
}

.aaic-impact .hero-content p{
    font-size:18px;
    color:#6b7280;
    line-height:1.9;
    max-width:700px;
}

/* Feature cards */
.aaic-impact .timeline{
    display:flex;
    gap:22px;
    margin-top:50px;
    flex-wrap:wrap;
}

.aaic-impact .timeline-card{
    flex:1;
    min-width:220px;
    background:#ffffff;
    border:1px solid rgba(168,85,247,.10);
    border-radius:24px;
    padding:24px;
    box-shadow:0 15px 40px rgba(17,24,39,.05);
    transition:.4s ease;
}

.aaic-impact .timeline-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(168,85,247,.12);
}

.aaic-impact .timeline-card i{
    width:54px;
    height:54px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#8b5cf6,#d946ef);
    color:white;
    font-size:20px;
    margin-bottom:18px;
}

.aaic-impact .timeline-card h4{
    color:#111827;
    font-size:20px;
    margin-bottom:10px;
}

.aaic-impact .timeline-card p{
    color:#6b7280;
    font-size:15px;
    line-height:1.7;
}

/* RIGHT GRID */
.aaic-impact .stats-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.aaic-impact .stat-card{
    background:rgba(255,255,255,.85);
    border:1px solid rgba(255,255,255,.95);
    border-radius:28px;
    padding:30px;
    box-shadow:
        0 20px 60px rgba(17,24,39,.05),
        inset 0 1px 0 rgba(255,255,255,.95);
    transition:.4s ease;
    min-height:270px;
    position:relative;
    overflow:hidden;
}

.aaic-impact .stat-card::before{
    content:"";
    position:absolute;
    width:160px;
    height:160px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(168,85,247,.08), transparent 70%);
    top:-40px;
    right:-40px;
}

.aaic-impact .stat-card:hover{
    transform:translateY(-10px) scale(1.02);
    box-shadow:0 30px 70px rgba(168,85,247,.12);
}

.aaic-impact .icon{
    width:66px;
    height:66px;
    border-radius:18px;
    background:linear-gradient(135deg,#8b5cf6,#d946ef);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:24px;
    margin-bottom:22px;
}

.aaic-impact .stat-card h2{
       font-size: 40px;
    font-weight:900;
    color:#111827;
    margin-bottom:12px;
}

.aaic-impact .stat-card h5{
    font-size:20px;
    color:#111827;
    margin-bottom:14px;
}

.aaic-impact .stat-card p{
    color:#6b7280;
    line-height:1.8;
    font-size:15px;
}

/* reveal */
.aaic-impact .reveal{
    transform:translateY(60px);
    transition:1s ease;
}

.aaic-impact .reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* Responsive */
@media(max-width:1100px){
 .aaic-impact   .impact-layout{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){
    .aaic-impact .brain-wrap {
    position: relative;
    width: 350px;
    height: 80px;}
  .aaic-impact  .stats-grid{
        grid-template-columns:1fr;
    }

 .aaic-impact   .hero-panel{
        padding:30px;
        min-height:auto;
    }

  .aaic-impact  .hero-content h3{
        font-size:34px;
    }

   .aaic-impact .section-heading p{
        font-size:16px;
    }

   .aaic-impact .timeline{
        flex-direction:column;
    }
}

/* =====================================
          FAQ + REGISTRATION
===================================== */

.faq-elite {
    padding: 1rem 0;
}
.faq-registration{padding: 70px 0px 70px 0px;}
h2.reg-title{font-size: 30px;}
.faq-head h2{font-size: 30px;
    padding-top: 10px;}
.faq-item {
    background: white;
    border-radius: 16px;
    padding: 15px 15px 0px 15px;
    margin-bottom: 1.2rem;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition);
}
.faq-item h5{margin-bottom: 0px;    font-size: 15px;}
.faq-item:hover {
    transform: translateY(-4px);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.faq-icon {
    width: 44px;
    height: 44px;
    background: rgba(191,58,85,0.1);
    border-radius: 12px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.faq-arrow {
    margin-left: auto;
    transition: transform 0.4s;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding-top: 1rem;
    color: var(--text-light);
}

/* =====================================
          VENUE + CONTACT
====================================
= */
/* ---------- HEADER ---------- */
.sectioncontact{padding-bottom: 60px;}
.sectioncontact .header {
  text-align: center;
  margin-bottom: 60px;
}
.sectioncontact  .header h1 {
    font-size: 40px;
  font-weight: 600;    color: #6b21a8;
  letter-spacing: -0.03em;
}

.sectioncontact  .header p {
  font-size: 17px;
  color: var(--text-muted);
  margin-top: 18px;
}

/* ---------- CARD ---------- */
.sectioncontact  .card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.08);
}

@media (max-width: 992px) {
 .sectioncontact  .card {
    grid-template-columns: 1fr;
  }
}

/* ---------- MAP ---------- */
.sectioncontact .map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
}

/* ---------- FORM ---------- */
.sectioncontact .form-area {
  padding: 40px 50px;
}

.sectioncontact .form-area h2 {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.sectioncontact .form-area p {
  color: var(--text-muted);
  margin: 16px 0 40px;
}

/* ---------- GRID ---------- */
#groupform h2{font-size: 25px;}
#groupform .modal-body{padding: 30px;}
#groupform .btn-close{position: absolute;
    right: 15px;
    top: 9px;
}
/* ---------- INPUT ---------- */
.sectioncontact .input-wrapper {
  position: relative;
}

.sectioncontact .input-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 20px;
  height: 20px;
  color: #9aa4b2;
  transform: translateY(-50%);
}

.sectioncontact .form-control {
  width: 100%;
  padding: 18px 16px 18px 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 15px;
  background: #fff;
  outline: none;
  transition: 0.3s ease;
}

.sectioncontact  textarea.form-control {
  height: 80px;
  resize: none;
}

/* ---------- LABEL ---------- */
.sectioncontact .form-label {
  position: absolute;
  left: 48px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--text-muted);
  background: #fff;
  padding: 0 6px;
  pointer-events: none;
  transition: 0.3s ease;
}

.sectioncontact .form-control:focus,
.sectioncontact .form-control:not(:placeholder-shown) {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(194,58,82,0.12);
}

.sectioncontact .form-control:focus + .form-label,
.sectioncontact .form-control:not(:placeholder-shown) + .form-label {
  top: -7px;
  font-size: 12px;
  color: var(--primary);
}

/* ---------- BUTTON ---------- */
.sectioncontact .justcent {
  text-align: center;
}

.sectioncontact .btn-66 {
  margin-top: 24px;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 16px 38px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 18px 40px rgba(194,58,82,0.35);
  transition: 0.4s ease;
}

.sectioncontact .btn-66 svg {
  width: 18px;
  height: 18px;
}

.sectioncontact  .btn-66:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(194,58,82,0.45);
}

/* =====================================
          RESPONSIVE ADJUSTMENTS
===================================== */

@media (max-width: 992px) {
    .form-content { margin-top: 0; }
    .abouthomi .media { top: 0; margin-top: 3rem; }
    .abouthomi .media img { height: 480px; }
}

@media (max-width: 768px) {
    .card { grid-template-columns: 1fr; }
    .card::before { left: -1.6rem; }
    
    .option { grid-template-columns: 1fr; }
    .price { text-align: left; margin-top: 1.5rem; }
    
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    
    .form-content { padding: 1.8rem; }
}

/* ==============================================
   HEADER / NAVIGATION BAR (Glassmorphic + Scrolled)
============================================== */
/* ==============================================
   HEADER / NAVBAR STYLING
   Glassmorphic + Modern Conference Style
============================================== */

/* Main Navbar Container */
.navbar-custom {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.4s ease;
    padding: 1rem 0;
    z-index: 1030;
}

.navbar-custom.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 0.8rem 0;
}

/* Logo Area */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    padding: 0;
}

.logo-icon {
    width: 54px;
    height: 54px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.35rem;
    box-shadow: 0 4px 12px rgba(191, 58, 85, 0.3);
    transition: transform 0.4s ease;
}

.navbar-brand:hover .logo-icon {
    transform: scale(1.08);
}
.icotexty{display: grid;}
.navbar-brand span {
    color: var(--primary);
      font-size: 40px;
    font-weight: 900;
    margin-bottom: -10px;
}
 .navbar-brand small{font-size: 12px;}
/* Hamburger Menu (Mobile) */
.navbar-toggler {
    border: none !important;
    padding: 0 !important;
    outline: none !important;
    box-shadow: none !important;
}

.hamburger {
    width: 32px;
    height: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.35s ease;
}

.offcanvas.show .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.offcanvas.show .hamburger span:nth-child(2) {
    opacity: 0;
}

.offcanvas.show .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Desktop Menu Items */
.navbar-nav .nav-link {
    color: var(--primary) !important;
    font-weight: 600;
     font-size: 14px;
    padding: 0.65rem 0.80rem !important;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    transition: color 0.35s ease;
}

.navbar-nav .nav-link svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    stroke-width: 1.8;
    flex-shrink: 0;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background: var(--primary);
    transition: width 0.35s ease, left 0.35s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

/* Registration & Group Registration Buttons */
.cta-button22 .open-btn,
.btn-register {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.cta-button22 .open-btn {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

/* .cta-button22 .open-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(191,58,85,0.3);
} */
 .cta-button{text-align: center;}
.cta-button .open-btn  {background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(191, 58, 85, 0.3);
    border: none;
    padding: 10px 25px;
    border-radius: 10px;}
.btn-register {
    background: var(--primary);
    color: white;
    border: none;
}

.btn-register:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(191,58,85,0.35);
}

/* Offcanvas Mobile Menu */
.offcanvas.offcanvas-end {
    width: 320px !important;
    background:  var(--primary);
    color: white;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding: 1.5rem 1.5rem;
}

.offcanvas-title {
    font-size: 1.8rem;
    font-weight: 800;
}

.offcanvas-body .nav-link {
    color: white !important;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    gap: 14px;
}

.offcanvas-body .nav-link:hover,
.offcanvas-body .nav-link.active {
    background: rgba(255,255,255,0.15);
    transform: translateX(8px);
}

.offcanvas-body .btn-light {
    background: rgba(255,255,255,0.9);
    color: var(--primary);
    font-weight: 700;
    border: none;
    padding: 1rem;
}

.offcanvas-body .btn-light:hover {
    background: white;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
   .btnclsoein     {position: relative;
    left: 80px;}
    .navbar-nav .nav-link svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;}
  .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: #fff!important;}
  .housing-head {
    margin-bottom: 40px;
    text-align: center;
    padding: 0px 15px;}

    .navbar-brand {
        font-size: 1.7rem;
    }
    
    .logo-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand span {
        font-size: 1.35rem;
    }
    
    .offcanvas.offcanvas-end {
        width: 100% !important;
    }
}

/* ==============================================
   FOOTER (Conference / Event Style)
============================================== */
/* ==============================================
   EVENT INFO + FOOTER SECTION
   Modern Conference/Event Style Footer
============================================== */
/* FOOTER */
.premium-footer{
    position: relative;
    padding: 60px 30px 0px;
    background:
        radial-gradient(circle at 10% 20%, rgba(168,85,247,.08), transparent 25%),
        radial-gradient(circle at 90% 15%, rgba(139,92,246,.06), transparent 25%),
        linear-gradient(180deg,#ffffff,#faf7ff);
    overflow:hidden;
}

.premium-footer::before,
.premium-footer::after{
    content:"";
    position:absolute;
    border-radius:50%;
    filter:blur(100px);
    z-index:0;
    animation:floatGlow 10s infinite alternate ease-in-out;
}

.premium-footer::before{
    width:320px;
    height:320px;
    background:rgba(168,85,247,.08);
    top:-100px;
    left:-100px;
}

.premium-footer::after{
    width:300px;
    height:300px;
    background:rgba(217,70,239,.06);
    right:-100px;
    bottom:-100px;
}

@keyframes floatGlow{
    from{transform:translate(0,0);}
    to{transform:translate(30px,-30px);}
}

.premium-footer .footer-top{
    display:grid;
    grid-template-columns:1.45fr 1fr 1fr;
    gap:30px;
    margin-bottom:50px;
}

.premium-footer .glass-card{
    background:rgba(255,255,255,.88);
    border:1px solid rgba(255,255,255,.95);
    border-radius:32px;
    padding:38px;
    backdrop-filter:blur(20px);
    box-shadow:
        0 20px 60px rgba(17,24,39,.05),
        inset 0 1px 0 rgba(255,255,255,.95);
    transition:.45s ease;
    position:relative;
    overflow:hidden;
}

.premium-footer .glass-card::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(168,85,247,.08), transparent 70%);
    top:-40px;
    right:-40px;
}

.premium-footer .glass-card:hover{
    transform:translateY(-10px);
    box-shadow:
        0 30px 80px rgba(168,85,247,.12),
        inset 0 1px 0 rgba(255,255,255,.95);
}

.premium-footer .brand-wrap{
    display:flex;
    gap:24px;
    align-items:flex-start;
}

.premium-footer .logo{
    width:95px;
    height:95px;
    min-width:95px;
    border-radius:28px;
    background:linear-gradient(135deg,#7c3aed,#d946ef);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:34px;
    box-shadow:0 20px 50px rgba(168,85,247,.25);
}

.premium-footer .brand-content h2{
    font-size:52px;
    font-weight:900;
    line-height:1;
    margin-bottom:14px;
    background:linear-gradient(135deg,#7c3aed,#ec4899);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.premium-footer .brand-content h4{
    font-size:24px;
    color:#111827;
    line-height:1.45;
    margin-bottom:14px;
}

.premium-footer .brand-content p{
    color:#6b7280;
    font-size:18px;
    line-height:1.8;
}

.premium-footer .info-label{
    display:flex;
    align-items:center;
    gap:12px;
    color:#7c3aed;
    font-size:14px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:20px;
}

.premium-footer .info-card h3{
    font-size:26px;
    color:#111827;
    line-height:1.5;
    margin-bottom:16px;
}

.premium-footer .info-card p{
    color:#6b7280;
    font-size:17px;
    line-height:1.8;
}

.premium-footer .policy-bar{
    background:rgba(255,255,255,.92);
    border:1px solid rgba(255,255,255,.95);
    border-radius:24px;
    padding:24px 30px;
    box-shadow:
        0 15px 50px rgba(17,24,39,.04),
        inset 0 1px 0 rgba(255,255,255,.95);
}

.premium-footer .policy-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:22px;
}

.premium-footer .policy-links a{
    text-decoration:none;
    color:#4b5563;
    font-size:17px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 18px;
    border-radius:16px;
    transition:.35s ease;
}

.premium-footer .policy-links a:hover{
    background:rgba(168,85,247,.08);
    color:#7c3aed;
    transform:translateY(-3px);
}

.premium-footer .scroll-top{
    position:fixed;
    right:35px;
    bottom:35px;
    width:74px;
    height:74px;
    border:none;
    border-radius:50%;
    background:linear-gradient(135deg,#7c3aed,#d946ef);
    color:white;
    font-size:28px;
    cursor:pointer;
    box-shadow:0 20px 50px rgba(168,85,247,.35);
    z-index:999;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.4s ease;
}

.premium-footer .scroll-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.premium-footer .scroll-top:hover{
    transform:translateY(-8px) scale(1.08);
}

@media(max-width:1200px){
  .premium-footer  .footer-top{
        grid-template-columns:1fr;
    }

   .premium-footer .brand-content h2{
        font-size:42px;
    }
}

@media(max-width:768px){
  .premium-footer  .premium-footer{
        padding:70px 20px 25px;
    }

   .premium-footer .brand-wrap{
        flex-direction:column;
    }

  .premium-footer  .brand-content h2{
        font-size:34px;
    }

  .premium-footer  .brand-content h4{
        font-size:20px;
    }

   .premium-footer .info-card h3{
        font-size:22px;
    }

  .premium-footer  .policy-links a{
        width:100%;
        justify-content:center;
        font-size:15px;
    }

  .premium-footer  .scroll-top{
        width:60px;
        height:60px;
        font-size:22px;
        right:20px;
        bottom:20px;
    }
}

/* ==============================================
   FORM SECTIONS (Registration + Housing)
   Unified modern glass-form style
============================================== */

.form-section-wrapper {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    padding: 2.5rem;
    border: 1px solid rgba(191,58,85,0.08);
}

.form-section-wrapper h4 {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.form-section-wrapper h4::after {
    content: '';
    width: 70px;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Form fields - consistent styling */
.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-control,
.form-select,
textarea.form-control {
    width: 100%;
    padding: 1rem 1rem 1rem 3.2rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.35s ease;
    background: rgba(255,255,255,0.7);
}

.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
    border-color: var(--primary);
    box-shadow: none;
    background: white;
}

.form-control-icon {
    position: absolute;
    left: 1.2rem;    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
      width: 20px;
    pointer-events: none;
}

/* Better textarea handling */
textarea.form-control {
    padding-top: 1.1rem;
    min-height: 80px;
    resize: vertical;
}

/* Submit buttons - both forms */
.form-submit-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    width: 100%;
    max-width: 320px;
    margin: 1.5rem auto 0;
    display: block;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.form-submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(191,58,85,0.35);
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.3),
        transparent
    );
    transition: 0.7s;
}

.form-submit-btn:hover::before {
    left: 120%;
}

/* Mobile adjustments for forms */
@media (max-width: 768px) {
    .form-section-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-submit-btn {
        padding: 0.95rem 2rem;
        font-size: 1rem;
    }
}

/* ==============================================
   SCROLL TO TOP BUTTON
   Modern • Glassmorphic • Floating Style
============================================== */

.scroll-to-top {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(191, 58, 85, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top svg {
    color: var(--primary);
    transition: transform 0.4s ease;
}

.scroll-to-top:hover {
    background: var(--primary);
    border-color: white;
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(191, 58, 85, 0.4);
}

.scroll-to-top:hover svg {
    color: white;
    transform: translateY(-3px);
}

/* Pulse effect on hover (optional subtle animation) */
.scroll-to-top:hover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.15;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.2; }
    70% { transform: scale(1.4); opacity: 0; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 54px;
        height: 54px;
        bottom: 25px;
        right: 25px;
    }
    
    .scroll-to-top svg {
        width: 24px;
        height: 24px;
    }
}

/* modals */
.mdifonl{width: 500px;}
.mdifonl .btn-close{    position: absolute;
    right: 0px;
    top: 0px;}
 .mdifonl   .modal-content{padding: 15px;}
 .mdifonl h2{text-align: center; font-size: 30px;}
@media (max-width: 768px) {
 .mdifonl {
    margin: 0px;
    width: 100%;
    padding: 15px 15px;
}
}


   /* /policy page */

 .page-policy  .hero-policy {
            background: linear-gradient(135deg, var(--primary), var(--primary));
            color: #fff;
            padding: 150px 0 60px;

            text-align: center;
        }

     .page-policy     .hero-policy h1 {
            font-weight: 700;
            margin-bottom: 10px; color: #fff; 
        }

     .page-policy     .breadcrumb-custom {
            background: transparent;
            justify-content: center;
            margin-bottom: 0;
        }

     .page-policy     .breadcrumb-custom .breadcrumb-item a {
            color: #e0e7ff;
            text-decoration: none;
        }

     .page-policy     .breadcrumb-custom .breadcrumb-item.active {
            color: #ffffff;
        }


      .page-policy    .policy-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 25px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

      .page-policy    .policy-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        }
.breadcrumb-item.active {color: #fff!important;}
      .page-policy    .policy-card h3 {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 15px;
        }
.breadcrumb-item+.breadcrumb-item::before {position: relative; top: 2px; color: #fff!important;}
      .page-policy    .policy-card p {
            color: #313030;
            margin-bottom: 0;
        }

        /* Contact Box */
           .page-policy   .contact-box {
            background: linear-gradient(135deg, #0d6efd, #4e73df);
            color: #fff;
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }

        /* Footer */
          .page-policy    footer {
            background: var(--primary);
            color: #ffffff;
            text-align: center;
            padding: 20px 0;
            margin-top: 40px;
        }
.policy-bar {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 16px;
    display: flex
;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;margin-top: 40px;
}
.policy-bar a {
    color: #e2e8f0;
    text-decoration: none;
    display: flex
;
    align-items: center;
    gap: 10px;
}
        @media (max-width: 768px) {
             .page-policy     .hero-policy {
                   padding: 110px 0 60px;
            }

              .page-policy    .policy-card {
                padding: 20px;
            }
        }


        /***************************************
   COMPLETE RESPONSIVE CSS - ALL DEVICES
   Add at END of your CSS
***************************************/

/* Ultra Large Screens */
@media screen and (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }

    .main-heading {
        font-size: 68px;
    }

    .sectioncontact .header h1,
    .services .section-title,
    .schedule-section .header h1,
    .accommodation .header h1,
    .aaic-impact .section-heading h2 {
        font-size: 56px;
    }

    .subtitle,
    .aaic-impact .section-heading p {
        font-size: 22px;
    }
}

/* Large Laptop */
@media screen and (max-width: 1400px) {
    .main-heading {
        font-size: 52px;
    }

    .aaic-impact .impact-layout {
        grid-template-columns: 1fr;
    }

    .premium-footer .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

/* Laptop */
@media screen and (max-width: 1200px) {
    .main-heading {
        font-size: 46px;
    }

    .details {
        gap: 30px;
    }

    .abouthomi img {
        height: 500px;
    }

    .schedule-section .timeline-content {
        padding: 28px;
    }

    .premium-footer .footer-top {
        grid-template-columns: 1fr;
    }

    .sectioncontact .card {
        grid-template-columns: 1fr;
    }
}

/* Tablet Landscape */
@media screen and (max-width: 1024px) {
    .slider-bg {
        padding: 10rem 0 3rem;
        background-attachment: scroll;
    }

    .hero {
        top: 40px;margin-bottom: 40px;
    }

    .main-heading {
        font-size: 40px;
        text-align: center;
    }

    .subtitle {
        text-align: center;
        font-size: 18px;
        margin: 0 auto 30px;
    }

    .details {
        justify-content: center;
    }

    .form-content {
        margin-top: 0;
    }

    .abouthomi .floating-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 25px;
    }

    .aaic-impact .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Portrait */
@media screen and (max-width: 991px) {
    .navbar-brand span {
        font-size: 28px;
    }

    .logo-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .main-heading {
        font-size: 36px;
    }

    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .schedule-section .timeline::before {
        left: 30px;
    }

    .schedule-section .timeline-dot {
        left: 30px;
        width: 50px;
        height: 50px;
    }

    .schedule-section .timeline-content {
        width: calc(100% - 90px);
        margin-left: 90px !important;
    }

    .services .service-card,
    .accommodation .hotel-card {
        margin-bottom: 25px;
    }
}

/* Mobile Large */
@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }
.schedule-section {
    padding: 3rem 15px 30px 15px;}
    .schedule-section .event-info {
    background: white;
    display: inline-block;
    padding: 20px 30px;
    font-size: 16px;
}

    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 30px;
    }

    .logo-section {
        flex-direction: column;
        text-align: center;
    }

    .logo-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .main-heading {
        font-size: 30px;
        line-height: 1.25;        color: var(--primary);
    }

    .subtitle {
        font-size: 16px;
        padding: 0 15px;
    }

    .details {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }

    .detail-item {
        width: 100%;
    }

    .register-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        font-size: 16px;
    }

    .countdown-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .count-number {
        font-size: 24px;
    }

    .abouthomi {
        padding: 50px 15px;
    }

    .abouthomi img {
        height: 350px;
    }

    .abouthomi .main-title {
        font-size: 28px;
    }

    .services,
    .accommodation,
    .aaic-impact,
    .sectioncontact {
        padding-left: 15px;
        padding-right: 15px;
    }

    .aaic-impact .stats-grid {
        grid-template-columns: 1fr;
    }

    .aaic-impact .hero-content h3 {
        font-size: 28px;
    }

    .sectioncontact .form-area {
        padding: 25px;
    }

    .premium-footer {
        padding: 50px 15px 0;
    }
}

/* Small Mobile */
@media screen and (max-width: 576px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .navbar-brand span {
        font-size: 22px;
    }

    .navbar-brand small {
        display: none;
    }

    .offcanvas.offcanvas-end {
        width: 100% !important;
    }

    .main-heading {
        font-size: 26px;
    }

    .countdown-grid {
        grid-template-columns: 1fr;
    }

    .count-box {
        padding: 14px;
    }

    .schedule-section .timeline::before {
        display: none;
    }

    .schedule-section .timeline-dot {
        display: none;
    }

    .schedule-section .timeline-content {
        width: 100%;
        margin-left: 0 !important;
        padding: 22px;
    }

    .services .section-title,
    .accommodation .header h1,
    .aaic-impact .section-heading h2 {
        font-size: 26px;
    }

    .faq-item h5 {
        font-size: 14px;
    }

    .sectioncontact .form-area h2 {
        font-size: 26px;
    }

    .premium-footer .brand-content h2 {
        font-size: 28px;
    }

    .premium-footer .glass-card {
        padding: 22px;
    }

    .scroll-to-top {
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 15px;
    }
}

/* Extra Small Mobile */
@media screen and (max-width: 400px) {
    .main-heading {
        font-size: 22px;
    }

    .register-btn {
        font-size: 14px;
        padding: 14px;
    }

    .logo-icon {
        width: 52px;
        height: 52px;
    }

    .count-number {
        font-size: 20px;
    }

    .aaic-impact .hero-content h3 {
        font-size: 24px;
    }
}