:root{
    --primary:#07182d;
    --secondary:#087d83;
    --gold:#d9a441;
    --light:#f4f8ff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Segoe UI',sans-serif;
    overflow-x:hidden;
    background:#fff;
    color:#222;
}

/*==================================
TOPBAR
===================================*/

.topbar{
    background:#061221;
    color:#fff;
    padding:8px 0;
    font-size:14px;
}

.topbar i{
    color:var(--gold);
    margin-right:5px;
}

/*==================================
NAVBAR
===================================*/

/*========================
CENTER NAVBAR
========================*/

.navbar .container{
    display:flex;
    justify-content:center;
}

.navbar-collapse{
    flex-grow:0;
    justify-content:center;
}

.navbar-nav{
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}




.navbar{
    background:rgba(255,255,255,.78);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    box-shadow:0 10px 40px rgba(0,0,0,.08);
    padding:14px 0;
}

.navbar-brand{
    font-size:38px;
    font-weight:900;
    color:var(--primary)!important;
}

.navbar-brand span{
    color:var(--gold);
}

.nav-link{
    color:var(--primary)!important;
    font-weight:700;
    margin:0 8px;
    transition:.3s;
}

.nav-link:hover{
    color:var(--secondary)!important;
}

/*==================================
BUTTONS
===================================*/

.btn-main{
    background:linear-gradient(45deg,var(--gold),#ffcf74);
    padding:14px 34px;
    border-radius:50px;
    text-decoration:none;
    color:#111;
    font-weight:800;
    display:inline-block;
    box-shadow:
    0 12px 28px rgba(217,164,65,.35),
    inset 0 2px 5px rgba(255,255,255,.55);
    transition:.4s;
}

.btn-main:hover{
    transform:translateY(-5px) scale(1.04);
    color:#000;
}

.btn-light-outline{
    border:2px solid #fff;
    padding:12px 30px;
    border-radius:50px;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    margin-left:12px;
}



/*==================================
TOURIST ATTRACTION SECTION
===================================*/

.tourist-section{
    background:
    linear-gradient(rgba(6,18,33,.92),rgba(6,18,33,.94)),
    url('assests/img/tour-bg.jpg') center/cover fixed;
}

.tour-card{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:30px;
    overflow:hidden;

    height:100%;

    box-shadow:
    0 20px 50px rgba(0,0,0,.18);

    transition:.45s;
}

.tour-card:hover{
    transform:translateY(-12px) rotateX(4deg);
}

.tour-img{
    overflow:hidden;
}

.tour-img img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.6s;
}

.tour-card:hover .tour-img img{
    transform:scale(1.08);
}

.tour-content{
    padding:28px;
}

.tour-content h4{
    color:var(--gold);
    font-weight:800;
    margin-bottom:15px;
}

.tour-content h4 i{
    margin-right:8px;
}

.tour-content p{
    color:#ddd;
    margin-bottom:0;
    line-height:1.8;
}



/*==================================
COUNTDOWN
===================================*/

.countdown-wrapper{
    display:flex;
    justify-content:center;
}

.countdown-box{
    background:#0c2b4f;
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.18);

    padding:35px 45px;
    border-radius:30px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.12);

    text-align:center;

    width:100%;
    max-width:950px;
}

.countdown-box h5{
    font-size:28px;
    font-weight:800;
    color:#ffffff;
    margin-bottom:25px;
}

.countdown{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.countdown div{
    width:140px;
    height:140px;

    border-radius:24px;

    background:
    linear-gradient(145deg, #4b96f1, #3d5f87);

    color:#fff;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    box-shadow:
    0 15px 35px rgba(0,0,0,.18);

    transition:.4s;
}

.countdown div:hover{
    transform:translateY(-10px) scale(1.05);
}

.countdown span{
    font-size:48px;
    font-weight:900;
    color:#ffdd36;
    line-height:1;
}

.countdown p{
    margin-top:10px;
    margin-bottom:0;
    font-weight:600;
    letter-spacing:1px;
}

@media(max-width:768px){

.countdown div{
    width:110px;
    height:110px;
}

.countdown span{
    font-size:36px;
}

}





/*==================================
HERO SECTION
===================================*/

.hero{
    min-height:65vh;
    padding:20px 0 79px;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;

    /*background:
    linear-gradient(90deg,rgba(6,18,33,.96) 0%,rgba(6,18,33,.88) 45%,rgba(6,18,33,.25) 100%),
    url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?q=80&w=1974&auto=format&fit=crop') center/cover no-repeat;*/
}




.hero-bg-slider{
    position:absolute;
    inset:0;
    z-index:0;
}

.hero-bg-slider .carousel-inner,
.hero-bg-slider .carousel-item{
    height:100%;
}

.hero-bg-slider img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(90deg,rgba(6,18,33,.94) 0%,rgba(6,18,33,.82) 5%,rgba(6,18,33,.35) 30%),
    radial-gradient(circle at 20% 25%, rgba(217,164,65,.22), transparent 25%),
    radial-gradient(circle at 80% 20%, rgba(8,125,131,.35), transparent 28%);
    z-index:1;
}

.hero .container,
.hero-content-box,
.hero-3d-orb{
    z-index:3;
}

.hero-3d-orb{
    z-index:2;
}



.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at 20% 25%, rgba(217,164,65,.22), transparent 25%),
    radial-gradient(circle at 80% 20%, rgba(8,125,131,.35), transparent 28%),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,.08), transparent 22%);
}

.hero-content-box{
    position:relative;
    z-index:5;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.18);
    border-radius:34px;
    padding:50px;
    box-shadow:0 25px 80px rgba(0,0,0,.28);
}

