
body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa;
    line-height: 1.7;
}


.btn-gradient {
    background: linear-gradient(135deg, #002a7d, SkyBlue);
    border: none;
    color: #fff;
    transition: all .3s ease-in-out;
}

    .btn-gradient:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0,0,0,.25);
    }

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

    .section-title::after {
        content: "";
        display: block;
        width: 60px;
        height: 3px;
        background: #002a7d;
        margin: 10px auto 0;
        border-radius: 2px;
    }

/* Cards */
.admission-card, .staff-card {
    border-radius: 20px;
    transition: all .3s ease-in-out;
}

    .admission-card:hover, .staff-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 25px rgba(0,0,0,.15);
    }

.DirectorAndPrincipal-img {
    height: 340px;
    width: 340px;
    object-fit: cover;
}

/* Staff Image */
.staff-img {
    height: 140px;
    width: 140px;
    object-fit: cover;
}


/* Animations */
.fade-in {
    animation: fadeInUp 1s ease both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #002a7d, SkyBlue);
    z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        height: auto; /* let content decide */
        padding: 80px 20px; /* add spacing */
    }

        .hero h1 {
            font-size: 2rem; /* smaller on mobile */
            line-height: 1.3;
        }

        .hero p {
            font-size: 1rem;
        }

        .hero .btn {
            padding: 10px 20px;
            font-size: 1rem;
        }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    /* Section titles */
    .section-title {
        font-size: 1.5rem;
    }
    /* Admissions & Goals cards */
    .admission-card, .staff-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    /* Hero section */
    .hero {
        height: auto; /* let content expand naturally */
        padding: 80px 20px;
        text-align: center;
    }

        .hero h1 {
            font-size: 2rem;
            line-height: 1.3;
        }

        .hero p {
            font-size: 1rem;
        }

        .hero .btn {
            padding: 10px 20px;
            font-size: 1rem;
        }
    /* Staff images */
    .staff-img {
        height: 100px;
        width: 100px;
    }
    /* Carousel images */
    .carousel-item img {
        max-width: 150px;
    }
    /* Cards inside admissions & goals */
    .admission-card, .staff-card {
        padding: 1.5rem 1rem;
    }
    /* Feedback cards */
    .feedback .card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero .btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .DirectorAndPrincipal-img {
        height: 240px;
        width: 240px;
        object-fit: cover;
    }

    .staff-img {
        height: 80px;
        width: 80px;
    }
}

/* Message Cards */
.message-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .message-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.12);
    }

/* Images hover glow */
.hover-glow {
    transition: transform .4s ease, box-shadow .4s ease;
}

    .hover-glow:hover {
        transform: scale(1.05);
        box-shadow: 0 12px 25px rgba(0, 123, 255, 0.3);
    }

/* Typography */
.message-card h3 {
    font-weight: 700;
}

.message-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .message-card {
        text-align: center;
        padding: 1.5rem;
    }

        .message-card h3 {
            font-size: 1.4rem;
        }

        .message-card p {
            font-size: 1rem;
            text-align: justify;
        }
}

@media (max-width: 768px) {
    .message-card p {
        text-align: center;
    }
}

