
/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}


/* ================= HEADER ================= */

.header-top {

    width: 100%;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 18px 5%;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.96),
            rgba(245,247,255,0.96)
        );

    backdrop-filter: blur(14px);

    border-bottom:
        1px solid rgba(99,102,241,0.08);

    box-shadow:
        0 6px 22px rgba(15,23,42,0.06);

    position: relative;

    z-index: 100;

    flex-direction: column;

    gap: 20px;
}

/* ================= LOGO ROW ================= */

.header-side {

    width: 100%;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 22px;

    flex-wrap: wrap;
}

/* ================= CENTER ================= */

.header-center {

    width: 100%;

    text-align: center;
}

.header-center h1 {

    font-size: 32px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 6px;

    background:
        linear-gradient(
            90deg,
            #1e1b4b,
            #7c3aed,
            #db2777
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

.header-center p {

    color: #475569;

    font-size: 16px;

    font-weight: 600;

    letter-spacing: 1px;
}

/* ================= LOGO BOX ================= */

.logo-container {

    width: 95px;

    height: 95px;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.95),
            rgba(248,250,255,0.92)
        );

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 10px;

    border:
        1px solid rgba(124,58,237,0.10);

    box-shadow:
        0 10px 25px rgba(99,102,241,0.10);

    transition: all 0.35s ease;
}

/* ================= HOVER ================= */

.logo-container:hover {

    transform:
        translateY(-4px)
        scale(1.04);

    box-shadow:
        0 16px 35px rgba(219,39,119,0.18);
}

/* ================= LOGO IMAGE ================= */

.brand-logo {

    width: 100%;

    height: 100%;

    object-fit: contain;
}
/* ================= MOBILE ================= */

@media (max-width: 992px) {

    .header-top {

        flex-direction: column;

        gap: 20px;

        padding: 20px;
    }

    .header-side {

        width: 100%;

        justify-content: center;
    }

    .header-center {

        width: 100%;
    }

    .header-center h1 {

        font-size: 24px;
    }

    .logo-container {

        width: 75px;

        height: 75px;
    }
}

@media (max-width: 576px) {

    .header-side {

        gap: 10px;

        flex-wrap: wrap;
    }

    .header-center h1 {

        font-size: 18px;

        line-height: 1.4;
    }

    .header-center p {

        font-size: 13px;
    }

    .logo-container {

        width: 62px;

        height: 62px;

        border-radius: 16px;
    }
}

/* ================= PREMIUM NAVBAR ================= */

.navbar {

    background:
        linear-gradient(
            135deg,
            #0f172a 0%,
            #1e1b4b 20%,
            #312e81 45%,
            #7c3aed 70%,
            #db2777 100%
        );

    display: flex;

    justify-content: center;

    align-items: center;

    position: sticky;

    top: 0;

    z-index: 1000;

    padding: 0 20px;

    backdrop-filter: blur(16px);

    border-bottom:
        1px solid rgba(255,255,255,0.10);

    box-shadow:
        0 8px 24px rgba(0,0,0,0.22);

    overflow: visible;
}

/* PREMIUM SHINE EFFECT */

.navbar::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            120deg,
            transparent 20%,
            rgba(255,255,255,0.08) 40%,
            transparent 60%
        );

    transform: translateX(-120%);

    animation: navbarShine 8s linear infinite;
}

@keyframes navbarShine {

    100% {
        transform: translateX(120%);
    }
}



/* ===============================
BALLON BACKGROUND CONTAINER
=============================== */

.balloon-container {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0; /* background layer */
}

/* ===============================
BALLOON STYLE
=============================== */

.balloon {
    position: absolute;
    bottom: -120px;

    border-radius: 50% 50% 45% 45%;
    opacity: 0.9;

    box-shadow:
        inset -6px -10px 15px rgba(0,0,0,0.15),
        inset 4px 6px 10px rgba(255,255,255,0.3),
        0 8px 15px rgba(0,0,0,0.15);
}

/* string */
.balloon::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 2px;
    height: 40px;
    background: rgba(0,0,0,0.2);
    transform: translateX(-50%);
}

/* ================= NAV LINKS ================= */

.nav-links {

    list-style: none;

    display: flex;

    align-items: center;

    gap: 4px;

    position: relative;

    z-index: 2;
}

.nav-links li {

    position: relative;
}

/* ================= NAV ITEMS ================= */

.nav-links a {

    position: relative;

    display: block;

    padding: 20px 18px;

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.6px;

    text-transform: uppercase;

    border-radius: 12px;

    transition:
        all 0.35s ease;

    overflow: visible;
}

/* HOVER EFFECT */

.nav-links a:hover {

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            rgba(236,72,153,0.22),
            rgba(99,102,241,0.25)
        );

    box-shadow:
        0 8px 18px rgba(236,72,153,0.18);

    transform:
        translateY(-2px);
}

/* GLOW UNDERLINE */

.nav-links a::after {

    content: "";

    position: absolute;

    left: 50%;
    bottom: 8px;

    width: 0%;
    height: 2px;

    border-radius: 20px;

    background:
        linear-gradient(
            to right,
            #ff4fa3,
            #8b5cf6,
            #3b82f6
        );

    transform: translateX(-50%);

    transition: width 0.35s ease;
}

.nav-links a:hover::after {

    width: 70%;
}

/* ================= DROPDOWN ================= */

/* ================= DROPDOWN FIX ================= */

.dropdown {
    position: relative;
}

.dropdown-menu {

    position: absolute;

    top: 100%;

    left: 0;

    min-width: 240px;

    padding: 10px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(15,23,42,0.97),
            rgba(49,46,129,0.96)
        );

    backdrop-filter: blur(18px);

    border:
        1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.30);

    display: none;

    z-index: 9999;

    list-style: none;
}

/* SHOW DROPDOWN */

.dropdown:hover .dropdown-menu {

    display: block;

    animation: dropdownFade 0.35s ease;
}

/* DROPDOWN ANIMATION */

@keyframes dropdownFade {

    from{
        opacity: 0;
        transform: translateY(10px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* DROPDOWN LINKS */

.dropdown-menu li {

    width: 100%;
}

.dropdown-menu li a {

    display: block;

    width: 100%;

    color: rgba(255,255,255,0.92);

    padding: 14px 16px;

    border-radius: 12px;

    font-size: 13px;

    text-transform: none;

    transition: all 0.3s ease;
}

/* DROPDOWN HOVER */

.dropdown-menu li a:hover {

    background:
        linear-gradient(
            135deg,
            rgba(236,72,153,0.25),
            rgba(99,102,241,0.25)
        );

    transform: translateX(4px);
}

/* DROPDOWN LINKS */

.dropdown-menu li a {

    color: rgba(255,255,255,0.90);

    padding: 14px 16px;

    border-radius: 12px;

    font-size: 13px;

    text-transform: none;

    border-bottom: none;
}

/* DROPDOWN HOVER */

.dropdown-menu li a:hover {

    background:
        linear-gradient(
            135deg,
            rgba(236,72,153,0.22),
            rgba(99,102,241,0.22)
        );

    transform: translateX(4px);
}

/* ================= JOIN BUTTON ================= */

.join-btn a {

    background:
        linear-gradient(
            135deg,
            #ff4fa3,
            #8b5cf6
        ) !important;

    color: #ffffff !important;

    padding: 12px 22px !important;

    margin-left: 10px;

    border-radius: 50px;

    box-shadow:
        0 10px 20px rgba(236,72,153,0.25);

    transition:
        all 0.35s ease;
}

/* JOIN BUTTON HOVER */

.join-btn a:hover {

    transform:
        translateY(-3px)
        scale(1.04);

    box-shadow:
        0 15px 30px rgba(236,72,153,0.35);
}

/* ================= MOBILE ================= */

@media (max-width: 768px){

    .navbar{

        padding: 10px;
    }

    .nav-links{

        flex-wrap: wrap;

        justify-content: center;
    }

    .nav-links a{

        padding: 12px 14px;

        font-size: 11px;
    }

    .dropdown-menu{

        position: static;

        width: 100%;

        margin-top: 8px;
    }
}

/* ============================
DOWNLOAD SECTIONS
============================ */

.download-section{
    width:90%;
    max-width:1200px;
    margin:70px auto;
}

.download-heading{
    text-align:center;
    margin-bottom:40px;
}

.download-heading h2{
    font-size:36px;
    color:#ffffff;
    margin-bottom:12px;
    font-weight:700;
}

.download-heading p{
    max-width:800px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:16px;
}

.download-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#fff;
    padding:30px;
    border-radius:18px;
    margin-bottom:25px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.3s;
    border-left:6px solid #0d6efd;
}

.download-card:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.download-content{
    width:75%;
}

.download-content h3{
    font-size:24px;
    margin-bottom:10px;
    color:#111;
}

.download-content p{
    color:#666;
    line-height:1.8;
}

.download-btn{
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
    white-space:nowrap;
}

.download-btn i{
    margin-right:8px;
}

.download-btn:hover{
    background:#084298;
}

/* Responsive */

@media(max-width:768px){

.download-card{
    flex-direction:column;
    text-align:center;
}

.download-content{
    width:100%;
    margin-bottom:20px;
}

.download-btn{
    width:100%;
}

}

.download-actions{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 20px;
}

.download-btn,
.view-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
    white-space: nowrap;
}

/* Download Button */
.download-btn{
    background: #007bff;
    color: #fff;
}

.download-btn:hover{
    background: #0056b3;
}

/* View Button */
.view-btn{
    background: #2f5d57;
    color: #fff;
}

.view-btn:hover{
    background: #244944;
}
/* =========================================================
ULTRA COMPACT PREMIUM FOOTER
Clean + Professional + Responsive
========================================================= */

.main-footer{

    position:relative;
    overflow:hidden;

    width:100%;

    padding:45px 22px 14px;

    background:
    radial-gradient(circle at top left,
    rgba(236,72,153,0.14),
    transparent 24%),

    radial-gradient(circle at bottom right,
    rgba(99,102,241,0.14),
    transparent 24%),

    linear-gradient(
        135deg,
        #070816 0%,
        #0f172a 45%,
        #111827 100%
    );

    font-family:'Poppins',sans-serif;
    color:#ffffff;
}

/* =========================================================
BACKGROUND GLOW
========================================================= */

.main-footer::before,
.main-footer::after{

    content:"";

    position:absolute;

    width:240px;
    height:240px;

    border-radius:50%;

    filter:blur(70px);

    opacity:0.12;

    pointer-events:none;
}

.main-footer::before{

    top:-120px;
    left:-80px;

    background:#ec4899;
}

.main-footer::after{

    bottom:-120px;
    right:-80px;

    background:#6366f1;
}

/* =========================================================
WRAPPER
========================================================= */

.footer-wrapper{

    position:relative;
    z-index:2;

    max-width:1200px;

    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;

    gap:38px;
}

/* =========================================================
LEFT COLUMN DIVIDER
========================================================= */

.footer-column.left{

    position:relative;

    padding-right:34px;
}

.footer-column.left::after{

    content:"";

    position:absolute;

    top:0;
    right:0;

    width:1px;
    height:100%;

    background:
    linear-gradient(
        to bottom,
        transparent,
        rgba(255,255,255,0.14),
        transparent
    );
}

/* =========================================================
TITLE
========================================================= */

.footer-title{

    font-size:24px;
    font-weight:700;

    line-height:1.3;

    margin-bottom:18px;

    background:
    linear-gradient(
        90deg,
        #ffffff,
        #ec4899,
        #6366f1
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* =========================================================
LOGO
========================================================= */

.footer-logo{

    width:120px;

    border-radius:14px;

    background:rgba(255,255,255,0.05);

    padding:6px;

    margin-bottom:18px;

    border:1px solid rgba(255,255,255,0.06);

    box-shadow:
    0 8px 20px rgba(0,0,0,0.20);
}

/* =========================================================
TEXT
========================================================= */

.footer-heading{

    font-size:15px;
    font-weight:700;

    margin-bottom:8px;
}

.footer-text{

    font-size:13px;

    line-height:1.7;

    color:rgba(255,255,255,0.80);

    margin-bottom:16px;
}

/* =========================================================
LINK
========================================================= */

.footer-link{

    color:#7dd3fc;

    text-decoration:none;

    font-size:13px;
    font-weight:500;

    transition:0.3s ease;

    position:relative;
    z-index:5;
}

.footer-link:hover{

    color:#ec4899;
}

/* =========================================================
CONTACT GRID
========================================================= */

.contact-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:12px;

    margin-top:18px;
}

.contact-box{

    padding:14px;

    border-radius:14px;

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.06);

    transition:0.3s ease;
}

.contact-box:hover{

    transform:translateY(-2px);

    border-color:
    rgba(236,72,153,0.22);
}

.contact-box h4{

    margin:0 0 6px;

    font-size:14px;
    font-weight:600;
}

.contact-box p{

    margin:0;

    font-size:12px;

    line-height:1.6;

    color:rgba(255,255,255,0.74);
}

/* =========================================================
BOTTOM
========================================================= */

.footer-bottom{

    position:relative;
    z-index:2;

    max-width:1200px;

    margin:30px auto 0;

    padding-top:14px;

    border-top:
    1px solid rgba(255,255,255,0.06);

    text-align:center;
}

.footer-bottom p{

    margin:0;

    color:rgba(255,255,255,0.58);

    font-size:12px;
}

/* =========================================================
TABLET
========================================================= */

@media(max-width:992px){

    .footer-wrapper{

        grid-template-columns:1fr;

        gap:30px;
    }

    .footer-column.left{

        padding-right:0;
    }

    .footer-column.left::after{

        display:none;
    }
}

/* =========================================================
MOBILE
========================================================= */

@media(max-width:768px){

    .main-footer{

        padding:36px 18px 14px;
    }

    .footer-title{

        font-size:20px;
    }

    .footer-logo{

        width:90px;
    }

    .contact-grid{

        grid-template-columns:1fr;
    }

    .footer-text{

        font-size:12.5px;
    }
}

.footer-link-btn{

    background: none;
    border: none;

    padding: 0;

    color: #7dd3fc;

    font-size: 13px;
    font-family: inherit;

    cursor: pointer;

    transition: 0.3s ease;
}

.footer-link-btn:hover{

    color: #ec4899;
}
/* =========================================================
ANIMATIONS
========================================================= */

@keyframes gradientShift {

    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@keyframes orbFloat {

    0% {

        transform:
            translateY(0px)
            scale(1);
    }

    100% {

        transform:
            translateY(-30px)
            scale(1.08);
    }
}

@keyframes gridMove {

    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(70px);
    }
}

/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .venue-side-by-side-grid {

        grid-template-columns: 1fr;
    }

    .venue-square-card {

        min-height: 620px;
    }
}

