/* ===== HERO SLIDER START ===== */
.avhero {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
    background: #000;
}

.avhero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    z-index: 1;
}

.avhero-slide.active {
    opacity: 1;
    z-index: 2;
}

.avhero-slide img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
    transform: scale(1.05); /* Slight zoom naturally */
    transition: transform 6s ease-out;
}

.avhero-slide.active img {
    transform: scale(1);
}

.avhero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%);
    z-index: -1;
}

.avhero-content {
    max-width: 800px;
    padding: 0 7%;
    color: #fff;
    transform: translateY(30px);
    opacity: 0;
    transition: 0.8s ease;
    transition-delay: 0.3s;
}

.avhero-slide.active .avhero-content {
    transform: translateY(0);
    opacity: 1;
}

.avhero-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: #000;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.avhero-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.avhero-content p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.6;
}

.avhero-btns {
    display: flex;
    gap: 15px;
}

.avhero .btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    box-shadow: none;
}

.avhero .btn-outline:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* CONTROLS */
.avhero-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 5;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.avhero-control:hover {
    background: var(--secondary-color);
    color: #000;
}

.avhero-control.prev { left: 40px; }
.avhero-control.next { right: 40px; }

/* DOTS */
.avhero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.avdot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.avdot.active {
    background: var(--secondary-color);
    transform: scale(1.3);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .avhero-content h1 { font-size: 44px; }
    .avhero-control.prev { left: 20px; }
    .avhero-control.next { right: 20px; }
}

@media (max-width: 768px) {
    .avhero-content {
        text-align: center;
        margin: auto;
    }
    .avhero-content p { margin: 0 auto 30px; }
    .avhero-btns { justify-content: center; }
    .avhero-control { display: none; } /* Hide large arrows on tablets/phones natively */
    .avhero-overlay {
        background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.8) 100%);
    }
}

@media (max-width: 576px) {
    .avhero {
        height: 600px;
        min-height: auto;
    }
    .avhero-content h1 { font-size: 32px; }
    .avhero-content p { font-size: 15px; }
    .avhero-badge { font-size: 12px; }
    .avhero-btns { flex-direction: column; width: 100%; }
    .avhero .btn { width: 100%; text-align: center; }
}
/* ===== HERO SLIDER END ===== */

/* ===== FACILITIES START===== */
/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== SECTION ===== */
.services {
    background: #f7f9fc;
    padding: 30px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* GRID */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.service-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;

    background: #ffffff;
    padding: 30px;
    border-radius: 15px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.05);

    position: relative;
    overflow: hidden;

    transition: 0.3s ease;

    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s ease forwards;
}

/* STAGGER */
.service-card:nth-child(1){animation-delay:0.1s;}
.service-card:nth-child(2){animation-delay:0.2s;}
.service-card:nth-child(3){animation-delay:0.3s;}
.service-card:nth-child(4){animation-delay:0.4s;}
.service-card:nth-child(5){animation-delay:0.5s;}
.service-card:nth-child(6){animation-delay:0.6s;}

/* ICON */
.service-card i {
    font-size: 34px;
    color: var(--primary-color);
    min-width: 40px;
}

/* TITLE */
.service-card h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

/* TEXT */
.service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* HOVER */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* TOP BORDER */
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #FFAA00;
    transition: 0.4s;
}

.service-card:hover::before {
    width: 100%;
}

/* ICON HOVER */
.service-card:hover i {
    color: #FFAA00;
}

/* ANIMATION */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== TABLET ===== */
@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== MOBILE (FIXED AS YOU REQUESTED) ===== */
@media (max-width: 576px) {

    .service-grid {
        grid-template-columns: 1fr;
    }

    /* IMPORTANT: KEEP ROW LAYOUT */
    .service-card {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }

    /* ICON LEFT */
    .service-card i {
        font-size: 28px;
        margin-top: 5px;
    }

    /* TEXT RIGHT */
    .service-card div {
        flex: 1;
    }
}
/* ===== FACILITIES END===== */

/* ===== HOME ABOUT START===== */
/* ===== SECTION ===== */
.avhomeabout {
    padding: 30px 20px;
    background: #f7f9fc;
    overflow: hidden;
}

.avhomeabout-container {
    max-width: 1200px;
    margin: auto;
}

/* WRAPPER */
.avhomeabout-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* ===== LEFT IMAGE ===== */
.avhomeabout-image {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
}

.avhomeabout-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transform: scale(1.1);
    animation: avZoomIn 1.2s ease forwards;
}

/* ===== RIGHT CONTENT ===== */
.avhomeabout-content {
    flex: 1;
    max-width: 550px;
    animation: avFadeRight 1s ease forwards;
}

/* SUBTITLE */
.avhomeabout-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    color: #FFAA00;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    opacity: 0;
    animation: avFadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.avhomeabout-subtitle::after {
    content: "";
    width: 60px;
    height: 2px;
    background: #FFAA00;
    position: absolute;
    top: 50%;
    left: 110%;
}

