
:root{

    --primary-color:#7B0F7F;
    --secondary-color:#E91E8F;

    --light-purple:#E9DDF2;

    --white-color:#FFFFFF;

    --dark-color:#231F20;

    --gradient-color:
    linear-gradient(135deg,#7B0F7F,#E91E8F);
}


/* ===== BODY ===== */
body{
    margin:0;
    /* background:#000; */
    overflow-x:hidden;
    font-family: 'Poppins', sans-serif;
}

/* ===== HERO SECTION ===== */
.hero-section{
    position:relative;
    height:100vh;
    overflow:hidden;
}

/* ===== 3D SLIDER ===== */
.slider3d{
    position:absolute;
    width:100%;
    height:100%;
    perspective:1400px;
    overflow:hidden;
}

/* Slides */
.slide{
    position:absolute;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    animation: zoomEffect 18s infinite;
    transform-style: preserve-3d;
}

/* Dark Overlay */
.slide::before{
    content:'';
    position:absolute;
    inset:0;
    /* background:rgba(0,0,0,0.55); */
    background:rgba(134, 134, 134, 0.5);
}

/* Different Animation Delays */
.slide1{
    /* background-image:url('https://images.unsplash.com/photo-1511578314322-379afb476865?q=80&w=1600&auto=format&fit=crop'); */
    background-image:url('../images/banner/banner1.png');
    animation-delay:0s;
}

.slide2{
    /*background-image:url('https://images.unsplash.com/photo-1505373877841-8d25f7d46678?q=80&w=1600&auto=format&fit=crop');*/
   background-image:url('../images/banner/banner4.png');
    animation-delay:6s;
}

.slide3{
    /* background-image:url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?q=80&w=1600&auto=format&fit=crop'); */
    background-image:url('../images/banner/banner3.png');
    animation-delay:12s;
}

/* 3D Zoom Animation */
@keyframes zoomEffect{

    0%{
        opacity:0;
        transform:scale(1) rotateY(10deg);
    }

    10%{
        opacity:1;
    }

    30%{
        opacity:1;
        transform:scale(1.15) rotateY(0deg);
    }

    40%{
        opacity:0;
    }

    100%{
        opacity:0;
    }
}
@media (max-width:768px){

    .slider3d{
        height:30vh;
    }

    .slide{
        background-size:cover;
        background-position:top center; /* Shows top part of image */
    }

}
/* ===== NAVBAR ===== */
.conference-navbar{
    position:fixed;
    top:5px;
    left:50%;
    transform:translateX(-50%);
    width:92%;
    z-index:999;
    padding:10px 25px;
    border-radius:22px;

    /* background:rgba(68, 0, 52, 0.1); */
    background:rgba(123, 15, 127, 0.22);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,0.18);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.35),
        inset 0 1px 1px rgba(255,255,255,0.2);
}

/* Logo */
.brand-logo{
    font-size:25px;
    font-weight:800;
    color:#fff !important;
    text-decoration:none;
    letter-spacing:1px;
}

/* Nav Links */
.conference-navbar .nav-link{
    color:#fff !important;
    font-weight:600;
    margin:0 8px;
    padding:10px 18px !important;
    border-radius:14px;
    transition:0.4s ease;
}