@media (max-width: 768px) {

    .venue-section-wrapper {

        padding: 90px 20px;
    }

    .venue-main-title {

        font-size: 34px;
    }

    .card-inner-content {

        padding: 35px;
    }

    .card-inner-content p {

        font-size: 15px;
        line-height: 1.9;
    }

    .venue-square-card {

        min-height: auto;
    }
}

@media (max-width: 480px) {

    .venue-main-title {

        font-size: 26px;
        line-height: 1.4;
    }

    .card-inner-content {

        padding: 26px;
    }

    .card-inner-content p {

        font-size: 14px;
    }
}



/* ================== MOBILE FIRST (default) ================== */
/* You already have base styles → consider them as mobile layout */


/* ================== SMALL MOBILES (max-width 480px) ================== */
@media (max-width: 480px){

    .header-top{
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .brand-logo{
        height: 40px;
    }

    .header-center h1{
        font-size: 16px;
    }

    /* nav becomes stacked center */
    .nav-links{
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a{
        padding: 10px;
        font-size: 11px;
    }

    .hero{
        height: 250px;
    }

    .about-grid{
        display: block;
    }

    .notification-grid,
    .important-grid,
    .issues-grid,
    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .footer-container{
        grid-template-columns: 1fr;
        text-align: center;
    }
}


/* ================== TABLET (481px – 768px) ================== */
@media (min-width: 481px) and (max-width: 768px){

    .header-top{
        gap: 10px;
    }

    .header-center h1{
        font-size: 18px;
    }

    .hero{
        height: 320px;
    }

    .about-grid{
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .notification-grid,
    .important-grid{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .issues-grid{
        grid-template-columns: 1fr 1fr;
    }

    .leadership-grid{
        grid-template-columns: 1fr 1fr;
    }

    .footer-container{
        grid-template-columns: 1fr 1fr;
    }
}


/* ================== LAPTOP (769px – 1024px) ================== */
@media (min-width: 769px) and (max-width: 1024px){

    .hero{
        height: 400px;
    }

    .about-grid{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        align-items: center;
    }

    .notification-grid{
        grid-template-columns: repeat(3, 1fr);
    }

    .important-grid{
        grid-template-columns: repeat(3, 1fr);
    }

    .issues-grid{
        grid-template-columns: repeat(3, 1fr);
    }

    .leadership-grid{
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-container{
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ================== DESKTOP 1025px+ ================== */
@media (min-width: 1025px){

    .about-grid{
        display: grid;
        grid-template-columns: 1.2fr 1fr;
    }

    .notification-grid{
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .important-grid{
        grid-template-columns: repeat(4, 1fr);
    }

    .issues-grid{
        grid-template-columns: repeat(4, 1fr);
    }

    .leadership-grid{
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-container{
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

/* ================= MAP BOX ================= */

.footer-map-box{

    margin-top: 16px;

    padding: 16px;

    border-radius: 16px;

    background: rgba(255,255,255,0.06);

    border: 1px solid rgba(255,255,255,0.12);

    backdrop-filter: blur(12px);

    box-shadow: 0 12px 28px rgba(0,0,0,0.22);

    max-width: 100%;
}

/* HEADER */

.map-header{

    font-size: 16px;
    font-weight: 700;

    color: #fff;

    margin-bottom: 10px;
}

/* IFRAME */

.footer-map-box iframe{

    width: 100%;

    height: 220px;

    border: 0;

    border-radius: 12px;

    margin-bottom: 10px;
}

/* BUTTON */

.map-btn{

    display: inline-block;

    padding: 10px 14px;

    border-radius: 10px;

    background: linear-gradient(135deg, #ffcc00, #ff9900);

    color: #111;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: 0.3s ease;
}

.map-btn:hover{

    transform: translateY(-2px);

    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}
/* =========================================================
GOLD TEXT ONLY FOR IMAGE SECTION HEADINGS
(Footer heading not affected)
========================================================= */

.section-title,
.organizing-committee-section .section-title,
.venue-main-title {

    background: none !important;

    -webkit-background-clip: unset !important;

    -webkit-text-fill-color: #FFD700 !important;

    color: #FFD700 !important;

    text-shadow:
        0 0 10px rgba(255,215,0,0.45),
        0 4px 18px rgba(0,0,0,0.35);
}

/* =========================================================
FINAL ULTRA RESPONSIVE WEBSITE FIX
HEADER + LOGOS + NAVBAR + DROPDOWN + MOBILE
ADD THIS CSS AT THE VERY BOTTOM OF YOUR CSS FILE
========================================================= */


/* =========================================================
GLOBAL RESPONSIVE FIX
========================================================= */

html,
body{
    overflow-x:hidden;
    width:100%;
}

img{
    max-width:100%;
    display:block;
}

/* =========================================================
HEADER PERFECT RESPONSIVE
========================================================= */

.header-top{

    width:100%;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:20px;

    flex-wrap:nowrap;

    padding:18px 3%;

    position:relative;
}

/* LEFT + RIGHT */

.header-side{

    display:flex;
    align-items:center;
    justify-content:center;

    gap:14px;

    flex:1;
}

/* CENTER */

.header-center{

    flex:1.2;

    text-align:center;

    padding:0 10px;
}

/* TITLE */

.header-center h1{

    font-size:30px;

    line-height:1.3;

    word-break:break-word;
}

.header-center p{

    font-size:14px;

    line-height:1.6;
}

/* LOGO BOX */

.logo-container{

    width:90px;
    height:90px;

    min-width:90px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;
}

/* LOGO IMAGE */

.brand-logo{

    width:100%;
    height:100%;

    object-fit:contain;
}


/* =========================================================
DESKTOP LARGE
========================================================= */

@media (min-width:1400px){

    .header-center h1{
        font-size:36px;
    }

    .logo-container{
        width:100px;
        height:100px;
    }
}


/* =========================================================
LAPTOP
========================================================= */

@media (max-width:1200px){

    .header-top{

        padding:18px 20px;

        gap:14px;
    }

    .logo-container{

        width:80px;
        height:80px;

        min-width:80px;
    }

    .header-center h1{

        font-size:24px;
    }

    .header-center p{

        font-size:13px;
    }
}


/* =========================================================
TABLET FIX
========================================================= */

@media (max-width:992px){

    .header-top{

        flex-direction:column;

        justify-content:center;
        align-items:center;

        text-align:center;

        gap:18px;

        padding:22px 18px;
    }

    .header-side{

        width:100%;

        justify-content:center;

        flex-wrap:nowrap;

        gap:12px;
    }

    .header-center{

        width:100%;

        order:-1;
    }

    .header-center h1{

        font-size:22px;

        line-height:1.5;
    }

    .header-center p{

        font-size:13px;
    }

    .logo-container{

        width:72px;
        height:72px;

        min-width:72px;

        border-radius:16px;
    }
}


/* =========================================================
MOBILE PERFECT FIX
ALL 4 LOGOS VISIBLE
========================================================= */

@media (max-width:768px){

    .header-top{

        padding:18px 10px;

        gap:14px;
    }

    .header-side{

        width:100%;

        display:flex;

        justify-content:center;

        align-items:center;

        gap:8px;

        flex-wrap:nowrap;
    }

    .logo-container{

        width:58px;
        height:58px;

        min-width:58px;

        padding:6px;

        border-radius:12px;
    }

    .header-center h1{

        font-size:18px;

        line-height:1.5;

        margin-bottom:6px;
    }

    .header-center p{

        font-size:11px;

        line-height:1.6;
    }
}


/* =========================================================
EXTRA SMALL MOBILE
========================================================= */

@media (max-width:480px){

    .header-top{

        padding:15px 8px;
    }

    .header-side{

        gap:6px;
    }

    .logo-container{

        width:52px;
        height:52px;

        min-width:52px;

        padding:5px;
    }

    .header-center h1{

        font-size:15px;

        line-height:1.5;
    }

    .header-center p{

        font-size:10px;
    }
}



/* =========================================================
ULTRA RESPONSIVE NAVBAR
========================================================= */

.navbar{

    width:100%;

    position:sticky;

    top:0;

    z-index:9999;

    padding:0 10px;
}

/* NAV LINKS */

.nav-links{

    width:100%;

    display:flex;

    justify-content:center;
    align-items:center;

    flex-wrap:wrap;

    gap:4px;

    padding:6px 0;
}

/* NAV ITEMS */

.nav-links li{

    position:relative;
}

/* LINKS */

.nav-links a{

    padding:14px 16px;

    font-size:12px;

    white-space:nowrap;

    border-radius:10px;
}

/* =========================================================
PERFECT DROPDOWN
========================================================= */

.dropdown{

    position:relative;
}

/* DROPDOWN MENU */

.dropdown-menu{

    position:absolute;

    top:100%;
    left:0;

    min-width:240px;

    display:block;

    opacity:0;
    visibility:hidden;

    transform:
        translateY(12px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;

    pointer-events:none;
}

/* SHOW */

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu{

    opacity:1;
    visibility:visible;

    transform:
        translateY(0);

    pointer-events:auto;
}

/* LINKS */

.dropdown-menu li{

    width:100%;
}

.dropdown-menu li a{

    width:100%;

    display:block;

    padding:13px 15px;

    font-size:13px;

    white-space:normal;
}

/* =========================================================
TABLET NAVBAR
========================================================= */

@media (max-width:992px){

    .navbar{

        padding:8px 10px;
    }

    .nav-links{

        justify-content:center;

        gap:6px;
    }

    .nav-links a{

        padding:12px 12px;

        font-size:11px;
    }

    .dropdown-menu{

        min-width:220px;
    }
}


/* =========================================================
MOBILE NAVBAR FIX
========================================================= */

@media (max-width:768px){

    .navbar{

        overflow:visible;

        padding:10px 6px;
    }

    .nav-links{

        width:100%;

        display:grid;

        grid-template-columns:
        repeat(2,1fr);

        gap:8px;
    }

    .nav-links li{

        width:100%;
    }

    .nav-links a{

        width:100%;

        text-align:center;

        padding:12px 8px;

        font-size:11px;

        border-radius:10px;
    }

    /* MOBILE DROPDOWN */

    .dropdown-menu{

        position:relative;

        top:0;
        left:0;

        width:100%;

        min-width:100%;

        margin-top:8px;

        border-radius:14px;

        opacity:1;
        visibility:visible;

        transform:none;

        display:none;

        pointer-events:auto;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown:focus-within .dropdown-menu{

        display:block;
    }

    .dropdown-menu li a{

        text-align:left;

        font-size:12px;
    }

    .join-btn{

        grid-column:1/-1;
    }
}


/* =========================================================
EXTRA SMALL MOBILE NAV
========================================================= */

@media (max-width:480px){

    .nav-links{

        grid-template-columns:1fr;
    }

    .nav-links a{

        font-size:11px;

        padding:11px 8px;
    }

    .dropdown-menu li a{

        font-size:11px;
    }
}


/* =========================================================
SECTION RESPONSIVE FIX
========================================================= */

section{

    width:100%;
    overflow:hidden;
}

/* GRID FIX */

.committee-grid,
.footer-wrapper,
.contact-grid,
.notification-grid,
.important-grid,
.issues-grid,
.leadership-grid,
.about-grid{

    width:100%;
}

/* =========================================================
ORGANIZING COMMITTEE FIX
========================================================= */

@media (max-width:768px){

    .organizing-committee-section{

        padding:70px 16px;
    }

    .section-title{

        font-size:28px;

        line-height:1.5;

        margin-bottom:50px;
    }

    .section-title::after{

        width:120px;

        left:50%;

        transform:translateX(-50%);
    }

    .committee-grid{

        grid-template-columns:1fr;

        gap:24px;
    }

    .committee-card{

        padding:26px 18px;

        border-radius:24px;
    }

    .image-wrapper{

        width:180px;
        height:220px;
    }

    .member-name{

        font-size:1.2rem;
    }

    .member-role{

        font-size:13px;
    }
}


/* =========================================================
FOOTER RESPONSIVE PERFECT
========================================================= */

@media (max-width:768px){

    .main-footer{

        padding:40px 16px 16px;
    }

    .footer-wrapper{

        grid-template-columns:1fr;

        gap:30px;
    }

    .footer-column{

        width:100%;
    }

    .footer-title{

        font-size:20px;

        line-height:1.5;
    }

    .footer-logo{

        width:90px;
    }

    .footer-text{

        font-size:12px;

        line-height:1.8;
    }

    .contact-grid{

        grid-template-columns:1fr;

        gap:12px;
    }

    .footer-map-box iframe{

        height:200px;
    }
}


/* =========================================================
MAP FIX
========================================================= */

.footer-map-box{

    width:100%;

    overflow:hidden;
}

.footer-map-box iframe{

    width:100%;
}


/* =========================================================
NO HORIZONTAL SCROLL ANYWHERE
========================================================= */

*{
    max-width:100%;
}


/* =========================================================
SMOOTH TOUCH FIX
========================================================= */

button,
a{

    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
BETTER MOBILE SPACING
========================================================= */

@media (max-width:768px){

    section{

        margin:0;
    }

    .committee-card,
    .contact-box{

        margin:0 auto;
    }
}
/* ================= HERO SECTION PREMIUM ================= */

.hero {
    position: relative;
    height: 580px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #1d2671 0%,
            #c33764 100%
        );
}

/* Slider */
.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Slide */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* ================= BANNER CONTAINER ================= */

.banner-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 8%;
}

/* Premium overlay */
.banner-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to right,
            #ffffff,
            #ffffff,
            #ffffff,
        );
    z-index: 1;
}

/* ================= HERO CONTENT ================= */

.banner-content {
    position: relative;
    z-index: 3;
    max-width: 950px;
    text-align: center;
    color: #ffffff;

    padding: 45px;

    border-radius: 24px;

    backdrop-filter: blur(14px);

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.15);

    box-shadow:
        0 15px 40px rgba(0,0,0,0.28);
}

/* ================= MAIN TITLE ================= */

.main-title {
    font-size: 23px;
    line-height: 1.50;
    font-weight: 1000;
    margin-bottom: 18px;
    letter-spacing: 1px;
    color: whitesmoke;
    text-transform: uppercase;
}

/* Subtitle inside title */
.main-title p {
    font-size: 18px;
    margin-top: 14px;
    color: gold;
    font-weight: 500;
}

/* ================= DETAILS BADGE ================= */

.details-badge {
    margin: 28px auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;

    padding: 14px 28px;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.15),
            rgba(255,255,255,0.05)
        );

    border: 1px solid rgba(255,255,255,0.15);
}

.details-badge span {
    font-size: 23px;
    font-weight: 600;
    color: whitesmoke;
}

.details-badge .date {
    color: gold;
}

.divider {
    opacity: 0.5;
}

/* ================= THEME TEXT ================= */

.theme-text {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.6;
    margin-top: 18px;

    color: whitesmoke;
}

/* ================= CONFERENCE SUBTITLE ================= */

.conference-subtitle{
    margin-top: 22px;

    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 18px 34px;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 105, 180, 0.18),
            rgba(0, 75, 135, 0.28)
        );

    border: 1px solid rgba(255,255,255,0.16);

    backdrop-filter: blur(12px);

    box-shadow:
        0 10px 28px rgba(0,0,0,0.22);

    color: whitesmoke;

    position: relative;
    overflow: hidden;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        background 0.4s ease;
}

/* Premium Glass Shine */
.conference-subtitle::before{
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            120deg,
            rgba(255,255,255,0.10),
            transparent,
            rgba(255,255,255,0.05)
        );

    pointer-events: none;
}

/* Hover Effect */
.conference-subtitle:hover{

    transform: translateY(-5px) scale(1.02);

    background:
        linear-gradient(
            135deg,
            rgba(255, 105, 180, 0.26),
            rgba(0, 75, 135, 0.36)
        );

    box-shadow:
        0 18px 38px rgba(0,0,0,0.28);
}

/* Main Text */
.conference-subtitle{
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.8px;
    line-height: 1.5;
    text-transform: uppercase;
}

/* Inner Paragraph */
.conference-subtitle p{

    margin-top: 8px;

    font-size: 17px;
    font-weight: 500;

    color: gold;

    text-transform: none;

    letter-spacing: 0.4px;

    line-height: 1.7;
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width:768px){

    .conference-subtitle{

        width: 100%;

        padding: 16px 18px;

        font-size: 14px;

        line-height: 1.6;

        margin-top: 18px;

        border-radius: 18px;
    }

    .conference-subtitle p{

        font-size: 14px;

        line-height: 1.6;
    }

}

/* ================= ANIMATION ================= */

.banner-content {
    animation: heroFade 1.3s ease;
}

@keyframes heroFade {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .hero {
        height: 520px;
    }

    .main-title {
        font-size: 34px;
    }

    .theme-text {
        font-size: 22px;
    }

    .banner-content {
        padding: 35px;
    }
}

@media (max-width: 768px) {

    .hero {
        height: auto;
        min-height: 520px;
    }

    .banner-container {
        padding: 40px 20px;
    }

    .banner-content {
        padding: 28px 22px;
        text-align: center;
    }

    .main-title {
        font-size: 24px;
        line-height: 1.4;
    }

    .main-title p {
        font-size: 18px;
    }

    .theme-text {
        font-size: 18px;
        line-height: 1.5;
    }

    .details-badge {
        padding: 12px 18px;
        border-radius: 18px;
    }

    .details-badge span {
        font-size: 13px;
    }

    .divider {
        display: none;
    }
}

/* Increase only text size */

.conference-subtitle{
    font-size: 30px;
}

.conference-subtitle p{
    font-size: 28px;
}

/* =========================================================
ULTRA PREMIUM LUXURY INFO RIBBON
Glassmorphism + Neon Glow + Floating Hover
Pink / Purple / Royal Blue Theme
========================================================= */

.info-ribbon {

    position: relative;

    width: 100%;

    display: flex;

    overflow: hidden;

    border-radius: 30px;

    isolation: isolate;

    background:
        linear-gradient(
            135deg,
            #0f172a 0%,
            #1e1b4b 20%,
            #312e81 40%,
            #7c3aed 65%,
            #db2777 100%
        );

    border:
        1px solid rgba(255,255,255,0.12);

    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.45),
        0 10px 25px rgba(219, 39, 119, 0.18),
        inset 0 1px 0 rgba(255,255,255,0.12);

    backdrop-filter: blur(18px);

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

/* Floating hover */
.info-ribbon:hover {

    transform:
        translateY(-10px)
        scale(1.01);

    box-shadow:
        0 40px 80px rgba(15,23,42,0.55),
        0 20px 40px rgba(219,39,119,0.28),
        0 0 60px rgba(124,58,237,0.22);
}

/* Animated shine */
.info-ribbon::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            120deg,
            transparent 20%,
            rgba(255,255,255,0.10) 40%,
            transparent 60%
        );

    transform: translateX(-120%);

    animation: ribbonShine 8s linear infinite;

    z-index: 1;
}

@keyframes ribbonShine {

    100% {
        transform: translateX(120%);
    }
}

/* Decorative glow */
.info-ribbon::after {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    background:
        radial-gradient(
            circle,
            rgba(219,39,119,0.20),
            transparent 70%
        );

    top: -180px;
    right: -120px;

    z-index: 0;
}

/* =========================================================
SECTIONS
========================================================= */

.ribbon-section {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    padding: 32px 36px;

    transition:
        transform 0.45s ease,
        background 0.45s ease;
}

/* Section hover */
.ribbon-section:hover {

    transform:
        translateY(-4px)
        scale(1.02);
}

/* Glass divider */
.ribbon-section:not(:last-child)::after {

    content: "";

    position: absolute;

    top: 15%;
    right: 0;

    width: 1px;
    height: 70%;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(255,255,255,0.20),
            transparent
        );
}

/* =========================================================
DATE SECTION
========================================================= */

.date-section {

    width: 32%;

    background:
        linear-gradient(
            135deg,
            rgba(30,41,99,0.60),
            rgba(91,33,182,0.35)
        );
}

/* =========================================================
VENUE SECTION
========================================================= */

.venue-section {

    width: 38%;

    background:
        linear-gradient(
            135deg,
            rgba(190,24,93,0.30),
            rgba(236,72,153,0.18)
        );
}

/* =========================================================
COUNTDOWN SECTION
========================================================= */

.countdown-section {

    width: 30%;

    justify-content: center;

    gap: 16px;

    background:
        linear-gradient(
            135deg,
            rgba(79,70,229,0.25),
            rgba(219,39,119,0.18)
        );
}

/* =========================================================
ICON CONTAINER
========================================================= */

.icon-container {

    width: 70px;
    height: 70px;

    min-width: 70px;

    margin-right: 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.16),
            rgba(255,255,255,0.06)
        );

    border:
        1px solid rgba(255,255,255,0.14);

    backdrop-filter: blur(12px);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.15),
        0 12px 25px rgba(0,0,0,0.20);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        background 0.4s ease;
}

