/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5;
    color: #333;
}

/* Header Styling */
header {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
}

.banner-overlay h1 {
    font-size: 50px;
    font-weight: 700;
}

.banner-overlay p {
    font-size: 20px;
    font-weight: 300;
}

/* Description Section */
.description {
    background-color: #fff;
    padding: 40px;
    text-align: center;
    margin-top: -20px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.container h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.container p {
    font-size: 18px;
    line-height: 1.6;
    color: #7f8c8d;
}

/* Main Layout for Sidebar and Content */
.main-layout {
    display: flex;
    flex-direction: row;
    margin: 20px;
}

.sidebar {
    width: 250px;
    background-color: #3498db;
    color: white;
    padding-top: 20px;
    border-radius: 10px;
    margin-right: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin: 15px 0;
}

.sidebar ul li a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    display: block;
    font-size: 18px;
    transition: background-color 0.3s, color 0.3s;
}

.sidebar ul li a:hover {
    background-color: #2980b9;
}

.sidebar ul li a.active {
    background-color: #2980b9;
    color: #f39c12;
}

/* Content Section */
.content {
    flex-grow: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.info-section {
    display: none;
    margin-bottom: 20px;
}

.info-section h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.info-section p {
    font-size: 18px;
    color: #7f8c8d;
}

/* Speakers Section */
.speakers-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 speakers per row */
    gap: 20px;
    margin-top: 20px;
}

.speaker-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.speaker-card:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}


.speaker-card img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.speaker-card h4 {
    font-size: 20px;
    color: #2c3e50;
}

.speaker-card p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .main-layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .content {
        padding: 15px;
    }

    header {
        height: 250px;
    }

    .banner-overlay h1 {
        font-size: 32px;
    }

    .banner-overlay p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .banner-overlay h1 {
        font-size: 24px;
    }

    .banner-overlay p {
        font-size: 16px;
    }

    .sidebar ul li a {
        font-size: 16px;
    }
}



/* Header Styling */
header {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 10px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    border-radius: 10px; /* Optional: rounded corners */
}

.banner-overlay h1 {
    font-size: 70px;  /* Increased font size */
    font-weight: 700;
    text-shadow: 
        4px 4px 6px rgba(0, 0, 0, 0.6),   /* Main shadow */
        0px 0px 15px rgba(0, 0, 0, 0.5);  /* Soft glow around the text */
    margin-bottom: 10px;  /* Space between heading and paragraph */
}

.banner-overlay p {
    font-size: 30px;  /* Increased font size */
    font-weight: 300;
    text-shadow: 
        3px 3px 5px rgba(0, 0, 0, 0.6),    /* Main shadow */
        0px 0px 10px rgba(0, 0, 0, 0.5);   /* Soft glow around the text */
}


/* Themes Section */
#theme {
    background-color: #fff;
    padding: 40px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#theme h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

#theme ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(1, 2fr); /* 3 themes per row */
    gap: 10px;
    margin: 0;
    padding: 0;
}

#theme ul li {
    background-color: #ecf0f1;
    padding: 5px;
    border-radius: 10px;
    text-align: left;
    font-size: 25px;
    color: #2c3e50;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#theme ul li:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

#theme ul li::before {
    /*content: '•'; /* Bullet point */
    font-size: 40px;
    color: #3498db;
    display: block;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    #theme ul {
        grid-template-columns: repeat(2, 1fr); /* 2 themes per row on smaller screens */
    }
}

@media (max-width: 480px) {
    #theme ul {
        grid-template-columns: 1fr; /* 1 theme per row on very small screens */
    }
}


@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        display: block;
    }
    .content {
        margin-left: 0;
    }
}



/*New Addition of COMMITTEE */
/* Event Leadership Section *//* Committees Section */
/* Committees Section */
#committee .committee-group {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap */
    gap: 15px; /* Space between items */
    justify-content: center; /* Center the content */
}

/* Individual Committee Member */
.committee-card {
    width: 21%; /* Ensure 4 cards fit in one row */
    text-align: center;
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 15px;
}

.committee-card img {
    width: 100%;
    height: 65%;
    border-radius: 50%;
    margin-bottom: 1px;
    max-width: 250px;
}

.committee-card p {
    font-size: 14px;
    color: #555;
}

.committee-card strong {
    font-size: 14.5px;
    color: #333;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .committee-card {
        width: 45%; /* 2 cards per row for medium screens */
    }
}

@media (max-width: 768px) {
    .committee-card {
        width: 45%; /* 2 cards per row for medium screens */
    }
}

@media (max-width: 480px) {
    .committee-card {
        width: 90%; /* 1 card per row on smaller screens */
    }
}

/* Styling for the Committee Members List */
.committee-list {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    max-width: 800px; /* Ensure the list doesn't stretch too much */
    margin: 0 auto;
}

.committee-list h4 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.committee-list ul {
    list-style-type: none; /* Remove default bullets */
    padding: 0;
    margin: 0;
}

.committee-list ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    padding-left: 10px;
    position: relative;
}

