/* General Styles */
*{
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Arial', sans-serif;
    background-color: #fff;
}

/* Hero and Navbar Shared Background */
.hero-container {
    position: relative; 
    background: url('./imgs/cover-hero2.jpeg') center/cover no-repeat;
}

.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1; 
}

.hero-container > * {
    position: relative; 
    z-index: 2;
}


.navbar {
    background: transparent;
    padding: 10px 20px;
    display: flex;
}

.navbar-title {
    color: white;
    font-weight: bold;
    font-size: 1.5rem; 
    margin-left: 5px;
}

.img-logo {
    width: 40px;
}

.navbar ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    
}

.navbar ul li {
    margin-right: 20px;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 5px 10px;
    transition: background-color 0.3s, border-color 0.3s;
}

.navbar ul li a {
    color: white; /* White text color */
    text-decoration: none;
    display: block;
}

.navbar ul li:hover {
    background-color: white;
    border-color: #8e8e8e;
}

.navbar ul li a:hover {
    color: #000;
    cursor: pointer;
}

.line{
    width: 100%;
    height: 0.5px;
    background-color: #fff;
    margin-bottom: 25px;
    margin-top: 15px;
}

/* Hero Section */
/* General Hero Section Styles */
.hero {
    height: calc(100vh - 60px); /* Adjust height to account for navbar */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px; /* Add padding for smaller screens */
    background: url('background-image.jpg') no-repeat center center / cover; 
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 1); /* Add shadow effect */
    margin-bottom: 10px;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1); /* Add shadow effect */
}

.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column; /* Stack elements vertically */
        height: auto; /* Allow height to adjust naturally */
        padding: 30px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-primary {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .btn-primary {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* end Hero Section */

/* columes3 */
/* General Row Styling */
/* General Styling */
.row {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap; /* Ensure wrapping for all screen sizes */
}

.custom-card {
    margin: 15px;
    flex: 1 1 calc(25% - 30px); /* 4 cards per row with gap */
    max-width: calc(25% - 30px);
    text-align: center;
}

.partners-card {
    margin-top: 30px;
    border: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    background: white;
    min-height: 250px;
}

.partners-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partners-card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.logo {
    max-width: 60px;
    height: auto; /* Maintain aspect ratio */
    margin-top: 10px;
}

.partners-card-text {
    margin-top: 10px;
    font-size: 1rem;
}

/* Strategic Partners Styling */
.strategic-partners .partners-card {
    width: 60%; 
    margin: 0 auto;
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Ensures wrapping on smaller screens */
    margin-top: 20px;
}

.logo-partner {
    max-width: 100px;
    height: auto; /* Maintain aspect ratio */
}

/* Responsive Design */
@media (max-width: 992px) {
    .custom-card {
        flex: 1 1 calc(33.33% - 30px); /* 3 cards per row */
        max-width: calc(33.33% - 30px);
    }

    .strategic-partners .partners-card {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .custom-card {
        flex: 1 1 calc(50% - 20px); /* 2 cards per row */
        max-width: calc(50% - 20px);
    }

    .strategic-partners .partners-card {
        width: 90%;
    }

    .partners-logos {
        gap: 10px; /* Reduce gap for smaller screens */
    }
}

@media (max-width: 576px) {
    .custom-card {
        flex: 1 1 100%; /* Stack all cards */
        max-width: 100%;
    }

    .partners-card {
        padding: 10px; /* Reduce padding for smaller screens */
    }

    .partners-logos {
        gap: 5px;
    }

    .logo-partner {
        max-width: 80px;
    }
}





/* about */

.container .p1-about{
    font-size: 20px;
    font-weight: bold;
}

/* end about */

/* slider */
/* General Styling */
#aboutCarouselSection {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

#aboutCarousel {
    width: 70%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); 
}

.carousel-inner img {
    border-radius: 10px; 
    object-fit: cover; 
}

/* Carousel Controls Styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5); 
    border-radius: 50%;
    padding: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    #aboutCarousel {
        width: 90%; 
    }
}

@media (max-width: 768px) {
    #aboutCarousel {
        width: 100%; 
    }
}

/* end slider */


/* speakers */
.card{
    margin-top: 2rem;
    transition: all 0.5s;
    overflow: hidden;
    max-height: 540px;
    min-height: 575px;
    border: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    background: white;
    
}
.card-body{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-text{
    font-size: 12px;
    align-items: center;
}
.card img{
    height: 300px;
    width: 100%;
    transition: all 0.5s;
    margin-bottom: 30px;
}
.card img:hover{
    scale: 1.1;
}
.timers .sessions{
    margin-top: 50px;
    margin-bottom: -10px;
    font-size: 20px;
    font-weight: bold;
}

/* end speakers */

/* agenda section */
.agenda-container {
    text-align: center;
    max-width: 800px;
    margin: auto;
  }
  
  h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .underline {
    width: 600px;
    height: 2px;
    background-color: #333;
    border: none;
    margin: 10px auto;
  }
  
  /* Table Styling */
  .agenda-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .agenda-table thead {
    background-color: #f5f5f5;
  }
  
  .agenda-table th, 
  .agenda-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #ddd;
  }
  
  .agenda-table th {
    font-weight: bold;
  }
  
  .agenda-table tbody tr {
    background-color: #fff;
    transition: all 0.3s ease;
  }
  
  .agenda-table tbody tr:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* Date Icon Styling */
  .date-icon {
    margin-right: 8px;
    color: #333;
  }
/* end agenda section*/
/* Section Spacing */


/* Footer Styles */
footer {
    background-color: gray;
    color: white;
    padding: 3.75rem 0;
    background-image: url('./imgs/footer-back.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-container {
    max-width: 75rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.875rem;
}

.footer-section {
    text-align: left;
}

.footer-section h3 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: black;
}

.footer-section p {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    color: #fff;
}

.footer-section .social-icons a {
    color: #fff;
    font-size: 0.875rem;
    margin-right: 0.625rem;
    margin-left: 0.625rem;
}

.footer-section2 h3{
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: black;
    margin-left: -100px;
}
.footer-section2 ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-left: -100px;
}

.footer-section2 ul li {
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 0.625rem;
}

.footer-section2 ul li a {
    color: #fff;
    text-decoration: none;
}

footer h4 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: black;
}

.footer-bottom {
    border-top: 1px solid black;
    opacity: 0.5;
    padding-top: 1.25rem;
    margin-top: 2.5rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 0.875rem;
    gap: 15.625rem;
}

.footer-bottom p {
    color: #fff;
}

.footer-bottom .footer-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 1.25rem;
}

/* Responsive Footer for Mobile Screens */
@media (max-width: 768px) {
    .footer-container {
        display: flex;
        flex-direction: column; 
    }

    .footer-section {
        text-align: center; 
    }
    .footer-section2 {
        text-align: center;
        margin-left: 100px; 
    }
    footer h4 {
        text-align: center; 
    }
    iframe {
        margin: 0 auto; 
        display: block;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

/* end footer */