/* Premium hover */
.ribbon-section:hover .icon-container {

    transform:
        rotate(-8deg)
        scale(1.08);

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.22),
            rgba(255,255,255,0.10)
        );

    box-shadow:
        0 18px 35px rgba(0,0,0,0.28),
        0 0 30px rgba(236,72,153,0.22);
}

/* SVG */
.icon-container svg {

    width: 34px;
    height: 34px;

    color: #ffffff;

    filter:
        drop-shadow(0 2px 10px rgba(255,255,255,0.25));
}

/* =========================================================
TEXT
========================================================= */

.text-container {

    display: flex;
    flex-direction: column;
}

/* Heading */
.label {

    font-size: 34px;

    font-weight: 800;

    color: #ffffff;

    letter-spacing: 0.5px;

    margin-bottom: 6px;

    text-shadow:
        0 2px 10px rgba(0,0,0,0.25);
}

/* Content */
.value {

    font-size: 15px;

    font-weight: 500;

    color: rgba(255,255,255,0.92);

    line-height: 1.7;

    letter-spacing: 0.4px;
}

.value sup {

    font-size: 10px;
}

/* =========================================================
COUNTDOWN BOX
========================================================= */

.countdown-box {

    position: relative;

    width: 90px;
    height: 90px;

    border-radius: 24px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.16),
            rgba(255,255,255,0.05)
        );

    border:
        1px solid rgba(255,255,255,0.14);

    backdrop-filter: blur(15px);

    overflow: hidden;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.12),
        0 12px 28px rgba(0,0,0,0.22);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        background 0.45s ease;
}

