body {
    margin: 0;
    font-family: "Lato", sans-serif;
    background: linear-gradient(to bottom, #cfd8dc, #eceff1);
}
.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social a {
  width: 40px;
  height: 40px;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  transition: 0.3s ease;
}

.social a:hover {
  background: #d8d7d8; /* red hover */
  transform: translateY(-3px);
}

.sticky-apply-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border: 1.5px solid #fff;
    border-radius: 10px;
    background: none;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 10px;
   
}
.sticky-apply-btn span:last-child::after {
    content: "→";
    display: inline-block;
    margin-left: 6px;
    font-size: 14px;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}
.sticky-apply-btn:hover span:last-child::after {
    transform: rotate(0deg);
}
.sticky-apply-btn:hover {
    background: #fff;
    color: #000;
}
.navbar.scrolled .sticky-apply-btn {
    background: none;
    color: #000;
    border: 1px solid #000;
}
.navbar.scrolled .sticky-apply-btn:hover {
    background: #000;
    color: #fff;
}
@media (max-width: 768px) {
    .sticky-apply-btn {
        position: fixed;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 9999;
        width: 40px;
        height: 120px;
        padding: 0;
        border-radius: 12px 0 0 12px;
        background: #fff !important;
        color: #000 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 500;
        box-shadow: -6px 0 18px rgb(0 0 0 / 0.3);
        margin-right: 0;
        inset-inline-end: 0;
        margin-top: 30px;
    }
    .sticky-apply-btn:hover,
    .sticky-apply-btn:active {
        background: #000 !important;
        color: #fff !important;
    }
    .sticky-apply-btn {
        letter-spacing: 1px;
    }
    .sticky-apply-btn span {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        line-height: 1;
        letter-spacing: 2px;
        font-size: 13px;
    }
    .sticky-apply-btn span {
        writing-mode: vertical-rl;
        text-orientation: mixed;
    }
    .sticky-apply-btn span:last-child::after {
        content: "";
    }
    .sticky-apply-btn:hover {
        background: #000;
        color: #fff;
    }
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    background: #fff0;
    box-shadow: none;
    transition: all 1s ease;
}
.navbar.scrolled {
    background: #fff;
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.05);
    padding: 6px 0;
}
.navbar-logo {
    height: 52px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    margin-left: 50px;
    transition:
        transform 0.3s ease,
        filter 0.4s ease;
}
.navbar-logo:hover {
    transform: scale(1.05);
}
.menu-btn {
    display: flex;
    align-items: center;
    background: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    gap: 12px;
    transition: all 0.3s ease;
    margin-right: 50px;
}
.menu-btn:hover {
    background: #fff;
    color: #000;
}
.navbar.scrolled .menu-btn {
    background: none;
    color: #000;
    border: 1px solid #000;
}
.navbar.scrolled .menu-btn:hover {
    background: #000;
    color: #fff;
}
.menu-icon {
    position: relative;
    width: 25px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.menu-icon span:nth-child(1) {
    top: 0;
}
.menu-icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}
.menu-icon span:nth-child(3) {
    bottom: 0;
}
.menu-btn:hover .menu-icon span {
    background: #000;
}
.navbar.scrolled .menu-icon span {
    background: #000;
}
.navbar.scrolled .menu-btn:hover .menu-icon span {
    background: #fff;
}
.menu-overlay {
    position: fixed;
    inset: 0;
    background: #f4f2f2;
    display: none;
    flex-direction: row;
    z-index: 1000;
    transition: opacity 0.4s ease;
}
.menu-overlay.active {
    display: flex;
    opacity: 1;
}
.menu-left,
.menu-right {
    width: 50%;
    padding: 60px;
}
.menu-left {
    width: 50%;
    padding: 180px;
}
.menu-left p {
    line-height: 1.5;
    margin-bottom: 20px;
}
.social a {
    border: 1px solid #000;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    text-decoration: none;
    color: #000;
}
.privacy {
    position: absolute;
    bottom: 40px;
}
.menu-right {
    border-left: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.menu-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.menu-right li {
    margin: 25px 0;
}
.menu-right a {
    font-size: 45px;
    text-decoration: none;
    color: #d2cdcd;
    transition: color 0.3s ease;
}
.menu-right a:hover {
    color: #000;
}
.menu-right a.active {
    color: #000;
    font-weight: 600;
}
.close-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    border: none;
    background: none;
    font-size: 18px;
    cursor: pointer;
    color: #000;
    transition: all 0.3s ease;
}
.close-btn:hover {
    background: #000;
    color: #fff;
    border-radius: 4px;
    padding: 8px 20px;
}


/* Dropdown Base */
.has-dropdown {
    position: relative;
}

.has-dropdown > a {
    display: inline-block;
}

/* Hide dropdown by default */
.dropdown {
    list-style: none;
    padding-left: 25px;
    margin-top: 15px;
    max-height: 0;
    overflow: hidden;
    transition: all 2s ease;
}

/* Show dropdown on hover */
.has-dropdown:hover .dropdown {
    max-height: 500px;
}

/* Dropdown links */
.dropdown li {
    margin: 12px 0;
}

.dropdown a {
    font-size: 22px;
    color: #aaa;
    transition: 0.3s ease;
}

.dropdown a:hover {
    color: #000;
}

@media (max-width: 768px) {
    .navbar {
        background: #fff;
    }
    .navbar-logo {
        width: 150px;
        margin-left: 20px;
    }
    .menu-text {
        display: none !important;
    }
    .menu-btn {
        background: none;
        color: #000;
        border: none;
        margin-right: 20px;
    }
    .menu-icon span {
        background: #000;
    }
    .menu-overlay {
        flex-direction: column;
    }
    .menu-left,
    .menu-right {
        width: 100%;
        padding: 40px 30px;
    }
    .menu-right {
        order: 1;
        border-left: none;
        border-bottom: 1px solid #e7e5e5;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        padding-left: 50px;
    }
    .menu-right ul {
        margin-top: 40px;
    }
    .menu-right a {
        font-size: 36px;
    }
    .menu-left {
        order: 2;
        text-align: left;
        align-items: flex-start;
        padding-left: 50px;
        padding-bottom: 60px;
        position: relative;
    }
    .social {
        margin-top: 15px;
    }
    .privacy {
        position: static;
        margin-top: 30px;
    }
    .close-btn {
        top: 20px;
        right: 40px;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
}
body {
    overflow-x: hidden;
}
.video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}
.video-bg iframe,
.video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    z-index: 2;
}

@media (max-width: 768px) {
    .video-section {
        height: auto;
        aspect-ratio: 16 / 9;
        background-color: #000;
    }

    .video-bg iframe,
    .video-bg video {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-width: 0;
        min-height: 0;
        transform: none;
        object-fit: contain;
    }
}
.video-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    animation: fadeIn 1.5s ease-in-out;
}
.video-content h1 {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .video-content h1 {
        font-size: 1.8rem;
    }
}
@media (max-width: 480px) {
    .video-content h1 {
        font-size: 1.5rem;
    }
}
.dean-section {
    display: flex;
    gap: 40px;
    max-width: 1300px;
    margin: auto;
    padding: 140px 0;
    font-family: "Lato", sans-serif;
}
.dean-left {
    position: relative;
    width: 50%;
}
.video-frame {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgb(0 0 0 / 0.2);
    cursor: default;
}
.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgb(0 0 0 / 0.35) 0%,
        rgb(0 0 0 / 0.2) 28%,
        rgb(0 0 0 / 0) 55%
    );
    transition: 0.3s ease;
}
.play-btn {
    position: absolute;
    left: 40px;
    top: 150px;
    width: 75px;
    height: 55px;
    border: 2px solid #fff;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: #fff;
    opacity: 0;
    transition: 0.3s ease;
}
.dean-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;   /* 👈 Ye important hai */
    gap: 60px;
    background: #fff;
    box-shadow: 0 0 0 100vmax #fff;
    clip-path: inset(0 -100vmax);
}

.dean-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #fff;
    z-index: 5;

    
}
.dean-overlay h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    text-shadow: 0 2px 8px rgb(0 0 0 / 0.35);
}
.dean-overlay h2 {
    margin: 5px 0;
    font-size: 28px;
    font-weight: 700;
    font-style: italic;
    text-shadow: 0 3px 10px rgb(0 0 0 / 0.4);
}
.dean-overlay p {
    margin: 0;
    font-size: 16px;
    text-shadow: 0 2px 8px rgb(0 0 0 / 0.35);
}
.dean-right {
    width: 50%;
}
.dean-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}
.dean-right p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}
.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: none;
    color: #000;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: -20px;
    border: 1px solid #000;
    top:25px;
}
.learn-more .arrow {
    display: inline-block;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}
