﻿
/* HERO */
.hero-section {
    position: relative;
    margin-top:20px;
}

/* IMAGE */
.hero-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* WRAPPER */
.hero-wrapper {
    position: relative;
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
}



/* MOBILE */
@media(max-width:768px) {
    .hero-img {
        height: 350px;
    }

   
}

.contact-section {
    padding: 40px 0;
    background: url('/Images/tech-bg-1.png');
    color: #fff;
}

/* TEXT */

.contact-text h1 {
    font-size: 34px;
    font-weight: 700;
    color: #1e2a55;
    margin-bottom: 20px;
    line-height: 1.4;
}

.contact-text h4 {
    font-size: 18px;
    color: #1e2a55;
    margin-bottom: 20px;
    opacity: .9;
}

.contact-text p {
    font-size: 16px;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* BUTTON */

.contact-btn {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(45deg,#4f46e5,#6366f1);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

    .contact-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

/* IMAGE */

.contact-img img {
    max-width: 340px; /* thoda chota size */
    width: 100%;
    border-radius: 18px;
    display: block;
    margin: auto;
    position: relative;
   
   
    transition: all .5s ease;
    /* Floating Animation */
    animation: floatImage 4s ease-in-out infinite;
}

    /* Hover Effect */

    .contact-img img:hover {
        transform: scale(1.05) rotateY(6deg);
    }

/* Floating Animation */

@keyframes floatImage {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}


/* SUBJECT SECTION */

.subjects-section {
    padding: 40px 0;
    background: url('/Images/technology-5.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.subject-title {
    text-align: center;
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}

/* CARD */

.subject-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: #fff;
    transition: 0.5s;
   
    position: relative;
    overflow: hidden;
}


    /* ICON */

    .subject-card img {
        width: 90px;
        margin-bottom: 20px;
    }


    /* TITLE */

    .subject-card h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 10px;
    }


    /* COURSE */

    .subject-card p {
        font-size: 15px;
        color: #777;
        margin-bottom: 25px;
    }


    /* BUTTON */

    .subject-card a {
        display: inline-block;
        padding: 12px 28px;
        border-radius: 30px;
        background: #111;
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s;
    }


    /* HOVER EFFECT */

    .subject-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 60px rgba(0,0,0,0.25);
    }


    /* BUTTON HOVER */

    .subject-card a:hover {
        background: #ff4b2b;
    }


/* CARD COLORS */

.medical {
    background: linear-gradient(135deg,#e0f7fa,#ffffff);
}

.engineering {
    background: linear-gradient(135deg,#e1f5fe,#ffffff);
}

.management {
    background: linear-gradient(135deg,#fce4ec,#ffffff);
}


/* SECTION */

.courses-section {
    padding: 40px 0;
    background: url('/Images/tech-bg-1.png');
    margin-bottom: 5px;
}


/* TITLE */

.course-title {
    text-align: center;
    color: #1e2a55;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 70px;
}


/* CARD */

.course-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    border-radius: 18px;
    background: linear-gradient(135deg,#fce4ec,#ffffff);
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


/* IMAGE */

.course-img img {
    width: 200px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #eef2ff;
}


/* TEXT */

.course-content h3 {
    color: #1e2a55;
    font-size: 24px;
    margin-bottom: 8px;
}

.course-content p {
    color: #666;
    font-size: 15px;
    margin-bottom: 12px;
}


/* LINK */

.course-content a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

    .course-content a:hover {
        color: #3730a3;
    }


/* HOVER */

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.admission-section {
    padding: 40px 0;
    background: linear-gradient(135deg,#fce4ec,#ffffff);
    margin-bottom: 5px;
}

/* TEXT */

.admission-text h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e2a55;
}

.admission-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

/* BUTTON */

.apply-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #2a5298;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

    .apply-btn:hover {
        background: #1e3c72;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

/* IMAGE */

.admission-img img {
    width: 100%;
    max-width: 450px;
    
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}



.notice-query-section {
    padding: 60px 0;
   /*background: url('/Images/about2.jpg') center/cover no-repeat;*/
}


/* NOTICE BOARD */

.notice-board {
    height: 350px;
    overflow: hidden;
    background: #f50b0b;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

    .notice-board ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .notice-board li {
        padding: 12px;
        border-bottom: 1px solid #eee;
        cursor: pointer;
        transition: .3s;
        color: #333;
        font-weight: 500;
    }

        .notice-board li:hover {
            background: #f3f4f6;
        }


/* DATE */

.notice-date {
    background: #4f46e5;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    margin-right: 10px;
    font-size: 12px;
}


/* QUERY FORM */

.query-form {
    background: #fff;
    color: #333;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

    .query-form h3 {
        margin-bottom: 20px;
        font-weight: 700;
    }

    .query-form input,
    .query-form textarea {
        width: 100%;
        padding: 12px;
        margin-bottom: 15px;
        border-radius: 6px;
        border: 1px solid #ddd;
    }

    .query-form button {
        width: 100%;
        padding: 12px;
        background: #ff4b2b;
        border: none;
        color: #fff;
        border-radius: 30px;
        font-weight: 600;
        transition: .3s;
    }

        .query-form button:hover {
            background: #e63e1e;
            transform: translateY(-2px);
        }


/* MOBILE */

@media(max-width:768px) {

    .notice-board {
        margin-bottom: 30px;
        width:150px;
    }
    
}



.gallery-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: linear-gradient(45deg,#4f46e5,#6366f1);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    margin-top: 30px;
}

    .gallery-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        color: #fff;
    }


.alumni-section {
    padding: 40px 0;
    background: url('/Images/about1.jpg');
    margin-bottom: 5px;
}

.alumni-title {
    text-align: center;
    font-size: 38px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 70px;
}


/* CARD */

.alumni-card {
    background: #fff;
    border-radius: 20px;
    border: 2px solid #f50b0b;
    padding: 40px 25px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
}


/* IMAGE */

.alumni-img {
    margin-top: -70px;
}

    .alumni-img img {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        border: 3px solid #f50b0b;
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        object-fit: cover;
    }


/* TEXT */

.alumni-card h3 {
    margin-top: 15px;
    font-size: 22px;
    font-weight: 700;
}

.company {
    color: #ff5722;
    font-weight: 700;
    margin-top: 5px;
}

.package {
    font-weight: 600;
    margin-top: 5px;
}


/* HOVER */

.alumni-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 80px rgba(0,0,0,0.35);
}




/* ========================= */
/* TABLET VIEW */
/* ========================= */

@media (max-width: 992px) {

    .hero-img {
        height: 350px;
    }

    .about-image img {
        width: 100%;
    }

    .contact-img img {
        max-width: 100%;
    }

    .notice-board {
        width: 100%;
    }

    .alumni-img {
        margin-top: -80px;
    }
}


/* ========================= */
/* MOBILE VIEW */
/* ========================= */

@media (max-width:768px) {

    /* HERO */

    .hero-img {
        height: 150px;
    }


    /* ABOUT */

    .about-section {
        padding: 40px 15px;
    }

    .about-text h2 {
        font-size: 26px;
    }

    .about-text p {
        font-size: 15px;
    }

    .about-image img {
        width: 100%;
        margin-top: 20px;
        margin-left:0px;
    }


    /* CONTACT */

    .contact-section {
        padding: 20px 15px;
    }

    .contact-text h1 {
        font-size: 24px;
    }

    .contact-text h4 {
        font-size: 16px;
    }

    .contact-img img {
        /*        max-width: 100%;
        margin-top: 20px;*/
        display: none;
    }


    /* SUBJECTS */

    .subject-title {
        font-size: 26px;
    }

    .subject-card {
        padding: 25px 20px;
    }

        .subject-card h3 {
            font-size: 20px;
        }


    /* COURSES */

    .course-title {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .course-card {
        flex-direction: column;
        text-align: center;
    }

    .course-img img {
        width: 130px;
        height: 120px;
    }


    /* ADMISSION */

    .admission-text h2 {
        font-size: 26px;
    }

    .admission-img img {
        margin-top: 20px;
    }


    /* NOTICE */

    .notice-title {
        font-size: 24px;
    }

    .notice-board {
        height: 350px;
        width: 100%;
        margin-bottom: 20px;
    }

        .notice-board li {
            flex-direction: column;
            gap: 5px;
        }


    /* QUERY FORM */

    .query-form {
        padding: 25px;
    }


    /* ALUMNI */

    .alumni-title {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .alumni-card {
        padding: 40px 20px;
        margin-bottom: 15px;
        margin-top: 20px;
    }

    .alumni-img img {
        width: 110px;
        height: 110px;
    }
}


/* ========================= */
/* SMALL MOBILE */
/* ========================= */

@media (max-width:480px) {

    .hero-img {
        height: 180px;
    }

    .about-text h2 {
        font-size: 22px;
    }

    .contact-text h1 {
        font-size: 20px;
    }

    .subject-title,
    .course-title,
    .alumni-title {
        font-size: 22px;
    }

    .subject-card {
        padding: 20px;
    }

    .course-card {
        padding: 20px;
    }

    .notice-board {
        height: 250px;
    }

    .query-form {
        padding: 20px;
    }
}








.about-modern {
    padding: 60px 0;
    background: linear-gradient(135deg,#eef2ff,#f8fafc);
    position: relative;
    overflow: hidden;
}


    /* BACKGROUND SHAPE */

    .about-modern::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        background: linear-gradient(135deg,#6366f1,#4f46e5);
        opacity: 0.08;
        border-radius: 50%;
        top: -150px;
        right: -150px;
    }


/* WRAPPER */

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}


/* IMAGE */

.about-left {
    flex: 1;
    position: relative;
}

.image-box {
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    max-height: 420px;
    max-width: 420px;
    margin-left: 70px;
    transition: 0.4s;
}

    .image-box img {
        width: 100%;
        border-radius: 20px;
    }

    .image-box:hover {
        transform: rotate(0deg) scale(1.05);
    }


/* TEXT */

.about-right {
    flex: 1;
}

.about-label {
    background: #4f46e5;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    letter-spacing: 1px;
}

.about-right h2 {
    font-size: 46px;
    font-weight: 700;
    margin: 20px 0;
    color: #111827;
    line-height: 1.3;
}

.about-right p {
    font-size: 17px;
    line-height: 1.9;
    color: #000000;
    margin-bottom: 30px;
}


/* BUTTON */

.modern-btn {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg,#4f46e5,#6366f1);
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

    .modern-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        color: white;
    }

/* MOBILE RESPONSIVE */

@media (max-width:768px) {

    .about-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    /* TEXT FIRST */

    .about-right {
        order: 1;
        padding: 0 15px;
    }
    /* IMAGE SECOND */

    .about-left {
        order: 2;
        text-align: center;
    }
    /* IMAGE FIX */

    .image-box {
        margin: 0 auto;
        max-width: 90%;
        max-height: none;
    }
    /* TITLE SIZE */

    .about-right h2 {
        font-size: 25px;
    }
    /* PARAGRAPH */

    .about-right p {
        font-size: 15px;
        font-weight: 500;
    }
    /* BUTTON */

    .modern-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}





/* ================= WRAPPER ================= */
.srv3d-wrap {
    padding: 70px 20px 90px;
    background: #f4f6f9;
    text-align: center;
    overflow: hidden;
    position: relative;
}

/* ================= TITLE ================= */
.srv3d-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 35px;
    margin-top: -65px;
}

    .srv3d-title span {
        color: #6c5ce7;
    }

/* ================= CONTAINER ================= */
.srv3d-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: auto;
    perspective: 1500px;
}

/* ================= STAGE ================= */
.srv3d-stage {
    position: relative;
    height: 355px;
    /* exact card height fit */
}

/* ================= CARD ================= */
.srv3d-card {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 345px;
    height: 350px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.7s cubic-bezier(.4, 2, .6, 1);
    display: flex;
    flex-direction: column;
    border: 2px solid black;
    -o-object-fit: cover;
}

    /* ================= IMAGE ================= */
    .srv3d-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }



.srv3d-btn {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 16px;
    font-size: 11px;
    text-decoration: none;
    margin: 3px;
    color: #fff;
}

    .srv3d-btn.blue {
        background: #0984e3;
    }

    .srv3d-btn.green {
        background: #00b894;
    }

/* ================= 3D POSITIONS ================= */
.srv3d-card:nth-child(1) {
    transform: translateX(calc(-50% - 280px)) scale(0.7) rotateY(35deg);
    z-index: 1;
    opacity: 0.6;
}

.srv3d-card:nth-child(2) {
    transform: translateX(calc(-50% - 140px)) scale(0.85) rotateY(18deg);
    z-index: 2;
}

.srv3d-card:nth-child(3) {
    transform: translateX(-50%) scale(1.05);
    z-index: 5;
}

.srv3d-card:nth-child(4) {
    transform: translateX(calc(-50% + 140px)) scale(0.85) rotateY(-18deg);
    z-index: 2;
}

.srv3d-card:nth-child(5) {
    transform: translateX(calc(-50% + 280px)) scale(0.7) rotateY(-35deg);
    z-index: 1;
    opacity: 0.6;
}

/* ================= NAV BUTTON ================= */
.srv3d-nav {
    position: absolute;
    top: 42%;
    background: #6c5ce7;
    color: #fff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
}

.srv3d-prev {
    left: 10px;
}

.srv3d-next {
    right: 10px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .srv3d-stage {
        height: 330px;
    }

    .srv3d-card {
        width: 250px;
        height: 310px;
    }

        .srv3d-card:nth-child(1),
        .srv3d-card:nth-child(2),
        .srv3d-card:nth-child(4),
        .srv3d-card:nth-child(5) {
            opacity: 0;
            pointer-events: none;
        }

        .srv3d-card:nth-child(3) {
            transform: translateX(-50%) scale(1);
        }

    .srv3d-nav {
        top: 80%;
        align-items: center;
    }
}


/* MAIN BOX */
.timeline-box {
    background: #1f2937;
    border-radius: 15px;
    color: #fff;
    height: 500px;
    width:480px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

    /* LEFT GREEN BAR */
    .timeline-box::before {
        content: "";
        position: absolute;
        left: -15px;
        top: 0;
        width: 12px;
        height: 100%;
        background: #4ade80;
        border-radius: 10px;
    }

/* ================= HEADER (STICKY) ================= */
.timeline-header {
    position: sticky;
    top: 0;
    background: #1f2937;
    padding: 15px 20px;
    z-index: 10;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* TITLE */
.timeline-title {
    margin: 0;
    font-size: 22px;
    font-weight: bold;
}

/* ================= SCROLL AREA ================= */
.timeline-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

    /* SCROLLBAR */
    .timeline-scroll::-webkit-scrollbar {
        width: 5px;
    }

    .timeline-scroll::-webkit-scrollbar-thumb {
        background: #4ade80;
        border-radius: 10px;
    }

/* ================= TIMELINE ================= */
.timeline {
    position: relative;
    margin-left: 20px;
}

    /* LINE */
    .timeline::before {
        content: "";
        position: absolute;
        left: 8px;
        top: 0;
        width: 2px;
        height: 100%;
        background: #4ade80;
    }

/* ================= ITEM ================= */
.timeline-item {
    position: relative;
    margin-bottom: 25px;
    padding-left: 30px;
    cursor: pointer;
}

/* DOT */
.timeline-dot {
    position: absolute;
    left: -2px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: #4ade80;
    border-radius: 50%;
    border: 3px solid #1f2937;
}

/* CONTENT CARD */
.timeline-content {
    background: rgba(255,255,255,0.05);
    padding: 12px 15px;
    border-radius: 10px;
    transition: 0.3s;
}

    /* HOVER EFFECT */
    .timeline-content:hover {
        background: rgba(74, 222, 128, 0.2);
        transform: translateX(6px);
    }

/* DATE */
.timeline-date {
    font-size: 12px;
    color: #4ade80;
    font-weight: 600;
}

/* TEXT */
.timeline-content p {
    margin: 5px 0 0;
    font-size: 14px;
    line-height: 1.5;
}

/* ================= MOBILE ================= */
@media(max-width:768px) {
    .timeline-box {
        height: 380px;
        width:320px;

        margin-bottom: 20px;
    }

    .timeline-title {
        font-size: 18px;
    }

    .timeline-content p {
        font-size: 13px;
    }
}






