body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #181a1d;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;
}

p {
    margin: 5px 0; /* Reduces the vertical margin to 5px */
    color: #e6e7e8;
    padding: 0;    /* Removes any default padding */
}



.header {
    display: flex;
    flex-direction: column; /* Stack items on smaller screens */
    align-items: center;
    text-align: center;
    background-color: #111114;
    color: #e6e7e8;
    padding: 10px;
    gap: 10px;
}

@media (min-width: 768px) { /* For larger screens */
    .header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90%;
}

.title-container img {
    width: 100px; /* Adjust logo size */
    height: auto;
}

h1, h2, h3 {
    font-size: 1.2em; /* Adjust text size for mobile */
    color: #e6e7e8;
}

@media (min-width: 768px) { /* Adjust text size for larger screens */
    h1 { font-size: 2em; }
    h2 { font-size: 1.5em; }
    h3 { font-size: 1.2em; }
}



/* Dashboard Section */
 .dashboard {
    background-color: #25282e;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    width: 100%;
    position: sticky; 
    top: 0; 
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.5s ease; 
}

.dashboard a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 16px;
}

.dashboard a:hover {
    background-color: #444;
    border-radius: 5px;
} 



/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    color: black;
    min-width: 180px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 1000;
}

.dropdown-menu a {
    color: black;
    padding: 10px;
    display: block;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    padding: 10px;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .dashboard {
        flex-direction: column;
        align-items: flex-start;
        padding: 0px;
        
        
    }

    .dashboard a {
        display: none;
        width: 100%;
        text-align: left;
    }

    .dropdown-menu {
        position: relative;
        box-shadow: none;
        background: #222;
    }

    .dropdown-menu a {
        color: white;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .dashboard.active a {
        display: block;
    }
}



.banner-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 300px; /* Adjust as needed */
    position: relative;
    background: linear-gradient(to left, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.6) 30%,rgba(0, 0, 0, 0.7) 50%, #181a1d 80%), 
                url('images/banner2collab.png') center/cover;
    color: white;
    padding: 0px;
}
.banner-section-2 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 300px; /* Adjust as needed */
    position: relative;
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 40%, #181a1d 90%), 
                url('images/icmaraibanner.png') center/cover;
    color: white;
    padding: 20px;
}

.banner-text {
    width: 70%;
    z-index: 1;
    padding: 30px;
}

.banner-text h1 {
    font-size: 2em;
    margin: 0;
}

.banner-text p {
    font-size: 1.2em;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .banner-section {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 40px 0px;
    }
    .banner-text {
        max-width: 100%;
    }
}



/* Content Section */
.content {
    padding: 20px;
    color: #ffffff;
    margin-top: 120px; /* Space to avoid overlap with header */
}