/* Glowing border */
.countdown-box::before {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    padding: 1px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.35),
            transparent,
            rgba(236,72,153,0.35)
        );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

            mask-composite: exclude;
}

/* Hover */
.countdown-box:hover {

    transform:
        translateY(-10px)
        scale(1.08);

    box-shadow:
        0 22px 40px rgba(0,0,0,0.35),
        0 0 35px rgba(236,72,153,0.22);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.20),
            rgba(255,255,255,0.08)
        );
}

/* Number */
.countdown-box .number {

    font-size: 34px;

    font-weight: 900;

    color: #ffffff;

    line-height: 1;

    text-shadow:
        0 4px 14px rgba(255,255,255,0.25);
}

/* Unit */
.countdown-box .unit {

    margin-top: 6px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;

    color: rgba(255,255,255,0.80);
}

/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width: 992px) {

    .info-ribbon {

        flex-direction: column;
    }

    .date-section,
    .venue-section,
    .countdown-section {

        width: 100%;

        justify-content: center;
    }

    .countdown-section {

        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {

    .ribbon-section {

        flex-direction: column;

        text-align: center;
    }

    .icon-container {

        margin-right: 0;
        margin-bottom: 18px;
    }

    .label {

        font-size: 28px;
    }

    .countdown-box {

        width: 78px;
        height: 78px;
    }

    .countdown-box .number {

        font-size: 28px;
    }
}

/* =========================================================
ULTRA PREMIUM WELCOME SECTION
Luxury Pink + Royal Blue Theme
Glassmorphism + Floating Glow + Professional Layout
========================================================= */

.welcome-section {

    position: relative;

    width: 100%;

    min-height: 100vh;

    padding: 90px 24px;

    overflow: hidden;

    display: flex;

    justify-content: center;
    align-items: center;

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    background:
        linear-gradient(
            135deg,
            #0f172a 0%,
            #1e1b4b 22%,
            #312e81 48%,
            #7c3aed 72%,
            #db2777 100%
        );
}

/* =========================================================
BACKGROUND GLOW EFFECTS
========================================================= */

.welcome-section::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -180px;
    left: -120px;

    background:
        radial-gradient(
            circle,
            rgba(236,72,153,0.28),
            transparent 70%
        );

    filter: blur(20px);

    z-index: 0;
}

.welcome-section::after {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    bottom: -180px;
    right: -120px;

    background:
        radial-gradient(
            circle,
            rgba(99,102,241,0.30),
            transparent 70%
        );

    filter: blur(20px);

    z-index: 0;
}

/* =========================================================
MAIN CONTAINER
========================================================= */

.welcome-container {

    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1150px;

    padding: 65px 70px;

    border-radius: 34px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.10),
            rgba(255,255,255,0.04)
        );

    backdrop-filter: blur(18px);

    border:
        1px solid rgba(255,255,255,0.12);

    box-shadow:
        0 35px 70px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.08);

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

/* Floating hover */
.welcome-container:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 45px 85px rgba(0,0,0,0.42),
        0 0 60px rgba(236,72,153,0.14);
}

/* Decorative shine */
.welcome-container::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            120deg,
            transparent 20%,
            rgba(255,255,255,0.08) 40%,
            transparent 60%
        );

    transform: translateX(-120%);

    animation: glassShine 8s linear infinite;

    pointer-events: none;
}

/* Shine animation */
@keyframes glassShine {

    100% {
        transform: translateX(120%);
    }
}

/* =========================================================
TITLE
========================================================= */

.welcome-title {

    position: relative;

    display: inline-block;

    font-size: 42px;

    font-weight: 800;

    margin-bottom: 40px;

    color: #ffffff;

    letter-spacing: 1px;

    text-transform: uppercase;

    text-shadow:
        0 4px 18px rgba(0,0,0,0.30);
}

/* Premium underline */
.welcome-title::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -14px;

    width: 95px;
    height: 5px;

    border-radius: 30px;

    background:
        linear-gradient(
            to right,
            #ec4899,
            #8b5cf6,
            #6366f1
        );

    box-shadow:
        0 0 18px rgba(236,72,153,0.45);
}

/* =========================================================
SALUTATION
========================================================= */

.salutation {

    font-size: 22px;

    font-weight: 700;

    color: pink;

    margin-bottom: 30px;

    letter-spacing: 0.3px;

    text-shadow:
        0 2px 10px rgba(0,0,0,0.25);
}

/* =========================================================
BODY CONTENT
========================================================= */

.welcome-body {

    display: flex;

    flex-direction: column;

    gap: 28px;
}

/* Paragraphs */
.welcome-body p {

    position: relative;

    padding-left: 24px;

    font-size: 16px;

    line-height: 2;

    font-weight: 400;

    color: rgba(255,255,255,0.92);

    text-align: justify;

    letter-spacing: 0.25px;

    transition:
        transform 0.35s ease,
        color 0.35s ease;
}

/* Premium left accent line */
.welcome-body p::before {

    content: "";

    position: absolute;

    left: 0;
    top: 10px;

    width: 4px;
    height: 75%;

    border-radius: 20px;

    background:
        linear-gradient(
            to bottom,
            #ec4899,
            #8b5cf6
        );

    opacity: 0.85;
}

/* Paragraph hover */
.welcome-body p:hover {

    transform: translateX(6px);

    color: #ffffff;
}

/* =========================================================
HIGHLIGHT TEXT
========================================================= */

.highlight-text {

    font-weight: 700;

    color: #004B87;

    background:
        linear-gradient(
            to right,
            pink,
            pink
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    text-shadow:
        0 0 12px rgba(0,75,135,0.18);
}

/* =========================================================
BRACKET CONFERENCE TEXT COLORS
========================================================= */

/* (32nd IAPTCBPEDICON-2026) */

.welcome-body p {

    position: relative;
}

/* Style for bracket conference names */

.welcome-body p {

    color: rgba(255,255,255,0.92);
}

/* Blue bracket content */

.welcome-body p strong {

    font-weight: 700;
}

/* Premium bracket styling */

.welcome-body p {

    word-spacing: 1px;
}

/* Target bracket text manually */

.iaptcb-bracket {

    color: black;

    font-weight: 800;

    text-shadow:
        0 0 10px rgba(0,75,135,0.18);
}

.peddermacon-bracket {

    color: #004B87;

    font-weight: 800;

    text-shadow:
        0 0 10px rgba(0,75,135,0.18);
}
/* =========================================================
SIGNATURE
========================================================= */

.closing-signature {

    margin-top: 45px;

    padding-top: 24px;

    border-top:
        1px solid rgba(255,255,255,0.10);

    text-align: left;
}

/* COMMON TEXT STYLE */

.closing-signature p {

    font-size: 18px;

    font-weight: 700;

    letter-spacing: 0.5px;

    margin-bottom: 10px;
}

/* Warm Regards */

.warm-regards {

    color: #ff69b4; /* Premium Pink */
}

/* Organizing Committee */

.organizing-committee {

    color: #000000; /* Black */
}

/* Conference Line */

.conference-line {

    line-height: 1.8;
}

/* 14th PED DERMACON */

.peddermacon {

    color: #ff4fa3; /* Rich Pink */
}

/* & Symbol */

.ampersand {

    color: #000000;

    margin: 0 8px;
}

/* 32nd IAPTCB */

.iaptcb {

    color: #004B87;

    font-weight: 800;
}

/* Mobile Responsive */

@media (max-width:768px){

    .closing-signature p{

        font-size: 15px;
    }

}

/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width: 992px) {

    .welcome-container {

        padding: 50px 40px;
    }

    .welcome-title {

        font-size: 34px;
    }

    .welcome-body p {

        font-size: 15px;

        line-height: 1.9;
    }
}

@media (max-width: 768px) {

    .welcome-section {

        padding: 60px 18px;
    }

    .welcome-container {

        padding: 40px 24px;

        border-radius: 24px;
    }

    .welcome-title {

        font-size: 28px;
    }

    .salutation {

        font-size: 18px;
    }

    .welcome-body p {

        font-size: 14.5px;

        line-height: 1.8;

        text-align: left;

        padding-left: 18px;
    }

    .welcome-title::after {

        width: 70px;
    }
}

@media (max-width: 480px) {

    .welcome-container {

        padding: 32px 20px;
    }

    .welcome-title {

        font-size: 24px;
    }

    .welcome-body {

        gap: 22px;
    }
}



/* =========================================================
PREMIUM ORGANIZING COMMITTEE SECTION
Luxury Pink + Royal Blue Theme
2 Cards Per Row
========================================================= */

/* SECTION */
.organizing-committee-section {

    position: relative;

    padding: 90px 24px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #0f172a 0%,
            #1e1b4b 25%,
            #312e81 55%,
            #7c3aed 78%,
            #db2777 100%
        );

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    text-align: center;
}

/* Background glow */
.organizing-committee-section::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -180px;
    left: -120px;

    background:
        radial-gradient(
            circle,
            rgba(236,72,153,0.20),
            transparent 70%
        );

    filter: blur(25px);

    z-index: 0;
}

.organizing-committee-section::after {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    bottom: -180px;
    right: -120px;

    background:
        radial-gradient(
            circle,
            rgba(99,102,241,0.22),
            transparent 70%
        );

    filter: blur(25px);

    z-index: 0;
}

.organizing-committee-section .section-title {
    color: gold;
}
/* =========================================================
TITLE
========================================================= */

.section-title {

    position: relative;

    z-index: 2;

    display: inline-block;

    font-size: 42px;

    font-weight: 800;

    color: #ffffff;

    margin-bottom: 70px;

    letter-spacing: 1px;

    text-transform: uppercase;

    text-shadow:
        0 4px 18px rgba(0,0,0,0.30);
}

/* Premium underline */
.section-title::after {

    content: "";

    position: absolute;

    left: 50%;
    transform: translateX(-50%);

    bottom: -16px;

    width: 110px;
    height: 5px;

    border-radius: 50px;

    background:
        linear-gradient(
            to right,
            #ec4899,
            #8b5cf6,
            #6366f1
        );

    box-shadow:
        0 0 20px rgba(236,72,153,0.40);
}

/* =========================================================
GRID
2 CARDS PER ROW
========================================================= */

.committee-grid{

    position:relative;

    z-index:5;

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:45px;

    justify-content:center;
}

/* =========================================================
CENTER LAST CARD WHEN ODD NUMBER OF ITEMS
========================================================= */

.committee-grid .committee-card:last-child:nth-child(odd){

    grid-column:1 / -1;

    justify-self:center;

    max-width:520px;

    width:100%;
}

/* =========================================================
CARD
========================================================= */