/* TITLE */
.avhomeabout-title {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
    opacity: 0;
    animation: avFadeUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

/* TEXT */
.avhomeabout-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
    opacity: 0;
    animation: avFadeUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

/* INNER */
.avhomeabout-inner {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    margin-bottom: 30px;
}

/* SMALL IMAGE */
.avhomeabout-small-img img {
    width: 160px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0;
    animation: avFadeUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

/* LIST */
.avhomeabout-list {
    list-style: none;
    flex: 1;
    margin: 0;
    padding: 0;
}

/* LIST ITEMS */
.avhomeabout-list li {
    padding: 12px 0;
    color: #555;
    font-size: 15px;
    position: relative;
    padding-left: 30px;
    border-bottom: 1px solid #eee;
    opacity: 0;
    animation: avFadeUp 0.6s ease forwards;
}

/* STAGGER EFFECT */
.avhomeabout-list li:nth-child(1) { animation-delay: 1s; }
.avhomeabout-list li:nth-child(2) { animation-delay: 1.2s; }
.avhomeabout-list li:nth-child(3) { animation-delay: 1.4s; }

.avhomeabout-list li:last-child {
    border-bottom: none;
}

/* CHECK ICON */
.avhomeabout-list li::before {
    content: "✔";
    color: #FFAA00;
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 14px;
}

/* BUTTON */
.avhomeabout-btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
    opacity: 0;
    animation: avFadeUp 0.8s ease forwards;
    animation-delay: 1.6s;
}

.avhomeabout-btn:hover {
    background: #FFAA00;
    color: #000;
}

/* ===== ANIMATIONS ===== */

/* ZOOM IMAGE */
@keyframes avZoomIn {
    from {
        transform: scale(1.2);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* FADE RIGHT */
@keyframes avFadeRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* FADE UP */
@keyframes avFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
    .avhomeabout-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .avhomeabout-image img {
        height: auto;
    }

    .avhomeabout-inner {
        justify-content: center;
    }

    .avhomeabout-subtitle::after {
        display: none;
    }
}

@media (max-width: 576px) {

    .avhomeabout-title {
        font-size: 28px;
    }

    .avhomeabout-inner {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 15px;
    }

    .avhomeabout-small-img {
        flex-shrink: 0;
    }

    .avhomeabout-small-img img {
        width: 120px;
        height: auto;
    }
}
/* ===== HOME ABOUT END===== */

/* ===== HOME COUNT START===== */
.avstats {
    position: relative;
    padding: 75px 20px;
    overflow: hidden;

    background-image: url("../images/C0133T01.JPG.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* OVERLAY */
.avstats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(19, 82, 131, 0.85);
    z-index: 1;
}

/* CONTAINER */
.avstats-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
}

/* WRAPPER */
.avstats-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* ITEM */
.avstat-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
    color: #fff;

    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease;
}

.avstat-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* ICON */
.avstat-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

/* NUMBER */
.avstat-number {
    font-size: 42px;
    margin-bottom: 10px;
    color: #FFAA00;
}

/* TEXT */
.avstat-text {
    font-size: 18px;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .avstats-wrapper {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .avstats {
        padding: 50px 15px;
    }

    .avstats-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }

    .avstat-item {
        min-width: auto;
    }

    .avstat-number {
        font-size: 30px;
        margin-bottom: 5px;
    }

    .avstat-text {
        font-size: 14px;
    }

    .avstat-icon {
        font-size: 35px;
        margin-bottom: 10px;
    }
}
/* ===== HOME COUNT END===== */

/* ===== HOME GALLERY START===== */
/* ===== SECTION ===== */
.avhomegalley-section {
    padding: 30px 20px;
    background: #ffffff;
}

/* ===== CONTAINER ===== */
.avhomegalley-container {
    max-width: 1350px;
    margin: auto;
    padding: 30px 80px;
    border-radius: 30px;

    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);

    border: 1px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    display: flex;
    align-items: center;
    gap: 50px;
}

/* ===== CONTENT ===== */
.avhomegalley-content {
    flex: 1;
}

.avhomegalley-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.avhomegalley-content p {
    font-size: 16px;
    color: rgba(0,0,0,0.6);
    margin-bottom: 25px;
    max-width: 500px;
}

/* BUTTON */
.avhomegalley-btn {
    padding: 12px 30px;
    border-radius: 30px;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.3s;
}

.avhomegalley-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ===== GRID ===== */
.avhomegalley-image {
    flex: 1.2;
}

.avhomegalley-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* BOX STYLE IMAGE */
.avhomegalley-grid .item {
    width: 100%;
    height: 130px;
    overflow: hidden;
    border-radius: 15px;
    background: #f5f5f5;
}

.avhomegalley-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

/* HOVER */
.avhomegalley-grid .item:hover img {
    transform: scale(1.1);
}

/* ===== TABLET ===== */
@media (max-width: 992px) {

    .avhomegalley-container {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px;
    }

    .avhomegalley-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {

    .avhomegalley-content h2 {
        font-size: 24px;
    }

    .avhomegalley-content p {
        font-size: 14px;
    }

    .avhomegalley-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .avhomegalley-grid .item {
        height: 110px;
    }
}
/* ===== HOME GALLERY END===== */

/* ===== HOME TESTIMONIAL START===== */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&family=Handlee&display=swap');

.avtestimonial-section {
    padding: 30px 20px;
    background: #f3f6f7;
    text-align: center;
}

.avtestimonial-sub {
    color: var(--secondary-color);
    letter-spacing: 2px;
    font-size: 14px;
}

.avtestimonial-header h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin: 10px 0 50px;
}

/* SLIDER */
.avtestimonial-slider {
    overflow: hidden;
    max-width: 1150px;
    margin: auto;
}

.avtestimonial-track {
    display: flex;
    transition: 0.5s ease;
}

/* CARD */
.avtestimonial-card {
    min-width: 33.333%;
    padding: 15px;
}

/* BOX */
.avtestimonial-content {
    background: #f1f3f4;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    min-height: 160px;
    position: relative;
}

/* QUOTE FIXED */
.avtestimonial-content .quote {
    position: absolute;
    top: 0px;
    left: 20px;
    font-size: 100px;
    color: var(--secondary-color);
}