.learn-more:hover {
    background: #000;
    color: #fff;
}
.learn-more:hover .arrow {
    transform: rotate(0deg);
}
@media (min-width: 1400px) {
    .dean-section {
        padding: 130px 0;
    }
    .video-frame {
        height: 400px;
    }
}
@media (max-width: 1200px) {
    .dean-section {
        padding: 120px 20px;
        gap: 30px;
    }
    .dean-title {
        font-size: 30px;
    }
    .video-frame {
        height: 380px;
    }
}
@media (max-width: 992px) {
    .dean-section {
        flex-direction: column;
        padding: 100px 20px;
    }
    .dean-left,
    .dean-right {
        width: 100%;
    }
    .video-frame {
        height: 360px;
    }
    .play-btn {
        left: 30px;
        top: 140px;
    }
    .dean-title {
        font-size: 28px;
    }
}
@media (max-width: 768px) {
    .video-frame {
        height: 300px;
    }
    .play-btn {
        left: 25px;
        top: 120px;
        width: 65px;
        height: 48px;
        font-size: 22px;
    }
    .dean-overlay {
        left: 25px;
        bottom: 25px;
    }
    .dean-overlay h2 {
        font-size: 24px;
    }
    .dean-title {
        font-size: 26px;
    }
    .dean-right p {
        font-size: 16px;
    }
}
@media (max-width: 576px) {
    .dean-section {
        padding: 80px 16px;
    }
    .video-frame {
        height: 240px;
        border-radius: 10px;
    }
    .play-btn {
        left: 20px;
        top: 95px;
        width: 55px;
        height: 42px;
        font-size: 20px;
    }
    .dean-overlay h4 {
        font-size: 14px;
    }
    .dean-overlay h2 {
        font-size: 20px;
    }
    .dean-overlay p {
        font-size: 14px;
    }
    .dean-title {
        font-size: 24px;
    }
    .learn-more {
        font-size: 16px;
    }
}
@media (max-width: 400px) {
    .video-frame {
        height: 210px;
    }
    .dean-title {
        font-size: 22px;
    }
    .dean-right p {
        font-size: 15px;
    }
}
.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}
.video-popup-content {
    position: relative;
    width: 80%;
    max-width: 900px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}
.video-popup-content iframe {
    width: 100%;
    height: 450px;
}
.video-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 38px;
    color: #fff;
    cursor: pointer;
}
@media (max-width: 900px) {
    .dean-section {
        flex-direction: column;
        gap: 24px;
        padding: 20px 20px;
    }
    .dean-left,
    .dean-right {
        width: 100%;
    }
    .video-frame {
        height: 300px;
        border-radius: 12px;
    }
    .video-thumb {
        height: 100%;
        object-fit: cover;
    }
    .play-btn {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 45px;
        font-size: 22px;
        opacity: 1;
        border-radius: 10px;
    }
    .dean-overlay {
        bottom: 20px;
        left: 20px;
    }
    .dean-overlay h2 {
        font-size: 24px;
    }
    .dean-overlay h4 {
        font-size: 16px;
    }
    .dean-overlay p {
        font-size: 14px;
    }
    .dean-title {
        font-size: 26px;
        margin-top: 10px;
    }
    .dean-right p {
        font-size: 16px;
        line-height: 1.6;
        text-align: justify;
    }
    .learn-more {
        font-size: 16px;
    }
    .video-popup-content {
        width: 95%;
    }
    .video-popup-content iframe {
        height: 220px;
    }
}
@media (max-width: 480px) {
    .video-frame {
        height: 260px;
    }
    .play-btn {
        width: 55px;
        height: 40px;
        font-size: 20px;
    }
    .dean-overlay h2 {
        font-size: 22px;
    }
}

.questions-cta {
    text-align: center;
    margin-top: 16px;
    padding: 8px 0 50px;
}

.questions-cta h2 {
    margin: 0 0 20px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    color: #111;
}

.questions-cta-btn {
    display: inline-block;
    min-width: auto;
    padding: 15px 40px;
    border-radius: 10px;
    background: #000;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none;
    transition: background 0.25s ease;
}

.questions-cta-btn:hover {
    background: #8a8a8a;
}

@media (max-width: 900px) {
    .questions-cta-btn {
        width: auto;
        font-size: 16px;
        padding: 15px 40px;
        border-radius: 10px;
    }
}

.jgu-section {
    position: relative;
    padding: 130px 3% 120px;
    background:
      radial-gradient(circle at 16% 18%, rgb(129 154 186 / 0.18) 0%, rgb(129 154 186 / 0) 36%),
      radial-gradient(circle at 84% 16%, rgb(100 130 168 / 0.16) 0%, rgb(100 130 168 / 0) 38%),
      linear-gradient(165deg, #081321 0%, #030814 58%, #02050d 100%);
    font-family: "Poppins", sans-serif;
    isolation: isolate;
}

.jgu-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 24% 60%, rgb(255 227 207 / 0.2) 0%, rgb(255 227 207 / 0) 30%),
      radial-gradient(circle at 62% 48%, rgb(241 236 225 / 0.16) 0%, rgb(241 236 225 / 0) 36%),
      radial-gradient(circle at 42% 26%, rgb(224 229 241 / 0.15) 0%, rgb(224 229 241 / 0) 30%);
    filter: blur(34px);
    opacity: 0.72;
    pointer-events: none;
    z-index: 0;
}

.jgu-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(
        115deg,
        rgb(255 255 255 / 0.015) 0 1px,
        rgb(255 255 255 / 0) 1px 13px
      );
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.jgu-section > * {
    position: relative;
    z-index: 1;
}
.jgu-title {
    margin-top: -60px;
    padding-bottom: 10px;
    font-size: 40px;
    text-align: center;
    color: #f2f5fa;
}
.jgu-para{
  font-size: 20px;
    text-align: center;
    color: #c8d2df;
    padding-bottom: 80px;
}
.jgu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    max-width: 1440px;
    margin: 0 auto;
}
.jgu-program-card {
    background:
      radial-gradient(circle at 18% 12%, rgb(242 247 255 / 0.9) 0%, rgb(242 247 255 / 0) 42%),
      linear-gradient(165deg, #ffffff 0%, #f7f9fc 100%);
    border: 1px solid #e4e7eb;
    backdrop-filter: none;
    padding: 30px;
    height: 280px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgb(0 0 0 / 0.15);
    cursor: pointer;
    overflow: hidden;
    transition: 0.3s;
    position: relative;
}
.jgu-program-card:hover {
    transform: translateY(-5px);
}
.jgu-card-title {
    font-size: 2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
    line-height: 1.2;
    min-height: calc(2 * 1.2em);
}

.jgu-card-subtitle {
    font-size: 0.68em;
    font-weight: 500;
    white-space: nowrap;
}
.jgu-card-text {
    font-size: 1.15rem;
    color: #333;
    margin-top: 0;
}
.jgu-card-know {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: none;
    color: #000;
    padding: 8px 14px;
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 20px;
    left: 28px;
    border: 1px solid #000; 
}
.jgu-card-know .arrow {
    display: inline-block;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}
.jgu-card-know:hover {
    background: #000;
    color: #fff;
}
.jgu-card-know:hover .arrow {
    transform: rotate(0deg);
}
@media (max-width: 900px) {
    .jgu-card-title {
        font-size: 1.55rem;
        min-height: calc(2 * 1.2em);
    }

    .jgu-card-text {
        font-size: 1rem;
    }

    .jgu-title {
        font-size: 30px;
    }
    .jgu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .jgu-program-card {
        padding-bottom: 60px;
    }
}
@media (max-width: 550px) {
    .jgu-section {
        padding: 90px 4% 80px;
    }
    .jgu-title {
        font-size: 24px;
        padding-bottom: 20px;
    }
    .jgu-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .jgu-program-card {
        height: auto;
        padding: 16px 16px 60px;
    }
    .jgu-card-title {
        font-size: 1.1rem;
    }
    .jgu-card-text {
        font-size: 0.9rem;
    }
    .jgu-card-know {
        bottom: 14px;
        left: 14px;
        font-size: 12px;
        padding: 7px 14px;
    }
}
.auto-hero {
    position: relative;
    height: 86vh;
    width: 100%;
    overflow: hidden;
    background-image: url("https://jgu.edu.in//storage/1584/Consti.jpg");

    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;

    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

/* Dark Overlay */
.auto-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgb(0 0 0 / 0.55) 0%,
        rgb(0 0 0 / 0.35) 42%,
        rgb(0 0 0 / 0.18) 70%,
        rgb(0 0 0 / 0.1) 100%
    );
    z-index: 1;
}

/* Content */
.auto-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: min(1480px, calc(100% - 64px));
    margin: 0 auto 58px;
    padding: 0;
}

.auto-hero-content h1 {
    font-size: clamp(26px, 2.9vw, 48px);
    color: #fff;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    text-shadow: 0 5px 20px rgb(0 0 0 / 0.5);
    line-height: 1.2;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0;
    display: block;
    border-radius: 0;
    background: transparent;
}

/* Zoom Animation */
@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

/* Text Animation */
@keyframes textFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .auto-hero {
        height: 72vh;
    }

    .auto-hero-content {
        width: min(94vw, 1150px);
        margin: 0 auto 46px;
    }

    .auto-hero-content h1 {
        font-size: clamp(24px, 4.3vw, 36px);
        max-width: 1150px;
        padding: 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .auto-hero {
        height: 62vh;
    }

    .auto-hero-content {
        width: calc(100% - 24px);
        margin: 0 auto 26px;
    }

    .auto-hero-content h1 {
        padding: 0;
        font-size: clamp(22px, 6.2vw, 29px);
        max-width: 100%;
        line-height: 1.24;
    }
}