.hero h5{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:3px;
    margin-bottom:15px;
}

.hero h1{
    color:#fff;
    font-size:90px;
    font-weight:900;
    line-height:.95;
}

.hero h1 span{
    color:var(--gold);
}

.hero p{
    color:#ddd;
    font-size:22px;
    margin-top:25px;
    max-width:760px;
}

.hero-3d-orb{
    position:absolute;
    right:8%;
    top:22%;
    width:280px;
    height:280px;
    border-radius:50%;
    background:
    radial-gradient(circle at 35% 30%, #fff, #f6d27a 18%, #d9a441 42%, #087d83 72%, #07182d);

    filter:drop-shadow(0 30px 45px rgba(0,0,0,.35));
    animation:floatOrb 5s ease-in-out infinite;
    opacity:.85;
}

@keyframes floatOrb{
    0%,100%{
        transform:translateY(0) rotate(0deg);
    }

    50%{
        transform:translateY(-25px) rotate(10deg);
    }
}

/*==================================
EVENT CARD
===================================*/

.event-card{
    background:rgba(255,255,255,.82);
    backdrop-filter:blur(18px);
    border-radius:28px;
    margin-top:-70px;
    padding:30px;
    position:relative;
    z-index:10;

    box-shadow:
    0 20px 55px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.35);

    transition:.45s ease;
}

.event-card:hover{
    transform:translateY(-10px) rotateX(3deg);
}

.info-box{
    display:flex;
    align-items:center;
    gap:18px;
    border-right:1px solid #ddd;
}

.info-box:last-child{
    border-right:0;
}

.info-box i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:linear-gradient(45deg,var(--secondary),var(--primary));
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:26px;

    box-shadow:
    0 12px 25px rgba(0,0,0,.18),
    inset 0 2px 8px rgba(255,255,255,.35);
}

/*==================================
SECTION
===================================*/

.section{
    padding:100px 0;
    position:relative;
}

/*.section::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:linear-gradient(135deg,rgba(217,164,65,.18),rgba(8,125,131,.15));
    filter:blur(20px);
    right:-60px;
    top:50px;
    z-index:-1;
}*/

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:52px;
    font-weight:900;
    color:var(--primary);
}

.section-title span{
    color:var(--gold);
}

.section-title p{
    max-width:850px;
    margin:auto;
    color:#666;
}

/*==================================
ABOUT
===================================*/

.about-img img{
    width:100%;
    border-radius:30px;
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.about-content h3{
    font-size:42px;
    color:var(--primary);
    font-weight:900;
}

.about-content p{
    font-size:18px;
    line-height:1.9;
}

/*==================================
HIGHLIGHTS
===================================*/

.highlight-card{
    background:rgba(255,255,255,.72);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.2);

    border-radius:26px;
    padding:40px 25px;
    text-align:center;
    height:100%;

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);

    transition:.45s;
}

.highlight-card:hover{
    transform:translateY(-12px) rotateX(4deg) rotateY(-4deg);

    background:linear-gradient(145deg,var(--primary),var(--secondary));
}

.highlight-card:hover h5,
.highlight-card:hover p,
.highlight-card:hover i{
    color:#fff;
}

.highlight-card i{
    font-size:56px;
    color:var(--gold);
    margin-bottom:22px;
}

.highlight-card h5{
    font-weight:800;
    margin-bottom:15px;
}

/*==================================
SEEDCON
===================================*/

.seedcon{
    background:
    linear-gradient(rgba(6,18,33,.9),rgba(6,18,33,.92)),
    url('https://images.unsplash.com/photo-1516549655169-df83a0774514?q=80&w=1974&auto=format&fit=crop') center/cover fixed;
    color:#fff;
}

.seed-box{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    border-radius:30px;
    padding:40px;
    backdrop-filter:blur(18px);
    height:100%;
    transition:.4s;
}

.seed-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.seed-box h4{
    color:var(--gold);
    font-weight:900;
}

/*==================================
NEWS
===================================*/

.news-card{
    background:#fff;
    border-radius:26px;
    padding:35px;
    height:100%;
    transition:.4s;
    box-shadow:0 15px 38px rgba(0,0,0,.08);
}

.news-card:hover{
    transform:translateY(-10px);
}

.news-card i{
    color:var(--secondary);
    font-size:48px;
}

/*==================================
VENUE
===================================*/

.venue{
    background:var(--light);
}