.committee-card {

    position: relative;

    padding: 35px 25px;

    border-radius: 28px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.12),
            rgba(255,255,255,0.05)
        );

    border:
        1px solid rgba(255,255,255,0.12);

    backdrop-filter: blur(18px);

    box-shadow:
        0 18px 45px rgba(0,0,0,0.22);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

/* Hover */
.committee-card:hover {

    transform:
        translateY(-10px)
        scale(1.02);

    box-shadow:
        0 30px 60px rgba(0,0,0,0.32),
        0 0 40px rgba(236,72,153,0.18);
}

/* Glass shine */
.committee-card::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            120deg,
            transparent 20%,
            rgba(255,255,255,0.08) 40%,
            transparent 60%
        );

    transform: translateX(-120%);

    transition: transform 1.2s ease;
}

.committee-card:hover::before {

    transform: translateX(120%);
}

/* =========================================================
IMAGE WRAPPER
========================================================= */

.image-wrapper {

    position: relative;

    width: 220px;
    height: 250px;

    margin: 0 auto 24px;

    padding: 5px;

    border-radius: 26px;

    background:
        linear-gradient(
            135deg,
            #ec4899,
            #8b5cf6,
            #6366f1
        );

    box-shadow:
        0 18px 35px rgba(0,0,0,0.22),
        0 0 30px rgba(236,72,153,0.22);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

/* Hover image frame */
.committee-card:hover .image-wrapper {

    transform:
        scale(1.04)
        rotate(-1deg);

    box-shadow:
        0 25px 45px rgba(0,0,0,0.30),
        0 0 40px rgba(139,92,246,0.28);
}

/* Image */
.image-wrapper img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center top;

    transform: scale(0.82);

    border-radius: 22px;

    display: block;

    background: #ffffff;
}

/* =========================================================
TEXT
========================================================= */

.member-name {

    font-size: 1.45rem;

    font-weight: 700;

    color: #ffffff;

    margin-bottom: 10px;

    letter-spacing: 0.3px;

    text-shadow:
        0 2px 10px rgba(0,0,0,0.25);
}

.member-role {

    font-size: 1rem;

    font-weight: 500;

    color: rgba(255,255,255,0.82);

    letter-spacing: 0.4px;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width: 768px) {

    .committee-grid {

        grid-template-columns: 1fr;

        gap: 30px;
    }

    .section-title {

        font-size: 32px;
    }

    .image-wrapper {

        width: 180px;
        height: 180px;
    }

    .member-name {

        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {

    .organizing-committee-section {

        padding: 70px 18px;
    }

    .committee-card {

        padding: 28px 18px;
    }

    .image-wrapper {

        width: 160px;
        height: 160px;
    }

    .section-title {

        font-size: 26px;
    }
}

/* =========================
GLOBAL SECTION
========================= */
.highlights-section {
    padding: 80px 20px;
    background: #0f172a; /* professional dark theme */
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.highlights-container {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 260px 1fr;
    align-items: center;
    gap: 40px;
}

/* =========================
COLUMNS
========================= */
.highlights-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* =========================
ITEM CARD
========================= */
.highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 14px 16px;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 12px;

    transition: 0.25s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(99, 102, 241, 0.5);
}

/* NUMBER BADGE */
.highlight-item span {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    font-weight: 600;

    border-radius: 10px;

    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
}

/* TEXT */
.highlight-item p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
    line-height: 1.4;
}

/* =========================
CENTER BADGE
========================= */
.highlight-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-badge {
    width: 220px;
    height: 220px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;

    color: #fff;

    background: radial-gradient(circle at top left, #6366f1, #8b5cf6, #ec4899);

    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* =========================
RESPONSIVE
========================= */
@media (max-width: 900px) {
    .highlights-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .highlight-center {
        order: -1;
        margin-bottom: 30px;
    }

    .center-badge {
        width: 180px;
        height: 180px;
        font-size: 16px;
    }
}

/* =========================
GLOBAL SECTION (UPDATED THEME)
========================= */
.highlights-section {
    padding: 80px 20px;
    background: #0b1020; /* deeper premium dark base */
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

/* =========================
ITEM CARD
========================= */
.highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 14px 16px;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 12px;

    transition: 0.25s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);

    background: rgba(255, 255, 255, 0.06);

    /* blue + pink glow */
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.15);
}

/* =========================
NUMBER BADGE (PINK + BLUE GRADIENT)
========================= */
.highlight-item span {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    font-weight: 600;

    border-radius: 10px;

    background: linear-gradient(135deg, #ec4899, #6366f1);
    color: #fff;

    box-shadow: 0 6px 18px rgba(236, 72, 153, 0.25);
}

/* =========================
TEXT
========================= */
.highlight-item p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
}

/* =========================
CENTER BADGE (MAIN FOCUS)
========================= */
.center-badge {
    width: 220px;
    height: 220px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;

    color: #fff;

    /* Pink → Blue → Purple blend */
    background: radial-gradient(
        circle at top left,
        #ec4899,
        #6366f1,
        #8b5cf6
    );

    box-shadow:
        0 20px 50px rgba(236, 72, 153, 0.25),
        0 20px 50px rgba(99, 102, 241, 0.25);
}

/* =========================
OPTIONAL: SOFT GLOW BACKDROP
========================= */
.highlights-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(236,72,153,0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(99,102,241,0.15), transparent 40%);
    pointer-events: none;
}

/* =========================================================
ULTRA PREMIUM VENUE SECTION
Luxury Conference UI • Full Page Background
Pink + Blue Cinematic Theme
========================================================= */

/* =========================================================
FULL PAGE PREMIUM PINK + BLUE BACKGROUND
========================================================= */

body {

    margin: 0;
    padding: 0;

    min-height: 100vh;

    overflow-x: hidden;

    font-family: 'Inter', sans-serif;

    background:
        radial-gradient(circle at 10% 20%, rgba(236,72,153,0.35), transparent 22%),
        radial-gradient(circle at 85% 15%, rgba(99,102,241,0.32), transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(139,92,246,0.28), transparent 28%),
        radial-gradient(circle at 20% 85%, rgba(59,130,246,0.24), transparent 26%),
        linear-gradient(
            135deg,
            #050816 0%,
            #0b1020 25%,
            #151b38 50%,
            #1b1d45 75%,
            #0f172a 100%
        );

    background-attachment: fixed;

    position: relative;
}

/* =========================================================
ANIMATED GLOW LAYER
========================================================= */

body::before {

    content: "";

    position: fixed;
    inset: 0;

    background:
        radial-gradient(circle at 15% 30%, rgba(236,72,153,0.20), transparent 18%),
        radial-gradient(circle at 70% 25%, rgba(99,102,241,0.18), transparent 20%),
        radial-gradient(circle at 50% 70%, rgba(168,85,247,0.15), transparent 22%),
        radial-gradient(circle at 90% 85%, rgba(59,130,246,0.16), transparent 18%);

    filter: blur(60px);

    animation: floatingLights 18s ease-in-out infinite alternate;

    z-index: -2;

    pointer-events: none;
}

/* =========================================================
FUTURISTIC GRID EFFECT
========================================================= */

body::after {

    content: "";

    position: fixed;
    inset: 0;

    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);

    background-size: 60px 60px;

    mask-image:
        radial-gradient(circle at center, black 40%, transparent 90%);

    opacity: 0.7;

    animation: movingGrid 35s linear infinite;

    z-index: -1;

    pointer-events: none;
}

/* =========================================================
EXTRA GLOW BALLS
========================================================= */

.pink-orb,
.blue-orb {

    position: fixed;

    border-radius: 50%;

    filter: blur(90px);

    opacity: 0.28;

    pointer-events: none;

    z-index: -1;
}

/* Pink Orb */

.pink-orb {

    width: 420px;
    height: 420px;

    background: #ec4899;

    top: -100px;
    left: -120px;

    animation: orbPink 14s ease-in-out infinite alternate;
}

/* Blue Orb */

.blue-orb {

    width: 450px;
    height: 450px;

    background: #6366f1;

    bottom: -120px;
    right: -140px;

    animation: orbBlue 16s ease-in-out infinite alternate;
}

/* =========================================================
ANIMATIONS
========================================================= */

@keyframes floatingLights {

    0% {

        transform:
            translateY(0px)
            translateX(0px)
            scale(1);
    }

    100% {

        transform:
            translateY(-40px)
            translateX(20px)
            scale(1.1);
    }
}

@keyframes movingGrid {

    from {

        transform:
            translateY(0px);
    }

    to {

        transform:
            translateY(60px);
    }
}

@keyframes orbPink {

    0% {

        transform:
            translate(0px, 0px)
            scale(1);
    }

    100% {

        transform:
            translate(40px, 30px)
            scale(1.15);
    }
}

@keyframes orbBlue {

    0% {

        transform:
            translate(0px, 0px)
            scale(1);
    }

    100% {

        transform:
            translate(-40px, -30px)
            scale(1.18);
    }
}

/* =========================================================
FULL PAGE ANIMATED GRID EFFECT
========================================================= */

body::before {

    content: "";

    position: fixed;
    inset: 0;

    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);

    background-size: 70px 70px;

    mask-image: radial-gradient(circle at center, black 35%, transparent 85%);

    pointer-events: none;

    animation: gridMove 30s linear infinite;
}

/* =========================================================
FLOATING BACKGROUND ORBS
========================================================= */

body::after {

    content: "";

    position: fixed;
    inset: 0;

    background:
        radial-gradient(circle at 15% 20%, rgba(236,72,153,0.15), transparent 20%),
        radial-gradient(circle at 80% 75%, rgba(99,102,241,0.15), transparent 22%),
        radial-gradient(circle at 50% 50%, rgba(139,92,246,0.10), transparent 25%);

    filter: blur(40px);

    animation: orbFloat 14s ease-in-out infinite alternate;

    pointer-events: none;
}

/* =========================================================
MAIN SECTION
========================================================= */

.venue-section-wrapper {

    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1500px;

    margin: auto;
    padding: 120px 40px;
}

/* =========================================================
VENUE SECTION WRAPPER
========================================================= */

.venue-section-wrapper{

    position: relative;

    padding: 90px 6%;

    overflow: hidden;
}

/* =========================================================
PREMIUM TITLE
========================================================= */

.venue-main-title{

    position: relative;

    text-align: center;

    margin-bottom: 55px;

    font-size: 40px;
    font-weight: 900;

    line-height: 1.2;
    letter-spacing: 1.5px;

    text-transform: uppercase;

    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #ec4899 35%,
        #8b5cf6 65%,
        #6366f1 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow:
        0 0 25px rgba(236,72,153,0.15);
}

/* =========================================================
TITLE DECORATION
========================================================= */

.venue-main-title::after{

    content: "";

    position: absolute;

    left: 50%;
    bottom: -16px;

    transform: translateX(-50%);

    width: 140px;
    height: 4px;

    border-radius: 50px;

    background: linear-gradient(
        90deg,
        #ec4899,
        #8b5cf6,
        #6366f1
    );

    box-shadow:
        0 0 20px rgba(236,72,153,0.30);
}

/* =========================================================
GRID LAYOUT
========================================================= */

.venue-grid{

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 30px;

    align-items: center;
}

/* =========================================================
PROFESSIONAL SMALL CARDS
========================================================= */

.venue-card{

    position: relative;

    overflow: hidden;

    width: 100%;

    height: 500px;

    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.08),
            rgba(255,255,255,0.03)
        );

    border:
        1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.30);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}

/* =========================================================
CARD HOVER
========================================================= */

.venue-card:hover{

    transform:
        translateY(-8px);

    border-color:
        rgba(236,72,153,0.35);

    box-shadow:
        0 30px 65px rgba(0,0,0,0.38),
        0 0 30px rgba(99,102,241,0.12);
}

/* =========================================================
IMAGE SLIDER
========================================================= */

.image-slider-card{

    padding: 0;
}

.venue-slider{

    position: relative;

    width: 100%;
    height: 100%;
}

/* =========================================================
SLIDES
========================================================= */