body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #f9f9f9;
}
/*
.texture-gallery-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 8%;
    color: #fff;
    overflow: hidden;
}
.texture-gallery-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff0;
    z-index: 0;
}
.texture-gallery-header {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
    animation: fadeInUp 1s ease;
}
.texture-gallery-header h2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    color: #29292b;
    margin-bottom: 10px;
}
.texture-gallery {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}
/* gap between first row and second row */
.texture-gallery + .texture-gallery {
    margin-top: 60px;   /* adjust as needed */
}

/* second row: hide 1,3,5 but keep blank space */
.second-row .texture-card:nth-child(1),
.second-row .texture-card:nth-child(3),
.second-row .texture-card:nth-child(5) {
    visibility: hidden;   /* 👈 space rahega */
    pointer-events: none;
}

 .first-row .texture-card:nth-child(2),
.first-row .texture-card:nth-child(4) {
    visibility: hidden;
    pointer-events: none;
}
.texture-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: #fff;
    cursor: pointer;
    transform: translateY(50px);
    opacity: 0;
    transition:
        transform 0.6s ease,
        opacity 0.6s ease,
        box-shadow 0.4s ease;
}
.texture-card.show {
    opacity: 1;
    transform: translateY(0);
}
.blank-card {
    aspect-ratio: 3/4;
    background: #fff0;
}
.card-number {
    position: absolute;
    top: 20px;
    left: 20px;
    border: none;
    border-radius: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: none;
    z-index: 3;
}
.card-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgb(0 0 0 / 0.7), transparent);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}
.card-footer p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}
.arrow-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}
.texture-card:hover .arrow-icon {
    transform: translate(5px, -5px);
}
.card-overlay {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    color: #fff;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: top 0.6s ease;
    z-index: 5;
}
.texture-card:hover .card-overlay {
    top: 0;
}
.overlay-content p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 10px;
}
.overlay-content strong {
    font-weight: 600;
}
.overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff0;
    color: #fff;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
    border: 1px solid #fff;
    transition: all 0.25s ease;
    width: fit-content;
    white-space: nowrap;
}
.overlay-btn .arrow {
    display: inline-block;
    font-size: 14px;
    transform: rotate(-45deg);
    transition: transform 0.25s ease;
}
.overlay-btn:hover {
    background: #fff;
    color: #000;
}
.overlay-btn:hover .arrow {
    transform: rotate(0deg);
}
.texture-card,
.blank-card {
    aspect-ratio: 1 / 1;
    width: 250px;
    height: 250px;
}
.card-footer {
    display: none;
}
.texture-card {
    transition:
        transform 0.5s ease,
        box-shadow 0.4s ease;
}
.texture-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgb(0 0 0 / 0.25);
}
.texture-gallery {
    gap: 5px;
}
.card-number {
    width: 76px;
    height: 66px;
    font-size: 40px;
    font-weight: 700;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 600px) {
    .texture-gallery {
        grid-template-columns: 1fr;
        justify-items: center;
        row-gap: 30px;
    }
    .texture-gallery-section {
        padding: 80px 5%;
    }
    .texture-gallery-header h2 {
        font-size: 32px;
    }
    .blank-card {
        display: none;
    }
}
@media (max-width: 768px) {

    /* FIRST ROW mobile */
    .first-row .texture-card:nth-child(2),
    .first-row .texture-card:nth-child(4),

    /* SECOND ROW mobile */
    .second-row .texture-card:nth-child(1),
    .second-row .texture-card:nth-child(3),
    .second-row .texture-card:nth-child(5) {
        display: none;        /* 👈 space bhi chali jaayegi */
        visibility: visible; /* reset */
    }
}  */

.faculty-highlight {
    padding-top: 10px;
    padding-bottom: 60px;
    text-align: center;
}
.faculty-highlight h4 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 50px;
    color: #111;
}
.swiper {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
}
.swiper-slide {
    display: flex;
    justify-content: center;
}
.faculty-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    padding-bottom: 40px;
    overflow: visible;
}
.faculty-box {
    background: #e9ebed;
    border-radius: 16px;
    padding: 50px 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgb(0 0 0 / 0.05);
}
.faculty-text {
    max-width: 54%;
    text-align: left;
}
.faculty-label {
    color: #066ca7;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.faculty-label-suffix {
    font-size: 0.82em;
    font-weight: 500;
}
.faculty-title {
    font-size: 36px;
    font-weight: 600;
    color: #111;
    margin-bottom: 30px;
    line-height: 1.3;
}
.faculty-details {
    margin-bottom: 12px;
}
.faculty-name {
    font-weight: 600;
    font-size: 18px;
}
.faculty-name a {
    color: #066ca7;
    text-decoration: none;
    font-weight: 600;
}
.faculty-role {
    font-size: 14px;
    color: #666;
}
.faculty-desc {
    color: #333;
    font-size: 15px;
    line-height: 1.7;
    margin: 25px 0 35px;
    max-width: 460px;
}
.faculty-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff0;
    color: #000;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #000;
}

.read-more:hover {
    background: #000;
    color: #fff;
}

.outline-btn {
    background: #fff0;
}
.faculty-photo {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    z-index: 3;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.15);
}
.faculty-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}
.faculty-photo:hover img {
    filter: grayscale(0%);
}
.faculty-container::after {
    content: "";
    position: absolute;
    top: 60px;
    right: 100px;
    width: 290px;
    height: 420px;
    background: #bfccd0;
    border-radius: 12px;
    z-index: 1;
}
.swiper-pagination {
    margin-top: 25px;
    position: relative;
}
.faculty-highlight .swiper-pagination {
    margin-bottom: 40px;
}
.swiper-pagination-bullet {
    background: #2f3031;
    opacity: 0.4;
}
.swiper-pagination-bullet-active {
    opacity: 1;
}
@media (max-width: 768px) {
    .faculty-main-btn {
        padding: 12px 30px;
        font-size: 15px;
    }
}
@media (max-width: 900px) {
    .faculty-box {
        padding: 60px 30px;
    }
    .faculty-text {
        max-width: 100%;
        text-align: center;
    }
    .faculty-photo {
        position: relative;
        transform: none;
        top: auto;
        right: auto;
        margin: 40px auto 0;
        width: 320px;
        height: 440px;
    }
    .faculty-container::after {
        display: none;
    }
    .faculty-title {
        margin-bottom: 20px;
        font-size: 32px;
    }
    .faculty-desc {
        margin: 18px 0 26px;
    }
}
@media (max-width: 600px) {
    .faculty-actions {
        justify-content: center;
    }
}

/*Our Most*/

/*
.jsda-projects-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  padding: 120px 10%;
  max-width: 1600px;
  margin: auto;
  flex-wrap: wrap;
}

.jsda-header-left {
  flex: 1;
}

.jsda-header-left h2 {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 800;
  color: #29292b;
}

.jsda-header-left span {
  color: #29292b;
}

.jsda-header-right {
  flex: 1;
  max-width: 600px;
}

.jsda-header-right p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 30px;
}




.jsda-projects-stack {
  position: relative;
  height: 320vh;
}

.jsda-projects-image {
  position: sticky;
  top: 0;
  height: 65vh;
  width: 95%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  z-index: 0;
  transition: 
    transform 1s cubic-bezier(0.25, 0.8, 0.25, 1),
    opacity 1s ease,
    filter 1s ease;
}


.jsda-projects-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}


.jsda-projects-image h3 {
  position: absolute;
  color: #fff;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  margin: 0;
}

.jsda-text-top-right {
  top: 60px;
  right: 80px;
  font-size: 42px;
  font-weight: 500;
  text-align: right;
}

.jsda-text-bottom-left {
  bottom: 80px;
  left: 60px;
  font-size: 20px;
  font-weight: 300;
}

.jsda-btn-small {
  position: absolute;
  bottom: 60px;
  right: 60px;
  padding: 10px 20px;
  background: rgba(216, 211, 211, 0.9);
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s;
  
}

.jsda-btn-small:hover {
  background: #000;
  color: #fff;
}


.jsda-projects-image.active {
  transform: scale(1);
  opacity: 1;
  filter: none;
  z-index: 3;
  transition: all 0.6s ease;
}

.jsda-projects-image.covered {
  opacity: 0.5;
  filter: brightness(70%) blur(4px);
  transform: scale(0.97);
  transition: all 0.6s ease;
}



@media (max-width: 992px) {
  .jsda-projects-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
  }

  .jsda-header-left h2 {
    font-size: 52px;
  }

  .jsda-header-right {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .jsda-projects-image {
    height: 55vh;
  }

  .jsda-text-top-right {
    top: 30px;
    right: 40px;
    font-size: 28px;
    line-height: 1.2;
  }

  .jsda-text-bottom-left {
    bottom: 60px;
    left: 40px;
    font-size: 16px;
  }

  .jsda-btn-small {
    bottom: 30px;
    right: 30px;
    padding: 8px 16px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .jsda-projects-image {
    height: 50vh;
  }

  .jsda-text-top-right {
    top: 20px;
    right: 20px;
    font-size: 22px;
    max-width: 80%;
    text-align: right;
  }

  .jsda-text-bottom-left {
    bottom: 50px;
    left: 20px;
    font-size: 14px;
    max-width: 70%;
  }

  .jsda-btn-small {
    bottom: 20px;
    right: 20px;
    padding: 6px 14px;
    font-size: 13px;
  }

  .jsda-projects-header {
    padding: 80px 6%;
  }

  .jsda-header-left h2 {
    font-size: 36px;
  }

  .jsda-header-right p {
    font-size: 15px;
    line-height: 1.5;
  }

  .jsda-btn-light {
    padding: 10px 20px;
    font-size: 14px;
  } 
} */



