@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    /* padding-top: 80px; */
}
/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

  /* About section stack */
  .about-content {
    flex-direction: column !important;
  }

  .about-image,
  .about-text {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Mission & vision stack */
  .mission-vision-grid {
    grid-template-columns: 1fr !important;
  }

  /* Secretary section stack */
  .secretary-content {
    flex-direction: column !important;
  }

  .secretary-image,
  .secretary-message {
    width: 100% !important;
  }

  /* Prevent horizontal scrolling */
  body {
    overflow-x: hidden;
  }

  /* Fix containers */
  .section-container {
    padding: 15px;
  }

  /* Make images responsive */
  img {
    max-width: 100%;
    height: auto;
  }
}



/* Carousel */
#carouselExampleIndicators{
    overflow: hidden;
}

/* Common Section Styles */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Us Section */
.about-section {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    position: relative;
}

.image-container {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.image-container img {
    width: 100%;
    height: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.95;
}

.about-text h3 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.about-highlights {
    margin: 2.5rem 0;
}

.highlight-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
    border-radius: 15px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.highlight-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.highlight-content h4 {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight-content p {
    font-size: 1rem;
    color: #718096;
    margin: 0;
    line-height: 1.6;
}

.learn-more-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    margin-top: 1rem;
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Mission & Vision Section */
.mission-vision-section {
    background: white;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mission-card, .vision-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.card-icon {
    color: #667eea;
    margin-bottom: 1.5rem;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.mission-card p, .vision-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
}


/* Secretary Section */
.secretary-section {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.secretary-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.secretary-image {
    text-align: center;
}

.image-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    overflow: hidden;
}
.image-placeholder img{
    height: 106%;
}
.secretary-info h4 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.secretary-info p {
    color: #667eea;
    font-weight: 600;
}

.secretary-message {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.quote-icon {
    font-size: 6rem;
    color: rgba(102, 126, 234, 0.1);
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.secretary-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.signature {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.signature p {
    margin-bottom: 0.5rem;
}

.signature-title {
    color: #718096 !important;
    font-size: 1rem !important;
}



.notices{
    height: 300px;
    /* border: 1px solid red; */
    /* padding: 2vw; */
    overflow-y: scroll;
}
.notices::-webkit-scrollbar{
    display: none;
}
.eachnotice{
    height: 30px;
    width: 100%;
    /* border: 1px solid red; */
    display: flex;
    align-items: center;
    
}
.eachnotice span{
    margin-left: 10px;
}
.eachnotice svg{
    color: orange;
}

.notices {
    position: relative;
}

.noticebody{
    position: absolute;
    height: 100%;
    width: 100%;
    animation: scrollUp 10s linear infinite;
}
.notices .noticebody a{
    margin-bottom: 20px;
}
/* Pause animation when hovering */
.notices:hover .noticebody {
    animation-play-state: paused;
}

@keyframes scrollUp {
    0% {
        top: 100%;
    }
    100% {
        top: -100%;
    }
}


.logo-icon img{
    height: 40px;
}


@media screen and (max-width:500px) {
    .about-content{
        display: flex;
        flex-direction: column;
    }
    .stat-number{
        font-size:25px;
    }
    .stat-label{
        font-size:12px;
    }
    .image-container{
        padding: 1rem;
    }
    .stats-grid{
        padding: 1rem;
    }
    .image-container img{
        border-radius: 10px;

    }
    .about-text{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem;

    }
    .about-text p{
        font-size: 15px;
        text-align: justify;
    }
    .mission-card{
        padding: 8vw;
    }
    .section-container{
        padding:2rem 0rem;
    }
    .mission-card p{
        font-size: 15px;
        text-align: justify;
    }
    .secretary-section .section-container .secretary-content{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .secretary-section .section-container .secretary-content .secretary-message p{
        text-align: justify;
    }

    
}