.venue-slide{

    position: absolute;

    inset: 0;

    opacity: 0;

    transition:
        opacity 1s ease-in-out;
}

.venue-slide.active{

    opacity: 1;
}

/* =========================================================
SLIDER IMAGES
========================================================= */

.venue-slide img{

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    border-radius: 26px;
}

/* =========================================================
MAP CARD
========================================================= */

.map-card iframe{

    width: 100%;
    height: 100%;

    border: none;

    border-radius: 26px;

    filter:
        saturate(1.05)
        contrast(1.04)
        brightness(1.02);
}

/* =========================================================
RESPONSIVE TABLET
========================================================= */

@media(max-width: 992px){

    .venue-grid{

        grid-template-columns: 1fr;
    }

    .venue-card{

        height: 420px;
    }

    .venue-main-title{

        font-size: 32px;
    }
}

/* =========================================================
RESPONSIVE MOBILE
========================================================= */

@media(max-width: 576px){

    .venue-section-wrapper{

        padding: 70px 5%;
    }

    .venue-card{

        height: 320px;

        border-radius: 20px;
    }

    .venue-slide img,
    .map-card iframe{

        border-radius: 20px;
    }

    .venue-main-title{

        font-size: 24px;

        line-height: 1.4;
    }

    .venue-main-title::after{

        width: 90px;
    }
}


/* =========================================================
HYDERABAD PLACES SECTION
========================================================= */

.hyderabad-places-section{

    position: relative;

    padding: 120px 7%;

    overflow: hidden;

    background:
        radial-gradient(circle at 10% 20%, rgba(236,72,153,0.35), transparent 22%),
        radial-gradient(circle at 85% 15%, rgba(99,102,241,0.32), transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(139,92,246,0.28), transparent 28%),
        radial-gradient(circle at 20% 85%, rgba(59,130,246,0.24), transparent 26%),
        linear-gradient(
            135deg,
            #050816 0%,
            #0b1020 25%,
            #151b38 50%,
            #1b1d45 75%,
            #0f172a 100%
        );

    background-attachment: fixed;
}

/* =========================================================
TITLE
========================================================= */

.places-main-title{

    text-align: center;

    font-size: 56px;

    font-weight: 900;

    margin-bottom: 80px;

    text-transform: uppercase;

    background:
    linear-gradient(
        90deg,
        #ff4da6,
        #6aa8ff,
        #c084fc
    );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

/* =========================================================
SLIDER
========================================================= */

.places-slider{

    position: relative;

    width: 100%;

    min-height: 650px;
}

/* =========================================================
SLIDES
========================================================= */

.place-slide{

    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 70px;

    opacity: 0;

    transform:
    scale(1.1)
    translateX(120px);

    filter: blur(10px);

    transition:
    all 1.3s ease;

    pointer-events: none;
}

.place-slide.active{

    opacity: 1;

    transform:
    scale(1)
    translateX(0);

    filter: blur(0px);

    pointer-events: auto;
}

/* =========================================================
EXIT ANIMATION
========================================================= */

.place-slide.slide-out{

    opacity: 0;

    transform:
    scale(.9)
    translateX(-120px);

    filter:
    blur(14px);
}

/* =========================================================
NORMAL IMAGE
========================================================= */

.place-image{

    flex: 1;
}

.place-image img{

    width: 100%;

    height: 520px;

    object-fit: cover;

    border-radius: 35px;

    border:
    2px solid rgba(255,255,255,.12);

    box-shadow:
    0 20px 60px rgba(0,0,0,.45),
    0 0 40px rgba(255,0,128,.18),
    0 0 50px rgba(0,102,255,.15);

    animation:
    floatingImage 5s ease-in-out infinite;

    transition:
    transform .8s ease;
}

.place-image img:hover{

    transform:
    scale(1.04);
}

/* =========================================================
4 IMAGE GRID
========================================================= */

.place-image-grid{

    flex: 1;

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 20px;
}

.grid-image{

    position: relative;

    overflow: hidden;

    height: 240px;

    border-radius: 25px;

    background:
    rgba(255,255,255,.08);

    backdrop-filter: blur(10px);

    border:
    1px solid rgba(255,255,255,.12);

    box-shadow:
    0 15px 35px rgba(0,0,0,.3);

    animation:
    gridFloat 5s ease-in-out infinite;
}

.grid-image:nth-child(2){

    animation-delay: .5s;
}

.grid-image:nth-child(3){

    animation-delay: 1s;
}

.grid-image:nth-child(4){

    animation-delay: 1.5s;
}

.grid-image img{

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
    transform .8s ease;
}

.grid-image:hover img{

    transform:
    scale(1.08);
}

/* =========================================================
CONTENT
========================================================= */

.place-content{

    flex: 1;

    padding: 55px;

    border-radius: 35px;

    background:
    rgba(255,255,255,.08);

    backdrop-filter: blur(18px);

    border:
    1px solid rgba(255,255,255,.12);

    box-shadow:
    0 15px 50px rgba(0,0,0,.35);
}

.place-content h3{

    font-size: 56px;

    margin-bottom: 25px;

    font-weight: 900;

    background:
    linear-gradient(
        90deg,
        #ff4da6,
        #6aa8ff
    );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

.place-content p{

    font-size: 20px;

    line-height: 2;

    color: rgba(255,255,255,.82);
}

/* =========================================================
ANIMATIONS
========================================================= */

.animate-image{

    animation:
    cinematicZoom 5s ease forwards;
}

.animate-title{

    animation:
    titleReveal 1.4s ease;
}

.animate-text{

    animation:
    textReveal 1.8s ease;
}

@keyframes cinematicZoom{

    from{

        transform:
        scale(1.2);

        opacity: 0;
    }

    to{

        transform:
        scale(1);

        opacity: 1;
    }
}

@keyframes titleReveal{

    from{

        opacity: 0;

        transform:
        translateY(60px);

        filter:
        blur(10px);
    }

    to{

        opacity: 1;

        transform:
        translateY(0);

        filter:
        blur(0px);
    }
}

@keyframes textReveal{

    from{

        opacity: 0;

        transform:
        translateY(40px);
    }

    to{

        opacity: 1;

        transform:
        translateY(0);
    }
}

@keyframes floatingImage{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-18px);
    }

    100%{
        transform: translateY(0px);
    }
}

@keyframes gridFloat{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-10px);
    }

    100%{
        transform: translateY(0px);
    }
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:991px){

    .place-slide{

        flex-direction: column;

        text-align: center;
    }

    .place-image img{

        height: 350px;
    }

    .place-content h3{

        font-size: 40px;
    }

    .place-content p{

        font-size: 18px;
    }
}

@media(max-width:768px){

    .places-main-title{

        font-size: 34px;
    }

    .place-image-grid{

        grid-template-columns: 1fr;
    }

    .grid-image{

        height: 220px;
    }

    .place-content{

        padding: 25px;
    }

    .place-content h3{

        font-size: 30px;
    }

    .place-content p{

        font-size: 16px;

        line-height: 1.7;
    }
}
/* =========================================================
ULTRA COMPACT PREMIUM FOOTER
Clean + Professional + Responsive
========================================================= */

.main-footer{

    position:relative;
    overflow:hidden;

    width:100%;

    padding:45px 22px 14px;

    background:
    radial-gradient(circle at top left,
    rgba(236,72,153,0.14),
    transparent 24%),

    radial-gradient(circle at bottom right,
    rgba(99,102,241,0.14),
    transparent 24%),

    linear-gradient(
        135deg,
        #070816 0%,
        #0f172a 45%,
        #111827 100%
    );

    font-family:'Poppins',sans-serif;
    color:#ffffff;
}

/* =========================================================
BACKGROUND GLOW
========================================================= */

.main-footer::before,
.main-footer::after{

    content:"";

    position:absolute;

    width:240px;
    height:240px;

    border-radius:50%;

    filter:blur(70px);

    opacity:0.12;

    pointer-events:none;
}

.main-footer::before{

    top:-120px;
    left:-80px;

    background:#ec4899;
}

.main-footer::after{

    bottom:-120px;
    right:-80px;

    background:#6366f1;
}

/* =========================================================
WRAPPER
========================================================= */

.footer-wrapper{

    position:relative;
    z-index:2;

    max-width:1200px;

    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;

    gap:38px;
}

/* =========================================================
LEFT COLUMN DIVIDER
========================================================= */

.footer-column.left{

    position:relative;

    padding-right:34px;
}

.footer-column.left::after{

    content:"";

    position:absolute;

    top:0;
    right:0;

    width:1px;
    height:100%;

    background:
    linear-gradient(
        to bottom,
        transparent,
        rgba(255,255,255,0.14),
        transparent
    );
}

/* =========================================================
TITLE
========================================================= */

.footer-title{

    font-size:24px;
    font-weight:700;

    line-height:1.3;

    margin-bottom:18px;

    background:
    linear-gradient(
        90deg,
        #ffffff,
        #ec4899,
        #6366f1
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* =========================================================
LOGO
========================================================= */

.footer-logo{

    width:120px;

    border-radius:14px;

    background:rgba(255,255,255,0.05);

    padding:6px;

    margin-bottom:18px;

    border:1px solid rgba(255,255,255,0.06);

    box-shadow:
    0 8px 20px rgba(0,0,0,0.20);
}

/* =========================================================
TEXT
========================================================= */

.footer-heading{

    font-size:15px;
    font-weight:700;

    margin-bottom:8px;
}

.footer-text{

    font-size:13px;

    line-height:1.7;

    color:rgba(255,255,255,0.80);

    margin-bottom:16px;
}

/* =========================================================
LINK
========================================================= */

.footer-link{

    color:#7dd3fc;

    text-decoration:none;

    font-size:13px;
    font-weight:500;

    transition:0.3s ease;

    position:relative;
    z-index:5;
}

.footer-link:hover{

    color:#ec4899;
}

/* =========================================================
CONTACT GRID
========================================================= */

.contact-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:12px;

    margin-top:18px;
}

.contact-box{

    padding:14px;

    border-radius:14px;

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.06);

    transition:0.3s ease;
}

.contact-box:hover{

    transform:translateY(-2px);

    border-color:
    rgba(236,72,153,0.22);
}

.contact-box h4{

    margin:0 0 6px;

    font-size:14px;
    font-weight:600;
}

.contact-box p{

    margin:0;

    font-size:12px;

    line-height:1.6;

    color:rgba(255,255,255,0.74);
}

/* =========================================================
BOTTOM
========================================================= */

.footer-bottom{

    position:relative;
    z-index:2;

    max-width:1200px;

    margin:30px auto 0;

    padding-top:14px;

    border-top:
    1px solid rgba(255,255,255,0.06);

    text-align:center;
}

.footer-bottom p{

    margin:0;

    color:rgba(255,255,255,0.58);

    font-size:12px;
}

/* =========================================================
TABLET
========================================================= */

@media(max-width:992px){

    .footer-wrapper{

        grid-template-columns:1fr;

        gap:30px;
    }

    .footer-column.left{

        padding-right:0;
    }

    .footer-column.left::after{

        display:none;
    }
}

/* =========================================================
MOBILE
========================================================= */

@media(max-width:768px){

    .main-footer{

        padding:36px 18px 14px;
    }

    .footer-title{

        font-size:20px;
    }

    .footer-logo{

        width:90px;
    }

    .contact-grid{

        grid-template-columns:1fr;
    }

    .footer-text{

        font-size:12.5px;
    }
}

.footer-link-btn{

    background: none;
    border: none;

    padding: 0;

    color: #7dd3fc;

    font-size: 13px;
    font-family: inherit;

    cursor: pointer;

    transition: 0.3s ease;
}

.footer-link-btn:hover{

    color: #ec4899;
}
/* =========================================================
ANIMATIONS
========================================================= */

@keyframes gradientShift {

    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@keyframes orbFloat {

    0% {

        transform:
            translateY(0px)
            scale(1);
    }

    100% {

        transform:
            translateY(-30px)
            scale(1.08);
    }
}

@keyframes gridMove {

    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(70px);
    }
}