.alumni-section {
    text-align: center;
    padding: 80px 3% 30px;
    background:
      radial-gradient(circle at 16% 18%, rgb(129 154 186 / 0.18) 0%, rgb(129 154 186 / 0) 36%),
      radial-gradient(circle at 84% 16%, rgb(100 130 168 / 0.16) 0%, rgb(100 130 168 / 0) 38%),
      linear-gradient(165deg, #081321 0%, #030814 58%, #02050d 100%);
    font-family: "Poppins", sans-serif;
}
.alumni-title {
    font-size: 50px;
    font-weight: 700;
    color: #f2f5fa;
    margin-bottom: 10px;
}
.alumni-subtitle {
    color: #c8d2df;
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 10px;
    line-height: 1.6;

}
.alumni-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}
.alumni-card {
    background: #fff0;
    width: 440px;
    height: 320px;
    perspective: 1000px;
    transition: transform 0.3s ease;
    margin-top: 0px;
}
.alumni-card:hover {
    transform: translateY(-10px);
}
.alumni-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s ease;
    transform-style: preserve-3d;
}
.alumni-card:hover .alumni-inner {
    transform: rotateY(180deg);
}
.alumni-front,
.alumni-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    backface-visibility: hidden;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.12);
}
.alumni-front {
    background: #111;
}
.alumni-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: grayscale(100%);
}

.alumni-card:hover .alumni-front img {
    transform: scale(1.05);
}
.alumni-back {
    transform: rotateY(180deg);
    background: linear-gradient(160deg, #1c1c1c 0%, #111 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
}
.alumni-content{
  position:relative;
  flex:1;
  padding:24px;
  padding-bottom:5px;  /* 👈 space reserve kiya gaya */
}
.alumni-bottom{
  position:absolute;
  left:24px;
  right:24px;
  bottom:24px;   /* 👈 SAME bottom */
}
.divider{
  height:1px;
  margin:0 0 18px;

}

.alumni-back h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.alumni-back p {
    font-size: 17px;
    opacity: 0.95;
}
.alumni-swiper {
    padding: 20px 0 40px;
    padding-top: 50px;
}
.alumni-swiper .swiper-slide {
    display: flex;
    justify-content: center;
}
.alumni-swiper .swiper-pagination {
    position: relative;
    margin-top: 18px;
}
.alumni-back a {
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 8px;
}

.alumni-back a h3,
.alumni-back a p {
  color: #fff;
}
@media (max-width: 1024px) {
    .alumni-card {
        width: 350px;
        height: 360px;
    }
}
@media (max-width: 768px) {
    .alumni-container {
        gap: 30px;
    }
    .alumni-card {
        width: 90%;
        height: 340px;
    }
    .alumni-title {
        font-size: 40px;
    }
}
@media (max-width: 480px) {
    .alumni-title {
        font-size: 32px;
    }
    .alumni-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }
    .alumni-card {
        height: 300px;
    }
}

.auto-banner-wrapper {
    width: 100%;
    background:
      radial-gradient(circle at 16% 18%, rgb(129 154 186 / 0.18) 0%, rgb(129 154 186 / 0) 36%),
      radial-gradient(circle at 84% 16%, rgb(100 130 168 / 0.16) 0%, rgb(100 130 168 / 0) 38%),
      linear-gradient(165deg, #081321 0%, #030814 58%, #02050d 100%);
    padding: 0;
}

/* Heading */
.auto-banner-heading {
    padding: 20px 20px 24px;
    text-align: center;
}

.auto-banner-heading h2 {
    font-size: 55px;
    font-weight: 700;
    color: #f2f5fa;
    line-height: 1.1;
}

.auto-banner-heading p {
    font-size: 18px;
    padding-top: 8px;
    color: #c8d2df;
}

/* Video Section */
.auto-banner {
    position: relative;
    height: 105vh;
    width: 100%;
    overflow: hidden;
}

/* Important: Video Full Cover */
.auto-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================= Responsive ================= */

@media (max-width: 991px) {
    .auto-banner-heading h2 {   /* h1 ❌ → h2 ✅ */
        font-size: 42px;
    }

    .auto-banner {
        height: 65vh;
    }
}

@media (max-width: 576px) {

    .auto-banner-heading {
        padding: 18px 20px 20px;
    }

    .auto-banner-heading h2 {   /* h1 ❌ → h2 ✅ */
        font-size: 32px;
        line-height: 1.2;
    }

    .auto-banner-heading p {
        font-size: 15px;
    }

    .auto-banner {
        height: auto;
        aspect-ratio: 16 / 9;
        background-color: #000;
    }

    .auto-banner video {
        object-fit: contain;
    }
}

.jsda-image-slider {
    background-color: #000;
    padding: 15px 0;
}
.jsda-swiper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.jsda-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.jsda-swiper img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    filter: brightness(1);
}
.jsda-swiper {
  overflow: hidden !important;
}

.asymmetric-slider {
    width: 100%;
    overflow: hidden;
    padding: 60px;
    background-color: #dedddd;
}
.slider-wrapper {
    overflow: hidden;
}
.slider-container {
    display: flex;
    gap: 20px;
    transition: transform 700ms cubic-bezier(0.22, 0.9, 0.36, 1);
}
.box {
    flex: 0 0 calc(25% - 15px);
}
.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
    margin-bottom: 40px;
}
.slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #999;
    cursor: pointer;
    transition: 0.3s;
}
.slider-dots button.active {
    background: #1f1e1e;
    transform: scale(1.3);
}
.slider-dots button {
    width: 8px;
    height: 8px;
}
.slider-wrapper {
    overflow: hidden;
    padding: 0 10px;
}
.slider-container {
    display: flex;
    gap: 20px;
    transition: transform 700ms cubic-bezier(0.22, 0.9, 0.36, 1);
    will-change: transform;
}
.slide {
    display: flex;
    justify-content: center;
    gap: 20px;
    min-width: 100%;
}
.box {
    position: relative;
    flex: 0 0 22%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    
    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
    flex: 0 0 calc((100% - 60px) / 4);
}

.img-wrap,
.img-wrap img {
    width: 100%;
    height: 100%;
}
.img-wrap img {
    object-fit: cover;
}
.img-wrap {
    position: relative;
}
.img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 0.45);
    transition: background 0.3s ease;
}
.box:hover .img-wrap::after {
    background: rgb(0 0 0 / 0.65);
}
.date-label {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}
.box-text {
    position: absolute;
    bottom: 15px;
    left: 20px;
    right: 20px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}
@media (max-width: 768px) {

  .asymmetric-slider {
      padding: 40px 0;
  }

  .slider-wrapper {
      padding: 0 20px;   /* side gap */
      overflow: hidden;
  }

  .slider-container {
      display: flex;
      gap: 16px;   /* 👈 middle gap between cards */
  }

  .slide {
      min-width: 100%;
      display: flex;
      justify-content: center;
  }

  .box {
      flex: 0 0 calc(100% - 40px);  /* full width minus side padding */
      max-width: calc(100% - 40px);
  }
}





/*footer*/

.custom-footer {
  background: #000;
  color: #ccc;
  padding: 70px 5%;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.footer-col h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 25px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-col a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}



.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.direction-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  border: 2px solid #b5b5b1;
  color: #111111;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s;
}

.direction-btn:hover {
  background: #ecebe7;
  color: #000;
}

.social-section {
  margin-top: 40px;
}

.social-section h4 {
  color: #fff;
  margin-bottom: 15px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #2c2c30;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
}

.social-icons a i {
  color: #fff;
  font-size: 14px;
}

.social-icons a:hover {
  background: #efefed;
}

.social-icons a:hover i {
  color: #000;
}

/* Responsive */
@media (max-width: 600px) {

  .custom-footer {
    padding: 40px 20px;   /* reduced from 70px 5% */
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 25px;            /* reduced from 50px */
  }

  .footer-col h3 {
    font-size: 18px;
    margin-bottom: 15px;  /* reduced */
  }

  .footer-col p {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .footer-col ul li {
    margin-bottom: 8px;
  }

  .social-section {
    margin-top: 20px;     /* reduced from 40px */
  }

  .direction-btn {
    margin-top: 10px;
    padding: 8px 14px;
    font-size: 13px;
  }

}




/*jgu galance*/
.glance-section {
  background: #fff;
  padding: 90px 5%;
  font-family: 'Poppins', sans-serif;
}

.glance-container {
  max-width: 1300px;
  margin: 0 auto;
}

.glance-title {
  text-align: center;
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 70px;
  color: #2b2b2b;
}

/* GRID */
.glance-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

/* ITEM */
.glance-item {
  padding: 0 22px;
  position: relative;
}

/* Vertical Divider */
.glance-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 5%;
  right: 0;
  width: 1px;
  height: 90%;
  background: #d6d6d6;
}

/* ICON */
.glance-item img {
  width: 60px;
  margin-bottom: 25px;
}