/* Gradient backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #ffc107, #e0a800);
}

.bg-gradient-info {
    background: linear-gradient(135deg, #17a2b8, #117a8b);
}

/* Card Styling */
.admission-card {
    border-radius: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

    .admission-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    /* Icons */
    .admission-card i {
        transition: transform 0.3s ease;
    }

    .admission-card:hover i {
        transform: rotate(8deg) scale(1.1);
    }

h2 {
    color: #002a7d;
    font-family: 'Poppins', sans-serif;
}

.hero-split {
    background: linear-gradient(135deg, #002a7d, #668FB1);
    min-height: 90vh;
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
}

    .hero-split h1 {
        font-size: 2.8rem;
        line-height: 1.2;
        text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    }

    .hero-split p {
        font-size: 1.1rem;
        opacity: 0.9;
    }

    .hero-split .btn-gradient {
        background: linear-gradient(135deg, #1c658c,#56c1f0);
        color: #fff;
        border: none;
        padding: 0.75rem 2.5rem;
        font-size: 1.1rem;
        border-radius: 50px;
        transition: all 0.3s ease;
    }

        .hero-split .btn-gradient:hover {
            background: linear-gradient(135deg, #28a745, #002a7d);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }

/* Video container with overlay and shadow */
.video-container {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .video-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 1.5rem 4rem rgba(0,0,0,0.6);
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

/* Gradient overlay on video */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
    border-radius: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-split {
        text-align: center;
        padding: 60px 20px;
    }

        .hero-split h1 {
            font-size: 2rem;
        }

        .hero-split p {
            font-size: 1rem;
        }

        .hero-split .btn-gradient {
            padding: 0.65rem 2rem;
            font-size: 1rem;
        }

    .col-lg-6 {
        margin-bottom: 30px;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 3rem;
}

/* Marquee styling */
.student-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.student-marquee {
    display: flex;
    gap: 2rem;
    animation: marquee 25s linear infinite;
}

    .student-marquee:hover {
        animation-play-state: paused;
    }

/* Student cards */
.student-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 200px;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .student-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 1rem 2rem rgba(0,0,0,0.25);
    }

.student-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 5px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(45deg, #28a745, #002a7d);
    box-shadow: 0 0 15px rgba(37,150,190,0.3);
    transition: transform 0.3s ease;
}

.student-card:hover .student-img {
    transform: scale(1.1);
}

/* Fade-in animation */
.fade-in {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Marquee animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Floating particles */
.particles-containerStar {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

    .particles-containerStar span {
        position: absolute;
        display: block;
        width: 12px;
        height: 12px;
        background: rgba(40,167,69,0.15);
        border-radius: 50%;
        animation: floatParticles linear infinite;
        opacity: 0.6;
    }

@keyframes floatParticles {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }

    50% {
        transform: translateY(-50px) translateX(20px) rotate(45deg);
    }

    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .student-img {
        width: 90px;
        height: 90px;
    }

    .student-card {
        min-width: 150px;
        padding: 1rem;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #002a7d;
    margin-bottom: 3rem;
    text-align: center;
}

/* Bubble Styling */
.message-bubble {
    max-width: 600px;
    width: 100%;
    position: relative;
    border-radius: 30px;
    background: linear-gradient(145deg, #ffffff, #d0e9ff);
    padding: 2rem 2.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.2);
    display: inline-block;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.animated-bubble {
    box-shadow: 0 0 20px rgba(37,150,190,0.4), 0 0 30px rgba(40,167,69,0.2);
    animation: bounceFade 1s ease forwards;
    opacity: 0;
}

.message-bubble:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.25);
}

/* Bubble Tail */
.message-bubble.left::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-top-color: #d0e9ff;
    bottom: -30px;
    left: 40px;
}

.message-bubble.right::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-top-color: #d0e9ff;
    bottom: -30px;
    right: 40px;
}

/* Bounce fade-in animation */
@keyframes bounceFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    50% {
        opacity: 1;
        transform: translateY(-5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Particles */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

    .particles-container span {
        position: absolute;
        display: block;
        width: 15px;
        height: 15px;
        background: rgba(37,150,190,0.15);
        border-radius: 50%;
        animation: floatParticles linear infinite;
        opacity: 0.6;
    }

/* Particle animation */
@keyframes floatParticles {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }

    50% {
        transform: translateY(-50px) translateX(20px) rotate(45deg);
    }

    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .message-bubble {
        max-width: 90%;
        padding: 1.5rem 2rem;
    }

        .message-bubble.left::after,
        .message-bubble.right::after {
            bottom: -20px;
            left: 30px;
            right: 30px;
            border-width: 12px;
        }
}

#particles-container span {
    position: absolute;
    display: block;
    width: 12px;
    height: 12px;
    background: rgba(0,123,255,0.1); /* light blue */
    border-radius: 50%;
    animation: floatParticles linear infinite;
    opacity: 0.6;
}

@keyframes floatParticles {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }

    50% {
        transform: translateY(-50px) translateX(20px) rotate(45deg);
    }

    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
}



/* Marquee container */
.staff-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.staff-marquee {
    display: flex;
    gap: 2rem;
    animation: staffMarquee 25s linear infinite;
}

    .staff-marquee:hover {
        animation-play-state: paused;
    }

/* Increase staff card width */
.staff-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 220px; /* increased from 180px to 220px */
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 768px) {
    .staff-card {
        min-width: 160px; /* increase proportionally for mobile */
        padding: 1rem;
    }
}


.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.25);
}

.staff-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 0 10px rgba(0,123,255,0.2);
    transition: transform 0.3s ease;
}

.staff-card:hover .staff-img {
    transform: scale(1.05);
}

/* Fade-in animation */
.fade-in {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Marquee animation */
@keyframes staffMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Optional floating particles for premium effect */
.particles-containerStaff {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

    .particles-containerStaff span {
        position: absolute;
        display: block;
        width: 12px;
        height: 12px;
        background: rgba(0,123,255,0.1);
        border-radius: 50%;
        animation: floatParticlesStaff linear infinite;
        opacity: 0.6;
    }

@keyframes floatParticlesStaff {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }

    50% {
        transform: translateY(-50px) translateX(20px) rotate(45deg);
    }

    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .staff-img {
        width: 80px;
        height: 80px;
    }

    .staff-card {
        min-width: 140px;
        padding: 1rem;
    }
}

.stats-container {
    font-family: 'Poppins', sans-serif;
    color: black;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.stat-card {
    width: 100%;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.99);
    padding: 1rem 1rem;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    animation: fadeInUp 0.6s ease-out;
    transition: transform 0.3s ease;
}

    .stat-card:hover {
        transform: translateY(-5px);
    }

    .stat-card i {
        font-size: 40px;
        margin-bottom: 15px;
        color: black;
    }

    .stat-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
        color: #111;
    }

    .stat-card p {
        font-size: 28px;
        font-weight: bold;
        color: #111;
    }

