/* ===============================
   GS HISTORY SECTION STYLES
==================================*/

.gs-history-section {
    position: relative;
    padding: 120px 8%;
    background: linear-gradient(135deg, #0a1f44, #122e6a, #1c3f8f);
    overflow: hidden;
    color: #fff;
}

/* Floating Animated Shapes */
.gs-floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: floatMove 8s infinite ease-in-out alternate;
}

.shape-one {
    width: 180px;
    height: 180px;
    background: #00c6ff;
    top: 10%;
    left: 5%;
}

.shape-two {
    width: 250px;
    height: 250px;
    background: #ffcc00;
    bottom: 10%;
    right: 8%;
}

.shape-three {
    width: 120px;
    height: 120px;
    background: #ffffff;
    top: 50%;
    right: 20%;
}

@keyframes floatMove {
    0% {
        transform: translateY(0px) translateX(0px);
    }

    100% {
        transform: translateY(-40px) translateX(20px);
    }
}

/* Container Layout */
.gs-history-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

/* Text Content */
.gs-history-content {
    flex: 1 1 500px;
    animation: fadeUp 1.2s ease forwards;
}

.gs-history-subtitle {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffcc00;
    margin-bottom: 15px;
}

.gs-history-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.gs-history-text {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #eaeaea;
}

/* Premium Button */
.gs-history-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: linear-gradient(45deg, #ffcc00, #ffaa00);
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.gs-history-btn:hover {
    background: #fff;
    color: #0a1f44;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 204, 0, 0.4);
}

/* Image Section */
.gs-history-image {
    flex: 1 1 450px;
    text-align: center;
    animation: fadeRight 1.4s ease forwards;
}

.gs-history-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gs-history-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .gs-history-container {
        flex-direction: column;
        text-align: center;
    }

    .gs-history-title {
        font-size: 32px;
    }
}

/* ===============================
   GS PHILOSOPHY SECTION STYLES
================================== */

.gs-philosophy-section {
    position: relative;
    color: #fff;
    overflow: hidden;
}

/* Floating Glow Orbs */
.gs-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: floatOrb 8s infinite alternate ease-in-out;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: #00c6ff;
    top: -50px;
    left: -80px;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: #ffcc00;
    bottom: -80px;
    right: -60px;
}

@keyframes floatOrb {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(40px);
    }
}

/* Container */
.gs-philosophy-container {
    position: relative;
    z-index: 2;
}

/* Header */
.gs-philosophy-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
    animation: fadeUp 1.2s ease forwards;
}

.gs-philosophy-subtitle {
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffcc00;
    margin-bottom: 15px;
}

.gs-philosophy-title {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.gs-philosophy-description {
    font-size: 18px;
    line-height: 1.8;
    color: #252525;
}

/* Values Grid */
.gs-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
    gap: 30px;
}

/* Value Cards */
.gs-value-card {
    background: linear-gradient(135deg, #071c3d, #0f2d66, #1b3f88);
    padding: 35px 25px;
    border-radius: 18px;
    backdrop-filter: blur(15px);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeUp 1.5s ease forwards;
    transition: all 500ms ease;
}

.gs-value-card h4 {
    margin-bottom: 12px;
    font-size: 20px;
    color: #ffcc00;
}

.gs-value-card p {
    font-size: 15px;
    color: #ddd;
    line-height: 1.6;
}

.gs-value-card:hover {
    transform: translateY(-10px);
    background: rgb(1, 111, 56);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 500ms ease;
}

/* Footer */
.gs-philosophy-footer {
    margin-top: 60px;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #252525;
    animation: fadeUp 2s ease forwards;
}

/* Fade Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .gs-philosophy-title {
        font-size: 30px;
    }
}

/* ===============================
   GS VISION MISSION STYLES
================================== */

.gs-vmm-section {
    position: relative;
    color: #fff;
    overflow: hidden;
}

/* Floating Shapes */
.gs-vmm-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.3;
    animation: floatShape 7s infinite alternate ease-in-out;
}

.shape-a {
    width: 300px;
    height: 300px;
    background: #00c6ff;
    top: -80px;
    left: -80px;
}

.shape-b {
    width: 250px;
    height: 250px;
    background: #ffcc00;
    bottom: -80px;
    right: -60px;
}

@keyframes floatShape {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(40px);
    }
}

/* Header */
.gs-vmm-header {
    text-align: center;
    margin-bottom: 70px;
}