/* NUMBER */
.glance-item h3 {
  font-size: 50px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}


/* TEXT */
.glance-item p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}
@media (max-width: 768px) {

  .glance-section {
    padding: 40px 15px;
    background: #efefef;
  }

  .glance-title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 25px;
  }

  .glance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid #dcdcdc;
    border-left: 1px solid #dcdcdc;
  }

  .glance-item {
    text-align: center;
    padding: 30px 15px;
    border-right: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
  }

  .glance-item img {
    width: 50px;
    margin-bottom: 15px;
  }

  .glance-item h3 {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
  }

  .glance-item p {
    font-size: 13px;
    color: #333;
  }

  /* Make last item full width */
  .glance-item:last-child {
    grid-column: span 2;
  }

  /* Remove desktop divider lines */
  .glance-item::after {
    display: none;
  }
}


/*download button*/
.download-brochure {
    padding: 20px 5% 8px;
    background-color: #dedddd;
    display: flex;
    justify-content: center;
    align-items: center;
}



.download-btn {
    display: inline-block;
    padding: 14px 26px;
    
    background: transparent;
    color: #000;
    border: 1px solid #000;
    font-weight: 600;
    font-size: 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #000;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .download-content h2 {
        font-size: 30px;
    }

    .download-content p {
        font-size: 14px;
    }

    .download-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}


/*ranking*/
.rk-section {
  background: #000 url("https://jgu.edu.in//storage/1588/Grey-2.jpg.jpeg") center/cover no-repeat;
  padding: 80px 16%;
  text-align: center;
  overflow: hidden;
}

.rk-heading {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 80px;
  font-family: "Poppins", sans-serif;
}

/* Carousel */
.rk-carousel {
  overflow: hidden;
  width: 100%;
}

.rk-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.rk-card {
  flex: 0 0 20%;
  padding: 0 0px;
  box-sizing: border-box;
}

.rk-card img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Dots */
.rk-dots {
  margin-top: 50px;
}

.rk-dot {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.4;
  display: inline-block;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
}

.rk-dot.active {
  background: #fff;
  opacity: 1;
}

/* Tablet */
@media (max-width: 992px) {
  .rk-section {
    padding: 60px 8%;
  }

  .rk-card {
    flex: 0 0 33.33%;   /* 3 images */
  }
}

/* Mobile */
@media (max-width: 600px) {
  .rk-section {
    padding: 50px 6%;
  }

  .rk-heading {
    font-size: 24px;
    line-height: 1.15;
    white-space: nowrap;
    margin-bottom: 40px;
  }

  .rk-card {
    flex: 0 0 50%;   /* ✅ 2 images at a time */
  }

  .rk-card img {
    max-width: 160px;
  }
}

/*event*/
/* ================= SECTION ================= */
.pro-carousel-section {
  padding: 40px 5% 56px;
  background: #dedddd;
  font-family: "Poppins", sans-serif;
  text-align: center;
  overflow: hidden;
}

.pro-carousel-title {
  font-size: 40px;
  margin-bottom: 10px;
  color: #29292b;
}

.pro-carousel-para {
  margin-bottom: 60px;
  color: #555;
}

/* ================= WRAPPER ================= */

.pro-carousel-wrapper {
  position: relative;
}

.pro-carousel {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;   /* ADD THIS */
}

.pro-events-swiper {
  width: 100%;
  padding: 20px 0 40px;
}

.pro-events-swiper .swiper-slide {
  height: auto;
}

.pro-events-swiper .pro-card {
  height: 100%;
  min-height: 440px;
}

@media (min-width: 1025px) {
  .pro-events-swiper .swiper-wrapper {
    align-items: stretch;
  }

  .pro-events-swiper .swiper-slide {
    width: calc((100% - 48px) / 3) !important;
    flex-shrink: 0;
    display: block !important;
  }

  .pro-events-swiper .pro-card {
    flex: none !important;
    width: 100%;
    height: 340px;
    min-height: 340px;
    padding: 24px 22px;
    border-radius: 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #111;
  }

  .pro-events-swiper .pro-card::before {
    background: rgb(0 0 0 / 0.45);
    border-radius: 28px;
  }

  .pro-events-swiper .pro-card:hover::before {
    background: rgb(0 0 0 / 0.65);
  }

  .pro-events-swiper .pro-card h3 {
    position: relative;
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.18;
    word-break: break-word;
  }

  .pro-events-swiper .pro-card p {
    position: relative;
    margin: 0;
    font-size: 13px;
    line-height: 1.3;
    color: #fff;
  }

  .pro-events-swiper .pro-card .coming-badge {
    top: 12px;
    right: 12px;
    padding: 5px 12px;
    font-size: 11px;
    border-radius: 6px;
  }

  .pro-events-swiper .pro-card .coming-badge + h3 {
    padding-right: 170px;
  }
}

.pro-track {
  display: flex;
  gap: 30px;
  transition: transform 0.7s ease-in-out;
  will-change: transform;
}

/* ================= CARD ================= */

.pro-card {
  flex: 0 0 calc((100% - 90px) / 4);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: left;
  box-sizing: border-box;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  color: #fff;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* ADD THIS */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}



/* Red Top Right Box */
.coming-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ad2223;
  color: #fff;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
}


/* Dark overlay */
.pro-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  z-index: 0;
  transition: 0.4s ease;
}

/* Content above overlay */
.pro-card h3,
.pro-card p,
.pro-card button {
  position: relative;
  z-index: 2;
}

.pro-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.pro-card p {
  font-size: 15px;
  margin-bottom: 100px;
  color: #eee;
}

/* Button */

.pro-card button {
  padding: 8px 18px;
  border-radius: 8px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}

.pro-card button:hover {
  background: #fff;
  color: #000;
}

/* Hover Lift */

.pro-card:hover {
  transform: translateY(-8px);
}

.pro-card:hover::before {
  background: rgba(0, 0, 0, 0.45);
}

/* ================= DOTS ================= */
.pro-events-swiper .swiper-pagination {
  bottom: 8px !important;
}

.pro-events-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #b5b5b5;
  opacity: 1;
  transition: all 0.3s ease;
}

.pro-events-swiper .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 20px;
  background: #222;
}

/*.pro-dots {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pro-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #b5b5b5;
  cursor: pointer;
  transition: 0.3s ease;
  padding: 0;
}

.pro-dots button.active {
  background: #222;
  transform: scale(1.3);
} */

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .pro-card {
    flex: 0 0 calc((100% - 30px) / 2);
  }
}

@media (max-width: 600px) {
  .pro-carousel-section {
    padding: 28px 5% 36px;
  }

  .pro-events-swiper {
    padding: 12px 0 28px;
  }

  .pro-events-swiper .swiper-pagination {
    bottom: 0 !important;
  }

  .pro-card {
    flex: 0 0 100%;
    background-size: contain;
    background-position: center center;
    background-color: #111;
  }

  .pro-events-swiper .pro-card {
    min-height: 350px;
  }

  .pro-carousel-title {
    font-size: 28px;
  }

  .pro-carousel-para {
    margin-bottom: 20px;
  }
}

/* ================= CARD BACKGROUND IMAGES ================= */

.card1 {
  background-image: url("../assets/images/event/icbe.webp");
}

.card2 {
  background-image: url("../assets/images/event/bos.webp");
}

.card3 {
  background-image: url("../assets/images/event/Riyaz.webp");
}

.card4 {
  background-image: url("../assets/images/event/adi.webp");
}



/*sticky btn*/
.sticky-btn-for-home {
  transition: 0.2s;
  position: fixed;
  top: 40%;
  right: -60px;
  background: #000;
  color: #fff;
  display: flex;
  padding: 8px 10px;
  z-index: 9;
  align-items: center;
  border-radius: 2px;
  box-shadow: -2px 0px 5px rgb(0 0 0 / 16%);
  
  text-decoration: none;   /* remove underline */
  outline: none;           /* remove focus outline */
}

.sticky-btn-for-home:hover {
  right: 0;
  background: #cfcdc8;
  color: #000;
  text-decoration: none;   /* ensure no underline on hover */
 
}

.sticky-btn-for-home:focus,
.sticky-btn-for-home:active {
  text-decoration: none;
  outline: none;
}

.sticky-btn-for-home i {
  font-size: 28px;
  transition: 0.2s;
  margin-right: 20px;
  text-decoration: none;   /* remove any icon underline */
}

.sticky-btn-for-home:hover i {
  margin-right: 8px;
}

/*faculty*/


/* ===== Fixed Navbar ===== */
.main-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  background: #ffffff;
  transition: all 0.4s ease;
}

.main-navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* ===== Logo ===== */
.nav-logo {
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  margin-left: 50px;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

/* ===== Right Section ===== */
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: 20px;
}

/* ===== Apply Button ===== */
.apply-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border: 1.5px solid #000;
  border-radius: 10px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.apply-btn span:last-child::after {
  content: "→";
  margin-left: 6px;
  font-size: 14px;
  display: inline-block;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}

.apply-btn:hover {
  background: #000;
  color: #fff;
}

.apply-btn:hover span:last-child::after {
  transform: rotate(0deg);
}

/* ===== Menu Button ===== */
.nav-menu-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1.5px solid #000;
  border-radius: 10px;
  background: #fff;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 50px;
}

