/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero-section {
background-image: url(../images/event/01.jpg);
background-size:cover;
background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;

}


/* The modal overlay (hidden by default) */
.modal-overlay {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
}

/* The modal content box */
.modal-content {
  background-color: #fefefe;
  margin: 10% auto; /* 10% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on your form */
  max-width: 600px; /* Max width */
  position: relative;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* The Close Button */
.modal-close {
  color: #aaa;
  position: absolute; /* Position relative to .modal-content */
  top: 10px;
  right: 25px;
  font-size: 28px;
  font-weight: bold;
}

.modal-close:hover,
.modal-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* This class will be added by JavaScript to show the modal */
.modal-overlay.show {
  display: block;
}



.event-home-bnr{
    background-image: url(../images/event/event-home-bnt.jpg);
    min-height: 620px;
}

.event-about-bnr{
    background-image: url(../images/event/event-about.jpg);
    min-height: 500px;
}

.event-service-bnr{
    background-image: url(../images/event/event-service.jpg);
    min-height: 500px;
}

.event-software-bnr{
    background-image: url(../images/event/event-software.jpg);
    min-height: 500px;
}


.event-bank-bnr{
    background-image: url(../images/event/event-bank.jpg);
    min-height: 500px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    color: white;
    animation: slideInLeft 1s ease-out;
}

.events-label {
    font-size: 30px;
    color: #22c55e;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    animation: fadeInUp 1.2s ease-out;
}

.hero-title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.5 ;
    margin-bottom: 20px;
    animation: fadeInUp 1.4s ease-out;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 50px;
    border: 4px solid #1e3f6d;
    animation: slideInRight 1s ease-out, float 3s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Level Up Section */
.level-up-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #1e293b;
    animation: fadeInUp 1s ease-out;
}

.level-up-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.level-up-text {
    flex: 2;
    animation: slideInLeft 1.2s ease-out;
}

.level-up-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1e293b;
}

.level-up-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #64748b;
    line-height: 1.7;
}

.level-up-image {
    flex: 1;
    animation: slideInRight 1.2s ease-out;
}

.profile-img {
    width: 100%;
    max-width: 250px;
    height: 250px;
    object-fit: cover;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.05);
}

/* What We Offer Section */
.what-we-offer-section {
    padding: 80px 0;
    background: #f8fafc;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 50px;
    animation: fadeInUp 1.2s ease-out;
}

.offer-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 750px;
    margin: 0 auto;
}

.offer-image {
    flex: 1;
    animation: slideInLeft 1.4s ease-out;
}

.offer-img {
    width: 100%;
    max-width: 350px;
    height: 250px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.software-logos {
    flex: 1;
    display: flex;
    flex-direction: column;
}


.logo {
    text-align: center;
}

.logo img {
    width: 250px;
}




.offer-description {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-top: 40px;
    animation: fadeInUp 1.8s ease-out;
}

/* Office Section */
.office-section {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.office-background {
    width: 100%;
    height: 100%;
    position: relative;
}

.office-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    animation: zoomIn 2s ease-out;
}

/* Why Join Section */
.why-join-section {
    padding: 80px 0;
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.benefit-card {
    background: #1e3f6d ;
    color: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.benefit-card:nth-child(1) { animation-delay: 0.2s; }
.benefit-card:nth-child(2) { animation-delay: 0.4s; }
.benefit-card:nth-child(3) { animation-delay: 0.6s; }
.benefit-card:nth-child(4) { animation-delay: 0.8s; }

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.3);
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.closing-text {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-top: 50px;
    animation: fadeInUp 2s ease-out;
}

/* CTA Section */
.cta-section {
background-color: #fff;
padding: 80px 0;
text-align: center;
color: white;
}

.cta-section .dark-bg{padding: 50px; background: linear-gradient(135deg, #1e3f6d 0%, #1e3f6d 100%);}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 10px;
    animation: fadeInUp 1.2s ease-out;
}

.cta-link {
    font-size: 1.3rem;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 20px;
    animation: fadeInUp 1.4s ease-out;
}

.cta-tagline {
    font-size: 1.1rem;
    margin-bottom: 30px;
    animation: fadeInUp 1.6s ease-out;
}

.apply-btn {
    background: #22c55e;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1.8s ease-out, pulse 2s infinite;
    text-decoration: none;
    border-radius: 50px;
}

.apply-btn:hover {
    background: #16a34a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
}


.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: none;
    border-radius: 50px;
    overflow: hidden;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #1a3c7c;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .cta-btn .arrow {
    background: #f8991d;
    color: white;
    padding: 12px 16px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    transition: background 0.3s ease;
  }
  
  .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .cta-btn:hover .arrow {
    background: #e07d00;
  }

  .cta-btn span{padding: 0 20px;}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-img {
        width: 300px;
        height: 250px;
    }
    
    .level-up-content,
    .offer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 550px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .hero-img {
        width: 250px;
        height: 200px;
    }

    .event-home-bnr{
        background-image: url(../images/event/Home-Mobile.jpg);
        background-position: bottom;
        min-height: 730px;

    }
.hero-content{
    align-self: flex-start;
    padding-top: 50px;
}

.event-about-bnr {
    background-image: url(../images/event/About-Mobile.jpg);
    min-height: 660px;
    background-position: bottom;
}

.hero-section.event-bnr{
background-image: url(../images/event/Events-Mobile.jpg);
min-height: 660px;
background-position: bottom;

}

.event-software-bnr{
    background-image: url(../images/event/Software-Mobile.jpg);
    min-height: 660px;
    background-position: bottom;}


}