.gs-vmm-subtitle {
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffcc00;
    margin-bottom: 15px;
}

.gs-vmm-title {
    font-size: 42px;
    font-weight: 700;
}

/* Grid */
.gs-vmm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

/* Cards */
.gs-vmm-card {
    background: linear-gradient(135deg, #081b3a, #0f2d66, #1b3f88);
    padding: 45px 35px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.gs-vmm-card h3 {
    margin: 20px 0;
    font-size: 24px;
    color: #ffcc00;
}

.gs-vmm-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #eaeaea;
}

.gs-vmm-icon {
    font-size: 40px;
}

.gs-vmm-card:hover {
    transform: translateY(-12px);
    background: #008000;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Motto */
.gs-vmm-motto {
    text-align: center;
    padding: 60px 40px;
    border-radius: 25px;
    background: linear-gradient(135deg, #fffcaf, #fffcc7, #fffef1);
    color: #000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.gs-vmm-motto h4 {
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.gs-vmm-motto h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.gs-vmm-tamil {
    font-size: 20px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .gs-vmm-title {
        font-size: 30px;
    }

    .gs-vmm-motto h2 {
        font-size: 26px;
    }
}

/* ===============================
   PRINCIPAL MESSAGE STYLES
================================== */

.gs-principal-section {
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Glow Effects */
.gs-principal-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: floatGlow 8s infinite alternate ease-in-out;
}

.glow-one {
    width: 350px;
    height: 350px;
    background: #00c6ff;
    top: -100px;
    left: -80px;
}

.glow-two {
    width: 300px;
    height: 300px;
    background: #ffcc00;
    bottom: -100px;
    right: -60px;
}

@keyframes floatGlow {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(40px);
    }
}

/* Layout */
.gs-principal-container {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

/* Image */
.gs-principal-image {
    flex: 1 1 600px;
    position: relative;
    text-align: center;
}
/* Mobile Responsive */
@media (max-width: 768px) {
    .gs-principal-image {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }
}

.gs-principal-image img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.gs-principal-image img:hover {
    transform: scale(1.05);
}

/* Name Box */
.gs-principal-namebox {
    margin-top: 20px;
}

.gs-principal-namebox h4 {
    font-size: 22px;
    font-weight: 700;
    color: #000444;
}

.gs-principal-namebox p {
    font-size: 15px;
    color: #252525;
}

/* Content */
.gs-principal-content {
    flex: 1 1 500px;
    animation: fadeUp 1.3s ease forwards;
}

.gs-principal-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffcc00;
    margin-bottom: 15px;
}

.gs-principal-title {
    font-size: 40px;
    margin-bottom: 25px;
}

.gs-principal-content p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
    color: #252525;
        text-align: justify;
}

/* Fade Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
/* Mobile Responsive */
@media (max-width: 768px) {
    .gs-principal-image {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }
}

/* Light Background Section */
.academic-section {
    background: #f4f7fb;
    padding: 80px 0;
}

/* Container Grid */
.academic-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Dark Card */
.academic-card {
    background-color: #024b4b;
    color: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Hover Effect */
.academic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Image */
.academic-image img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    transition: 0.4s ease;
}

.academic-card:hover .academic-image img {
    transform: scale(1.05);
}

/* Content */
.academic-content {
    padding: 25px;
}

.academic-content h3 {
    margin-bottom: 15px;
    font-size: 26px;
    font-weight: 600;
    color: #ffc107;
}

.academic-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #ddd;
}

.academic-content ul {
    padding-left: 18px;
    margin-bottom: 15px;
}

.academic-content ul li {
    margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 992px) {
    .academic-container {
        grid-template-columns: 1fr;
    }
}

/* SECTION BACKGROUND */
.courses-section {
    position: relative;
    padding: 60px 20px;
    background: #f4f8fb;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0c3c60;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #555;
    font-size: 16px;
}

/* GRID */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 30px;
}

/* CARD */
.course-card {
    background: #0c3c60;
    color: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s ease;
    position: relative;
    transform: translateY(0);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* IMAGE */
.course-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.4s ease;
}

.course-card:hover img {
    transform: scale(1.08);
}

/* CONTENT */
.course-content {
    padding: 25px;
}

.course-content h3 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    color: #ffcc00;
}