.venue-img img{
    width:100%;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.venue-content h3{
    font-size:48px;
    font-weight:900;
    color:var(--primary);
}

/*==================================
CONTACT
===================================*/

.contact-card{
    background:#fff;
    border-radius:30px;
    padding:45px;
    box-shadow:0 18px 45px rgba(0,0,0,.1);
}

/*==================================
FOOTER
===================================*/

.footer{
    background:#061221;
    color:#fff;
    padding:70px 0 20px;
}

.footer h5{
    color:var(--gold);
    font-weight:800;
    margin-bottom:20px;
}

.footer a{
    color:#ddd;
    text-decoration:none;
    display:block;
    margin-bottom:8px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:30px;
    padding-top:20px;
    text-align:center;
    color:#bbb;
}

/*==================================
RESPONSIVE
===================================*/

@media(max-width:991px){

.hero{
    min-height:auto;
    padding:140px 0 90px;
}

.hero h1{
    font-size:55px;
}

.hero p{
    font-size:18px;
}

.hero-content-box{
    padding:35px;
}

.hero-3d-orb{
    width:180px;
    height:180px;
    top:10%;
}

.info-box{
    border-right:0;
    border-bottom:1px solid #eee;
    padding-bottom:20px;
}

.info-box:last-child{
    border-bottom:0;
}

.section{
    padding:70px 0;
}

.section-title h2{
    font-size:38px;
}

}

@media(max-width:576px){

.hero h1{
    font-size:42px;
}

.hero-content-box{
    padding:25px;
}

.btn-light-outline{
    margin-left:0;
    margin-top:12px;
    display:inline-block;
}

.navbar-brand{
    font-size:30px;
}

}
	
	
/*==================================
PAGE UP BUTTON
===================================*/

.page-up{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    border-radius:50%;
    background:linear-gradient(45deg,#d9a441,#ffcf74);
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    text-decoration:none;
    z-index:9999;

    box-shadow:
    0 15px 35px rgba(0,0,0,.25),
    inset 0 2px 6px rgba(255,255,255,.45);

    transition:.4s;
}

.page-up:hover{
    transform:translateY(-6px) scale(1.08);
    color:#000;
}

html{
   scroll-behavior:smooth;
}
	

	
	
	/*==================================
DROPDOWN MENU
===================================*/

.dropdown-menu{
    border-radius:18px;
    padding:12px;
    min-width:240px;
    background:rgba(255,255,255,.88);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    box-shadow:
    0 18px 45px rgba(0,0,0,.12);

    border:1px solid rgba(255,255,255,.25);
}

.dropdown-item{
    padding:12px 18px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.dropdown-item:hover{
    background:linear-gradient(45deg,#087d83,#07182d);
    color:#fff;
    transform:translateX(5px);
}

@media(min-width:992px){

.navbar .dropdown:hover .dropdown-menu{
    display:block;
    margin-top:0;
    animation:fadeIn .3s ease;
}

}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}





/* FULL RESPONSIVE FIX */

img{
  max-width:100%;
  height:auto;
}

body{
  overflow-x:hidden;
}

.navbar .container{
  justify-content:center;
}

.navbar-collapse{
  justify-content:center;
}

.navbar-nav{
  gap:6px;
  text-align:center;
}

.hero{
  min-height:75vh;
  padding:110px 0 70px;
}

.hero-content-box{
  max-width:760px;
}

.hero h1{
  font-size:clamp(42px, 7vw, 90px);
}

.hero p{
  font-size:clamp(17px, 2vw, 22px);
}

.event-card{
  margin-top:-45px;
}

.info-box{
  min-height:90px;
}

.countdown{
  gap:18px;
}

.countdown div{
  width:130px;
  height:130px;
}

.tour-img img{
  height:260px;
  object-fit:cover;
}

iframe{
  display:block;
  width:100%;
}

.footer img{
  max-width:100%;
}

/* TABLET */
@media(max-width:991px){

  .topbar .container{
    justify-content:center!important;
    text-align:center;
    gap:8px;
  }

  .navbar .container{
    justify-content:space-between;
  }

  .navbar-collapse{
    background:rgba(255,255,255,.96);
    margin-top:15px;
    border-radius:18px;
    padding:15px;
  }

  .navbar-nav{
    width:100%;
  }

  .nav-link{
    padding:12px 0;
  }

  .dropdown-menu{
    text-align:center;
    border-radius:14px;
  }

  .hero{
    min-height:auto;
    padding:95px 0 60px;
    text-align:center;
  }

  .hero-content-box{
    padding:30px 22px;
    margin:auto;
  }

  .hero-content-box img{
    width:130px;
  }

  .btn-light-outline{
    margin-left:0;
    margin-top:12px;
  }

  .event-card{
    margin-top:25px;
  }

  .info-box{
    border-right:0!important;
    border-bottom:1px solid #e5e5e5;
    padding-bottom:18px;
    justify-content:center;
    text-align:left;
  }

  .info-box:last-child{
    border-bottom:0;
  }

  .section{
    padding:60px 0;
  }

  .section-title h2{
    font-size:34px;
  }

  .about-content p{
    font-size:16px;
  }

  .venue-content{
    text-align:center;
  }

  .footer{
    text-align:center;
  }
}

/* MOBILE */
@media(max-width:576px){

  .container{
    padding-left:18px;
    padding-right:18px;
  }

  .hero{
    padding:80px 0 45px;
  }

  .hero-content-box{
    padding:24px 18px;
    border-radius:22px;
  }

  .hero h1{
    font-size:38px;
  }

  .hero h5{
    font-size:13px;
    letter-spacing:1.5px;
  }

  .btn-main,
  .btn-light-outline{
    width:100%;
    text-align:center;
    margin-left:0;
  }

  .countdown-box{
    padding:25px 15px;
  }

  .countdown{
    gap:10px;
  }

  .countdown div{
    width:72px;
    height:82px;
    border-radius:16px;
  }

  .countdown span{
    font-size:26px;
  }

  .countdown p{
    font-size:11px;
  }

  .tour-img img{
    height:220px;
  }

  .contact-card{
    padding:28px 18px;
  }

  iframe{
    height:280px;
  }
}




/*==================================
REGISTRATION BUTTONS
===================================*/

.registration-action{
    position:relative;
    z-index:5;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;

    margin-top:35px;
    flex-wrap:wrap;
}

/* Register Button */

.btn-register-now{

    min-width:240px;
    padding:16px 34px;

    border-radius:60px;

    background:linear-gradient(135deg,#d9a441,#ffdd83);

    color:#111;
    font-size:18px;
    font-weight:800;

    text-decoration:none;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    box-shadow:
    0 15px 35px rgba(217,164,65,.35);

    transition:.35s;
}

.btn-register-now:hover{

    color:#111;

    transform:
    translateY(-5px)
    scale(1.04);

    box-shadow:
    0 25px 50px rgba(217,164,65,.45);
}

/* Download Button */

.btn-download{

    min-width:280px;
    padding:16px 34px;

    border-radius:60px;

    background:linear-gradient(135deg,#153084,#4b1768);

    color:#fff;
    font-size:18px;
    font-weight:800;

    text-decoration:none;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    box-shadow:
    0 15px 35px rgba(21,48,132,.30);

    transition:.35s;
}

.btn-download:hover{

    color:#fff;

    transform:
    translateY(-5px)
    scale(1.04);

    box-shadow:
    0 25px 50px rgba(21,48,132,.45);
}

/* Icons */

.btn-register-now i,
.btn-download i{
    font-size:20px;
}

/* Mobile */

@media(max-width:768px){

.registration-action{
    flex-direction:column;
}

.btn-register-now,
.btn-download{

    width:100%;
    max-width:360px;

    font-size:16px;
    padding:15px 20px;
}

}


/* BANNER */

/*.inner-banner{
  min-height:390px;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(120deg,rgba(7,24,45,.95),rgba(75,23,104,.88)),
    url('assests/img/registration-banner.jpg') center/cover no-repeat;
}

.inner-banner::before{
  content:"";
  position:absolute;
  width:550px;
  height:550px;
  border-radius:50%;
  right:-180px;
  top:-160px;
  background:radial-gradient(circle,rgba(255,220,122,.45),transparent 65%);
  filter:blur(28px);
}

.inner-banner::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px),
    linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px);
  background-size:42px 42px;
  opacity:.25;
}

.inner-banner-content{
  position:relative;
  z-index:2;
  color:#fff;
}

.breadcrumb-text{
  display:inline-block;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  border-radius:50px;
  padding:8px 18px;
  margin-bottom:18px;
  backdrop-filter:blur(12px);
  color:var(--gold2);
  font-weight:700;
}

.inner-banner h1{
  font-size:62px;
  font-weight:900;
  text-transform:uppercase;
  line-height:1;
  margin-bottom:16px;
}

.inner-banner p{
  font-size:22px;
  color:#ffdc7a;
  font-weight:600;
  margin:0;
}*/


/*==================================
INNER PAGE BANNER
===================================*/

.inner-banner{
    position:relative;
    width:100%;
    height:320px;

    background:
    
    url("../assests/img/banner.jpg") center center/cover no-repeat;

    display:flex;
    align-items:center;
    overflow:hidden;
}



.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(7,24,45,.45),
        rgba(75,23,104,.20),
        rgba(7,24,45,.45)
    );
}

.inner-banner-content{
    position:relative;
    z-index:2;
    color:#fff;
    text-align:left;
}

.inner-banner-content h1{
    font-size:56px;
    font-weight:800;
    margin-bottom:10px;
    text-transform:uppercase;
    text-shadow:0 5px 20px rgba(0,0,0,.35);
}

.inner-banner-content p{
    font-size:20px;
    color:#ffd86e;
    font-weight:500;
    margin:0;
}

/* Responsive */

@media(max-width:991px){

.inner-banner{
    height:250px;
}

.inner-banner-content h1{
    font-size:40px;
}

.inner-banner-content p{
    font-size:17px;
}

}

@media(max-width:767px){

.inner-banner{
    height:180px;
}

.inner-banner-content h1{
    font-size:28px;
}

.inner-banner-content p{
    font-size:14px;
}

}

/* QUICK CARDS */

.quick-card{
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.75);
  border-radius:24px;
  padding:24px;
  height:100%;
  box-shadow:0 18px 45px rgba(0,0,0,.09);
  transition:.35s;
}

.quick-card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 65px rgba(0,0,0,.16);
}

.quick-card i{
  width:56px;
  height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  font-size:26px;
  color:#111;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  margin-bottom:16px;
}

.quick-card h5{
  font-weight:900;
  color:var(--primary);
}

/* REG CARD */

.reg-card{
  position:relative;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(22px);
  border-radius:32px;
  padding:42px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.8);
  box-shadow:
    0 24px 70px rgba(0,0,0,.13),
    0 0 55px rgba(217,164,65,.14);
}