.frontimg {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    background-color: transparent;
    margin: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.image-box {
    flex: 0 0 40%; /* Each box takes up 20% of the screen width */
    text-align: center;
    padding: 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: transparent;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* Images Styling */
.image-box img {
    width: 100%; /* Images will fit inside their container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Text or Content Styling */
.image-box p {
    font-size: 14px;
    color: #555;
    margin: 0;
    padding: 0;
    word-wrap: break-word;
}




.sponsors-container {
    padding: 30px;
    text-align: center;
    
}

.sponsors-title {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 30px;
}

.sponsors-grid {
    display: grid;
    gap: 20px;
    justify-items: center;
}

.first-row {
    grid-template-columns: repeat(3, 1fr);
}

.second-row {
    grid-template-columns: repeat(2, 1fr);
}

.third-row {
    grid-template-columns: 1fr;
}

.sponsor-item {
    background-color: #2196f3;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 80px;
}

.sponsor-item h4 {
    font-size: 1.25em;
    margin-bottom: 15px;
}

.sponsor-item img {
    max-width: 150px; /* Limit image size */
    margin: 10px 0;
}

.sponsor-logos {
    display: flex;
    gap: 20px;
}

.sponsor-logos img {
    max-width: 100px;
}

.sponsor-item:hover {
    transform: scale(1.05);
    background-color: #1976d2;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.first-row, .second-row, .third-row {
    margin-bottom: 50px; 
}







/* Gallery Container */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Responsive grid */
    gap: 12px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

/* Image Box */
.gallery-item {
    background: #25282e; /* Blackish Background */
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.gallery-caption {
    margin: 10px 0 0;
    font-size: 14px;
    color: #ddd; /* Light Gray Text */
}

/* Hover Effects */
.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(210, 210, 210, 0.2);
}

.gallery-item:hover img {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* 1-2 images per row */
    }
}





 







.quicklinks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    background-color: #171717;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.quikits {
    flex: 1 1 calc(30% - 15px); /* Ensure three columns on larger screens */
    /* min-width: calc(80%); */
    max-width: calc(30% - 15px);
    background-color: #222;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quikits:hover {
    transform: scale(1.05); /* Slight zoom-in effect on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Logo Item Styling */
.logoitem img {
    width: 80px; /* Small, consistent logo size */
    height: auto;
    margin: 10px 0;
    border-radius: 50%; /* Rounded logos for uniformity */
    box-shadow: 0 2px 4px rgba(183, 183, 183, 0.1);
}

.logoitem h2 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.logoitem h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.logoitem p {
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.4;
}

/* Quick Links List */
.quicklinks-list, .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.quicklinks-list li, .contact-list li {
    margin: 5px 0;
    color: #ffffff;

}

.quicklinks-list li a, .contact-list a {
    color: #459cf9;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.quicklinks-list li a:hover, .contact-list a:hover {
    color: #0056b3;
}



@media (max-width: 768px) {
    .quicklinks {
        flex-direction: column;
        align-items: center;
    }
    .quikits{
        min-width: 85%;
    }
}


/* Dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown menu */
.dropdown-menu {
    display: none; /* Hidden by default */
    position: absolute;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 200px;
}

/* Links inside the dropdown */
.dropdown-menu a {
    display: block;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background-color: #f0f0f0;
    color: #000;
}

/* Show dropdown menu when toggled */
.dropdown.show .dropdown-menu {
    display: block;
}








.track-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Responsive grid */
    gap: 20px;
    padding: 20px;
}

.track-box {
    background-color: #2196f3; /* Default color */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: white;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.track-box h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: bold;
}

.track-box ul {
    list-style-type: none;
    padding-left: 0;
}

.track-box ul li {
    font-size: 1em;
    margin-bottom: 8px;
}

.track-box:hover {
    transform: scale(1.05); /* Slight scale effect on hover */
    background-color: #1976d2; /* Darker shade on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.track-box:hover h3 {
    text-decoration: underline;
}

.track-box.track-1 {
    background-color: #1976d2;
}

.track-box.track-2 {
    background-color: #4caf50;
}

.track-box.track-3 {
    background-color: #f44336;
}

.track-box.track-4 {
    background-color: #ff9800;
}

.track-box.track-5 {
    background-color: #9c27b0;
}

.track-box.track-6 {
    background-color: #00bcd4;
}

.track-box.track-7 {
    background-color: #3f51b5;
}

.track-box.track-8 {
    background-color: #8bc34a;
}

.track-box.track-9 {
    background-color: #e91e63;
}

.track-box.track-10 {
    background-color: #607d8b;
}





/* Dynamic Container */
.dynamic-container {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next row */
    justify-content: space-around;
    gap: 20px; /* Space between boxes */
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    background-color: #25282e;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Info Box */
.info-box {
    flex: 0 1 calc(20% - 20px); /* Ensure 5 boxes fit in a row */
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #cfd2d1;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
    transform: scale(1.05); /* Subtle zoom effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Circle Image */
.circle-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crop the image to fit the circle */
}

/* Info Text */
.info-text {
    text-align: center;
}

.info-text h3 {
    font-size: 0.9rem;
    color: #000000;
    margin: 5px 0;
}

.info-text p {
    font-size: 0.8rem;
    color: #000000;
    margin: 0;
}


/* General Styles */
.chair-container {
    display: flex;
    justify-content: space-evenly;  
    align-items: center;  
    max-width: 100%;    
    height: 30vh;            
    padding: 10px; 
}          

.chairs-box {
    display: flex;
    flex-direction: column;   
    align-items: center;      
    text-align: center;       
    padding: 20px;            
    border: 1px solid #ccc; 
    margin: 10px; 
    border-radius: 10px;      
    background-color: #f9f9f9; 
    max-width: 90%;           
}

/* Image styles */
.chair-image {
    margin-bottom: 15px;      /* Space between image and text */
}

.chair-image img {
    max-width: 100%;          /* Makes the image responsive */
    height: 15vh;             /* Maintains aspect ratio */
    border-radius: 100%;      
}

.chair-text h3, .chair-text p {
    margin: 0;
    color: #000;
    padding: 5;
}
@media (max-width: 600px) 
{
    .chair-container {
        max-width:100%;
        padding: 15px;        /* More padding on smaller screens */
    }
    
    .chairs-box {
        padding: 15px;        /* Reduced padding for smaller screens */
        max-width: 100%;      /* Let the box take up full width */
    }

    .chair-image img {
        width: 80%;           /* Make the image smaller for smaller screens */
        height: auto;
    }

    .chair-text h3 {
        font-size: 1.2em;
        color: black;      
    }

    .chair-text p {
        font-size: 0.9em; 
        color: black;     
    }
}


/* registration page table contents and table */
.registration-section {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    background: #212121;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}
.registration-section h2, 
.registration-section h3 {
    color: #e6e7e8;
    text-align: center;
    margin-top: 20px;
}

.registration-section p {
    font-size: 1rem;
    line-height: 1.5;
    color: #e6e7e8;
    margin: 10px 0;
    text-align: justify;
}

.table-container {
    width: 100%;
    overflow-x: auto; 
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background: white;
    min-width: 500px; 
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 10px;
    text-align: center;
    font-size: 1rem;
}

th {
    background: #444;
    color: white;
}

td {
    background: #fff;
}

.payment-details {
    background: #eee;
    padding: 10px;
    border-radius: 5px;
    margin-top: 15px;
}

.payment-details p {
    font-weight: bold;
    color: #222;
}

@media (max-width: 768px) {
    .registration-section {
        padding: 15px;
    }

    table, th, td {
        font-size: 14px;
    }

    .table-container {
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .registration-section {
        padding: 10px;
    }

    h2, h3 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.9rem;
    }

    th, td {
        font-size: 12px;
        padding: 8px;
    }
}


.schedule-section {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    background: #212121;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    text-align: center;
}

/* Header section */
.schedule-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 15px;
}

.schedule-header img {
    height: 50px;
}

h2 {
    color: #e6e7e8;
    margin: 10px 0;
}

/* Table Styling */
.table-container {
    width: 100%;
    overflow-x: auto; 
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background: #000;
    min-width: 500px; 
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 10px;
    text-align: center;
    font-size: 1rem;
}

th {
    background: #444;
    color: white;
}

td {
    background: #fff;
}

@media (max-width: 768px) {
    .schedule-section {
        padding: 15px;
    }

    table, th, td {
        font-size: 14px;
    }

    .table-container {
        overflow-x: auto; 
    }
}

@media (max-width: 480px) {
    .schedule-section {
        padding: 10px;
    }

    h2 {
        font-size: 1.2rem;
    }

    th, td {
        font-size: 12px;
        padding: 8px;
    }

    .schedule-header img {
        height: 40px;
    }
}



.animated-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, #212121, #2c2c2c);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    max-width: 900px;
    margin: 50px auto;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animated-section img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.4);
}

.animated-content {
    flex: 1;
    padding-left: 20px;
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-weight: bold;
}

p {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.8;
}

.animated-section:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .animated-section {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .animated-section img {
        width: 150px;
        margin-bottom: 10px;
    }

    .animated-content {
        padding-left: 0;
    }
}




/* faq section animations */
.faq-container {
    max-width: 600px;
    margin-right:auto;
    margin-left: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  .faq-item {
    border-bottom: 1px solid #e0e0e0;
  }
  .faq-question {
    padding: 15px;
    background-color: #212121;
    color: #e6e7e8;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .faq-question:hover {
    background-color: #5e91cc;
  }
  .faq-answer {
    padding: 15px;
    background-color: #f1f1f1;
    display: none;
    font-size: 14px;
    line-height: 1.6;
  }
  .icon {
    transition: transform 0.3s;
  }
  .expanded .icon {
    transform: rotate(180deg);
  }