/********** Template CSS **********/
:root {
    --primary: #09EDF5;
    --secondary: #26157C;
    --light: #9146E9;
    --dark: #DE3BB9;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    padding: 35px 30px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        /*border-bottom: 1px solid rgba(256, 256, 256, .1);*/
        z-index: 999;
    }

    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

/* Mobile view navbar background color */
@media (max-width: 991px) {
  .navbar {
    background-color: var(--secondary) !important; /* Apna color yaha change kare */
  }

  .navbar-collapse {
    background-color: var(--secondary); /* dropdown open hone par bhi same color */
    padding: 10px;
  }
}





/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}











/* Desktop (default) */
.custom-brand {
    position: absolute;
    top: 0;
}
.site-logo {
    max-height: 200px;
}

/* Mobile View */
@media (max-width: 576px) {
    .custom-brand {
        position: relative !important;
        top: auto !important;
    }
    .site-logo {
        max-height: 100px;
    }
}

.goacon-section {
  background: url("../images/home.png") no-repeat center center/cover;
  padding: 60px 0;
  color: #fff;
}


.tag-line {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}

.tag {
  padding: 8px 57px 8px 300px;
  font-size: 40px;
  font-weight: 400;
  border-radius: 5px;
  opacity: 0;
  transform: translateX(100px);
  animation: slideInRight 1s ease forwards;
}

.tag:nth-child(1) {
  animation-delay: 0.3s;
}
.tag:nth-child(2) {
  animation-delay: 0.6s;
}
.tag:nth-child(3) {
  animation-delay: 0.9s;
}
.tag:nth-child(4) {
  animation-delay: 1.2s;
}


/* Color gradients from dark to light (left to right) */