.reg-card::before{
  content:"";
  position:absolute;
  width:360px;
  height:360px;
  right:-130px;
  top:-130px;
  background:radial-gradient(circle,rgba(217,164,65,.48),transparent 70%);
  filter:blur(35px);
  animation:moveGlow 7s infinite alternate;
}

.reg-card::after{
  content:"";
  position:absolute;
  width:280px;
  height:280px;
  left:-100px;
  bottom:-100px;
  background:radial-gradient(circle,rgba(75,23,104,.25),transparent 70%);
  filter:blur(40px);
  animation:moveGlow2 8s infinite alternate;
}

@keyframes moveGlow{
  100%{transform:translate(-40px,30px)}
}

@keyframes moveGlow2{
  100%{transform:translate(45px,-25px)}
}

.reg-table,
.note-box{
  position:relative;
  z-index:2;
}

.reg-table{
  overflow-x:auto;
  border-radius:22px;
}

.table{
  min-width:720px;
  margin:0;
  overflow:hidden;
  border-radius:22px;
}

.table thead th{
  background:linear-gradient(135deg,var(--primary),var(--purple));
  color:#fff;
  text-align:center;
  font-size:17px;
  padding:18px 14px;
  border-color:rgba(255,255,255,.15);
}

.table tbody td{
  text-align:center;
  padding:18px 14px;
  font-size:17px;
  vertical-align:middle;
}

.table tbody td:first-child{
  font-weight:800;
  color:var(--primary);
}

.table tbody tr:nth-child(even){
  background:#fff6e1;
}

.price{
  font-weight:900;
  color:#000;
}