.menu-label {
  color: #000;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: #000;
  border-radius: 2px;
}

/* Hover invert */
.nav-menu-btn:hover {
  background: #000;
}

.nav-menu-btn:hover .menu-label {
  color: #fff;
}

.nav-menu-btn:hover .hamburger span {
  background: #fff;
}

/* ===== Overlay Menu ===== */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  background: #f4f2f2;
  display: none;
  z-index: 1000;
}

.fullscreen-menu.active {
  display: flex;
}

/* ===== Panels ===== */
.menu-panel-left,
.menu-panel-right {
  width: 50%;
  padding: 160px;
}

.menu-panel-left p {
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Social */
.menu-social a {
  border: 1px solid #000;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  text-decoration: none;
  color: #000;
}

.menu-privacy {
  position: absolute;
  bottom: 40px;
}

/* ===== Right Panel ===== */
.menu-panel-right {
  border-left: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.menu-panel-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-panel-right li {
  margin: 25px 0;
}

.menu-panel-right a {
  font-size: 45px;
  text-decoration: none;
  color: #d2cdcd;
  transition: color 0.3s ease;
}

.menu-panel-right a:hover,
.menu-panel-right a.active {
  color: #000;
}

/* Close Button */
.menu-close-btn {
  position: absolute;
  top: 40px;
  right: 40px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #000;
  transition: all 0.3s ease;
}

.menu-close-btn:hover {
  background: #000;
  color: #fff;
  border-radius: 4px;
  padding: 8px 20px;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    

  /* APPLY BUTTON */
  .apply-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 120px;
    padding: 0;
    border-radius: 12px 0 0 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    box-shadow: -6px 0 18px rgba(0, 0, 0, 0.3);
    z-index: 9999;
  }

  .apply-btn span {
    writing-mode: vertical-rl;
    letter-spacing: 2px;
  }

  .apply-btn span:last-child::after {
    content: "";
  }

  /* NAVBAR */
  .nav-logo {
    width: 150px;
    margin-left: 20px;
  }

  .menu-label {
    display: none;
  }

  .nav-menu-btn {
    border: none;
    margin-right: 0;
  }

  /* OVERLAY MENU */
  .fullscreen-menu {
    flex-direction: column;
    height: 100vh; /* 🔥 important */
  }

  /* RIGHT PANEL (MENU LINKS - TOP) */
  .menu-panel-right {
    width: 100%;
    padding: 80px 30px 40px;
    border-left: none;
    border-bottom: 1px solid #e7e5e5;
    justify-content: flex-start;   /* 🔥 key fix */
    align-items: flex-start;
    text-align: left;
    padding-left: 50px;
    position: relative;
    order: 1;
  }

  .menu-panel-right ul {
    margin-top: 30px;
  }

  .menu-panel-right li {
    margin: 20px 0;
  }

  .menu-panel-right a {
    font-size: 32px;
    color: #d2cdcd;
  }

  /* LEFT PANEL (BOTTOM INFO) */
  .menu-panel-left {
    width: 100%;
    margin-top: auto;   /* 🔥 pushes to bottom */
    padding: 30px 50px 40px;
    text-align: left;
    position: relative;
    order: 2;
  }

  .menu-panel-left p {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
  }

  .menu-social {
    margin: 12px 0;
  }

  .menu-privacy {
    position: static;
    margin-top: 20px;
  }

  /* CLOSE BUTTON */
  .menu-close-btn {
    top: 20px;
    right: 20px;
    font-size: 16px;
  }
}

/*constant nav sub menu*/
/* Submenu Default Hidden */
.submenu {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Show on Hover */
.has-submenu:hover .submenu {
  max-height: 500px;
  margin-top: 15px;
}

/* Submenu Items */
.submenu li {
  margin: 12px 0;
}

.submenu a {
  font-size: 24px;
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

.submenu a:hover {
  opacity: 0.6;
}


/*faculty*/

 :root{
  --bg:#111;
  --card:#1c1c1c;
  --blue:#2b8de0;
  --accent:#bfcbd6;
}


/* ===== Section ===== */
.faculty-section {
  background: #000;           /* full black */
  width: 100%;
  padding: 150px 0 10px;      /* remove side padding */
}


.faculty-wrapper{
  display:flex;
  gap:60px;
  align-items:flex-start;
  padding: 0 80px;
}

/* ===== LEFT COLUMN ===== */
.faculty-left{
  flex:0 0 360px;
}

.faculty-photo-wrap{
  position:relative;
  width:100%;
  height:420px;
}

.photo-bg-box{
  position:absolute;
  inset:0;
  transform:translate(28px, 28px);
  background:var(--accent);
  border-radius:18px;
  z-index:1;
}

/* Image */
.faculty-img{
  position:absolute;
  top:0;
  width:350px;
  height:100%;
  object-fit:cover;
  border-radius:14px;
  z-index:2;
  filter:grayscale(100%);
  transition:filter .4s ease;
}

.faculty-img:hover{
  filter:grayscale(0%);
}

/* ===== Contact Box ===== */
.faculty-contact{
  background:var(--bg);
  padding:18px;
  margin-top:40px;
  border-radius:10px;
  text-align:right;
  color: white;
}

.contact-title{
  margin:0 0 8px;
  font-size:16px;
}

.contact-phone{
  color:#cfcfcf;
  font-size:14px;
}

.contact-email{
  margin-top:6px;
}

.contact-email a{
  color:var(--blue);
}

.contact-orcid{
  margin-top:6px;
  font-size:12px;
  color:#9a9a9a;
}

/* ===== RIGHT COLUMN ===== */
.faculty-right{ flex:1; }

.faculty-name{
  font-size:32px;
  margin:0 0 8px;
  color: white;
}

.faculty-phd{
  font-size:18px;
  opacity:.8;
}

.faculty-degree{
  margin:6px 0;
  opacity:.8;
  color: white;
}

.divider-line{
  height:1px;
  background:#2b2b2b;
  margin:18px 0;
}

.faculty-position{
  font-size:18px;
  margin-top:12px;
  color: white;
  margin-bottom: 10px;
}

.faculty-areas{
  color:var(--blue);
  margin-bottom:18px;
}

.faculty-bio{
  font-size:15px;
  color:#cfcfcf;
}

.faculty-read-more{
  color:var(--blue);
  text-decoration:none;
}

/* ===== ACCORDION ===== */
.faculty-accordion{
  margin-top:22px;
}

.accordion-item{
  border-bottom:1px solid #2b2b2b;
}

.accordion-btn {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}


/* Arrow */
.accordion-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Active state */
.accordion-item.active .accordion-content {
  max-height: 500px; /* content ke hisaab se */
}

.accordion-item.active .accordion-arrow {
  transform: rotate(-135deg);
}
/* Content */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-content p {
  margin: 0;
  padding-bottom: 16px;  /* 👈 extra gap */
  color: #ccc;
}


/* ===== RESPONSIVE ===== */
/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

  .faculty-section{
    padding: 90px 0 40px;
  }

  .faculty-wrapper{
    flex-direction: column;
    padding: 0 40px;
    gap: 36px;
  }

  .faculty-left{
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .faculty-photo-wrap{
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .photo-bg-box{
    transform: translate(16px,16px);
  }

  .faculty-img{
    position: relative;
    width: 100%;
    height: 100%;
  }

  .faculty-contact{
    text-align: left;
  }

  .faculty-name{
    font-size: 24px;
  }

  .faculty-position{
    font-size: 16px;
  }

  .accordion-btn{
    font-size: 15px;
  }
}
@media (max-width: 420px) {

  .faculty-photo-wrap{
    aspect-ratio: 2 / 3;
  }

  .faculty-name{
    font-size: 22px;
  }
}



.centery-line {
    width: 100%;
    height: 1px;
    background: #565656;
    margin: 40px auto;
    opacity: 0.6;
    margin-top: 50px;
}

/* ================================
   JSDA Faculty Team Grid Section
================================ */
.center-line {
    width: 95%;
    height: 1px;
    background: #6f6f6f;
    margin: 40px auto;
    opacity: 0.6;
    margin-top: 50px;
    
}

.jsda-team {
    background: #000;
    padding: 80px 80px;
    width: 100%;
}

.team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.team-header h2 {
    font-size: 34px;
    font-weight: 600;
    color: #fff;
}

.team-header .view-all {
    color: var(--blue);
    text-decoration: none;
    font-size: 16px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
}

/* CARD */
.team-line {
    width: 90%;
    height: 1px;
    background: #6f6f6f;
    margin: 0px 0 10px 0;
    opacity: 0.6;
}

.team-card { 
    margin-bottom: 10px; 
}

.team-photo-box {
    position: relative;
    height: 360px;
    width: 300px;
    margin-bottom: 40px;
}

.team-blue-bg {
    position: absolute;
    right: -28px;
    top: 24px;
    width: 100%;
    height: 100%;
    background: var(--accent);
    border-radius: 16px;
    z-index: 1;
}

/* Team image black & white normal */
.team-photo-box img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    z-index: 2;

    filter: grayscale(100%);
    transition: filter .4s ease;
}

/* On hover → Full color */
.team-photo-box img:hover {
    filter: grayscale(0%);
}


/* TEXT */
.team-name {
    margin-top: 16px;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.team-degree {
    font-size: 14px;
    
    margin: 4px 0;
    color: #fff;
    font-weight: 700;
}

.team-links a {
    color: #76797a;
    text-decoration: none;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .jsda-team {
    padding-left: 30px;
    padding-right: 30px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  /* move card slightly right */
  .team-card {
    max-width: 330px;
    margin: 0 auto;
    padding-left: 12px;   /* 👈 subtle right shift */
  }

  .team-photo-box {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
  }

  /* balance the blue background */
  .team-blue-bg {
    right: -14px;
    top: 14px;
  }

  .team-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .team-header h2 {
    font-size: 24px;
  }

  .team-header .view-all {
    font-size: 15px;
  }
}

/*all faculty page*/
.faculty-search{
  position:relative;
  width:260px;
}

.team-name .phd{
  font-size:12px;      /* small size */
  font-weight:400;
  opacity:0.8;
}

.faculty-search input{
  width:100%;
  padding:12px 44px 12px 16px;
  border-radius:12px;
  border:none;
  outline:none;
  font-size:14px;
}

.faculty-search button{
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
  background:none;
  border:none;
  cursor:pointer;
}

@media(max-width:768px){
  .team-header{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
  }

  .faculty-search{
    width:100%;
  }
}

/* Bachelor-of-Architecture-program 

.fashion-section{
  background:#000;
  color:#fff;
  padding:60px 0 80px;
  overflow:hidden;
}


.scroll-wrapper{
  overflow:hidden;
  border-bottom:1px solid #333;
}

.scroll-text{
  white-space:nowrap;
  font-size:80px;
  font-weight:800;
  padding:30px 0;
  animation:scrollText 10s linear infinite;
}

@keyframes scrollText{
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
}


.content-row{
  display:flex;
  align-items:flex-start;
  gap:60px;
  padding:80px 100px 40px;
}

.text-area{
  max-width:920px;
}

.text-area p{
  font-size:16px;
  line-height:1.7;
  margin-bottom:16px;
}


.info-box{
  border:1px solid #fff;
  padding:20px 40px 20px 20px;
  max-width:360px;
  position:relative;
  margin-top:50px;
  cursor:pointer;
  transition:background 0.3s ease, color 0.3s ease;
  border-radius: 20px;
}


.info-box .arrow::after{
  content:"→";
  position:absolute;
  top:50%;
  right:24px;
  font-size:20px;
  transform:translateY(-50%) translateX(0);
  transition:transform 0.3s ease;
  transform:rotate(45deg);
}

.info-box:hover{
  background:#fff;
  color:#000;
}

.info-box:hover h3,
.info-box:hover p{
  color:#000;
}

.info-box:hover .arrow::after{
  transform:translateY(-50%) translateX(8px);
}


.image-row{
  width:100%;
  margin-top:40px;
}

.image-row img{
  width:100%;
  height:520px;
  object-fit:cover;
  display:block;
}

@media(max-width:600px){

 
  .fashion-section{
    padding:80px 0 50px;
  }


  .scroll-text{
    font-size:36px;
    padding:16px 0;
    animation-duration:8s; 
  }

 
  .content-row{
    flex-direction:column;
    gap:24px;                
    padding:24px 16px 20px;  
  }

  .text-area{
    max-width:100%;
  }

  .text-area p{
    font-size:14px;
    line-height:1.6;
    margin-bottom:12px;
  }

  .info-box{
    margin-top:16px;        
    max-width:100%;
    padding:20px 52px 20px 20px;
  }

  .info-box h3{
    font-size:16px;
  }

  .info-box p{
    font-size:13px;
  }


  .info-box .arrow::after{
    right:18px;
    font-size:18px;
  }


  .image-row{
    margin-top:24px;        
  }

  .image-row img{
    height:220px;           
  }
}




.why-tdv{
  background:#e0e0e0;
  color:#000;
  padding:100px 100px 120px;
}
.why-tdv h2,
.why-tdv h4,
.why-tdv p,
.why-tdv span{
  color:#000;
}

.why-header{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:start;
  gap:40px;
  margin-bottom:80px;
}


.why-header h2{
  font-size:56px;
  line-height:1.1;
  font-weight:800;
  max-width:900px;
}


.brochure-btn{
  border:1px solid #000;
  padding:15px 50px 15px 30px;
  max-width:360px;
  position:relative;
  margin-top:50px;
  cursor:pointer;
  transition:background 0.3s ease, color 0.3s ease;
  border-radius: 20px;
}


.brochure-btn .brochure::after{
  content:"→";
  position:absolute;
  top:50%;
  right:24px;
  font-size:20px;
  transform:translateY(-50%) rotate(45deg);
  transition:transform 0.3s ease, color 0.3s ease;
}


.brochure-btn:hover{
  background:#000;
  color:#fff;
}


.brochure-btn:hover .brochure::after{
  transform:translateY(-50%) translateX(8px) rotate(0deg);
  color:#fff;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.why-item{
  position:relative;
}

.why-item .line{
  display:block;
  width:100%;
  height:1px;
  background:#000;
  margin-bottom:24px;
   opacity:0.2;
}

.why-item h4{
  font-size:20px;
  font-weight:700;
  margin-bottom:16px;
}

.why-item h4 span{
  margin-right:16px;
  opacity:0.7;
}

.why-item p{
  font-size:15px;
  line-height:1.7;
  opacity:0.85;
}


@media(max-width:900px){
  .why-tdv{
    padding:60px 20px 80px;
  }

  .why-header{
    grid-template-columns:1fr;
    gap:20px;
  }

  .why-header h2{
    font-size:36px;
  }

  .why-grid{
    grid-template-columns:1fr;
    gap:32px;
  }
}



.path-section{
  background:#000;
  padding:100px 80px;
  color:#fff;
}

.path-header{
  display:flex;
  justify-content:space-between;
  gap:80px;
  margin-bottom:80px;
}

.path-header h2{
  font-size:64px;
  font-weight:800;
  line-height:1.05;
  max-width:600px;
}

.path-header p{
  max-width:420px;
  font-size:16px;
  line-height:1.7;
}


.path-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  align-items:start;
}


.path-card:nth-child(1){
  margin-top:0;
}

.path-card:nth-child(2){
  margin-top:70px;
}

.path-card:nth-child(3){
  margin-top:140px;
}

.path-card{
  max-width:360px;   
}

.path-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.path-card .line{
  width:100%;
  height:1px;
  background:#777;
  margin:24px 0;
}

.path-card h3{
  font-size:20px;
  margin-bottom:12px;
}

.path-card p{
  font-size:15px;
  line-height:1.6;
  color:#fff;
}


@media(max-width:900px){
  .path-section{
    padding:60px 20px;
  }

  .path-header{
    flex-direction:column;
    gap:24px;
  }

  .path-header h2{
    font-size:38px;
  }

  .path-grid{
    grid-template-columns:1fr;
  }

  .path-card{
    margin-top:0 !important;
  }

  .path-card img{
    height:260px;
  }
}




.global-section{
  background:#e0e0e0;   
  color:#000;
  padding:100px 80px;
}

.global-wrap{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:80px;
  align-items:center;
}


.global-text h2{
  font-size:48px;
  font-weight:800;
  margin-bottom:32px;
}

.career-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px 40px;
}

.career-list li{
  font-size:16px;
  line-height:1.6;
  position:relative;
  padding-left:18px;
  color:#000;
}


.career-list li::before{
  content:"—";
  position:absolute;
  left:0;
  color:#000;
}


.logo-row{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:24px;
}

.logo-row img{
  width:50px;
  height:auto;
}

.logo-row span{
  font-size:18px;
  line-height:1.2;
  font-weight:500;
}

.global-text .name{
  font-weight:600;
  margin-bottom:12px;
}

.global-text .desc{
  max-width:520px;
  font-size:15px;
  line-height:1.7;
  color:#ddd;
}


.global-image img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
}


@media(max-width:900px){
  .global-section{
    padding:60px 20px;
  }

  .global-wrap{
    grid-template-columns:1fr;
    gap:40px;
  }

  .global-text h2{
    font-size:38px;
  }

  .global-image img{
    height:300px;
  }
  .global-text h2{
    font-size:34px;
  }

  .career-list{
    grid-template-columns:1fr;
  }
}



.logo-carousel-section{
  padding:60px 0;
  background:#000;
  overflow:hidden;
}

.logoSwiper{
  width:100%;
  overflow:hidden;
}

.carousel-heading{
  color:aliceblue;
  text-align:center;
  font-size:40px;
  padding-bottom:20px;
  font-weight:700;
}


.swiper-wrapper{
  align-items:center;
}

.swiper-slide{
  width:auto;
  display:flex;
  justify-content:center;
}

.logo-box{
  width:260px;
  height:120px;
  background:#fff;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all 0.3s ease;
}


.logo-box img{
  max-width:75%;
  max-height:60px;
  object-fit:contain;
  transition:all 0.3s ease;
}


.logo-box:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 30px rgba(255,255,255,0.15);
}

.logo-box:hover img{
  transform:scale(1.05);
}

@media (max-width: 768px){

  .logo-carousel-section{
    padding:40px 0;
  }

  .logo-box{
    width:180px;
    height:90px;
    border-radius:10px;
  }

  .logo-box img{
    max-height:40px;
  }

  .carousel-heading{
    font-size:28px;
    padding-bottom:16px;
  }
}


.fee-section{
  padding:80px 150px;
  background:#000;
}

.fee-wrapper{
  display:grid;
  grid-template-columns:40% 60%;
  gap:60px;
  align-items:start;
}

.fee-left h2{
  font-size:42px;
  font-weight:800;
  margin-bottom:30px;
  color: #fff;
}

.fee-left img{
  width:100%;
  border-radius:12px;
}


.highlight-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  background:#e0e0e0;
  padding:28px;
  font-size:20px;
  font-weight:600;
}

.highlight-row span{
  font-size:14px;
  font-weight:400;
}

.note{
  margin:20px 0 30px;
  font-size:14px;
  color:#fff;
}

.inf-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.inf-box{
  border:1px solid #ddd;
  padding:24px;
}

.inf-box h4{
  font-size:18px;
  margin-bottom:10px;
  color: #fff;
}

.price{
  font-size:20px;
  font-weight:700;
  margin-bottom:16px;
}

.price span{
  font-size:14px;
  font-weight:400;
}

.small{
  font-size:14px;
  color:#fff;
}


@media (max-width: 900px){

  .fee-section{
    padding:40px 20px; 
  }

  .fee-wrapper{
    grid-template-columns:1fr;
    gap:40px;
  }


  .fee-left h2{
    font-size:28px;
    line-height:1.3;
  }

  .fee-left img{
    border-radius:10px;
  }

 
  .highlight-row{
    grid-template-columns:1fr;
    gap:14px;
    padding:20px;
    font-size:18px;
  }

  .highlight-row span{
    font-size:13px;
  }


  .note{
    font-size:13px;
    line-height:1.5;
  }


  .inf-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .inf-box{
    padding:18px;
  }

  .inf-box h4{
    font-size:16px;
  }

  .price{
    font-size:18px;
  }

  .small{
    font-size:13px;
    line-height:1.4;
  }
}  */



/*event page css*/

/* HERO SECTION */
.ds-hero {
  position: relative;
  height: 100vh;
  background: url("../assets/images/event/eventback.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

/* Dark Overlay */
.ds-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* Content */
.ds-content {
  position: relative;
  max-width: 900px;
  padding: 20px;
  color: #fff;
  z-index: 2;
}

/* Main Heading */
.ds-content h1 {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Subtitle */
.ds-content h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #f2f2f2;
}

/* Description */
.ds-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #ddd;
}

/* Responsive */
@media (max-width: 992px) {
  .ds-content h1 {
    font-size: 48px;
  }

  .ds-content h3 {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .ds-hero {
    height: 90vh;
    padding: 0 15px;
  }

  .ds-content h1 {
    font-size: 34px;
  }

  .ds-content h3 {
    font-size: 18px;
  }

  .ds-content p {
    font-size: 15px;
  }
}



/* ABOUT SECTION */
.about-event {
  background: #f3f3f3;
  padding: 100px 8%;
  font-family: "Poppins", sans-serif;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;   /* 👈 This will center the whole content */
}

.about-event h2 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000;
}

.about-event p,
.about-event ul  {
  font-size: 20px;
  line-height: 1.9;
  color: #2c3e50;
  margin-bottom: 35px;
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 992px) {
  .about-event {
    padding: 80px 6%;
  }

  .about-event h2 {
    font-size: 48px;
  }

  .about-event p {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .about-event {
    padding: 60px 5%;
  }

  .about-event h2 {
    font-size: 32px;
  }

  .about-event p {
    font-size: 16px;
    line-height: 1.7;
  }
}



/* ================= SECTION ================= */
.event-gallery-section {
  background: #000;
  padding: 80px 2% 70px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* ================= HEADER ================= */
.event-gallery-header {
  text-align: center;
  margin-bottom: 65px;
}

.event-gallery-header h2 {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.event-gallery-header p {
  color: #bfbfbf;
  font-size: 18px;
  margin-top: 10px;
}

/* ================= SWIPER ================= */
.eventGallerySwiper {
  padding: 0 0 60px;
}

.eventGallerySwiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}

/* ================= CARD ================= */
.event-gallery-card {
  width: 100%;
  background: linear-gradient(180deg, #111 0%, #0c101a 100%);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s ease;
}

.event-gallery-card:hover {
  
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 18px 35px rgba(0,0,0,0.6);
}

/* ================= IMAGE ================= */
.event-gallery-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.5s ease;
}



/* ================= CONTENT ================= */
.event-gallery-content {
  padding: 24px;
}

.event-gallery-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}

.event-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #d0d0d0;
}

/* ================= PAGINATION ================= */
.eventGallerySwiper .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.eventGallerySwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.35);
  opacity: 1;
  transition: 0.3s;
}

.eventGallerySwiper .swiper-pagination-bullet-active {
  width: 28px;
  height: 10px;
  border-radius: 20px;
  background: #fff;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {

  .event-gallery-section {
    padding: 70px 2% 60px;
  }

  .event-gallery-header h2 {
    font-size: 40px;
  }

  .event-gallery-card img {
    height: 300px;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .event-gallery-section {
    padding: 60px 12px 50px;
  }

  .event-gallery-header h2 {
    font-size: 28px;
  }

  .event-gallery-header p {
    font-size: 14px;
  }

  .eventGallerySwiper {
    padding: 0 0 40px;
  }

  .event-gallery-card {
    width: 100%;
    border-radius: 18px;
  }

  .event-gallery-card img {
    height: 250px;
  }

  .event-gallery-content {
    padding: 18px;
  }

  .event-gallery-content h3 {
    font-size: 18px;
  }

  .event-desc {
    font-size: 13px;
    line-height: 1.6;
  }

  .eventGallerySwiper .swiper-pagination {
    margin-top: 20px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {

  .event-gallery-section {
    padding: 50px 10px 40px;
  }

  .event-gallery-card img {
    height: 220px;
  }

  .event-gallery-content {
    padding: 15px;
  }

  .event-gallery-content h3 {
    font-size: 16px;
  }
}



/* Section Background */
.events-section {
  background: #f2f2f2;
  padding: 90px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}
.events-title{
  text-align: center;
  font-size: 50px;
  padding-bottom: 40px;
}
/* Card Design */
.event-card {
  background: #fff;
  border-radius: 24px;
  border: 1.5px solid #cfcfcf;
  padding: 50px 55px;
  height: 100%;
  display: flex;
  align-items: flex-start;   /* important */
}

.event-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Fix heading spacing */
.event-content h4 {
  font-size: 30px;
  font-weight: 700;
  margin: 0;                /* remove random spacing */
  padding-bottom: 18px;
  position: relative;
  min-height: 72px;         /* same height for all headings */
}

/* underline */
.event-content h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 180px;
  height: 1.5px;
  background: #cfcfcf;
}

/* Fix paragraph position */
.event-content p {
  margin-top: 25px;
  font-size: 18px;
  line-height: 1.8;
  min-height: 120px;     /* equal paragraph block height */
}
/* Swiper Fix */
.eventsSwiper {
  width: 100%;
  padding: 20px 10px 60px;
}

.eventsSwiper .swiper-slide {
  height: auto;
  width: 750px;
}

/* Pagination */
.eventsSwiper .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.eventsSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #cfcfcf;
  opacity: 1;
  transition: all 0.3s ease;
}

.eventsSwiper .swiper-pagination-bullet-active {
  width: 28px;
  height: 10px;
  background: #000;
  border-radius: 20px;
}

/* Brochure form popup */
.brochure-modal {
  position: fixed;
  inset: 0;
  background: rgb(0 0 0 / 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 99999;
}

.brochure-modal.active {
  display: flex;
}

.brochure-modal-content {
  width: min(760px, 100%);
  max-height: 88vh;
  overflow: auto;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #d9dde4;
  box-shadow: none;
  position: relative;
  padding: 18px 18px 14px;
}

.brochure-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #222;
}

.brochure-modal-title {
  margin: 0 0 10px;
  font-size: 22px;
  color: #111;
  font-weight: 600;
}

.brochure-widget-slot {
  min-height: 560px;
  border: 1px solid #d9dde4;
  border-radius: 8px;
  padding: 0;
  background: transparent;
}

.brochure-widget-frame {
  width: 100%;
}

@media (max-width: 768px) {
  .brochure-modal-content {
    padding: 20px 16px 14px;
  }

  .brochure-modal-title {
    font-size: 20px;
    padding-right: 28px;
  }

  .brochure-widget-slot {
    min-height: 340px;
  }
}

/* Home mobile video hard override */
@media (max-width: 991px) {
  body .video-section {
    height: calc(100vw * 9 / 16) !important;
    max-height: calc(100vw * 9 / 16) !important;
    min-height: calc(100vw * 9 / 16) !important;
    aspect-ratio: 16 / 9;
    background: #000;
  }

  body .video-bg iframe,
  body .video-bg video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    transform: none !important;
    object-fit: contain !important;
  }
}

@media (max-width: 991px) {
  body .auto-banner {
    height: calc(100vw * 9 / 16) !important;
    max-height: calc(100vw * 9 / 16) !important;
    min-height: calc(100vw * 9 / 16) !important;
    aspect-ratio: 16 / 9;
    background: #000;
  }

  body .auto-banner video {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }
}