.blue {
  background: linear-gradient(60deg, #0099ccc7, #00f0ff);
  color: #fff;
}

.pink {
  background: linear-gradient(60deg, #f562c07a, #ff66c4);
  color: #fff;
}

.purple {
  background: linear-gradient(60deg, #6f2dcfa8, #af6eff);
  color: #fff;
}

.dark-purple {
  background: linear-gradient(60deg, #2a146499, #4e2b9d);
  color: #fff;
}


@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}



/* Bread Crumbs */
.breadcrumbs {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  padding-top: 15%;
  z-index: 2;
  overflow: hidden;
}
.breadcrumbs.overlay::before {
  background-color: #18222d9c;
  opacity: 0.9;
  z-index: -1;
}
.breadcrumbs .breadcrumbs-content .page-title {
  font-size: 35px;
  color: #fff;
  font-weight: 700;
  position: relative;
  line-height: 50px;
  padding-bottom: 7%;
}
.breadcrumbs .breadcrumb-nav li {
  display: inline-block;
}
.breadcrumbs .breadcrumb-nav li,
.breadcrumbs .breadcrumb-nav li a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumbs .breadcrumb-nav li a {
  padding-right: 15px;
  margin-right: 15px;
  position: relative;
}

.breadcrumbs .breadcrumb-nav li a:hover {
  color: var(--primary);
}
.breadcrumbs .breadcrumb-nav li a:after {
  content: '';
  height: 80%;
  width: 2px;
  background-color: #fff;
  position: absolute;
  top: 2px;
  right: 0;
}
/* Responsive adjustments */
@media (max-width: 1200px) {
  .breadcrumbs {
    padding-top: 30%; /* Adjust as needed */
  }
}

@media (max-width: 992px) {
  .breadcrumbs {
    padding-top: 35%; /* Adjust as needed */
  }
}

@media (max-width: 768px) {
  .breadcrumbs {
    padding-top: 40%; /* Adjust as needed */
  }
}

@media (max-width: 576px) {
  .breadcrumbs {
    padding-top: 45%; /* Adjust as needed */
  }
}

@media (max-width: 400px) {
  .breadcrumbs {
    padding-top: 50%; /* Adjust as needed */
  }
}


.committee-section {
  padding: 40px 0;
  text-align: center;
}
.committee-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #333;
}
.member-card {
  text-align: center;
  margin-bottom: 30px;
}
.member-card img {

  margin-bottom: 15px;

}
.member-name {
  font-weight: 600;
  font-size: 20px;
  color: #222;
}
.member-role {
  font-size: 16px;
  color: #555;
}


/*about-section*/
.about-section h2 {
  color: var(--primary);
  border-left: 5px solid var(--primary);
  padding-left: 10px;
}
.conference-section .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.conference-section .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}


/* ==============================
Custom Tabs Styling
============================== */
.custom-tabs {
  border-bottom: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.custom-tabs .nav-link {
  background: #f8f9fa;
  border: 2px solid var(--primary);
  border-radius: 50px;
  color: #000;
  padding: 10px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.custom-tabs .nav-link:hover {
  background: var(--light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13,110,253,0.3);
}

.custom-tabs .nav-link.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 10px rgba(13,110,253,0.3);
}

.tab-content {
  margin-top: 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.08);
  padding: 30px;
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(15px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Table Styling */
.table-custom thead {
  background: #0d6efd;
  color: #fff;
}
.table-custom tbody tr:hover {
  background: var(--primary);
  transition: 0.2s;
}
.table-custom td, .table-custom th {
  vertical-align: middle;
}

/* Responsive Fix */
@media (max-width: 576px) {
  .custom-tabs .nav-link {
    font-size: 14px;
    padding: 8px 18px;
  }
}



/*TIme countdown*/
.titme-title {
  font-weight: 600;
  color: #33393c;
}

.time-blocks {
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 165px;
  height: 165px;
  border-radius: 10%;
  background: radial-gradient(circle farthest-corner at 150px 150px, #2f3435 60%, #34393c 50%);
  margin: 10px;
}

.side-text {
  position: absolute;
  bottom: 15px;
  font-weight: 500;
  font-size: 22px;
  color: var(--primary);
}

.time-text {
  font-weight: 600;
  font-size: 50px;
  color: #ee5fbc;
}

/* ✅ Responsive adjustments */
@media (max-width: 992px) {
  .time-blocks {
    gap: 40px;
  }
  .block {
    width: 140px;
    height: 140px;
  }
  .time-text {
    font-size: 40px;
  }
  .side-text {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .time-blocks {
    gap: 25px;
  }
  .block {
    width: 120px;
    height: 120px;
  }
  .time-text {
    font-size: 32px;
  }
  .side-text {
    font-size: 16px;
    bottom: 12px;
  }
}

@media (max-width: 576px) {
  .time-blocks {
    flex-direction: column;
    gap: 15px;
  }
  .block {
    width: 100px;
    height: 100px;
  }
  .time-text {
    font-size: 28px;
  }
  .side-text {
    font-size: 14px;
    bottom: 8px;
  }
}




/*announcement*/
.announcement-section {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 35px 30px;
}

.announcement-section p {
  color: #333;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 15px;
}

.highlight {
  font-weight: 600;
  color: #000;
}

.contact-info {
  background: #f1f5ff;
  border-left: 4px solid #007bff;
  padding: 15px;
  border-radius: 6px;
  margin-top: 25px;
}

.signature {
  margin-top: 35px;
}

.signature p {
  margin-bottom: 0;
  font-weight: 600;
  color: #000;
}

.signature span {
  color: #007bff;
  font-weight: 700;
}

/* ✅ Responsive Fix */
@media (max-width: 992px) {
  .announcement-section {
    padding: 25px 20px;
  }
}

@media (max-width: 768px) {
  .announcement-section p {
    font-size: 0.95rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  img {
    min-height: 300px !important;
  }
}


/* home page commite */
.team-card {
    transition: all 0.3s ease;
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}



/*Invoice View*/
 .invoice-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 30px;
}
.invoice-header {
    border-bottom: 2px solid #007bff;
    margin-bottom: 20px;
}
.invoice-header h4 {
    margin-bottom: 0;
}
.invoice-card .table th {
    background: #f1f1f1;
}
.pay-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    transition: 0.3s;
}
.pay-btn:hover {
    background: #0056b3;
}