.note-box{
  background:linear-gradient(135deg,var(--purple),#261040);
  color:#fff;
  border-radius:24px;
  padding:24px;
  margin-top:28px;
}

.note-box p{
  margin-bottom:8px;
  font-size:17px;
  font-weight:600;
}

.note-box i{
  color:var(--gold2);
}

/* BANK */

.bank-box{
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(20px);
  border-radius:30px;
  padding:38px;
  box-shadow:0 22px 60px rgba(0,0,0,.11);
  margin-top:35px;
  border:1px solid rgba(255,255,255,.8);
}

.bank-box h3{
  font-weight:900;
  color:var(--primary);
  margin-bottom:25px;
  text-align:center;
}

.bank-row{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:12px;
  padding:14px 0;
  border-bottom:1px dashed rgba(7,24,45,.2);
  font-size:18px;
}

.bank-row:last-child{
  border-bottom:0;
}

.bank-row strong{
  color:var(--purple);
}


/* RESPONSIVE */

@media(max-width:991px){
  .topbar .container{
    justify-content:center!important;
    text-align:center;
    gap:8px;
  }

  .navbar-nav{
    text-align:center;
    padding-top:15px;
  }

  .inner-banner{
    min-height:290px;
    text-align:center;
  }

  .inner-banner h1{
    font-size:42px;
  }

  .inner-banner p{
    font-size:18px;
  }

  .section{
    padding:62px 0;
  }

  .section-title h2{
    font-size:35px;
  }

  .contact-strip{
    text-align:center;
  }

  .contact-item{
    justify-content:center;
    text-align:left;
  }
}

@media(max-width:576px){
  .container{
    padding-left:18px;
    padding-right:18px;
  }

  .inner-banner{
    min-height:250px;
  }

  .inner-banner h1{
    font-size:34px;
  }

  .breadcrumb-text{
    font-size:13px;
  }

  .reg-card,
  .bank-box,
  .contact-strip{
    padding:24px 18px;
    border-radius:24px;
  }

  .table{
    min-width:620px;
  }

  .table thead th,
  .table tbody td{
    font-size:14px;
    padding:12px;
  }

  .note-box p{
    font-size:15px;
  }

  .bank-row{
    grid-template-columns:1fr;
    text-align:center;
    font-size:16px;
  }

  .contact-item{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .city-img img{
    height:260px;
  }

  .page-up{
    width:42px;
    height:42px;
    right:10px;
    bottom:10px;
    font-size:16px;
  }
}

/*.inner-bannernew{
    
	width:100%;
    overflow:hidden;
    line-height:0;
    position:relative;
    background:#fff;
}*/


.logocontrol {
	
	margin-left:auto;
	margin-right:auto;
}

.logocontrol1 {
	display:none !important;
}


@media (max-width: 575.98px) {

	 .logocontrol1 {
    width: 100% !important;
	display: block !important;
}
.logocontrol {
	display:none !important;
}
}




/* VISA PAGE */

.visa-section{
  background:
  radial-gradient(circle at top left,#fff,#f8f7ff 35%,#eef4ff 75%,#fff);
}

.visa-card{
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.8);
  border-radius:28px;
  padding:32px;
  box-shadow:0 18px 45px rgba(0,0,0,.10);
  transition:.35s;
}

.visa-card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 65px rgba(0,0,0,.16);
}

.visa-card h3{
  color:var(--primary);
  font-weight:900;
  margin-bottom:18px;
}

.visa-card h3 i{
  color:var(--gold);
  margin-right:8px;
}

.visa-list{
  padding-left:0;
  list-style:none;
  margin-bottom:0;
}

.visa-list li{
  padding:12px 0 12px 36px;
  border-bottom:1px dashed rgba(7,24,45,.16);
  position:relative;
}

.visa-list li::before{
  content:"\F26A";
  font-family:"bootstrap-icons";
  position:absolute;
  left:0;
  color:var(--gold);
  font-weight:900;
}

.visa-note{
  margin-top:35px;
  background:linear-gradient(135deg,var(--purple),var(--primary));
  color:#fff;
  border-radius:30px;
  padding:35px;
  box-shadow:0 22px 60px rgba(0,0,0,.22);
}

.visa-note h3{
  color:#ffdc7a;
  font-weight:900;
  margin-bottom:20px;
}

.visa-note ul{
  margin-bottom:0;
}

.visa-note li{
  margin-bottom:12px;
}

@media(max-width:576px){
  .visa-card,
  .visa-note{
    padding:24px 18px;
    border-radius:22px;
  }
}





.visa-hero{
  padding:90px 0;
  background:
  linear-gradient(120deg,rgba(7,24,45,.92),rgba(75,23,104,.82)),
  url("assests/img/banner.jpg") center/cover no-repeat;
}

.visa-hero-card{
  max-width:720px;
  padding:45px;
  border-radius:32px;
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.22);
  color:#fff;
  box-shadow:0 25px 70px rgba(0,0,0,.28);
}

.visa-hero-card span{
  color:#ffdc7a;
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
}

.visa-hero-card h1{
  font-size:64px;
  font-weight:900;
  margin:12px 0;
}

.visa-hero-card p{
  font-size:20px;
  margin:0;
}

.visa-section{
  padding:80px 0;
  background:
  radial-gradient(circle at top left,#fff,#f8f7ff 35%,#eef4ff 75%,#fff);
}

.visa-top-card{
  height:100%;
  padding:32px;
  border-radius:28px;
  background:rgba(255,255,255,.84);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.75);
  box-shadow:0 18px 45px rgba(0,0,0,.10);
  text-align:center;
  transition:.35s;
}

.visa-top-card:hover{
  transform:translateY(-10px);
}