/* TEXT */
.avtestimonial-content p {
    margin-top: 25px;
    color: #666;
    line-height: 1.6;
}

/* USER */
.avtestimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.avtestimonial-user img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.avtestimonial-user h4 {
    margin: 0;
    color: var(--primary-color);
}

.avtestimonial-user span {
    font-size: 14px;
    color: #888;
}

/* DOTS */
.avtestimonial-dots span {
    height: 10px;
    width: 10px;
    margin: 5px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.avtestimonial-dots .active {
    background: var(--secondary-color);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .avtestimonial-card { min-width: 50%; }
}

@media (max-width: 576px) {
    .avtestimonial-card { min-width: 100%; }
    .avtestimonial-header h2 { font-size: 28px; }
}
/* ===== HOME TESTIMONIAL END===== */

/* ===== HOME FAQ's START===== */
/* ===== FAQ SECTION ===== */
.avfaq-section {
    padding: 30px 20px;
    background: #f9fbff;
    font-family: 'Poppins', sans-serif;
}

/* CONTAINER */
.avfaq-container {
    max-width: 900px;
    margin: auto;
}

/* HEADER */
.avfaq-header {
    text-align: center;
    margin-bottom: 50px;
}

.avfaq-header span {
    color: #4f46e5;
    font-weight: 600;
    letter-spacing: 1px;
}

.avfaq-header h2 {
    font-size: 36px;
    margin-top: 10px;
    color: #111827;
}

/* FAQ ITEM */
.avfaq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.avfaq-item:hover {
    transform: translateY(-3px);
}

/* QUESTION */
.avfaq-question {
    width: 100%;
    padding: 15px 25px;
    border: none;
    background: none;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.avfaq-question span {
    font-size: 22px;
    transition: 0.3s;
}

/* ANSWER */
.avfaq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 25px;
}

.avfaq-answer p {
    margin: 15px 0;
    color: #555;
}

/* ACTIVE STATE */
.avfaq-item.active .avfaq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.avfaq-item.active .avfaq-question span {
    transform: rotate(45deg);
}

/* ===== RESPONSIVE ===== */

/* TABLET */
@media (max-width: 768px) {
    .avfaq-header h2 {
        font-size: 28px;
    }

    .avfaq-question {
        font-size: 15px;
    }
}

/* MOBILE */
@media (max-width: 480px) {
    .avfaq-section {
        padding: 60px 15px;
    }

    .avfaq-header h2 {
        font-size: 24px;
    }

    .avfaq-question {
        padding: 18px;
    }
}
/* ===== HOME FAQ's END===== */


/* ===== BANNER START===== */
/* ===== BANNER SECTION ===== */
.avbanner {
  position: relative;
  height: 200px;
  background: url("../images/C0133T01.JPG.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* OVERLAY */
.avbanner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(19, 82, 131, 0.9); /* var(--primary-color) */
  top: 0;
  left: 0;
}

/* CONTENT */
.avbanner-content {
  position: relative;
  color: #fff;
  z-index: 2;
  padding: 0 20px;
}

/* TITLE (H2) */
.avbanner-title {
  font-family: 'Handlee', cursive;
  font-size: 48px;
  margin-bottom: 10px;
  animation: avFadeDown 1s ease forwards;
}

/* TAGLINE (H1) */
.avbanner-tagline {
  font-family: 'Nunito', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  animation: avFadeUp 1s ease forwards;
}

/* BREADCRUMB */
.avbanner-breadcrumb {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  animation: avFadeUp 1.2s ease forwards;
}

.avbanner-breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.avbanner-breadcrumb span {
  margin: 0 6px;
}

/* ANIMATIONS */
@keyframes avFadeDown {
  from {
    opacity: 0;
    transform: translateY(-25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes avFadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .avbanner-title {
    font-size: 36px;
  }

  .avbanner-tagline {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .avbanner {
    height: 200px;
  }

  .avbanner-title {
    font-size: 28px;
  }

  .avbanner-tagline {
    font-size: 16px;
  }

  .avbanner-breadcrumb {
    font-size: 14px;
  }
}
/* ===== BANNER END===== */

/* ===== ABOUT PAGE ABOUT START===== */
/* ===== ABOUT SECTION ===== */
.avabout {
  padding: 80px 8%;
  background: #f9fbfc;
  font-family: 'Nunito', sans-serif;
}

.avabout-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* IMAGES */
.avabout-images {
  position: relative;
  flex: 1;
}

.avabout-img-main {
  width: 100%;
  border-radius: 12px;
}

.avabout-img-small {
  position: absolute;
  width: 45%;
  bottom: -20px;
  right: -20px;
  border-radius: 12px;
  border: 5px solid #fff;
}

/* CONTENT */
.avabout-content {
  flex: 1;
}

.avabout-title {
  font-family: 'Handlee', cursive;
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.avabout-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
}

/* ✅ FIXED HIGHLIGHT */
.avabout-highlight {
  background: var(--primary-color);
  color: #ffffff; /* FIX: now visible */
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 600;
  margin: 20px 0;
  box-shadow: 0 6px 15px rgba(19, 82, 131, 0.25);
}

/* FEATURES */
.avabout-features {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.avabout-box {
  background: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.avabout-box i {
  color: var(--primary-color);
}

.avabout-box:hover {
  transform: translateY(-5px);
}

/* ANIMATION */
.avabout-images,
.avabout-content {
  opacity: 0;
  transform: translateY(40px);
  animation: avfadeUp 1s ease forwards;
}

.avabout-content {
  animation-delay: 0.3s;
}

@keyframes avfadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .avabout-container {
    flex-direction: column;
  }

  .avabout-img-small {
    position: relative;
    width: 60%;
    bottom: 0;
    right: 0;
    margin-top: 15px;
  }
}

@media (max-width: 576px) {
  .avabout {
    padding: 50px 5%;
  }

  .avabout-title {
    font-size: 28px;
  }

  .avabout-content p {
    font-size: 14px;
  }
}
/* ===== ABOUT PAGE ABOUT END===== */

/* ===== ABOUT PAGE OUR MISSION & OUR VISSION START===== */
/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Handlee&family=Nunito:wght@300;400;600;700&display=swap');

/* ===== BASE ===== */
.avmissionvision-section {
    padding: 30px 20px;
    background: linear-gradient(180deg, #f4f9ff, #ffffff);
    font-family: 'Nunito', sans-serif;
    overflow: hidden;
}

/* ===== CONTAINER ===== */
.avmv-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* ===== LEFT ===== */
.avmv-left {
    flex: 1;
}

/* ===== HEADING ===== */
.avmv-heading span {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
}

.avmv-heading h2 {
    font-family: 'Handlee', cursive;
    font-size: 42px;
    color: var(--primary-color);
    margin: 10px 0 30px;
}

/* ===== CARD ===== */
.avmv-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    position: relative;
    transition: 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.avmv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(19,82,131,0.15);
}

/* ===== ICON ===== */
.avmv-icon {
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
}

/* ===== TITLES ===== */
.avmv-card h3 {
    font-family: 'Handlee', cursive;
    color: var(--primary-color);
    font-size: 26px;
    margin-bottom: 15px;
}

/* ===== LIST ===== */
.avmv-card ul {
    padding-left: 18px;
}

.avmv-card ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* ===== TEXT ===== */
.avmv-card p {
    line-height: 1.7;
    margin-bottom: 15px;
}

/* ===== TAGS ===== */
.avmv-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.avmv-tags span {
    background: rgba(19,82,131,0.1);
    color: var(--primary-color);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.avmv-tags span:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ===== RIGHT IMAGE ===== */
.avmv-right {
    flex: 1;
    position: relative;
}

.avmv-image-wrap {
    position: relative;
    display: inline-block;
}

.avmv-image-wrap img {
    width: 100%;
    max-width: 500px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transition: 0.4s;
}

.avmv-image-wrap img:hover {
    transform: scale(1.04);
}

/* ===== FLOATING LABELS ===== */
.avmv-floating {
    position: absolute;
    background: #fff;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 13px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    animation: float 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 6px;
}

.avmv-f1 { top: 20px; left: -20px; }
.avmv-f2 { bottom: 30px; right: -20px; animation-delay: 1s; }
.avmv-f3 { top: 50%; left: -30px; animation-delay: 2s; }

/* ===== ANIMATION ===== */
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== ENTRY ===== */
.avmv-card {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

.avmv-card:nth-child(2) { animation-delay: 0.2s; }
.avmv-card:nth-child(3) { animation-delay: 0.4s; }

.avmv-right {
    opacity: 0;
    transform: translateX(40px);
    animation: fadeRight 1s ease forwards;
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeRight {
    to { opacity: 1; transform: translateX(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .avmv-container {
        flex-direction: column;
        text-align: center;
    }

    .avmv-right {
        margin-top: 40px;
    }

    .avmv-floating {
        display: none;
    }
}

@media (max-width: 576px) {
    .avmissionvision-section {
        padding: 30px 15px;
    }

    .avmv-heading h2 {
        font-size: 28px;
    }

    .avmv-card {
        padding: 20px;
    }

    .avmv-card h3 {
        font-size: 22px;
    }
}

/* ===== ABOUT PAGE OUR MISSION & OUR VISSION END===== */

/* ===== ABOUT PAGE PRINCIPAL START===== */
/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Handlee&family=Nunito:wght@300;400;600;700&display=swap');

/* ===== SECTION ===== */
.avprincipal-section {
    padding: 30px 20px;
    background: linear-gradient(135deg, #ffffff, #f2f7ff);
    font-family: 'Nunito', sans-serif;
    overflow: hidden;
}

/* ===== HEADER ===== */
.avprincipal-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 20px;
}

.avprincipal-top {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
}

.avprincipal-header h2 {
    font-family: 'Handlee', cursive;
    font-size: 38px;
    color: var(--primary-color);
    margin: 10px 0 15px;
}

.avprincipal-header p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* ===== CONTAINER ===== */
.avprincipal-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* ===== CARD ===== */
.avprincipal-card {
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: 0.4s;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

.avprincipal-card:hover {
    transform: translateY(-10px);
}

/* ===== IMAGE ===== */
.avprincipal-image-wrapper {
    position: relative;
    overflow: hidden;
}

.avprincipal-image-wrapper img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.4s;
}

.avprincipal-card:hover img {
    transform: scale(1.08);
}

/* ===== CONTENT ===== */
.avprincipal-content {
    padding: 30px 25px 25px;
}

.avprincipal-sub {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 13px;
}

.avprincipal-content h2 {
    font-family: 'Handlee', cursive;
    font-size: 22px;
    color: var(--primary-color);
    margin: 10px 0 15px;
}

.avprincipal-content p {
    line-height: 1.7;
    color: #555;
    font-size: 14px;
}

/* ===== SIGNATURE ===== */
.avprincipal-sign {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.avprincipal-sign h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.avprincipal-sign span {
    font-size: 13px;
    color: #777;
}

/* ===== ANIMATION ===== */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.avprincipal-card:nth-child(1) { animation-delay: 0.2s; }
.avprincipal-card:nth-child(2) { animation-delay: 0.4s; }
.avprincipal-card:nth-child(3) { animation-delay: 0.6s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .avprincipal-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .avprincipal-container {
        grid-template-columns: 1fr;
    }

    .avprincipal-section {
        padding: 70px 15px;
    }

    .avprincipal-header h2 {
        font-size: 28px;
    }

    .avprincipal-content h2 {
        font-size: 20px;
    }

    .avprincipal-content p {
        font-size: 13px;
    }
}
/* ===== ABOUT PAGE PRINCIPAL END===== */

/* ===== CONACT US PAGE START===== */
/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Handlee&family=Nunito:wght@300;400;600;700&display=swap');

/* ===== SECTION ===== */
.avcontact-section {
    padding: 30px 20px;
    background: #f4f8fc;
    font-family: 'Nunito', sans-serif;
}

/* ===== HEADER ===== */
.avcontact-header {
    text-align: center;
    margin-bottom: 60px;
}

.avcontact-header span {
    color: var(--primary-color);
    letter-spacing: 2px;
    font-weight: 700;
}

.avcontact-header h2 {
    font-family: 'Handlee', cursive;
    font-size: 44px;
    color: var(--primary-color);
    margin-top: 10px;
}

/* ===== GRID ===== */
.avcontact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
}

/* ===== FORM BOX ===== */
.avcontact-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    animation: fadeUp 1s ease;
}

.avcontact-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.avcontact-form-box input,
.avcontact-form-box textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    outline: none;
    transition: 0.3s;
}

.avcontact-form-box textarea {
    height: 140px;
    resize: none;
    margin-bottom: 15px;
}

.avcontact-form-box input:focus,
.avcontact-form-box textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(19,82,131,0.1);
}

/* BUTTON */
.avcontact-form-box button {
    padding: 14px 30px;
    border: none;
    border-radius: 30px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.avcontact-form-box button:hover {
    background: var(--primary-color);
}

/* ===== INFO BOX ===== */
.avcontact-info-box {
    padding: 10px;
    animation: fadeUp 1s ease 0.3s forwards;
    opacity: 0;
}

.avcontact-desc {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* ===== INFO ITEMS ===== */
.avcontact-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.avcontact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.avcontact-item:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 35px rgba(19,82,131,0.15);
}

.avcontact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avcontact-item h4 {
    font-family: 'Handlee', cursive;
    color: var(--primary-color);
}

.avcontact-item span {
    font-size: 14px;
    color: #666;
}

/* ===== MAP ===== */
.avcontact-map {
    margin-top: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.avcontact-map iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* ===== ANIMATION ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .avcontact-grid {
        grid-template-columns: 1fr;
    }

    .avcontact-header h2 {
        font-size: 34px;
    }
}

@media (max-width: 576px) {

    .avcontact-section {
        padding: 70px 15px;
    }

    .avcontact-form-box {
        padding: 25px;
    }

    .avcontact-row {
        flex-direction: column;
    }

    .avcontact-header h2 {
        font-size: 26px;
    }

    .avcontact-form-box button {
        width: 100%;
    }
}

/* ===== CONACT US PAGE END===== */

/* ===== BLOGS PAGE START===== */
/* SECTION */
.avblog-section {
    padding: 30px 20px;
    background: #f4f7fb;
    font-family: 'Nunito', sans-serif;
}

/* CONTAINER */
.avblog-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.avblog-header {
    text-align: center;
    margin-bottom: 50px;
}

.avblog-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 10px;
    position: relative;
}

.avblog-subtitle::before,
.avblog-subtitle::after {
    content: "";
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    position: absolute;
    top: 50%;
}

.avblog-subtitle::before {
    left: -50px;
}

.avblog-subtitle::after {
    right: -50px;
}

.avblog-header h2 {
    font-family: 'Handlee', cursive;
    font-size: 42px;
    color: var(--primary-color);
}

/* GRID */
.avblog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.avblog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    transform: translateY(40px);
    opacity: 0;
    animation: avfadeUp 0.8s forwards;
}

.avblog-card:nth-child(2) {
    animation-delay: 0.2s;
}
.avblog-card:nth-child(3) {
    animation-delay: 0.4s;
}

.avblog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* IMAGE */
.avblog-img {
    overflow: hidden;
}

.avblog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s;
}

.avblog-card:hover img {
    transform: scale(1.08);
}

/* CONTENT */
.avblog-content {
    padding: 25px;
    text-align: center;
}

.avblog-content h3 {
    font-family: 'Handlee', cursive;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* TEXT */
.avblog-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* BUTTON */
.avblog-btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.avblog-btn:hover {
    background: var(--primary-color);
}

/* ANIMATION */
@keyframes avfadeUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .avblog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .avblog-grid {
        grid-template-columns: 1fr;
    }

    .avblog-header h2 {
        font-size: 30px;
    }
}

/* ===== BLOGS PAGE END===== */

/* ===== BLOGS PAGE CONTENT START===== */
/* SECTION */
.avarticle-section {
    padding: 30px 20px;
    background: linear-gradient(180deg, #f4f7fb, #ffffff);
    font-family: 'Nunito', sans-serif;
}

/* CONTAINER */
.avarticle-container {
    max-width: 950px;
    margin: auto;
}

/* HEADER */
.avarticle-header {
    text-align: center;
    margin-bottom: 40px;
}

.avarticle-tag {
    display: inline-block;
    background: #e8f2fa;
    color: var(--primary-color);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 10px;
}

.avarticle-header h2 {
    font-family: 'Handlee', cursive;
    font-size: 40px;
    color: var(--primary-color);
}

/* IMAGE */
.avarticle-image {
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 40px;
}

.avarticle-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: 0.5s;
}

.avarticle-image:hover img {
    transform: scale(1.06);
}

/* CONTENT */
.avarticle-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* BOX DESIGN */
.avbox {
    background: #fff;
    padding: 25px 28px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s;
    position: relative;
    border-left: 4px solid transparent;
}

.avbox:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-color);
}

/* LEAD BOX */
.avlead-box {
    background: var(--primary-color);
    color: #fff;
}

.avlead-box p {
    font-size: 17px;
    line-height: 1.8;
}

/* HIGHLIGHT BOX */
.avhighlight {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
}

/* HEADINGS */
.avbox h3 {
    font-family: 'Handlee', cursive;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.avhighlight h3,
.avlead-box h3 {
    color: #fff;
}

/* TEXT */
.avbox p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.avlead-box p,
.avhighlight p {
    color: #fff;
}

/* LIST */
.avlist {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.avlist li {
    margin-bottom: 10px;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.avlist i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* NUMBER LIST */
.avnumlist {
    padding-left: 20px;
    margin-top: 15px;
}

.avnumlist li {
    margin-bottom: 10px;
}

/* ALPHABET LIST */
.avalphalist {
    padding-left: 20px;
    margin-top: 15px;
}

.avalphalist li {
    margin-bottom: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .avarticle-header h2 {
        font-size: 28px;
    }

    .avarticle-image img {
        height: 240px;
    }

    .avbox {
        padding: 20px;
    }
}

/* ===== BLOGS PAGE CONTENT END===== */

/* ===== GALLERY PAGE START===== */
/* SECTION */
.avgallery-section {
    padding: 30px 0;
    background: #f4f7fb;
    font-family: 'Nunito', sans-serif;
}

/* CONTAINER */
.avgallery-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.avgallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.avgallery-header span {
    color: var(--primary-color);
    letter-spacing: 2px;
    font-size: 14px;
}

.avgallery-header h2 {
    font-family: 'Handlee', cursive;
    font-size: 38px;
    color: var(--primary-color);
}

/* GRID (NO GAPS EVER) */
.avgallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 5px;
    grid-auto-flow: dense; /* IMPORTANT - fills gaps automatically */
}

/* ITEM */
.avgallery-item {
    position: relative;
    overflow: hidden;
    display: block;
}

.avgallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* OVERLAY */
.avoverlay {
    position: absolute;
    inset: 0;
    background: rgba(19,82,131,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.avoverlay h3 {
    color: #fff;
    font-family: 'Handlee', cursive;
    font-size: 22px;
}

/* HOVER */
.avgallery-item:hover img {
    transform: scale(1.08);
}

.avgallery-item:hover .avoverlay {
    background: rgba(19,82,131,0.6);
}

/* COLLAGE SIZES */
.avbig {
    grid-column: span 2;
    grid-row: span 2;
}

.avtall {
    grid-row: span 2;
}

.avwide {
    grid-column: span 2;
}

/* ANIMATION */
.avgallery-item {
    animation: avfadeUp 0.7s ease forwards;
}

@keyframes avfadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .avgallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .avbig,
    .avwide {
        grid-column: span 2;
    }

    .avtall {
        grid-row: span 2;
    }
}

@media (max-width: 600px) {
    .avgallery-grid {
        grid-template-columns: 1fr;
    }

    .avbig,
    .avwide,
    .avtall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .avgallery-header h2 {
        font-size: 28px;
    }
}
/* ===== GALLERY PAGE END===== */

/* ===== CURRICULUM PAGE START===== */
/* SECTION */
.avcur-section {
    padding: 30px 20px;
    background: linear-gradient(180deg, #f4f7fb, #ffffff);
    font-family: 'Nunito', sans-serif;
}

/* CONTAINER */
.avcur-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.avcur-header {
    text-align: center;
    margin-bottom: 30px;
}

.avcur-header span {
    color: var(--primary-color);
    letter-spacing: 2px;
    font-size: 14px;
}

.avcur-header h2 {
    font-family: 'Handlee', cursive;
    font-size: 40px;
    color: var(--primary-color);
    margin: 10px 0;
}

.avcur-header p {
    max-width: 650px;
    margin: auto;
    color: #555;
}

/* GRID */
.avcur-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* IMAGE COLLAGE */
.avcur-images {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: 200px 200px;
    gap: 15px;
}

.avimg {
    overflow: hidden;
    border-radius: 16px;
    position: relative;
}

.avimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.avimg:hover img {
    transform: scale(1.08);
}

.avimg.big {
    grid-row: span 2;
}

/* CONTENT */
.avcur-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* CARD */
.avcur-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    transition: 0.4s;
    border-left: 4px solid transparent;
}

.avcur-card:hover {
    transform: translateY(-6px);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* HIGHLIGHT */
.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
}

.highlight h3 {
    color: #fff;
}

/* HEADINGS */
.avcur-card h3 {
    font-family: 'Handlee', cursive;
    font-size: 26px;
    margin-bottom: 10px;
}

.avcur-card h4 {
    font-family: 'Handlee', cursive;
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* TEXT */
.avcur-card p {
    font-size: 15px;
    line-height: 1.8;
}

/* LIST */
.avcur-list {
    list-style: none;
    padding: 0;
}

.avcur-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.avcur-list i {
    margin-right: 10px;
    color: var(--secondary-color);
}

/* ANIMATION */
.avcur-card,
.avimg {
    animation: avfadeUp 0.8s ease forwards;
}

@keyframes avfadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .avcur-grid {
        grid-template-columns: 1fr;
    }

    .avcur-images {
        grid-template-rows: 180px 180px;
    }
}

@media (max-width: 600px) {

    .avcur-header h2 {
        font-size: 28px;
    }

    .avcur-images {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .avimg.big {
        grid-row: span 1;
    }
}

/* ===== CURRICULUM PAGE END===== */

/* ===== INFRASTRUCTURE PAGE START===== */
/* SECTION */
.avinfra-section {
    padding: 30px 20px;
    background: linear-gradient(180deg, #f4f7fb, #ffffff);
    font-family: 'Nunito', sans-serif;
}

/* CONTAINER */
.avinfra-container {
    max-width: 1100px;
    margin: auto;
}

/* HEADER */
.avinfra-header {
    text-align: center;
    margin-bottom: 30px;
}

.avinfra-header span {
    color: var(--primary-color);
    letter-spacing: 2px;
    font-size: 14px;
}

.avinfra-header h2 {
    font-family: 'Handlee', cursive;
    font-size: 42px;
    color: var(--primary-color);
}

/* TIMELINE */
.avinfra-timeline {
    position: relative;
}

.avinfra-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 3px;
    height: 100%;
    background: var(--primary-color);
    transform: translateX(-50%);
}

/* ITEM */
.avinfra-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

/* LEFT RIGHT */
.avinfra-item.left {
    flex-direction: row;
}

.avinfra-item.right {
    flex-direction: row-reverse;
}

/* IMAGE */
.avinfra-img {
    width: 45%;
    overflow: hidden;
}

.avinfra-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.5s;
}

/* BOX */
.avinfra-box {
    width: 45%;
    background: #fff;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: 0.4s;
}

/* TITLE */
.avinfra-box h3 {
    font-family: 'Handlee', cursive;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* LIST */
.avinfra-box ul {
    padding-left: 18px;
}

.avinfra-box li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

/* HOVER */
.avinfra-item:hover img {
    transform: scale(1.08);
}

.avinfra-item:hover .avinfra-box {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

/* ANIMATION */
.avinfra-item {
    animation: avfadeUp 0.8s ease forwards;
}

@keyframes avfadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .avinfra-timeline::before {
        left: 20px;
    }

    .avinfra-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-left: 40px;
    }

    .avinfra-img,
    .avinfra-box {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .avinfra-header h2 {
        font-size: 28px;
    }
}
/* ===== INFRASTRUCTURE PAGE END===== */

/* ===== STUDENT DEVELOPMENT PAGE START===== */
/* SECTION */
.avdev-section {
    padding: 30px 20px;
    background: linear-gradient(180deg, #ffffff, #f4f7fb);
    font-family: 'Nunito', sans-serif;
}

/* CONTAINER */
.avdev-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.avdev-header {
    text-align: center;
    margin-bottom: 30px;
}

.avdev-header span {
    color: var(--primary-color);
    font-size: 14px;
    letter-spacing: 2px;
}

.avdev-header h2 {
    font-family: 'Handlee', cursive;
    font-size: 42px;
    color: var(--primary-color);
    margin: 10px 0;
}

.avdev-header p {
    color: #555;
}

/* GRID */
.avdev-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

/* FEATURE IMAGE */
.avdev-feature {
    position: relative;
    overflow: hidden;
}

.avdev-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.avdev-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(19,82,131,0.8), transparent);
    color: #fff;
}

.avdev-overlay h3 {
    font-family: 'Handlee', cursive;
    font-size: 28px;
}

.avdev-feature:hover img {
    transform: scale(1.08);
}

/* CARDS */
.avdev-cards {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

/* CARD */
.avdev-card {
    background: #fff;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s;
    position: relative;
}

.avdev-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

/* ICON */
.avicon {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* TITLE */
.avdev-card h4 {
    font-family: 'Handlee', cursive;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* LIST */
.avdev-card ul {
    padding-left: 18px;
}

.avdev-card li {
    font-size: 14px;
    margin-bottom: 6px;
}

/* HIGHLIGHT */
.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
}

.highlight h4,
.highlight i {
    color: #fff;
}

/* SKILLS */
.avdev-skills {
    grid-column: span 2;
    background: #fff;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.avdev-skills h4 {
    font-family: 'Handlee', cursive;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.avskills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.avskills-grid span {
    background: #e8f2fa;
    padding: 8px 14px;
    font-size: 13px;
}

/* ANIMATION */
.avdev-card,
.avdev-feature {
    animation: avfadeUp 0.8s ease forwards;
}

@keyframes avfadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .avdev-grid {
        grid-template-columns: 1fr;
    }

    .avdev-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .avdev-cards {
        grid-template-columns: 1fr;
    }

    .avdev-header h2 {
        font-size: 28px;
    }
}

/* ===== STUDENT DEVELOPMENT PAGE END===== */

/* ===== CULTURE & EVENTS PAGE START===== */
/* SECTION */
.avculture-section {
    padding: 30px 20px;
    background: linear-gradient(180deg, #f4f7fb, #ffffff);
    font-family: 'Nunito', sans-serif;
}

/* CONTAINER */
.avculture-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.avculture-header {
    text-align: center;
    margin-bottom: 30px;
}

.avculture-header span {
    color: var(--primary-color);
    letter-spacing: 2px;
    font-size: 14px;
}

.avculture-header h2 {
    font-family: 'Handlee', cursive;
    font-size: 42px;
    color: var(--primary-color);
    margin: 10px 0;
}

.avculture-header p {
    max-width: 650px;
    margin: auto;
    color: #555;
}

/* GRID */
.avculture-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* IMAGES */
.avculture-images {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: 200px 200px;
    gap: 12px;
}

.avimg {
    overflow: hidden;
}

.avimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.avimg.big {
    grid-row: span 2;
}

.avimg:hover img {
    transform: scale(1.08);
}

/* CONTENT */
.avculture-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* BOX */
.avculture-box {
    background: #fff;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s;
    border-left: 4px solid transparent;
}

.avculture-box:hover {
    transform: translateY(-6px);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* HEADINGS */
.avculture-box h3,
.avculture-box h4 {
    font-family: 'Handlee', cursive;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* LIST */
.avculture-list {
    list-style: none;
    padding: 0;
}

.avculture-list li {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.avculture-list i {
    margin-right: 10px;
    color: var(--secondary-color);
}

/* HIGHLIGHT */
.highlight {
    background: var(--primary-color);
    color: #fff;
}

.highlight h3 {
    color: #fff;
}

/* GRADIENT */
.gradient {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
}

/* ANIMATION */
.avculture-box,
.avimg {
    animation: avfadeUp 0.8s ease forwards;
}

@keyframes avfadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .avculture-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .avculture-header h2 {
        font-size: 28px;
    }

    .avculture-images {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .avimg.big {
        grid-row: span 1;
    }
}
/* ===== CULTURE & EVENTS PAGE END===== */

/* ===== ACHIEVEMENTS PAGE START===== */
/* SECTION */
.avach-section {
    padding: 30px 20px;
    background: linear-gradient(180deg, #ffffff, #f4f7fb);
    font-family: 'Nunito', sans-serif;
}

/* CONTAINER */
.avach-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.avach-header {
    text-align: center;
    margin-bottom: 30px;
}

.avach-header span {
    color: var(--primary-color);
    letter-spacing: 2px;
    font-size: 14px;
}

.avach-header h2 {
    font-family: 'Handlee', cursive;
    font-size: 42px;
    color: var(--primary-color);
    margin: 10px 0;
}

.avach-header p {
    max-width: 700px;
    margin: auto;
    color: #555;
    line-height: 1.6;
}

/* GRID */
.avach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE WRAPPER */
.avach-image-wrapper {
    position: relative;
}

/* MAIN IMAGE */
.main-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.5s ease;
}

.main-img:hover img {
    transform: scale(1.05);
}

/* SMALL FLOATING IMAGES */
.small-img {
    position: absolute;
    width: 160px;
    height: 140px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FLOAT POSITIONS */
.img1 {
    top: -30px;
    right: -20px;
}

.img2 {
    bottom: -30px;
    left: -20px;
}

/* HOVER EFFECT FOR SMALL IMAGES */
.small-img:hover {
    transform: scale(1.08);
}

/* CONTENT */
.avach-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* CARD */
.avach-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
}

.avach-card:hover {
    transform: translateY(-6px);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* HEADINGS */
.avach-card h3,
.avach-card h4 {
    font-family: 'Handlee', cursive;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* TEXT */
.avach-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* LIST */
.avach-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.avach-card li {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    color: #555;
}

/* ICON */
.avach-card i {
    margin-right: 10px;
    color: var(--secondary-color);
    font-size: 14px;
}

/* HIGHLIGHT CARD */
.highlight {
    background: var(--primary-color);
    color: #fff;
}

.highlight h3 {
    color: #fff;
}

.highlight p {
    color: #fff;
}

/* GRADIENT CARD */
.gradient {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
}

.gradient p {
    color: #fff;
}

/* ANIMATION */
.avach-card,
.avach-image-wrapper {
    animation: avfadeUp 0.8s ease forwards;
}

@keyframes avfadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .avach-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Hide floating images on tablet/mobile */
    .small-img {
        display: none;
    }

    .main-img img {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .avach-section {
        padding: 60px 15px;
    }

    .avach-header h2 {
        font-size: 28px;
    }

    .avach-header p {
        font-size: 14px;
    }

    .main-img img {
        height: 240px;
    }

    .avach-card {
        padding: 20px;
    }
}
/* ===== ACHIEVEMENTS PAGE END===== */


/* SECTION */
.avimagep-section {
    padding: 60px 30px;
    background: #f5f6f8;
}

/* GRID */
.avimagep-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

/* CARD */
.avimagep-card {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.avimagep-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.avimagep-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.avimagep-card img:hover {
    transform: scale(1.05);
}

/* LIGHTBOX */
.avimagep-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fade 0.4s;
}

/* WRAPPER */
.avimagep-wrapper {
    position: relative;
    max-width: 85%;
    max-height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: zoom 0.4s;
}

.avimagep-lightbox img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    display: block;
}

/* CLOSE */
.avimagep-close {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

/* NAV */
.avimagep-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #fff;
    border: none;
    background: rgba(0,0,0,0.4);
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 10000;
}

.avimagep-nav:hover {
    background: var(--primary-color);
}

.avimagep-prev { left: 10px; }
.avimagep-next { right: 10px; }

/* ANIMATION */
@keyframes zoom {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* RESPONSIVE */
@media(max-width:1200px){
    .avimagep-grid { grid-template-columns: repeat(4,1fr); }
}

@media(max-width:992px){
    .avimagep-grid { grid-template-columns: repeat(3,1fr); }
}

@media(max-width:576px){
    .avimagep-grid { grid-template-columns: repeat(2,1fr); }
}