.committee-list ul li::before {
    content: '•';
    color: #007BFF; /* Blue circle for each list item */
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.committee-list ul li:last-child {
    margin-bottom: 0; /* Remove margin from the last item */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .committee-list {
        width: 90%; /* Allow it to be full width on smaller screens */
    }
}
/* Styling for Registration Section */
#registration {
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Flexbox Layout for Text and Image */
.registration-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

/* Styling for the Text Section */
.registration-text {
    flex: 1;
}

/* Styling for the Image Section */
.registration-image {
    flex: 0 0 40%;
    max-width: 40%;  /* Limiting the width of the image */
}

/* Styling for the Registration Fee List */
.registration-fee-list {
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.registration-fee-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.registration-fee-list ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
}

.registration-fee-list ul li:last-child {
    margin-bottom: 0; /* Remove margin from the last item */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .registration-content {
        flex-direction: column;
        text-align: center;
    }

    .registration-image {
        max-width: 80%;
        margin-top: 20px;
    }
}
/* Section Styles */
#abstract-accommodation {
    padding: 30px;
    background-color: #f4f4f9;
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Section Title */
.section-title {
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Header for Each Section */
.section-header h4 {
    font-size: 20px;
    color: #2980b9;
    font-weight: 500;
    margin-bottom: 15px;
}

/* Description Style */
.section-description {
    font-size: 16px;
    line-height: 1.8;
    color: #7f8c8d;
    text-align: justify;
    margin-bottom: 20px;
}

/* Link Styling */
.section-description a {
    color: #2980b9;
    text-decoration: none;
    font-weight: 600;
}

.section-description a:hover {
    text-decoration: underline;
}

/* Accommodation List */
.accommodation-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.accommodation-list li {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.accommodation-list li .icon {
    margin-right: 10px;
    font-size: 20px;
    color: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 22px;
    }

    .section-description {
        font-size: 14px;
    }

    .accommodation-list li {
        font-size: 14px;
    }
}
/* Table Styling */
.registration-fee-table {
    width: 100%;
    padding: 20px;
    background-color: #f4f4f9;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.registration-fee-table table {
    width: 100%;
    border-collapse: collapse;
}

.registration-fee-table th, .registration-fee-table td {
    padding: 12px 18px;
    text-align: left;
    font-size: 16px;
    color: #2c3e50;
}

.registration-fee-table th {
    background-color: #2980b9;
    color: white;
    font-weight: bold;
}

.registration-fee-table td {
    background-color: #ffffff;
    color: #7f8c8d;
    border-bottom: 1px solid #ddd;
}

.registration-fee-table tr:hover {
    background-color: #ecf0f1;
}

.registration-fee-table tbody tr:last-child td {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .registration-fee-table th, .registration-fee-table td {
        padding: 10px;
        font-size: 14px;
    }
}
/* Section title for consistency */
.section-title {
    font-size: 2.5rem;
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Industry Partners List */
#industry-partners {
    background-color: #f4f6f8; /* Light background color */
    padding: 50px 0;
}

.partner-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 4 items per row on large screens */
    gap: 30px;
    justify-items: center;
}

.partner-item {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-8px); /* Slight lift effect */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

.partner-logo {
    width: 220px; /* Adjust size for consistency */
    height: auto;
    margin-bottom: 10px;
}

.partner-name {
    font-size: 1.2rem;
    color: #34495e;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .partner-list {
        grid-template-columns: repeat(2, 1fr); /* 2 items per row on tablets */
    }

    .partner-name {
        font-size: 1rem; /* Adjust font size for mobile */
    }
}

@media (max-width: 480px) {
    .partner-list {
        grid-template-columns: 1fr; /* 1 item per row on small screens */
    }

    .partner-name {
        font-size: 0.9rem; /* Slightly smaller font on very small screens */
    }

    .partner-logo {
        width: 80px; /* Slightly smaller logo size */
    }
}
/* Contact Section */
#contact {
    background-color: #f7f7f7;  /* Light background */
    padding: 40px 20px;
    border-radius: 8px;
    margin-top: 40px;
}

#contact h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    justify-content: space-evenly;  /* Spread cards across the container */
    flex-wrap: wrap;
    gap: 30px;  /* Increased gap between cards */
}

.contact-card {
    background-color: #ffffff;
    padding: 20px;
    width: 450px;  /* Increased width of the cards */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-card h4 {
    font-size: 1.8rem;
    color: #34495e;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-card p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.phone {
    font-weight: bold;
    color: #3498db;
    transition: color 0.3s ease;
}

/* Hover effect for contact cards */
.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.contact-card:hover .phone {
    color: #e74c3c;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #contact {
        padding: 30px 15px;
    }

    #contact h3 {
        font-size: 2rem;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        padding: 0 10px;  /* Added padding to prevent the cards from touching the sides */
    }

    .contact-card {
        width: 90%;  /* Cards will take up more width on mobile */
        margin-bottom: 20px;
    }

    .contact-card h4 {
        font-size: 1.6rem;
    }

    .contact-card p {
        font-size: 1rem;
    }
}
/* Venue Section */
#venue {
    background-color: #f3f4f6;  /* Light grey background */
    padding: 50px 20px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
}

#venue h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

#venue p {
    font-size: 1.3rem;
    color: #34495e;
    margin-bottom: 20px;
    line-height: 1.6;
}

#venue p span {
    font-weight: bold;
    color: #3498db;  /* Blue color for specific details like venue name */
}

/* Google Map Embed */
#venue .map-container {
    margin-top: 30px;
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 8px;
    overflow: hidden;
}

/* Hover effect for venue text */
#venue p:hover {
    color: #e74c3c;
    transition: color 0.3s ease;
}