.visa-top-card i{
  width:70px;
  height:70px;
  margin:auto auto 18px;
  border-radius:22px;
  background:linear-gradient(135deg,#d9a441,#ffdc7a);
  color:#07182d;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
}

.visa-top-card h4{
  font-weight:900;
  color:#07182d;
}

.visa-box{
  height:100%;
  padding:35px;
  border-radius:30px;
  background:#fff;
  box-shadow:0 20px 55px rgba(0,0,0,.10);
  border-top:6px solid #d9a441;
}

.visa-box h3{
  font-weight:900;
  color:#07182d;
  margin-bottom:22px;
}

.visa-box h3 i{
  color:#d9a441;
}

.visa-box ul{
  list-style:none;
  padding:0;
  margin:0;
}

.visa-box li{
  padding:13px 0 13px 38px;
  border-bottom:1px dashed #ddd;
  position:relative;
}

.visa-box li::before{
  content:"\F26A";
  font-family:"bootstrap-icons";
  position:absolute;
  left:0;
  color:#d9a441;
}

.visa-alert{
  margin-top:40px;
  padding:35px;
  border-radius:30px;
  color:#fff;
  background:linear-gradient(135deg,#4b1768,#07182d);
  box-shadow:0 22px 60px rgba(0,0,0,.22);
}

.visa-alert h3{
  color:#ffdc7a;
  font-weight:900;
}

.visa-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:16px 36px;
  border-radius:50px;
  background:linear-gradient(135deg,#d9a441,#ffdc7a);
  color:#111;
  text-decoration:none;
  font-weight:900;
  box-shadow:0 18px 40px rgba(217,164,65,.35);
}

@media(max-width:768px){
  .visa-hero{
    padding:60px 0;
  }

  .visa-hero-card{
    padding:28px;
    text-align:center;
  }

  .visa-hero-card h1{
    font-size:38px;
  }

  .visa-box,
  .visa-alert,
  .visa-top-card{
    padding:24px 18px;
  }
}



/* LIGHT THEME TOUR SECTION */

.tour-section{
  padding:90px 0;
  background:
    radial-gradient(circle at top right,#EAF4FF 0%,transparent 35%),
    radial-gradient(circle at bottom left,#FFF8EC 0%,transparent 30%),
    linear-gradient(180deg,#F8FBFF,#F3F7FC);
  overflow:hidden;
}

.section-title h2{
  color:#0F2D52;
  font-size:46px;
  font-weight:900;
}

.section-title span{
  color:#C9A96A;
}

.section-title p{
  color:#666;
}

.tour-tabs{
  gap:14px;
  flex-wrap:wrap;
}

.tour-tabs .nav-link{
  border-radius:50px;
  background:#fff;
  color:#0F2D52;
  border:1px solid #E5EDF7;
  padding:14px 26px;
  font-weight:800;
  box-shadow:0 8px 22px rgba(15,45,82,.06);
  transition:.35s;
}

.tour-tabs .nav-link.active{
  background:linear-gradient(135deg,#0F2D52,#1F4C84);
  color:#fff !important;
  border-color:transparent;
  box-shadow:0 14px 35px rgba(15,45,82,.18);
}

.tour-glass-card,
.info-glass-card,
.tour-contact,
.pre-card{
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.9);
  border-radius:30px;
  box-shadow:0 20px 60px rgba(15,45,82,.08);
  transition:.4s;
}

.tour-glass-card{
  padding:35px;
}

.tour-glass-card:hover,
.pre-card:hover,
.info-glass-card:hover{
  transform:translateY(-8px);
  box-shadow:0 35px 80px rgba(15,45,82,.12);
}

.tour-main-img{
  width:100%;
  height:360px;
  object-fit:cover;
  border-radius:24px;
  box-shadow:0 15px 40px rgba(15,45,82,.12);
}

.tour-glass-card h3{
  font-size:34px;
  font-weight:900;
  color:#0F2D52;
}

.tour-glass-card p{
  color:#444;
}

.tour-badge{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:10px 18px;
  border-radius:40px;
  background:#FFF7E6;
  color:#8A641B;
  font-weight:800;
  margin:12px 0;
}

.place-card{
  background:#fff;
  border-radius:20px;
  border:1px solid #EEF3F8;
  overflow:hidden;
  text-align:center;
  height:100%;
  box-shadow:0 8px 25px rgba(15,45,82,.06);
}

.place-card img{
  width:100%;
  height:130px;
  object-fit:cover;
}

.place-card h5{
  padding:12px;
  margin:0;
  color:#0F2D52;
  font-weight:800;
}

.tour-list{
  list-style:none;
  padding:0;
  margin:0;
}

.tour-list li{
  position:relative;
  padding:9px 0 9px 34px;
  color:#444;
}

.tour-list li::before{
  content:"\F26A";
  font-family:"bootstrap-icons";
  position:absolute;
  left:0;
  color:#C9A96A;
}

.price-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:30px;
}

.price-row div{
  background:#fff;
  border-radius:20px;
  border:1px solid #EEF3F8;
  padding:16px;
  text-align:center;
  box-shadow:0 10px 25px rgba(15,45,82,.06);
  transition:.35s;
}

.price-row div:hover{
  transform:translateY(-6px);
  border-color:#C9A96A;
}

.price-row small{
  display:block;
  color:#888;
}

.price-row strong{
  color:#0F2D52;
  font-size:20px;
  font-weight:900;
}

.info-glass-card{
  padding:32px;
  height:100%;
}

.info-glass-card h3{
  color:#0F2D52;
  font-weight:900;
  margin-bottom:20px;
}

.info-glass-card h3 i{
  color:#C9A96A;
}

.pre-card{
  padding:32px 22px;
  text-align:center;
  height:100%;
}

.pre-card i{
  color:#C9A96A;
  font-size:46px;
}

.pre-card h4{
  margin-top:16px;
  font-weight:900;
  color:#0F2D52;
}

.pre-card p{
  color:#666;
}

.tour-contact{
  background:linear-gradient(135deg,#0F2D52,#1F4C84);
  color:#fff;
  border-radius:30px;
  padding:40px;
  text-align:center;
  box-shadow:0 20px 60px rgba(15,45,82,.18);
}

.tour-contact h3{
  color:#FFD98A;
  font-weight:900;
}

.tour-contact p{
  color:#fff;
}

/* RESPONSIVE */

@media(max-width:991px){
  .tour-section{
    padding:65px 0;
  }

  .tour-glass-card{
    padding:24px;
  }

  .tour-main-img{
    height:280px;
  }

  .price-row{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .section-title h2{
    font-size:32px;
  }

  .tour-tabs .nav-link{
    width:100%;
  }

  .tour-glass-card,
  .info-glass-card,
  .tour-contact,
  .pre-card{
    border-radius:24px;
    padding:22px 18px;
  }

  .tour-main-img{
    height:220px;
  }

  .tour-glass-card h3{
    font-size:26px;
  }

  .price-row{
    grid-template-columns:1fr;
  }
}


/*previous seed content*/


.pdf-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.3s;
    border:1px solid #ececec;
    height:100%;
}

.pdf-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.pdf-card img{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
}

.pdf-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:18px 20px;
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    font-size:17px;
    transition:.3s;
}

.pdf-btn:hover{
    background:#084db5;
    color:#fff;
    text-decoration:none;
}

.pdf-btn i{
    font-size:22px;
}

@media(max-width:768px){

    .pdf-card img{
        height:280px;
    }

    .pdf-btn{
        font-size:15px;
        padding:15px;
    }

}


/*==================================
ABOUT SEED
===================================*/

.about-seed{

    padding:90px 0;

    background:
    radial-gradient(circle at top right,#EAF4FF 0%,transparent 35%),
    radial-gradient(circle at bottom left,#FFF8EC 0%,transparent 30%),
    linear-gradient(180deg,#F8FBFF,#F3F7FC);

}

.about-image{

    height:100%;

    padding:50px 35px;

    border-radius:35px;

    background:rgba(255,255,255,.82);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.95);

    text-align:center;

    box-shadow:0 20px 60px rgba(15,45,82,.08);

}

.about-icon{

    width:120px;

    height:120px;

    margin:auto;

    border-radius:30px;

    /*background:linear-gradient(135deg,#0F2D52,#1F4C84);*/

    color:#FFD98A;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:55px;

   /* box-shadow:0 20px 45px rgba(15,45,82,.25);*/

}

.about-image h5{

    margin-top:25px;

    color:#888;

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:14px;

}

.about-image h2{

    font-size:70px;

    font-weight:900;

    color:#0F2D52;

    margin:10px 0;

}

.about-image span{

    color:#C9A96A;

    font-weight:700;

}

.about-content{

    padding:10px;
}

.sub-heading{

    display:inline-block;

    background:#FFF5DD;

    color:#A16C00;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:18px;

}

.about-content h2{

    font-size:46px;

    font-weight:900;

    color:#0F2D52;

    margin-bottom:20px;

}

.about-content h2 span{

    color:#C9A96A;

}

.about-content p{

    font-size:17px;

    line-height:1.9;

    color:#555;

}

.feature-box{

    background:#fff;

    border-radius:22px;

    padding:25px;

    height:100%;

    border:1px solid #EEF3F8;

    box-shadow:0 10px 25px rgba(15,45,82,.06);

    transition:.35s;

}

.feature-box:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(15,45,82,.10);

}

.feature-box i{

    font-size:36px;

    color:#C9A96A;

}

.feature-box h5{

    margin-top:15px;

    color:#0F2D52;

    font-weight:800;

}

.feature-box p{

    margin:8px 0 0;

    font-size:15px;

    line-height:1.7;

}

/* Responsive */

@media(max-width:991px){

.about-image{

    margin-bottom:30px;

}

.about-image h2{

    font-size:52px;

}

.about-content h2{

    font-size:36px;

}

}

@media(max-width:576px){

.about-seed{

    padding:60px 0;

}

.about-image{

    padding:30px 20px;

}

.about-icon{

    width:90px;

    height:90px;

    font-size:40px;

}

.about-image h2{

    font-size:42px;

}

.about-content h2{

    font-size:28px;

}

.feature-box{

    padding:20px;

}

}


/*committee*/


.committee-section{
  padding:90px 0;
  background:
    radial-gradient(circle at top right,#EAF4FF 0%,transparent 35%),
    radial-gradient(circle at bottom left,#FFF8EC 0%,transparent 30%),
    linear-gradient(180deg,#F8FBFF,#F3F7FC);
}

.committee-card{
  background:rgba(255,255,255,.84);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.9);
  border-radius:30px;
  padding:35px;
  text-align:center;
  box-shadow:0 20px 60px rgba(15,45,82,.09);
  transition:.4s;
}

.committee-card:hover{
  transform:translateY(-10px);
  box-shadow:0 35px 80px rgba(15,45,82,.14);
}

.committee-img{
  width:190px;
  height:190px;
  margin:auto;
  border-radius:50%;
  padding:8px;
  background:linear-gradient(135deg,#0F2D52,#C9A96A);
}

.committee-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
  background:#fff;
}

.committee-content h4{
  margin-top:24px;
  color:#0F2D52;
  font-weight:900;
}

.committee-content p{
  color:#C9A96A;
  font-size:18px;
  font-weight:800;
}

@media(max-width:576px){
  .committee-section{
    padding:60px 0;
  }

  .committee-card{
    padding:25px 18px;
    border-radius:24px;
  }

  .committee-img{
    width:150px;
    height:150px;
  }
}

/*==================================
ABSTRACT SUBMISSION
===================================*/

.abstract-section{

padding:90px 0;

background:
radial-gradient(circle at top right,#EEF7FF 0%,transparent 35%),
radial-gradient(circle at bottom left,#FFF8EB 0%,transparent 30%),
linear-gradient(180deg,#F8FBFF,#F4F8FC);

}

.section-tag{

display:inline-block;

padding:8px 18px;

border-radius:30px;

background:#FFF3DD;

color:#B17A00;

font-weight:700;

margin-bottom:18px;

}

.abstract-info{

height:100%;

background:#fff;

padding:40px;

border-radius:30px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

text-align:center;

}

.icon-box{

width:100px;

height:100px;

margin:auto;

border-radius:25px;

background:linear-gradient(135deg,#0F2D52,#1F4C84);

display:flex;

align-items:center;

justify-content:center;

color:#FFD98A;

font-size:42px;

margin-bottom:25px;

}

.abstract-info h3{

font-weight:900;

color:#0F2D52;

}

.theme-box{

margin-top:30px;

background:#F8FBFF;

padding:20px;

border-radius:20px;

}

.theme-box h5{

color:#0F2D52;

font-weight:800;

}

.theme-box ul{

padding-left:18px;

margin:10px 0 0;

}

.guideline-card{

background:#fff;

padding:40px;

border-radius:30px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.guideline-card h3{

font-weight:900;

color:#0F2D52;

margin-bottom:30px;

}

.guide-item{

display:flex;

gap:20px;

margin-bottom:24px;

}

.guide-icon{

width:60px;

height:60px;

flex-shrink:0;

border-radius:18px;

background:linear-gradient(135deg,#0F2D52,#1F4C84);

display:flex;

align-items:center;

justify-content:center;

color:#FFD98A;

font-size:24px;

}

.guide-item h5{

font-weight:800;

margin-bottom:6px;

color:#0F2D52;

}

.guide-item p{

margin:0;

color:#555;

line-height:1.7;

}

.submit-box{

margin-top:40px;

padding:35px;

border-radius:25px;

background:linear-gradient(135deg,#0F2D52,#1F4C84);

text-align:center;

color:#fff;

}

.submit-box h4{

font-weight:900;

margin-bottom:15px;

}

.submit-btn{

display:inline-flex;

align-items:center;

gap:10px;

padding:15px 35px;

border-radius:50px;

background:#FFD98A;

color:#111;

font-weight:800;

text-decoration:none;

transition:.3s;

}

.submit-btn:hover{

transform:translateY(-5px);

color:#111;

}

@media(max-width:991px){

.abstract-info{

margin-bottom:25px;

}

}

@media(max-width:576px){

.abstract-section{

padding:60px 0;

}

.abstract-info,
.guideline-card{

padding:25px;

border-radius:22px;

}

.guide-item{

flex-direction:column;

text-align:center;

}

.guide-icon{

margin:auto;

}

.submit-box{

padding:25px;

}

}

/*==================================
COMING SOON SECTION
===================================*/

.coming-soon-section{

    padding:100px 0;

    background:
    radial-gradient(circle at top right,#EEF7FF 0%,transparent 35%),
    radial-gradient(circle at bottom left,#FFF8EB 0%,transparent 30%),
    linear-gradient(180deg,#F8FBFF,#F4F8FC);

}

.coming-soon-card{

    max-width:850px;

    margin:auto;

    background:rgba(255,255,255,.82);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.9);

    border-radius:35px;

    padding:60px;

    text-align:center;

    box-shadow:0 20px 60px rgba(15,45,82,.08);

    transition:.4s;

}

.coming-soon-card:hover{

    transform:translateY(-8px);

    box-shadow:0 35px 80px rgba(15,45,82,.12);

}

.coming-icon{

    width:110px;

    height:110px;

    margin:auto;

    border-radius:30px;

    background:linear-gradient(135deg,#0F2D52,#1F4C84);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:48px;

    color:#FFD98A;

    box-shadow:0 20px 45px rgba(15,45,82,.25);

}

.coming-badge{

    display:inline-block;

    margin-top:25px;

    background:#FFF4DE;

    color:#A86E00;

    padding:8px 22px;

    border-radius:40px;

    font-weight:700;

    letter-spacing:1px;

}

.coming-soon-card h2{

    margin:25px 0 20px;

    font-size:46px;

    font-weight:900;

    color:#0F2D52;

}

.coming-soon-card h2 span{

    color:#C9A96A;

}

.coming-soon-card p{

    max-width:650px;

    margin:auto;

    font-size:17px;

    line-height:1.9;

    color:#555;

}

.coming-points{

    margin-top:40px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.point{

    background:#fff;

    border-radius:18px;

    padding:18px;

    font-weight:700;

    color:#0F2D52;

    border:1px solid #EEF3F8;

    box-shadow:0 8px 20px rgba(15,45,82,.05);

}

.point i{

    color:#C9A96A;

    margin-right:8px;

}

@media(max-width:768px){

.coming-soon-card{

    padding:35px 25px;

}

.coming-soon-card h2{

    font-size:32px;

}

.coming-points{

    grid-template-columns:1fr;

}

}

@media(max-width:576px){

.coming-soon-section{

    padding:60px 0;

}

.coming-icon{

    width:85px;

    height:85px;

    font-size:36px;

}

.coming-soon-card h2{

    font-size:28px;

}

.coming-soon-card p{

    font-size:15px;

}

}