/* Hover Effect */
.conference-navbar .nav-link:hover{
    transform:translateY(-4px) scale(1.05);

    background:linear-gradient(135deg,#ff00cc,#3333ff);

    box-shadow:
        0 8px 20px rgba(78, 78, 78, 0.35);
}
/* Hide dropdown by default */
.dropdown-menu {
    display: none;
    position: absolute;
      background: rgba(255, 255, 255, 0.85);
    min-width: 250px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 999;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Optional styling */
.dropdown {
    position: relative;
}

.dropdown-item {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
}


@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Active */
.conference-navbar .nav-link.active{
    background:linear-gradient(135deg,#ff00cc,#6a00ff);
}

/* Register Button */
.register-btn{

    background:
    linear-gradient(135deg,#7B0F7F,#E91E8F);

    color:#fff;
}
/* ===== HERO CONTENT ===== */
.hero-content{
    position:relative;
    z-index:5;
    height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;

    text-align:center;
    color:#fff;
}

/* Title */
.hero-content h1{
    font-size:70px;
    font-weight:800;
    margin-bottom:20px;

    text-shadow:0 10px 30px rgba(0,0,0,0.5);
}

/* Subtitle */
.hero-content p{
    font-size:22px;
    max-width:800px;
}

/* Buttons */
.hero-buttons{
    margin-top:35px;
}

.hero-buttons a{
    text-decoration:none;
    padding:14px 35px;
    border-radius:50px;
    margin:10px;
    font-weight:700;
    transition:0.4s ease;
}

/* Primary Button */
.btn-primary3d{
    background:linear-gradient(135deg,#00c6ff,#0072ff);
    color:#fff;
    box-shadow:0 12px 25px rgba(0,114,255,0.35);
}

/* Secondary */
.btn-secondary3d{
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.25);
    color:#fff;
}

/* Hover */
.hero-buttons a:hover{
    transform:translateY(-5px) scale(1.05);
}

/* Mobile */
@media(max-width:991px){

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:18px;
        padding:0 20px;
    }

    .conference-navbar .navbar-collapse{
        margin-top:15px;
        padding:20px;
        border-radius:18px;
        background:rgba(0,0,0,0.45);
    }
}
@media (max-width: 768px) {

    .hero-content{
        height: auto;
        min-height: 30vh;
        padding-top: 40px;
    }
    /* Title */
.hero-content h1{
    font-size:20px;
    font-weight:600;
    margin-bottom:20px;

    text-shadow:0 10px 30px rgba(0,0,0,0.5);
}
.hero-buttons a{
    text-decoration:none;
    padding:5px 5px;
    border-radius:50px;
    margin:10px;
    font-weight:700;
    transition:0.4s ease;
}

}
/* ===== COUNTDOWN CSS ===== */

/* ===== COUNTDOWN SECTION ===== */

.conference-countdown{

    position:relative;

    /* padding:80px 0; */

     background-image:url('../images/banner/banner2.png');

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    overflow:hidden;
}
/* DARK OVERLAY */

.countdown-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    135deg,
    rgba(76, 9, 80, 0.068),
    rgba(226, 224, 224, 0.144)
    );

    backdrop-filter:blur(3px);
}

/* ===== TEXT ===== */

.countdown-text{

    position:relative;

    z-index:2;

    color:#fff;

    margin-bottom:10px;
}

.countdown-text h5{

    font-size:18px;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:20px;

    color:#ffb3ef;
}

.countdown-text h2{

    font-size:60px;

    font-weight:800;

    margin-bottom:20px;
}

.countdown-text p{

    max-width:750px;

    margin:auto;

    font-size:20px;

    line-height:1.8;
}

/* ===== COUNTDOWN ===== */

.countdown-wrapper{

    position:relative;

    z-index:2;

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;
}

/* GLASS BOX */

.countdown-box{

    width:160px;
    height:160px;

    background:
    rgba(255, 0, 0, 0.05);

    border:
    1px solid rgba(255,255,255,0.18);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border-radius:30px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    box-shadow:
    0 15px 35px rgba(0,0,0,0.25);

    transition:0.5s ease;

    overflow:hidden;

    position:relative;
}

/* GLOW EFFECT */

.countdown-box::before{

    content:'';

    position:absolute;

    width:220px;
    height:220px;

    background:
    radial-gradient(
    rgba(255,255,255,0.25),
    transparent
    );

    top:-120px;
    right:-100px;
}

/* HOVER */

.countdown-box:hover{

    transform:
    translateY(-12px)
    rotateX(8deg)
    rotateY(-8deg);

    background:
    rgba(255,255,255,0.18);
}

/* NUMBER */

.countdown-box h2{

    font-size:58px;

    font-weight:800;

    color:#fff;

    margin:0;
}

/* LABEL */

.countdown-box span{

    font-size:16px;

    color:#fff;

    letter-spacing:2px;

    text-transform:uppercase;
}
/* ===== BACKGROUND IMAGE ===== */

.conference-countdown{

    position:relative;

    padding:50px 0;

    /* background-image:
    url('../images/countdown-bg.jpg'); */
    background-image:
url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?q=80&w=1600&auto=format&fit=crop');

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    /* background-attachment:fixed; */

    overflow:hidden;
}
/* ===== MOBILE ===== */

@media(max-width:768px){

    .countdown-text h2{

        font-size:40px;
    }

    .countdown-text p{

        font-size:17px;

        padding:0 15px;
    }

    .countdown-box{

        width:120px;
        height:120px;
    }

    .countdown-box h2{

        font-size:38px;
    }
}


/* WARM REGARD */

.organizers {
    margin-top: 40px;          /* space above the closing message */
}

.closing-message {
    text-align: left;          /* left-align text */
    line-height: 1.6;          /* better spacing between lines */
    font-family: 'Arial', sans-serif; /* clean, readable font */
}

.closing-message .warm-regards {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.closing-message .committee {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.closing-message .event-name {
    font-weight: 700;
    font-size: 1.3rem;
    color: #7B0F7F;           /* your conference color */
}

.image-section {
    padding: 40px 0;
}

.theme-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Desktop */
@media (min-width: 992px) {
    .theme-image {
        max-width: 80%;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .theme-image {
        max-width: 90%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .image-section {
        padding: 20px 0;
    }

    .theme-image {
        max-width: 100%;
    }
}
/* gateway section********************* */
/* gateway section ***********************/

.guwahati-section{
    background:#f4f1f8;
}

.image-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.image-grid img{
    width:100%;
    height:200px;
    object-fit:cover;
    border-radius:20px;
    transition:0.4s;
}

.image-grid img:hover{
    transform:scale(1.05);
}

.section-title{
    font-size:35px;
    font-weight:800;
    color:#9b1b8f;
    line-height:1.1;
    margin-bottom:25px;
}

.guwahati-section p {
    font-size: 1rem;
    line-height: 1.9;
    color: #222;
    margin-bottom: 25px;
    text-align: justify;
}

.organizers {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.profile-card {
    text-align: center;
}

.profile-card {
    position: relative; /* needed for overlay */
    display: inline-block;
}

.profile-card img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #c2188b;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.profile-card::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 50%;
    background-color: rgba(123, 15, 127, 0); /* invisible by default */
    transition: background-color 0.3s ease;
}

.profile-card:hover img {
    transform: scale(1.05);
}

.profile-card:hover::after {
    background-color: rgba(123, 15, 127, 0.5); /* purple overlay on hover */
}

.profile-card h5 {
    margin-top: 15px;
    font-weight: 700;
    color: #6a1b9a;
}

.profile-card p {
    color: #666;
    margin-bottom: 0;
}

/* Tablet */
@media (max-width:991px){

    .section-title{
        font-size:3rem;
    }

    .guwahati-section p{
        font-size:1.1rem;
    }
}

/* Mobile */
@media (max-width:767px){

    .image-grid{
        gap:10px;
    }

    .image-grid img{
        height:140px;
        border-radius:15px;
    }

    .section-title{
        font-size:2.2rem;
        text-align:center;
    }

    .guwahati-section p{
        font-size:1rem;
        text-align:center;
        line-height:1.7;
    }
}
/* gateway section end *********************************/
/* gateway section end**************************************/

/* ===== COMMITTEE SECTION ===--------------------------------== */
/* ===== COMMITTEE SECTION =-----------------------------------==== */

.committee-section{

    position:relative;

    padding:20px 0;

    background:
    linear-gradient(135deg,#f8f0ff,#f3e4ff);

    overflow:hidden;
}

/* Glow Background */

.committee-section::before{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    background:
    rgba(233,30,143,0.15);

    border-radius:50%;

    top:-150px;
    right:-150px;

    filter:blur(100px);
}

/* ===== TITLE ===== */

.section-title{
    margin-bottom:40px;
}

.section-title h2{

    font-size:40px;

    font-weight:800;

    background:
    linear-gradient(135deg,#7B0F7F,#E91E8F);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

.section-title h3{

    font-size:30px;

    font-weight:800;

    background:
    linear-gradient(135deg,#7B0F7F,#E91E8F);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}
.section-title p{

    color:#666;

    font-size:18px;

    letter-spacing:3px;

    text-transform:uppercase;
}

/* ===== CARD ===== */

.committee-card{

    position:relative;

    padding:30px 20px;

    border-radius:30px;

    text-align:center;

    background:
    rgba(255,255,255,0.45);

    backdrop-filter:blur(18px);

    border:
    1px solid rgba(255,255,255,0.35);

    box-shadow:
    0 15px 40px rgba(123,15,127,0.15);

    transition:0.5s ease;

    transform-style:preserve-3d;

    overflow:hidden;
}

/* Hover */

.committee-card:hover{

    transform:
    rotateX(8deg)
    rotateY(-8deg)
    translateY(-12px);

    box-shadow:
    0 25px 60px rgba(233,30,143,0.25);
}

/* Glow */

.committee-card::before{

    content:'';

    position:absolute;

    width:220px;
    height:220px;

    background:
    linear-gradient(135deg,
    rgba(233,30,143,0.25),
    rgba(123,15,127,0.15));

    border-radius:50%;

    top:-80px;
    right:-80px;
}

/* ===== IMAGE ===== */

.committee-img{

    position:relative;

    width:180px;
    height:180px;

    margin:auto;

    border-radius:50%;

    padding:6px;

    background:
    linear-gradient(135deg,#E91E8F,#7B0F7F);

    box-shadow:
    0 12px 35px rgba(123,15,127,0.35);
}

.committee-img img{

    width:100%;
    height:100%;

    object-fit:cover;

    border-radius:50%;

    border:6px solid #fff;
}

/* ===== CONTENT ===== */

.committee-content{
    margin-top:25px;
}

.committee-content h4{

    font-size:20px;

    font-weight:700;

    color:#231F20;

    margin-bottom:8px;
}

.committee-content span{

    font-size:18px;

    color:#E91E8F;

    font-weight:600;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

    .section-title h2{
        font-size:42px;
    }

    .committee-img{
        width:140px;
        height:140px;
    }

    .committee-content h4{
        font-size:20px;
    }

    .committee-content span{
        font-size:15px;
    }
}


/* ===== FOOTER ===== */

.conference-footer{

    position:relative;

    background:
    linear-gradient(
    135deg,
    #2b002d,
    #7B0F7F
    );

    color:#fff;

    padding-top:90px;

    overflow:hidden;
}

/* GLOW EFFECT */

.conference-footer::before{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    background:
    rgba(233,30,143,0.15);

    border-radius:50%;

    top:-200px;
    right:-150px;

    filter:blur(100px);
}

/* LOGO */

.footer-logo{

    font-size:42px;

    font-weight:800;

    margin-bottom:20px;
}

.footer-logo span{

    color:#ff4fd8;
}

/* ABOUT */

.footer-about p{

    line-height:1.9;

    color:rgba(255,255,255,0.75);
}

/* TITLES */

.footer-links h4,
.footer-contact h4,
.footer-social h4{

    font-size:24px;

    margin-bottom:25px;

    font-weight:700;
}

/* LINKS */

.footer-links ul{

    padding:0;

    margin:0;

    list-style:none;
}

.footer-links ul li{

    margin-bottom:14px;
}

.footer-links ul li a{

    color:rgba(255,255,255,0.75);

    text-decoration:none;

    transition:0.4s ease;
}

.footer-links ul li a:hover{

    color:#ff4fd8;

    padding-left:8px;
}

/* CONTACT */

.footer-contact p{

    margin-bottom:18px;

    color:rgba(255,255,255,0.75);

    line-height:1.8;
}

.footer-contact i{

    color:#ff4fd8;

    margin-right:10px;
}

/* SOCIAL */

/* ===== SOCIAL ===== */

.social-icons{

    display:flex;

    flex-wrap:wrap;

    gap:15px;
}

/* BUTTON */

.social-btn{

    position:relative;

    width:170px;
    height:55px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50px;

    background:
    rgba(255,255,255,0.10);

    color:#fff;

    text-decoration:none;

    overflow:hidden;

    transition:0.5s ease;

    backdrop-filter:blur(10px);

    font-weight:600;
}

/* TEXT */

.social-btn span{

    transition:0.4s ease;

    font-size:16px;
}

/* ICON */

.social-btn i{

    position:absolute;

    top:-50px;

    font-size:22px;

    opacity:0;

    transition:0.5s ease;
}

/* HOVER */

.social-btn:hover{

    background:
    linear-gradient(135deg,#E91E8F,#7B0F7F);

    box-shadow:
    0 10px 25px rgba(233,30,143,0.35);

    transform:
    translateY(-5px);
}

/* TEXT DOWN */

.social-btn:hover span{

    transform:translateY(50px);

    opacity:0;
}

/* ICON FROM TOP */

.social-btn:hover i{

    top:16px;

    opacity:1;
}

/* BOTTOM */

.footer-bottom{

    margin-top:70px;

    text-align:center;

    padding:25px 15px;

    border-top:
    1px solid rgba(255,255,255,0.10);
}

.footer-bottom p{

    margin:0;

    color:rgba(255,255,255,0.75);
}

/* ===== MOBILE ===== */

@media(max-width:768px){

    .conference-footer{

        text-align:center;
    }

    .social-icons{

        justify-content:center;
    }

    .footer-logo{

        font-size:32px;
    }
}













.gateway-section{

    padding:100px 0;

    background:#f8f5ff;
}

.gateway-image-box{

    overflow:hidden;

    border-radius:25px;

    box-shadow:
    0 20px 40px rgba(123,15,127,0.18);
}

.gateway-img{

    width:100%;

    height:450px;

    object-fit:cover;

    transition:.6s ease;
}

.gateway-image-box:hover .gateway-img{

    transform:scale(1.08);
}

.gateway-content h2{

    font-size:48px;

    font-weight:800;

    margin-bottom:25px;

    background:
    linear-gradient(135deg,#7B0F7F,#E91E8F);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

.gateway-content p{

    font-size:18px;

    line-height:1.9;

    color:#333;

    margin-bottom:20px;
}

@media(max-width:991px){

    .gateway-content{

        margin-top:30px;
    }

    .gateway-content h2{

        font-size:34px;
    }

    .gateway-img{

        height:300px;
    }
}













/* logo */


.conference-top-header{
    background:#fff;
    padding:15px 0;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.top-logo1 {
    width: 100%;
    max-width: 130px; /* bigger logo */
    height: auto;
    object-fit: contain;
    transition: 0.4s;
}

.top-logo2 {
    width: 100%;
    max-width: 450px; /* bigger logo */
    height: auto;
    object-fit: contain;
    transition: 0.4s;
}

.top-logo:hover{
    transform:translateY(-5px) scale(1.05);
}

.conference-heading{
    font-size:42px;
    font-weight:700;
    line-height:1.2;
    color:#3a006e;
    margin-bottom:10px;
    text-transform:uppercase;
}

.conference-subtitle{
    font-size:22px;
    color:#7B0F7F;
    font-style:italic;
    line-height:1.5;
    margin-bottom:0;
}

/* Tablet */
@media (max-width:991px){

    /*.top-logo{*/
    /*    max-width:130px;*/
    /*}*/
.top-logo1{
     width: 100%;
    max-width: 130px; /* bigger logo */
    height: auto;
    object-fit: contain;
    transition: 0.4s;
    margin-left:10px;
}

.top-logo2{
     width: 100%;
    max-width: 170px; /* bigger logo */
    height: auto;
    object-fit: contain;
    transition: 0.4s;
    margin-left:;
}

    .conference-heading{
        font-size:32px;
    }

    .conference-subtitle{
        font-size:18px;
    }
}

/* Mobile */
@media (max-width:767px){

    .conference-top-header{
        padding:20px 0;
    }

    .top-logo{
        max-width:110px;
    }

    .conference-heading{
        font-size:26px;
    }

    .conference-subtitle{
        font-size:15px;
        padding:0 10px;
    }
}

/* Small Mobile */
@media (max-width:480px){

    .top-logo{
        max-width:90px;
        margin-top:50px;
    }

    .conference-heading{
        font-size:22px;
    }

    .conference-subtitle{
        font-size:14px;
        line-height:1.6;
    }
}


/* fees section ***************/

.registration-section{

    background:
    linear-gradient(135deg,#7B0F7F,#E91E8F);

    padding:100px 0;
}

.ticket-card{

    position:relative;

    background:#fff;

    padding:50px 25px;

    text-align:center;

    min-height:380px;

    transition:.4s ease;

    overflow:hidden;
}

/* Ticket holes top */

.ticket-card::before{

    content:'';

    position:absolute;

    top:-12px;
    left:0;

    width:100%;
    height:24px;

    background:
    radial-gradient(circle,
    transparent 12px,
    #7B0F7F 13px);

    background-size:40px 24px;
}

/* Ticket holes bottom */

/* .registration-header{

    background:
    linear-gradient(
    135deg,
    #6a1b9a,
    #8e24aa,
    #d81b90
    );

    padding:80px 0 50px;

    position:relative;

    overflow:hidden;
} */

/* Background pattern */

.registration-header::before{

    content:"";

    position:absolute;

    inset:0;

    background:url('images/pattern.png');

    opacity:.08;
}

.tariff-title{

    color:#fff;

    font-size:40px;

    font-weight:800;

    margin-bottom:15px;

    position:relative;
    z-index:2;
}

.tariff-subtitle{

    color:#fff;

    letter-spacing:3px;

    font-size:18px;

    position:relative;
    z-index:2;
}

.divider-wave{

    color:#fff;

    font-size:40px;

    letter-spacing:10px;

    margin-top:15px;

    position:relative;
    z-index:2;
}

.alert-box{

    padding:5px 5px;

    border-radius:6px;

    font-size:20px;

    font-weight:500;

    position:relative;
    z-index:2;
}

.early-box{

    background:#fff1b8;

    color:#8a5a00;
}

.workshop-box{

    background:#cdefff;

    color:#005d78;
}

@media(max-width:768px){

    .tariff-title{

        font-size:34px;
    }

    .alert-box{

        font-size:16px;
    }
}

/* fees */

.ticket-card::after{

    content:'';

    position:absolute;

    bottom:-12px;
    left:0;

    width:100%;
    height:24px;

    background:
    radial-gradient(circle,
    transparent 12px,
    #7B0F7F 13px);

    background-size:40px 24px;
}

.ticket-card:hover{

    transform:
    translateY(-15px)
    rotateX(8deg);

    box-shadow:
    0 25px 50px rgba(0,0,0,.25);
}

.ticket-card h3{

    font-size:26px;

    font-weight:800;

    color:#4a0072;

    margin-bottom:35px;
}

.ticket-card ul{

    list-style:none;

    padding:0;

    margin-bottom:40px;
}

.ticket-card ul li{

    padding:10px 0;

    color:#666;

    font-size:17px;
}

.register-ticket-btn{

    display:inline-block;

    padding:12px 35px;

    text-decoration:none;

    color:#fff;

    font-weight:700;

    border-radius:50px;

    background:
    linear-gradient(135deg,#ff008a,#ff4fd8);

    transition:.4s;
}

.register-ticket-btn:hover{

    color:#fff;

    transform:scale(1.05);
}

.gst-text{
    color:white;
    font-weight:600;
}

body {
    cursor: none; /* hide default cursor */
}

/* small center dot */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: #ff4fd8;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
}

/* outer smooth ring */
.cursor-outline {
    width: 35px;
    height: 35px;
    border: 2px solid rgba(255, 79, 216, 0.6);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.08s ease-out;
}