/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .venue-side-by-side-grid {

        grid-template-columns: 1fr;
    }

    .venue-square-card {

        min-height: 620px;
    }
}

@media (max-width: 768px) {

    .venue-section-wrapper {

        padding: 90px 20px;
    }

    .venue-main-title {

        font-size: 34px;
    }

    .card-inner-content {

        padding: 35px;
    }

    .card-inner-content p {

        font-size: 15px;
        line-height: 1.9;
    }

    .venue-square-card {

        min-height: auto;
    }
}

@media (max-width: 480px) {

    .venue-main-title {

        font-size: 26px;
        line-height: 1.4;
    }

    .card-inner-content {

        padding: 26px;
    }

    .card-inner-content p {

        font-size: 14px;
    }
}



/* ================== MOBILE FIRST (default) ================== */
/* You already have base styles → consider them as mobile layout */


/* ================== SMALL MOBILES (max-width 480px) ================== */
@media (max-width: 480px){

    .header-top{
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .brand-logo{
        height: 40px;
    }

    .header-center h1{
        font-size: 16px;
    }

    /* nav becomes stacked center */
    .nav-links{
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a{
        padding: 10px;
        font-size: 11px;
    }

    .hero{
        height: 250px;
    }

    .about-grid{
        display: block;
    }

    .notification-grid,
    .important-grid,
    .issues-grid,
    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .footer-container{
        grid-template-columns: 1fr;
        text-align: center;
    }
}


/* ================== TABLET (481px – 768px) ================== */
@media (min-width: 481px) and (max-width: 768px){

    .header-top{
        gap: 10px;
    }

    .header-center h1{
        font-size: 18px;
    }

    .hero{
        height: 320px;
    }

    .about-grid{
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .notification-grid,
    .important-grid{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .issues-grid{
        grid-template-columns: 1fr 1fr;
    }

    .leadership-grid{
        grid-template-columns: 1fr 1fr;
    }

    .footer-container{
        grid-template-columns: 1fr 1fr;
    }
}


/* ================== LAPTOP (769px – 1024px) ================== */
@media (min-width: 769px) and (max-width: 1024px){

    .hero{
        height: 400px;
    }

    .about-grid{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        align-items: center;
    }

    .notification-grid{
        grid-template-columns: repeat(3, 1fr);
    }

    .important-grid{
        grid-template-columns: repeat(3, 1fr);
    }

    .issues-grid{
        grid-template-columns: repeat(3, 1fr);
    }

    .leadership-grid{
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-container{
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ================== DESKTOP 1025px+ ================== */
@media (min-width: 1025px){

    .about-grid{
        display: grid;
        grid-template-columns: 1.2fr 1fr;
    }

    .notification-grid{
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .important-grid{
        grid-template-columns: repeat(4, 1fr);
    }

    .issues-grid{
        grid-template-columns: repeat(4, 1fr);
    }

    .leadership-grid{
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-container{
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

/* ================= MAP BOX ================= */

.footer-map-box{

    margin-top: 16px;

    padding: 16px;

    border-radius: 16px;

    background: rgba(255,255,255,0.06);

    border: 1px solid rgba(255,255,255,0.12);

    backdrop-filter: blur(12px);

    box-shadow: 0 12px 28px rgba(0,0,0,0.22);

    max-width: 100%;
}

/* HEADER */

.map-header{

    font-size: 16px;
    font-weight: 700;

    color: #fff;

    margin-bottom: 10px;
}

/* IFRAME */

.footer-map-box iframe{

    width: 100%;

    height: 220px;

    border: 0;

    border-radius: 12px;

    margin-bottom: 10px;
}

/* BUTTON */

.map-btn{

    display: inline-block;

    padding: 10px 14px;

    border-radius: 10px;

    background: linear-gradient(135deg, #ffcc00, #ff9900);

    color: #111;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: 0.3s ease;
}

.map-btn:hover{

    transform: translateY(-2px);

    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

/* =========================================================
FINAL MOBILE RESPONSIVE FIX
========================================================= */

html,
body{
    overflow-x:hidden;
}

/* =========================================================
HEADER
========================================================= */

.header-top{

    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 3%;

    gap:20px;

    flex-wrap:nowrap;
}

/* SIDES */

.header-side{

    display:flex;
    align-items:center;
    justify-content:center;

    gap:14px;

    flex:1;
}

/* CENTER */

.header-center{

    flex:1.2;

    text-align:center;
}

/* TITLE */

.header-center h1{

    font-size:30px;
    line-height:1.4;
}

.header-center p{

    font-size:14px;
}

/* LOGOS */

.logo-container{

    width:90px;
    height:90px;

    min-width:90px;

    border-radius:18px;

    overflow:hidden;
}

.brand-logo{

    width:100%;
    height:100%;

    object-fit:contain;
}

/* =========================================================
NAVBAR
========================================================= */

.navbar{

    position:sticky;

    top:0;

    z-index:9999;

    width:100%;
}

/* MENU BUTTON */

.menu-toggle{

    display:none;

    width:48px;
    height:48px;

    border-radius:12px;

    background:
    linear-gradient(
        135deg,
        #7c3aed,
        #db2777
    );

    color:#fff;

    font-size:20px;

    cursor:pointer;

    align-items:center;
    justify-content:center;

    margin:10px;

    box-shadow:
    0 10px 20px rgba(0,0,0,0.25);
}

/* NAV LINKS */

.nav-links{

    display:flex;

    align-items:center;
    justify-content:center;

    gap:4px;

    list-style:none;
}

/* NAV LINKS */

.nav-links li{

    position:relative;
}

/* LINKS */

.nav-links a{

    display:flex;

    align-items:center;
    justify-content:center;

    gap:8px;

    padding:16px 18px;

    color:#fff;

    text-decoration:none;

    font-size:13px;

    font-weight:700;
}

/* =========================================================
DESKTOP DROPDOWN
========================================================= */

.dropdown-menu{

    position:absolute;

    top:100%;
    left:0;

    min-width:240px;

    background:#111827;

    border-radius:16px;

    padding:10px;

    display:none;

    z-index:999;
}

.dropdown:hover .dropdown-menu{

    display:block;
}

.dropdown-menu li a{

    justify-content:flex-start;

    padding:13px 14px;

    border-radius:10px;
}

/* =========================================================
TABLET
========================================================= */

@media (max-width:992px){

    .header-top{

        flex-direction:column;

        gap:18px;
    }

    .header-side{

        width:100%;

        justify-content:center;
    }

    .logo-container{

        width:72px;
        height:72px;

        min-width:72px;
    }

    .header-center h1{

        font-size:22px;
    }
}

/* =========================================================
MOBILE
========================================================= */

@media (max-width:768px){

    /* HEADER */

    .header-top{

        flex-direction:column;

        padding:16px 10px;

        gap:16px;
    }

    .header-side{

        width:100%;

        display:flex;

        justify-content:center;

        gap:8px;

        flex-wrap:nowrap;
    }

    .logo-container{

        width:58px;
        height:58px;

        min-width:58px;

        border-radius:12px;
    }

    .header-center{

        width:100%;
    }

    .header-center h1{

        font-size:18px;

        line-height:1.5;
    }

    .header-center p{

        font-size:11px;
    }

    /* =========================================================
    BURGER MENU
    ========================================================= */

    .menu-toggle{

        display:flex;
    }

    .navbar{

        padding:8px;
    }

    /* NAV MENU */

    .nav-links{

        position:absolute;

        top:70px;
        left:0;

        width:100%;

        background:
        linear-gradient(
            180deg,
            #0f172a,
            #1e1b4b
        );

        flex-direction:column;

        align-items:stretch;

        gap:0;

        max-height:0;

        overflow:hidden;

        transition:max-height 0.4s ease;

        padding:0;
    }

    /* ACTIVE */

    .nav-links.active{

        max-height:1200px;

        padding:10px 0;
    }

    /* ITEMS */

    .nav-links li{

        width:100%;
    }

    .nav-links a{

        width:100%;

        justify-content:space-between;

        padding:15px 20px;

        border-bottom:
        1px solid rgba(255,255,255,0.06);
    }

    /* =========================================================
    MOBILE DROPDOWN
    ========================================================= */

    .dropdown-menu{

        position:static;

        width:100%;

        min-width:100%;

        border-radius:0;

        background:
        rgba(255,255,255,0.04);

        padding:0;

        max-height:0;

        overflow:hidden;

        transition:max-height 0.3s ease;
    }

    /* ACTIVE */

    .dropdown.active .dropdown-menu{

        display:block;

        max-height:500px;
    }

    .dropdown-menu li a{

        padding-left:40px;

        font-size:12px;
    }

    /* ICON ROTATE */

    .dropdown.active .dropdown-icon{

        transform:rotate(180deg);
    }

    .dropdown-icon{

        transition:0.3s ease;
    }
}

/* =========================================================
SMALL MOBILE
========================================================= */

@media (max-width:480px){

    .logo-container{

        width:50px;
        height:50px;

        min-width:50px;
    }

    .header-center h1{

        font-size:15px;
    }

    .header-center p{

        font-size:10px;
    }

    .nav-links a{

        font-size:12px;
    }
}

/* =========================================================
RESPONSIVE FIX ONLY
ADD THIS AT THE END OF YOUR EXISTING CSS
========================================================= */

/* =========================================================
LAPTOP
========================================================= */

@media (max-width:1200px){

    .main-title{
        font-size:48px !important;
        line-height:1.4 !important;
    }

    .hero-subtitle{
        font-size:28px !important;
    }

    .theme-text{
        font-size:24px !important;
    }

    .banner-content{
        padding:70px 40px !important;
    }

    .places-main-title,
    .section-title,
    .venue-main-title,
    .welcome-title{
        font-size:42px !important;
        line-height:1.4 !important;
    }
}

/* =========================================================
TABLET
========================================================= */

@media (max-width:992px){

    /* HERO FULLY VISIBLE */

    .hero{
        padding:35px 15px 50px !important;
    }

    .banner-container{
        padding-top:10px !important;
    }

    .banner-content{

        width:100% !important;

        padding:60px 30px !important;

        border-radius:24px !important;
    }

    .main-title{

        font-size:40px !important;

        line-height:1.5 !important;

        margin-bottom:22px !important;
    }

    .hero-subtitle{

        font-size:24px !important;

        line-height:1.5 !important;
    }

    .theme-text{

        font-size:22px !important;

        line-height:1.7 !important;
    }

    .conference-subtitle{

        font-size:18px !important;

        line-height:1.8 !important;
    }

    .details-badge{

        gap:12px !important;
    }

    .details-badge span{

        font-size:15px !important;

        line-height:1.7 !important;
    }

    /* HEADINGS */

    .places-main-title,
    .section-title,
    .venue-main-title,
    .welcome-title{

        font-size:36px !important;

        line-height:1.5 !important;

        padding:0 10px !important;
    }

    /* PLACES SECTION FIX */

    .hyderabad-places-section{

        padding:80px 16px !important;

        position:relative !important;

        z-index:5 !important;
    }

    .place-slide{

        grid-template-columns:1fr !important;

        padding:25px !important;

        gap:25px !important;
    }

    .place-content h3{

        font-size:30px !important;

        line-height:1.4 !important;
    }

    .place-content p{

        font-size:16px !important;

        line-height:1.9 !important;
    }

    /* FOOTER FIX */

    .main-footer{

        margin-top:0 !important;

        position:relative !important;

        z-index:1 !important;

        padding-top:60px !important;
    }

    .footer-wrapper{

        grid-template-columns:1fr !important;
    }
}

/* =========================================================
MOBILE
========================================================= */

@media (max-width:768px){

    /* HERO SECTION */

    .hero{

        padding:25px 10px 40px !important;
    }

    .slider,
    .slide{

        width:100% !important;
    }

    .banner-content{

        padding:50px 18px !important;

        border-radius:22px !important;
    }

    .main-title{

        font-size:32px !important;

        line-height:1.6 !important;

        word-break:break-word !important;
    }

    .hero-subtitle{

        font-size:20px !important;

        line-height:1.6 !important;
    }

    .theme-text{

        font-size:18px !important;

        line-height:1.8 !important;
    }

    .conference-subtitle{

        font-size:15px !important;

        line-height:1.8 !important;
    }

    .details-badge{

        flex-direction:column !important;

        gap:10px !important;
    }

    .divider{
        display:none !important;
    }

    /* NAVBAR */

    .nav-links{

        grid-template-columns:repeat(2,1fr) !important;

        gap:8px !important;
    }

    .nav-links a{

        font-size:11px !important;

        padding:12px 8px !important;

        text-align:center !important;
    }

    /* HEADINGS CLEARLY VISIBLE */

    .places-main-title,
    .section-title,
    .venue-main-title,
    .welcome-title{

        font-size:30px !important;

        line-height:1.5 !important;

        margin-bottom:35px !important;

        padding:0 10px !important;
    }

    /* PLACES SECTION */

    .hyderabad-places-section{

        padding:70px 12px !important;
    }

    .places-slider{

        width:100% !important;
    }

    .place-slide{

        padding:18px !important;

        border-radius:24px !important;
    }

    .place-image-grid{

        grid-template-columns:repeat(2,1fr) !important;

        gap:10px !important;
    }

    .grid-image{

        height:140px !important;

        border-radius:14px !important;
    }

    .place-content h3{

        font-size:24px !important;

        margin-bottom:15px !important;
    }

    .place-content p{

        font-size:15px !important;

        line-height:1.8 !important;
    }

    /* FOOTER */

    .main-footer{

        padding:50px 15px 20px !important;
    }

    .footer-column{

        padding:22px !important;

        border-radius:20px !important;
    }

    .footer-title{

        font-size:24px !important;

        line-height:1.5 !important;
    }

    .footer-text{

        font-size:14px !important;

        line-height:1.9 !important;
    }

    .footer-map-box iframe{

        height:220px !important;
    }

    .footer-bottom{

        margin-top:30px !important;
    }

    .footer-bottom p{

        font-size:12px !important;

        line-height:1.8 !important;
    }
}

/* =========================================================
EXTRA SMALL MOBILE
========================================================= */

@media (max-width:480px){

    /* HERO */

    .banner-content{

        padding:40px 15px !important;
    }

    .main-title{

        font-size:24px !important;

        line-height:1.7 !important;
    }

    .hero-subtitle{

        font-size:17px !important;
    }

    .theme-text{

        font-size:16px !important;
    }

    .conference-subtitle{

        font-size:14px !important;
    }

    /* HEADINGS */

    .places-main-title,
    .section-title,
    .venue-main-title,
    .welcome-title{

        font-size:24px !important;

        line-height:1.6 !important;
    }

    /* NAV */

    .nav-links{

        grid-template-columns:1fr !important;
    }

    /* PLACES */

    .place-image-grid{

        grid-template-columns:1fr 1fr !important;
    }

    .grid-image{

        height:120px !important;
    }

    .place-content h3{

        font-size:22px !important;
    }

    .place-content p{

        font-size:14px !important;
    }

    /* FOOTER */

    .footer-title{

        font-size:20px !important;
    }

    .footer-text{

        font-size:13px !important;
    }

    .contact-box h4{

        font-size:17px !important;
    }

    .contact-box p{

        font-size:13px !important;
    }
}

/* =========================================================
FINAL HERO SLIDER RESPONSIVE ALIGNMENT FIX
========================================================= */

@media (max-width:768px){

    /* =====================================================
    HERO MAIN SECTION
    ===================================================== */

    .hero{

        width:100%;

        height:auto !important;

        min-height:auto !important;

        position:relative;

        overflow:visible !important;

        padding:25px 12px 20px !important;

        margin:0 !important;
    }

    /* =====================================================
    SLIDER FIX
    ===================================================== */

    .slider{

        width:100%;

        height:auto !important;

        position:relative;

        overflow:visible;
    }

    /* =====================================================
    SLIDE FIX
    ===================================================== */

    .slide{

        position:relative !important;

        width:100%;

        height:auto !important;

        opacity:1 !important;

        inset:auto !important;
    }

    .slide:not(.active){

        display:none;
    }

    /* =====================================================
    BANNER CONTAINER
    ===================================================== */

    .banner-container{

        width:100%;

        height:auto !important;

        display:flex;

        justify-content:center;

        align-items:center;

        padding:0 !important;
    }

    /* =====================================================
    BANNER CONTENT
    ===================================================== */

    .banner-content{

        width:100%;

        max-width:100%;

        padding:34px 18px !important;

        border-radius:22px;

        text-align:center;

        position:relative;

        overflow:hidden;
    }

    /* =====================================================
    MAIN TITLE
    ===================================================== */

    .main-title{

        font-size:26px !important;

        line-height:1.5 !important;

        margin-bottom:18px;

        word-break:break-word;
    }

    /* =====================================================
    SUBTITLE
    ===================================================== */

    .hero-subtitle{

        font-size:19px !important;

        line-height:1.5;

        margin-bottom:20px;
    }

    /* =====================================================
    DETAILS BADGE
    ===================================================== */

    .details-badge{

        width:100%;

        display:flex;

        flex-direction:column;

        align-items:center;

        justify-content:center;

        gap:14px;

        padding:18px 14px;

        border-radius:18px;

        margin:22px 0;
    }

    .details-badge span{

        width:100%;

        text-align:center;

        font-size:15px !important;

        line-height:1.6;
    }

    .divider{

        width:60%;

        height:2px;

        background:rgba(255,255,255,0.20);
    }

    /* =====================================================
    DATE TEXT
    ===================================================== */

    .theme-text{

        font-size:19px !important;

        line-height:1.7 !important;

        margin-top:20px;

        margin-bottom:20px;
    }

    /* =====================================================
    HOSTED SECTION
    ===================================================== */

    .conference-subtitle{

        width:100%;

        padding:18px 14px;

        margin-top:12px;

        border-radius:18px;
    }

    .conference-subtitle span{

        display:block;

        font-size:15px !important;

        line-height:1.5;

        margin-bottom:10px;
    }

    .conference-subtitle p{

        font-size:15px !important;

        line-height:1.7 !important;
    }

    /* =====================================================
    INFO RIBBON
    ===================================================== */

    .info-ribbon{

        position:relative !important;

        width:100%;

        margin-top:20px !important;

        display:flex;

        flex-direction:column;

        gap:18px;

        padding:0 12px 25px;

        z-index:1;
    }

    .ribbon-section{

        width:100%;

        border-radius:20px;
    }
}

/* =========================================================
EXTRA SMALL MOBILE
========================================================= */

@media (max-width:480px){

    .hero{

        padding:20px 8px 18px !important;
    }

    .banner-content{

        padding:28px 14px !important;
    }

    .main-title{

        font-size:22px !important;

        line-height:1.6 !important;
    }

    .hero-subtitle{

        font-size:16px !important;
    }

    .details-badge span{

        font-size:14px !important;
    }

    .theme-text{

        font-size:17px !important;
    }

    .conference-subtitle p{

        font-size:14px !important;
    }
}
/* ==========================================
UNIVERSAL RESPONSIVE FIX
ADD AT THE END OF EVERY CSS FILE
========================================== */

/* Prevent horizontal scrolling */
html,
body{
    width:100%;
    overflow-x:hidden;
}

/* Images */
img{
    max-width:100%;
    height:auto;
    display:block;
}

/* Universal box sizing */
*,
*::before,
*::after{
    box-sizing:border-box;
}

/* All containers */
.container,
.wrapper,
.section,
.row,
.grid{
    width:100%;
    max-width:100%;
}

/* Grid auto responsive */
[class*="grid"]{
    display:grid;
    gap:20px;
}

/* Cards */
[class*="card"]{
    width:100%;
    height:100%;
}

/* Tables */
table{
    width:100%;
    display:block;
    overflow-x:auto;
}

/* Iframes */
iframe{
    max-width:100%;
}

/* Videos */
video{
    width:100%;
    height:auto;
}

/* Buttons */
button,
.btn,
a{
    max-width:100%;
}

/* ==========================================
TABLET
========================================== */

@media (max-width:992px){

    [class*="grid"]{
        grid-template-columns:repeat(2,1fr) !important;
    }

    h1{
        font-size:32px !important;
    }

    h2{
        font-size:28px !important;
    }

    h3{
        font-size:22px !important;
    }
}

/* ==========================================
MOBILE
========================================== */

@media (max-width:768px){

    [class*="grid"]{
        grid-template-columns:1fr !important;
    }

    section{
        padding-left:15px !important;
        padding-right:15px !important;
    }

    h1{
        font-size:26px !important;
        line-height:1.4;
    }

    h2{
        font-size:22px !important;
        line-height:1.4;
    }

    h3{
        font-size:18px !important;
        line-height:1.4;
    }

    p,
    li,
    span{
        font-size:14px !important;
    }

    img{
        margin:auto;
    }
}

/* ==========================================
SMALL MOBILE
========================================== */

@media (max-width:480px){

    h1{
        font-size:22px !important;
    }

    h2{
        font-size:18px !important;
    }

    h3{
        font-size:16px !important;
    }

    p,
    li,
    span{
        font-size:13px !important;
    }

    section{
        padding-left:10px !important;
        padding-right:10px !important;
    }
}
/* =====================================================
   DOWNLOAD SECTION - STRONG RESPONSIVE OVERRIDE
   Place this at the END of your CSS
===================================================== */

@media (max-width: 992px){

    .download-section{
        padding:40px 20px !important;
    }

    .download-heading h2{
        font-size:2rem !important;
        text-align:center !important;
        line-height:1.3;
    }

    .download-card{
        display:flex !important;
        flex-direction:column !important;
        align-items:flex-start !important;
        gap:25px !important;

        width:100% !important;
        padding:25px !important;
        margin:25px auto !important;

        border-radius:18px !important;
        box-sizing:border-box !important;
    }

    .download-content{
        width:100% !important;
    }

    .download-content h3{
        font-size:1.45rem !important;
        margin-bottom:15px !important;
    }

    .download-content p{
        font-size:1rem !important;
        line-height:1.8 !important;
        margin-bottom:12px !important;
    }

    .download-actions{
        width:100% !important;

        display:flex !important;
        justify-content:center !important;
        align-items:center !important;
        gap:15px !important;

        flex-wrap:wrap !important;
    }

    .download-actions a{
        flex:1 1 220px !important;
        max-width:260px !important;
        min-height:52px !important;

        display:flex !important;
        justify-content:center !important;
        align-items:center !important;

        font-size:16px !important;
        font-weight:600 !important;
        text-align:center !important;

        border-radius:10px !important;
        padding:14px 18px !important;

        box-sizing:border-box !important;
    }

    .download-actions i{
        margin-right:8px !important;
    }

}


/* ================= MOBILE ================= */

@media (max-width:768px){

    .download-section{
        padding:30px 15px !important;
    }

    .download-heading h2{
        font-size:1.8rem !important;
    }

    .download-card{
        padding:22px 18px !important;
        gap:20px !important;
        border-radius:15px !important;
    }

    .download-content h3{
        font-size:1.3rem !important;
    }

    .download-content p{
        font-size:15px !important;
        line-height:1.7 !important;
    }

    .download-actions{
        flex-direction:column !important;
        width:100% !important;
    }

    .download-actions a{
        width:100% !important;
        max-width:100% !important;
        flex:none !important;
    }

}


/* ================= SMALL MOBILE ================= */

@media (max-width:480px){

    .download-section{
        padding:25px 12px !important;
    }

    .download-heading h2{
        font-size:1.55rem !important;
    }

    .download-card{
        padding:18px 15px !important;
        margin:18px auto !important;
    }

    .download-content h3{
        font-size:1.15rem !important;
    }

    .download-content p{
        font-size:14px !important;
    }

    .download-actions a{
        font-size:14px !important;
        min-height:48px !important;
        padding:12px !important;
    }

}