* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    color: white;
    max-width: fit-content;
}

.landing-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(to bottom right, #1e3a8a, #4f46e5, #a855f7); /* Tailwind's gradient */
    color: white;
}

.header {
    display: flex;
    align-items: center;
    padding: 1rem;
    position: fixed;
    width: 100%;
    z-index: 50;
    transition: all 0.3s;
    gap: 1rem;
}

.header.scrolled {
    background: rgba(80, 52, 243, 0.9);
    backdrop-filter: blur(10px);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.logo-link {
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
}

.logo {
    border-radius: 50%;
    height: 50px; /* Tailwind's h-10 */
    width: 50px; /* Tailwind's w-10 */
}

.logo-text {
    margin-left: 0.5rem;
    font-size: 2rem; /* Tailwind's text-3xl */
    font-weight: bold;
    background: linear-gradient(to right, #facc15, #fb923c); /* Tailwind's gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar {
    display: flex;
    justify-content:space-between;
    width: 100%;
    max-width:max-content; /* Tailwind's max-w-screen-xl */
    margin: 0 auto;
}

.nav-links {
    display: flex;
    list-style-type: none;
    padding: 0;
}

.nav-link {
    margin: 0 1rem;
    text-decoration: none;
    color: #ffffff; /* Tailwind's text-gray-800 */
    transition: cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-link:hover {
    color: #fbbf24; /* Tailwind's hover:text-yellow-500 */
}

.active {
    color: #fbbf24; /* Tailwind's hover:text-yellow-500 */
}

.main-content {
    flex: 1;
    padding-top: 80px; /* Space for the fixed header */
}

.footer {
    padding: 1rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
}


.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('./logo1.png'); /* Adjust path as needed */
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-container {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-size: 6rem;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(to right, yellow, white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-secondary {
    background: linear-gradient(to right, orange, yellow, white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    max-width: fit-content;
    font-size: 1.25rem;
    margin: 0 auto 2rem;
}

.hero-button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-register-button {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    background: linear-gradient(to right, yellow, orange);
    color: black;
    transition: all 0.3s;
}

.hero-register-button:hover {
    background: linear-gradient(to right, orange, yellow);
}

.hero-submit-button {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    background: white;
    border: 2px solid #563acf;
    color: blue;
    transition: all 0.3s;
}

.hero-submit-button:hover {
    background: #563acf;
    color: white;
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6rem;
    background: linear-gradient(to top, blue, transparent);
}

/* About */
.about-section {
    padding: 4rem 1rem;
    position: relative;
    width: auto;
}

.about-container {
    /* max-width: fit-content; */
    width: 80%;
    margin: 0 auto;
}

.about-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(to right, yellow, orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text {
    color: rgb(29, 32, 36);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1rem;
    margin: auto auto;
    text-align: center;
}

.card {
    background: rgba(15, 48, 232, 0.881);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}


.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.card-description {
    color: rgb(227, 193, 40);
}

.about-skew {
    position: absolute;
    background: linear-gradient(to bottom, rgb(107, 107, 235), transparent);
    background-size: 80%;
    top: 0%;
    left: 0;
    width: 100%;
    height: 24rem;
    z-index: -90;
}

/* patrons */

#patron {
    background: linear-gradient(to bottom right, #6B46C1, #4299E1, #6B46C1);
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  
  .background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="32" height="32" fill="none" stroke="%23fff"%3E%3Cpath d="M0 16h32M16 0v32"/%3E%3C/svg%3E'), 
                url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="32" height="32" fill="none" stroke="%23fff"%3E%3Ccircle cx="16" cy="16" r="14"/%3E%3C/svg%3E');
    opacity: 0.1;
  }
  
  .page-title {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  .dignitaries-grid {
    display: flex; /* Use flexbox to align items horizontally */
  justify-content: space-between; /* Center the cards horizontally */
  gap: 400px; /* Space between the cards */
  position: relative;
  z-index: 1;
  flex-wrap: wrap; /* Allow wrapping if the screen size is too small */
  }
  
  .dignitary-card {
    width: 400px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    margin: auto auto;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.5s ease-in-out, background 0.5s;
  }
  
  .dignitary-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.3);
  }
  
  .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 8px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    pointer-events: none;
  }
  
  .dignitary-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    position: relative;
    border: 4px solid white;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .dignitary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }
  
  .dignitary-image:hover img {
    transform: scale(1.1);
  }
  
  .dignitary-role {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 10px;
  }
  
  .dignitary-name {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 5px;
  }
  
  .dignitary-designation {
    font-size: 1rem;
    color: #E9D8FD;
  }
  
  .corner-decor {
    position: absolute;
    width: 100px;
    height: 100px;
    fill: white;
    opacity: 0.2;
  }
  
  .top-left {
    top: 0;
    left: 0;
  }
  
  .top-right {
    top: 0;
    right: 0;
    transform: rotate(90deg);
  }
  
  .bottom-left {
    bottom: 0;
    left: 0;
    transform: rotate(-90deg);
  }
  
  .bottom-right {
    bottom: 0;
    right: 0;
    transform: rotate(180deg);
  }
  
  .corner-decor::before {
    content: '';
    display: block;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="currentColor"%3E%3Cpath d="M0,0 Q50,50 0,100 Q50,50 100,100 Q50,50 100,0 Q50,50 0,0 Z"/%3E%3Ccircle cx="50" cy="50" r="15"/%3E%3C/svg%3E');
    width: 100%;
    height: 100%;
  }
  

/* Cheif Guest */

.cheif-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cheif-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius:80rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    text-align: center;
    height: 320px;
    width: 320px;
}

.cheif-card:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.cheif-image-container {
    position: relative;
    margin-bottom: 1.5rem;
    width: 200px; /* Set width for the image */
    height: 200px; /* Set height for the image */
    margin-left: auto;
    margin-right: auto;
}

.cheif-image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, #facc15, #fb923c);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}
.cheif-image {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 10;
    transition: transform 0.3s;
}


.cheif-image-container {
    position: relative;
    margin-bottom: 1.5rem;
    width: 120px; /* Set width for the image */
    height: 120px; /* Set height for the image */
    margin-left: auto;
    margin-right: auto;
}

/* Volume Editors */
.editors-section {
    padding: 6rem 1rem;
    background: linear-gradient(to top right, #3b3be8, #e0c7ff, #ffffff);
    position: relative;
}

.editor-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.editors-title {
    font-size: 2.5rem; /* Tailwind's text-4xl */
    font-weight: bold;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(to right, #dba2f0, #d000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



/* Speakers */
.speakers-section {
    padding: 6rem 1rem;
    background: linear-gradient(to top right, #ffffff, #e0c7ff, #3b82f6);
    position: relative;
}

.speaker-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.speakers-title {
    font-size: 2.5rem; /* Tailwind's text-4xl */
    font-weight: bold;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(to right, #3b82f6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3rem; /* Tailwind's gap-12 */
}

.speaker-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    text-align: center;
}

.speaker-card:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.speaker-image-container {
    position: relative;
    margin-bottom: 1.5rem;
    width: 140px; /* Set width for the image */
    height: 150px; /* Set height for the image */
    margin-left: auto;
    margin-right: auto;
}

.speaker-image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, #facc15, #fb923c);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.speaker-image {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 10;
    transition: transform 0.3s;
}

.speaker-name {
    font-size: 1.5rem; /* Tailwind's text-2xl */
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #7c3aed; /* Tailwind's text-purple-500 */
}

.speaker-role {
    color: #000; /* Tailwind's text-black */
}

.view-all-button-container {
    text-align: center;
    margin-top: 3rem;
}

.view-all-button {
    padding: 0.75rem 1.5rem;
    border: 2px solid #7c3aed; /* Tailwind's border-purple-500 */
    color: #7c3aed; /* Tailwind's text-purple-500 */
    background: white;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.view-all-button:hover {
    background: #7c3aed; /* Tailwind's bg-purple-500 */
    color: white; /* Tailwind's text-white */
}

.chevron-right {
    margin-left: 0.5rem; /* Adjust spacing */
}
.chevron-left {
    margin-right: 0.5rem; /* Adjust spacing */
}


@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* all speaker */
.hidden{
    display: none;
}
/* ImpDates */
.important-dates-section {
    padding: 6rem 1rem; /* py-24 px-4 */
    background: linear-gradient(to bottom right, #3c34d7, #a553e9); /* bg-gradient-to-br from-indigo-900 to-purple-900 */
    position: relative;
    overflow: hidden;
}

.impdates-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.important-dates-title {
    font-size: 2.25rem; /* text-4xl */
    font-weight: bold;
    margin-bottom: 4rem; /* mb-16 */
    background-clip: text;
    color: transparent;
    background-image: linear-gradient(to right, #033077, #ffffff); /* from-blue-400 to-purple-500 */
}

.important-dates-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Single column for small screens */
    gap: 3rem; /* gap-12 */
}

@media (min-width: 768px) {
    .important-dates-grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns for larger screens */
    }
}

.important-dates-card {
    background: rgba(255, 255, 255, 0.1); /* bg-white/10 */
    backdrop-filter: blur(10px); /* backdrop-blur-md */
    padding: 2rem; /* p-8 */
    border-radius: 1rem; /* rounded-xl */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* shadow-lg */
    transition: all 0.3s ease; /* transition-all duration-300 */
}

.important-dates-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3); /* hover:shadow-2xl */
}

.important-dates-subtitle {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 600; /* font-semibold */
    margin-bottom: 1.5rem; /* mb-6 */
    color: #fbbf24; /* text-yellow-400 */
}

.important-dates-list {
    list-style-type: none; /* Remove default list styles */
    padding: 0; /* Remove default padding */
}

.important-dates-item {
    display: flex;
    align-items: flex-start; /* items-start */
    margin-bottom: 1rem; /* space-y-4 */
}

.icon {
    height: 1.5rem; /* h-6 */
    width: 1.5rem; /* w-6 */
    margin-right: 1rem; /* mr-4 */
    color: #4f46e5; /* text-indigo-400 */
}

.important-dates-item-title {
    font-weight: 500; /* font-medium */
}

.important-dates-item-date {
    color: #d1d5db; /* text-gray-300 */
}

.highlight-impDate {
    background: linear-gradient(to right, yellow, orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-red {
    color: #ffffff; /* text-red-300 */
}

.bold {
    font-weight: bolder; /* font-bold */
    font-size: 1.25rem; /* text-xl */
}
.semibold{
    font-weight: bold;
    font-size: 1rem;
}

.important-dates-note {
    margin-top: 8.5rem; /* mt-6 */
    padding: 1rem; /* p-4 */
    background: rgba(255, 213, 0, 0.1); /* bg-yellow-400/10 */
    border-radius: 0.5rem; /* rounded-lg */
}

.note-title {
    font-weight: 600; /* font-semibold */
    color: #fbbf24; /* text-yellow-400 */
    margin-bottom: 0.5rem; /* mb-2 */
}

.note-list {
    list-style-type: disc; /* list-disc */
    padding-left: 1.5rem; /* list-inside */
    font-size: 1rem; /* text-sm */
    color: #d1d5db; /* text-gray-300 */
}

.important-dates-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(147, 51, 234, 0.2), transparent); /* bg-gradient-to-l from-purple-500/20 to-transparent */
    transform: skewX(12deg); /* transform skew-x-12 */
}

/* Guidelines */

.guidelines-section {
    padding: 6rem 1rem;
    background-color: white;
    overflow: hidden;
    position: relative;
}

.guideline-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.guidelines-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 4rem;
    background-clip: text;
    color: transparent;
    background-image: linear-gradient(to right, #3b82f6, #6366f1);
}

.guidelines-content {
    background: linear-gradient(to top, white, #bfdbfe);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.guidelines-content:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.guidelines-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #f97316;
}

.guidelines-text {
    color: #1d4ed8;
    margin-bottom: 1rem;
}

.guidelines-list {
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: 1rem;
    color: #1d4ed8;
}

.guidelines-background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 16rem;
    background: linear-gradient(to top, rgba(37, 99, 235, 0.5), transparent);
}

/* Contact */
.contact-section {
    padding: 6rem 1rem; /* py-24 px-4 */
    position: relative;
    overflow: hidden;
}

.contactcontainer {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.contact-title {
    font-size: 2.25rem; /* text-4xl */
    font-weight: bold;
    margin-bottom: 2rem; /* mb-8 */
    background-clip: text;
    color: transparent;
    background-image: linear-gradient(to right, #fbbf24, #f97316); /* from-yellow-400 to-orange-500 */
}

.contact-subtitle {
    font-size: 1.25rem; /* text-xl */
    color: #ffffff; /* text-gray-300 */
    margin-bottom: 3rem; /* mb-12 */
    max-width: 640px; /* max-w-2xl */
    margin-left: auto;
    margin-right: auto;
}
.cards2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
    margin: auto auto;
    text-align: center;
}

.card2 {
    background: rgba(39, 39, 40, 0.063);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s;
}

.card2:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.impLinks{
    display: flex;
    flex-direction: column;
    gap: 5px;
    list-style-type: none;
    padding: 0;
}
.impLink {
    /* margin: 0 1rem; */
    text-decoration: underline;
    color: #f1daa2; /* Tailwind's text-gray-800 */
}

.contact-background {
    position: absolute;
    inset: 0;
    /* background-image: linear-gradient(to right, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2)); */
    background: linear-gradient(to top , rgb(80, 80, 226), rgb(178, 101, 217), rgb(181, 178, 194), transparent);

}

@keyframes gradient-xy {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10%, 10%);
    }
    100% {
        transform: translate(0, 0);
    }
}


/* Footer */

.footer-section {
    background-color: #1e3a8a; /* bg-blue-900 */
    padding: 3rem 1rem; /* py-12 px-4 */
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}
.footer-content {
    display: flex;
    flex-direction: column; /* Stack elements on smaller screens */
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row; /* Arrange side by side on larger screens */
    }
}

.footer-left, .footer-right {
    flex: 1; /* Allow equal width for both sections */
    margin-right: 1rem; /* Add spacing between columns */
}

.footer-left {
    margin-right: 0; /* No margin on the last item */
}

.footer-title {
    font-size: 1.875rem; /* text-3xl */
    font-weight: bold;
    margin-bottom: 0.5rem;
    background-clip: text;
    color: transparent;
    background-image: linear-gradient(to right, #fbbf24, #f97316); /* from-yellow-400 to-orange-500 */
}

.footer-subtitle {
    font-size: 0.875rem; /* text-sm */
    color: #9ca3af; /* text-gray-400 */
    margin-bottom: 1rem;
}

.footer-location, .footer-phone, .footer-email {
    margin-top: 1rem; /* Spacing for each section */
}

.footer-text {
    font-size: 0.875rem; /* text-sm */
    color: #d1d5db; /* text-gray-300 */
    margin-bottom: 0.5rem;
}

.footer-address {
    text-align: right; /* lg:text-right */
}

.footer-address-title {
    font-size: 1.25rem; /* text-xl */
    font-weight: 600; /* font-semibold */
    margin-bottom: 1rem;
    color: #fbbf24; /* text-yellow-400 */
}

.footer-bottom {
    margin-top: 2rem; /* mt-8 */
    padding-top: 2rem; /* pt-8 */
    border-top: 1px solid #1e40af; /* border-blue-800 */
    text-align: center; /* text-center */
    font-size: 0.875rem; /* text-sm */
    color: #9ca3af; /* text-gray-400 */
}

.footer-dev {
    margin-top: 0.5rem;
}