.course-content p {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.course-content ul {
    padding-left: 18px;
}

.course-content ul li {
    font-size: 14px;
    margin-bottom: 8px;
}

/* FLOATING BACKGROUND */
.floating-bg span {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(12, 60, 96, 0.08);
    border-radius: 50%;
    animation: float 10s infinite linear;
}

.floating-bg span:nth-child(1) {
    top: 10%;
    left: 5%;
}

.floating-bg span:nth-child(2) {
    bottom: 20%;
    right: 10%;
}

.floating-bg span:nth-child(3) {
    top: 50%;
    left: 50%;
}

.floating-bg span:nth-child(4) {
    bottom: 10%;
    left: 30%;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
}

.activities-section {
    position: relative;
    padding: 60px 20px;
    background: #f2f7fb;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #0c3c60;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
    color: #555;
    font-size: 16px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.activity-card {
    background: #0c3c60;
    color: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s ease;
    transform: translateY(0);
}

.activity-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.activity-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s ease;
}

.activity-card:hover img {
    transform: scale(1.08);
}

.activity-content {
    padding: 25px;
}

.activity-content h3 {
    margin-bottom: 20px;
    font-size: 22px;
    color: #ffcc00;
    font-weight: 600;
}

.activity-content p {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.activity-content ul {
    padding-left: 18px;
}

.activity-content ul li {
    font-size: 14px;
    margin-bottom: 8px;
}

/* Floating Background */
.floating-bg span {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(12, 60, 96, 0.08);
    border-radius: 50%;
    animation: float 12s infinite ease-in-out;
}

.floating-bg span:nth-child(1) {
    top: 10%;
    left: 5%;
}

.floating-bg span:nth-child(2) {
    bottom: 15%;
    right: 10%;
}

.floating-bg span:nth-child(3) {
    top: 50%;
    left: 60%;
}

.floating-bg span:nth-child(4) {
    bottom: 5%;
    left: 30%;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-25px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }
}

.infrastructure-section {
    position: relative;
    padding: 60px 20px;
    background: #f5f9fc;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #0c3c60;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
    color: #555;
    font-size: 16px;
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.infra-card {
    background: #0c3c60;
    color: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s ease;
    transform: translateY(0);
}

.infra-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.infra-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s ease;
}

.infra-card:hover img {
    transform: scale(1.08);
}

.infra-content {
    padding: 25px;
}

.infra-content h3 {
    margin-bottom: 20px;
    font-size: 22px;
    color: #ffcc00;
    font-weight: 600;
}

.infra-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Floating Background */
.floating-bg span {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(12, 60, 96, 0.08);
    border-radius: 50%;
    animation: float 12s infinite ease-in-out;
}

.floating-bg span:nth-child(1) {
    top: 10%;
    left: 5%;
}

.floating-bg span:nth-child(2) {
    bottom: 20%;
    right: 10%;
}

.floating-bg span:nth-child(3) {
    top: 50%;
    left: 60%;
}

.floating-bg span:nth-child(4) {
    bottom: 5%;
    left: 30%;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-25px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }
}

.school-timings-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
}


.timings-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.timing-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.timing-card:hover {
    transform: translateY(-8px);
}


.timing-card ul {
    list-style: none;
    padding: 0;
}

.timing-card ul li {
    margin-bottom: 12px;
    font-size: 15px;
}

.timing-card.highlight {
    background: #034475;
    color: #fff;
}

.timing-card.highlight h3 {
    color: #fff;
}

.school-timings {
    padding: 60px 0 30px;
    background: #f5f9ff;
}

.timing-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.timing-card:hover {
    transform: translateY(-8px);
}

.timing-img {
    width: 40%;
}

.timing-img img {
    width: 100%;
    border-radius: 10px;
}

.timing-content {
    width: 60%;
}

.timing-content h3 {
    margin-bottom: 15px;
}

.timing-content ul {
    list-style: none;
    padding: 0;
}

.timing-content ul li {
    margin-bottom: 12px;
    font-size: 15px;
}

.timing-content ul li i {
    color: #ffc107;
    margin-right: 8px;
}

/* Highlight X Standard */
.timing-card.highlight h3 {
    color: #fff;
}

.timing-card.highlight ul li i {
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .timing-card {
        flex-direction: column;
        text-align: center;
    }

    .timing-img,
    .timing-content {
        width: 100%;
    }
}

.admissions-section {
    padding: 60px 0;
    background: #f5f9ff;
}

.section-title h2 {
    font-size: 36px;
    color: #032353;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: capitalize;
}