@keyframes float3D {
    0% {
        transform: perspective(800px) rotateX(0deg) rotateY(0deg) translateY(0px);
    }

    25% {
        transform: perspective(800px) rotateX(2deg) rotateY(-2deg) translateY(-8px);
    }

    50% {
        transform: perspective(800px) rotateX(0deg) rotateY(0deg) translateY(0px);
    }

    75% {
        transform: perspective(800px) rotateX(-2deg) rotateY(2deg) translateY(-8px);
    }

    100% {
        transform: perspective(800px) rotateX(0deg) rotateY(0deg) translateY(0px);
    }
}

.stat-card {
    animation: float3D 5s ease-in-out infinite;
    transform-style: preserve-3d;
    will-change: transform;
}

    .stat-card:nth-child(2) {
        animation-delay: 0.5s;
    }

    .stat-card:nth-child(3) {
        animation-delay: 1s;
    }

    .stat-card:nth-child(4) {
        animation-delay: 1.5s;
    }

    .stat-card:hover {
        animation-play-state: paused;
        transform: perspective(800px) rotateX(0deg) rotateY(0deg) translateY(-5px);
    }


.staff-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background: radial-gradient(circle at top left,#edf4ff 0%,transparent 45%), radial-gradient(circle at bottom right,#f5f9ff 0%,transparent 40%), #f8fafc;
}

.staff-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: #3b82f620;
    border-radius: 50%;
    filter: blur(100px);
    top: -120px;
    left: -100px;
}

.staff-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: #8b5cf620;
    border-radius: 50%;
    filter: blur(100px);
    right: -80px;
    bottom: -80px;
}



.section-heading {
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg,#002a7d,#668FB1);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: .8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 600;
}

.section-heading h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #002a7d;
    margin-bottom: 15px;
}

.section-heading p {
    max-width: 650px;
    margin: auto;
    color: #6b7280;
    font-size: 1.05rem;
}


.staff-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 35px;
}


.staff-card {
    background: rgba(255,255,255,.65);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 28px;
    padding: 35px 25px;
    text-align: center;
    transition: .4s;
    box-shadow: 0 15px 40px rgba(15,23,42,.08);
    position: relative;
    overflow: hidden;
}

    .staff-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 120deg, transparent, rgba(255,255,255,.5), transparent );
        transition: .8s;
    }

    .staff-card:hover::before {
        left: 100%;
    }

    .staff-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(37,99,235,.18);
    }


.staff-image-wrapper {
    width: 140px;
    height: 140px;
    margin: auto auto 22px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient( 135deg, #002a7d,#668FB1 );
}

.staff-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
}


.staff-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.staff-position {
    display: inline-block;
    color: #002a7d;
    font-weight: 600;
    font-size: .95rem;
}



@media(max - width:768px) {

    .section-heading h2 {
        font-size: 2rem;
    }

    .staff-card {
        padding: 30px 20px;
    }

    .staff-image-wrapper {
        width: 120px;
        height: 120px;
    }
}

.extra-academic,
.extra-admin {
    transition: .45s ease;
}

.show-card {
    animation: staffFade .45s ease;
}

@keyframes staffFade {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    background: linear-gradient(135deg,goldenrod,goldenrod);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: .3s;
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(37,99,235,.25);
    }

/* =======================
       EX PRINCIPAL SECTION
    ======================= */

.ex-section {
    background: radial-gradient(circle at top left,#668FB1 0%,transparent 45%), radial-gradient(circle at bottom right,#668FB1 0%,transparent 45%), #f8fafc;
    padding: 90px 0;
}

/* Heading */

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg,#002a7d,#668FB1);
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: .8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #002a7d;
}

.section-subtitle {
    color: #6b7280;
    max-width: 600px;
    margin: auto;
}

/* Card */

.ex-card-modern {
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 25px;
    padding: 35px 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .4s;
}

    .ex-card-modern:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 55px rgba(37,99,235,.18);
    }

/* Image */

.ex-img-wrapper {
    width: 150px;
    height: 150px;
    margin: auto;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg,goldenrod,goldenrod);
}

.ex-img-modern {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
}

/* Badge */

.ex-badge-modern {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    background: #eef4ff;
    color: goldenrod;
    border-radius: 30px;
    font-weight: 600;
    font-size: .9rem;
}

/* Swiper arrows */

.swiper-button-prev,
.swiper-button-next {
    color: #002a7d;
}

.swiper-pagination-bullet {
    background: #002a7d;
}

/* Mobile tweak */

@media(max - width:768px) {

    .section-title {
        font-size: 2rem;
    }

    .ex-img-wrapper {
        width: 120px;
        height: 120px;
    }
}