.section-title p {
    max-width: 1200px;
    margin: 0 auto 50px;
    color: #252525;
    font-size: 24px;
}

.admission-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.admission-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.admission-card:hover {
    transform: translateY(-8px);
}

.admission-card h3 {
    margin-bottom: 15px;
    color: #030857;
    font-weight: 600;
    font-size: 26px;
}

.admission-card h4 {
    margin-top: 15px;
    font-size: 16px;
    color: #333;
}

.admission-card ul {
    list-style: none;
    padding: 0;
}

.admission-card ul li {
    margin-bottom: 10px;
    font-size: 15px;
}

.admission-card ul li i {
    margin-right: 8px;
    color: #044f75;
}

/* Highlight Card */
.admission-card.highlight {
    background: #012a40;
    color: #fff;
}

.admission-card.highlight h3 {
    color: #fff;
}

.admission-card.highlight ul li i {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }
}

.fees-section {
    padding: 60px 0;
    background: #f4f8ff;
}

.section-title h2 {
    font-size: 36px;
    color: #044f75;
    margin-bottom: 15px;
}


.fees-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.fees-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.fees-card:hover {
    transform: translateY(-8px);
}

.fees-card h3 {
    margin-bottom: 15px;
    color: #044f75;
}

.fees-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.fees-card ul li {
    margin-bottom: 10px;
    font-size: 15px;
}

.fees-card ul li i {
    margin-right: 8px;
    color: #044f75;
}

.fees-card .note {
    font-size: 14px;
    color: #f6f6f6;
}

/* Highlight Card */
.fees-card.highlight {
    background: #044f75;
    color: #fff;
}

.fees-card.highlight h3 {
    color: #fff;
}

.fees-card.highlight ul li i {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }
}

.faculty-section {
    padding: 60px 0;
}

.faculty-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.faculty-card {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.faculty-card:hover {
    transform: translateY(-5px);
}

.faculty-card img {
    width: 100%;
    border-radius: 0%;
    object-fit: cover;
    margin-bottom: 15px;
}

.faculty-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.faculty-card p {
    font-size: 14px;
    color: #666;
}

.subject-badge {
    display: inline-block;
    background: #ff6b00;
    color: #fff;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}

.vaaniyambadi-topper-section {
    padding: 60px 20px;
    background: #f4f7fb;
    font-family: 'Poppins', sans-serif;
}

.vaaniyambadi-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: center;
}

.vaaniyambadi-topper-card {
    width: 1250px;
    margin: auto;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.vaaniyambadi-topper-image img {
    width: 100%;
}

.vaaniyambadi-topper-content {
    padding: 0 40px 0 20px;
}

.vaaniyambadi-topper-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.vaaniyambadi-topper-header {
    background: linear-gradient(135deg, #0077ff, #00c6ff);
    color: #fff;
    text-align: center;
    padding: 10px;
}

.vaaniyambadi-topper-header h2 {
    font-weight: 600;
    margin-bottom: 5px;
}

.vaaniyambadi-topper-header p {

    font-weight: 600;
}

.vaaniyambadi-topper-body {
    padding: 25px;
    text-align: center;
}

.vaaniyambadi-student-name {

    font-weight: 600;
    margin-bottom: 5px;
}

.vaaniyambadi-class {
    display: inline-block;

    background: #eef4ff;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.vaaniyambadi-marks {
    list-style: none;
    padding: 0;
}

.vaaniyambadi-marks li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
    transition: 0.3s;
    font-size: 18px;
}

.vaaniyambadi-marks li:hover {
    padding-left: 5px;
    color: #0077ff;
}

.vaaniyambadi-marks span {
    font-weight: 600;
}

.vaaniyambadi-total {
    margin-top: 15px;
    font-size: 25px;
    color: #0077ff;
    font-weight: 600;
}
.profile-box {
    text-align: center;
    color: #fff;
    margin: auto;
    transition: 0.3s ease;
}

.profile-box:hover {
    transform: translateY(-8px);
}

.profile-box h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.designation {
    font-size: 18px;
    color: #050c7c;;
    font-weight: 600;
    margin-bottom: 5px;
}

.organization {
    font-size: 16px;
    letter-spacing: 1px;
    opacity: 0.9;
}
@media (max-width: 768px) {
    .vaaniyambadi-topper-content {
        padding: 20px 40px 15px 20px;
    }

    .vaaniyambadi-topper-card {
        width: 100%;
    }
}