﻿/**
* Template Name: Gp
* Updated: Jan 09 2024 with Bootstrap v5.3.2
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Source Sans 3", sans-serif;
    color: #444444;
}

a {
  color: #ffc451;
  text-decoration: none;
}

a:hover {
  color: #ffd584;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Source Sans 3", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ffc451;
  color:rgba(71, 37, 122, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #000;
  line-height: 0;
}

.back-to-top:hover {
  background: #aaaaaa;
}

    .back-to-top:hover i {
        color: #ffc451;
    }

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #ffc451;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 0 0 3px 0;
    background: rgba(202,233,253,.88);
    /*background-image: linear-gradient( to top, transparent, #333);*/
}

    #header.header-scrolled,
    #header.header-inner-pages {
        background: rgba(227, 242, 252, 0.8);
    }

    #header .logo {
        font-size: 32px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 2px;
        /*text-shadow: 2px 2px 4px #000000;*/
        /*text-transform: uppercase;*/
    }

        #header .logo a {
            color: #fff;
        }

            #header .logo a span {
                color: #fff;
            }

        #header .logo img {
            max-height: 90px;
        }


/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  color: #fff;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #ffc451;
}

.get-started-btn:hover {
  background: #ffbb38;
  color: #343a40;
}

@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
/*.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0 10px 25px;
        font-size: 15px;
        font-weight: 600;
        color: #fff;
        white-space: nowrap;
        transition: 0.3s;
        
    }

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ffc451;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #151515;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  background-color: #ffc451;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}*/

/**
* Mobile Navigation 
*/
/*.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #151515;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #151515;
  background-color: #ffc451;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #151515;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  background-color: #ffc451;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}*/

/* ===============================
   ROOT VARIABLES
================================= */
:root {
    --header-height: 90px;
    --header-height-scrolled: 70px;
}

/* ===============================
   MODERN HERO SECTION
================================= */
.hero-modern {
    min-height: 100vh;
    padding-top: var(--header-height); /* FIX header overlap */
    padding-bottom: 90px; /* space for explore */
    position: relative;
    overflow: hidden;
    background: #000;
    transition: padding .3s ease;
}

/* Adjust when header shrinks */
#header.header-scrolled + #hero {
    padding-top: var(--header-height-scrolled);
}

/* ===============================
   VIDEO BACKGROUND
================================= */
.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* ===============================
   OVERLAY
================================= */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(8,15,35,.85), rgba(30,41,59,.65), rgba(13,110,253,.35) );
    z-index: 1;
}

/* ===============================
   CONTENT
================================= */
.hero-modern .container {
    position: relative;
    z-index: 2;
}

/* Badge */
.hero-badge {
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    font-size: 14px;
    letter-spacing: .4px;
}
.hero-modern-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.85), rgba(0,0,0,.65), rgba(0,0,0,.35));
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8,15,35,.85), rgba(30,41,59,.65), rgba(13,110,253,.35));
    z-index: 1;
}
/* Title */
.hero-title {
    font-size: clamp(2rem, 3.5vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 12px;
    text-shadow: 0 6px 24px rgba(0,0,0,.35);
}

/* Subtitle */
.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 2rem);
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 10px;
}

/* Description */
.hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,.88);
    max-width: 760px;
    margin: auto;
    line-height: 1.8;
}

/* Buttons */
.hero-buttons .btn {
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
    transition: all .3s ease;
}

    .hero-buttons .btn:hover {
        transform: translateY(-3px);
    }

/* ===============================
   SOCIAL ICONS
================================= */
.hero-social {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

    .hero-social a {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.45rem;
        text-decoration: none;
        background: rgba(255,255,255,.10);
        border: 1px solid rgba(255,255,255,.18);
        backdrop-filter: blur(10px);
        transition: .3s ease;
    }

        .hero-social a:hover {
            background: #fff;
            color: #0d6efd;
            transform: translateY(-4px);
        }

/* ===============================
   EXPLORE NOW (BOTTOM)
================================= */
.hero-explore {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.explore-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
    transition: .3s ease;
}

    .explore-link i {
        font-size: 1.8rem;
        margin-top: 4px;
        animation: exploreBounce 1.5s infinite;
    }

    .explore-link:hover {
        background: #fff;
        color: #0d6efd;
    }

/* Animation */
@keyframes exploreBounce {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* ===============================
   TABLET
================================= */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.7rem;
    }
}

/* ===============================
   MOBILE
================================= */
@media (max-width: 768px) {

    .hero-modern {
        min-height: auto;
        padding: 120px 0 100px;
        /*background: url('../img/comsats-islamabad-campus.jpg') center/cover no-repeat;*/
    }

    .hero-bg-video {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.35rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-social a {
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
    }

    .hero-explore {
        bottom: 15px;
    }
}
/* =========================
VIDEO BACKGROUND
========================= */

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Ensure overlay stays above video */
.hero-modern-overlay,
.hero-overlay {
    z-index: 1;
}

/* Content always on top */
.hero-modern .container {
    position: relative;
    z-index: 2;
}
/* Large laptops (1600px) */
@media (max-width: 1600px) {
    .hero-modern {
        padding: 200px 0;
    }
    .hero-title {
        font-size: 2.8rem;
    }
}

/* Standard laptops (1366px) */
@media (max-width: 1366px) {
    .hero-modern {
        padding: 160px 0;
    }
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-desc {
        font-size: 1rem;
    }
}
/* Scroll */

.scroll-down {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.9);
    text-decoration: none;
    animation: bounce 1.5s infinite;
    font-weight: 600;
}

    .scroll-down i {
        font-size: 2rem;
    }

    .scroll-down:hover {
        color: #ffc107;
    }
/* Animation */

@keyframes bounce {
    0%,20%,50%,80%,100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(8px);
    }

    60% {
        transform: translateY(4px);
    }
}
/* ===================================
   PREMIUM ADMISSIONS SECTION
=================================== */
.premium-admissions-section {
    padding: 100px 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,.6), transparent 30%), radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.8), transparent 35%), rgba(255, 255, 255, 0.8);
}

/* Cards */
.admission-card {
    display: block;
    padding: 30px 18px;
    border-radius: 24px;
    text-align: center;
    text-decoration: none;
    background: rgba(255,255,255,.6);
    border: 1px solid rgba(13,110,253,.08);
    backdrop-filter: blur(14px);
    transition: .35s ease;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

    .admission-card:hover {
        transform: translateY(-8px);
        background: rgba(255,255,255,.8);
        box-shadow: 0 18px 40px rgba(13,110,253,.15);
    }

    /* Highlight card */
    .admission-card.highlight {
        background: linear-gradient(135deg,#ffc107,#ff9800);
        color: #111;
    }

        .admission-card.highlight h4 {
            color: #111;
        }

/* Icon */
.admission-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 15px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: linear-gradient(135deg,#0d6efd,#6f42c1);
    color: #fff;
    box-shadow: 0 10px 25px rgba(13,110,253,.25);
    transition: .3s;
}

.admission-card.highlight .admission-icon {
    background: rgba(255,255,255,.9);
    color: #111;
}

/* Icon hover */
.admission-card:hover .admission-icon {
    transform: scale(1.08) rotate(-4deg);
}

/* Text */
.admission-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0b1e34;
    margin: 0;
}

/* Button */
.admission-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    background: linear-gradient(135deg,#ffc107,#ff9800);
    color: #111;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(255,193,7,.25);
    transition: .35s ease;
}

    .admission-btn:hover {
        transform: translateY(-4px);
        color: #111;
    }

/* Responsive */
@media(max-width:991px) {
    .premium-admissions-section {
        padding: 80px 0;
    }
}

@media(max-width:576px) {
    .admission-card {
        padding: 24px 15px;
    }

        .admission-card h4 {
            font-size: 14px;
        }

    .admission-btn {
        width: 100%;
        justify-content: center;
    }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
  text-align:center;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Source Sans 3", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 80px;
  height: 1px;
  display: inline-block;
  background: rgba(71, 37, 122, 0.3);
  margin: 4px 10px;
}
    .section-title h2::before {
        content: "";
        width: 80px;
        height: 1px;
        display: inline-block;
        background: rgba(71, 37, 122, 0.3);
        margin: 4px 10px;
    }

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Source Sans 3", sans-serif;
  color: #151515;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Source Sans 3", sans-serif;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #ffc451;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding-top: 20px;
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffc451;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-top: 20px;
}

.features .icon-box {
  padding-left: 15px;
}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #ffc451;
}

.features .icon-box p {
  font-size: 17px;
  color: #000;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 40px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}
.departments .icon-box {
    text-align: center;
    border: 1px solid #ebebeb;
    padding: 20px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #ffc451;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .icon-box .icon i {
  color: #151515;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #151515;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 a:hover {
  color: #ffc451;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/hero.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #ffc451;
  border-color: #ffc451;
  color: #151515;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #151515;
  background: #ffc451;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(21, 21, 21, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(21, 21, 21, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #ffc451;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ffc451;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffc451;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(21, 21, 21, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts .content {
  padding: 0;
}

.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #151515;
}

.counts .content p {
  margin-bottom: 0;
}

.counts .content .count-box {
  padding: 0;
  width: 100%;
}

.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: #ffc451;
  float: left;
}

.counts .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #151515;
  /*margin-left: 50px;*/
}

    .counts .content .count-box p {
        padding: 15px 0 0 0;
        margin: 0;
        font-family: "Source Sans 3", sans-serif;
        font-size: 14px;
        color: #3b3b3b;
    }

.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #3b3b3b;
  font-size: 15px;
  font-family: "Source Sans 3", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .content .count-box a:hover {
  color: #626262;
}

.counts .image {
  background: url("../img/counts-img.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 991px) {
  .counts .image {
    text-align: center;
  }

  .counts .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .counts .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/hero-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.6);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffc451;
  opacity: 1;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #151515;
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  transition: ease-in-out 0.3s;
  color: #484848;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .member .social a:hover {
  color: #151515;
  background: #ffc451;
}

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #151515;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  background: #ffc451;
  color: #151515;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 20px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}

.contact .info p {
  padding: 0 0 0 20px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}
    .contact .info .address,
    .contact .info .email,
    .contact .info .phone {
        margin-top: 40px;
    }

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #ffc451;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #ffc451;
  border: 0;
  padding: 10px 24px;
  color: #151515;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ffcd6b;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 30px 0;
  background: whitesmoke;
  min-height: 80px;
  margin-top: 106px;
  position:relative;
  text-align:center;
  
}

.breadcrumbs h2 {
  font-size: 46px;
  font-weight: 700;
  color:#000;
}
    .breadcrumbs p {
        font-size: 26px;
        font-weight: 500;
        color: #333;
    }

    .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        justify-content:center;
        
    }

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 154px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/* ===================================
   PREMIUM FOOTER
=================================== */
.premium-footer {
    background: linear-gradient(135deg,#07111f,#0b1e34,#102946);
    color: #dbe7ff;
    font-size: 14px;
}

/* Top */
.footer-top {
    padding: 80px 0 50px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Brand */
.footer-brand h4 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.footer-brand span {
    color: #ffc107;
    font-size: 14px;
    font-weight: 600;
}

.footer-logo {
    width: 55px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.7);
}

/* Headings */
.footer-links h5 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

/* Links */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links ul li {
        margin-bottom: 10px;
    }

    .footer-links ul a {
        color: rgba(255,255,255,.65);
        text-decoration: none;
        transition: .3s ease;
        position: relative;
    }

        /* Hover effect */
        .footer-links ul a:hover {
            color: #ffc107;
            padding-left: 6px;
        }

/* Social */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

    .social-links a {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: rgba(255,255,255,.06);
        color: #fff;
        font-size: 16px;
        transition: .35s ease;
    }

        /* hover */
        .social-links a:hover {
            background: linear-gradient(135deg,#ffc107,#ff9800);
            color: #111;
            transform: translateY(-4px);
        }

/* Bottom */
.footer-bottom {
    padding: 25px 0;
    background: rgba(0,0,0,.2);
}

    .footer-bottom p {
        margin: 0;
        font-weight: 600;
        color: #fff;
    }

    .footer-bottom span {
        font-size: 13px;
        color: rgba(255,255,255,.6);
    }

/* Responsive */
@media(max-width:991px) {
    .footer-top {
        padding: 60px 0 30px;
    }
}

@media(max-width:576px) {
    .social-links {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }
}


.jarallax-keep-img {
    position: relative;
    z-index: 0;
}

    .jarallax-keep-img > .jarallax-img {
        position: relative;
        display: block;
        max-width: 100%;
        height: auto;
        z-index: -100;
        opacity: 0;
    }


/* demo styles */
*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.jarallax {
    min-height: 600px;
}

.jarallax-keep-img.demo-float-left {
    margin-right: 15px;
    margin-left: -60px;
}

.jarallax-keep-img.demo-float-right {
    margin-left: 15px;
    margin-right: -60px;
}

@media screen and (max-width: 600px) {
    .jarallax-keep-img.demo-float-left,
    .jarallax-keep-img.demo-float-right {
        margin-right: 0;
        margin-left: 0;
        float: none;
    }
}
.hero.jarallax > .jarallax-img img,
.hero.jarallax > .jarallax-container img {
    filter: blur(3px);
}
.jarallax > .jarallax-img,
.jarallax > .jarallax-container,
.jarallax-keep-img > .jarallax-container {
    /*opacity: 0.5;*/
}
/* gap */
.demo-gap {
    padding: 50px;
    overflow: hidden;
}

    .demo-gap h1,
    .demo-gap h2,
    .demo-gap h3 {
        text-align: center;
    }

    .demo-gap .container {
        max-width: 800px;
        margin: 0 auto;
    }

/* Demo Content */
.demo-content {
    padding: 80px;
}


/* Float */
.demo-float-left {
    float: left;
}

.demo-float-right {
    float: right;
}

/* Mobile */
@media screen and (max-width: 500px) {
    .demo-gap,
    .demo-content {
        padding: 50px 30px;
    }
}
/* ====================================
   MODERN HERO SECTION 2026 TREND
==================================== */
.premium-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding: 120px 0 80px;
}

    /* Background image */
    .premium-hero-section .jarallax-img {
        transform: scale(1.08);
    }

/* Dark gradient overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(5,20,45,.78),rgba(13,110,253,.55)), linear-gradient(to top,rgba(0,0,0,.55),rgba(0,0,0,.15));
    z-index: 1;
}

/* Floating blur circles */
.premium-hero-section::before,
.premium-hero-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 1;
}

.premium-hero-section::before {
    width: 260px;
    height: 260px;
    background: rgba(255,193,7,.18);
    top: 80px;
    left: 5%;
}

.premium-hero-section::after {
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,.10);
    bottom: 50px;
    right: 6%;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1100px;
}

/* Badge */
.hero-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .8px;
    margin-bottom: 25px;
}

/* Title */
.hero-title {
    font-size: clamp(38px,7vw,72px);
    font-weight: 900;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 25px;
    text-shadow: 0 8px 30px rgba(0,0,0,.30);
}

/* Text */
.hero-text {
    max-width: 950px;
    margin: 0 auto;
    font-size: clamp(16px,2vw,21px);
    line-height: 1.9;
    color: rgba(255,255,255,.92);
    font-weight: 400;
}

/* Buttons */
.hero-buttons {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn-primary,
.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 60px;
    font-weight: 700;
    text-decoration: none;
    transition: .35s ease;
}

.hero-btn-primary {
    background: linear-gradient(135deg,#ffc107,#ff9800);
    color: #111;
    box-shadow: 0 14px 35px rgba(255,193,7,.28);
}

    .hero-btn-primary:hover {
        transform: translateY(-4px);
        color: #111;
    }

.hero-btn-outline {
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
}

    .hero-btn-outline:hover {
        transform: translateY(-4px);
        color: #fff;
        background: rgba(255,255,255,.14);
    }

/* Stats */
.hero-stats {
    margin-top: 55px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.stat-box {
    padding: 22px 18px;
    border-radius: 24px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(14px);
}

    .stat-box h3 {
        margin: 0;
        color: #fff;
        font-size: 28px;
        font-weight: 800;
    }

    .stat-box span {
        color: rgba(255,255,255,.85);
        font-size: 14px;
    }

/* Responsive */
@media(max-width:991px) {

    .premium-hero-section {
        min-height: auto;
        padding: 100px 0 70px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 45px auto 0;
    }

    .hero-text {
        font-size: 17px;
        line-height: 1.8;
    }
}

@media(max-width:576px) {

    .hero-title {
        font-size: 34px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-badge {
        font-size: 12px;
        padding: 9px 14px;
    }

    .hero-text {
        font-size: 15px;
    }
}


/* hero block */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 500px;
    height: calc(100vh - 220px);
}

    .hero h4 {
        font-size: 16px;
        font-size: clamp(32px,7.5vw,16px);
        max-width: 1200px;
        margin: 0 auto;
        line-height: 1;
        /*letter-spacing: -0.01em;*/
        font-weight: 600;
    }

    .hero.jarallax > .jarallax-img img,
    .hero.jarallax > .jarallax-container img {
        filter: blur(6px);
    }

.hero-name {
    font-size: 20px;
    font-size: clamp(17px,2vw,20px);
    font-weight: bold;
    letter-spacing: 1.1em;
    letter-spacing: clamp(1em,2vw,1.1em);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero + .demo-gap {
    min-height: 230px;
}

.text-center {
    text-align: center;
}
/* buttons */
.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

* + .buttons {
    margin-top: 20px;
}

a.button {
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    padding: 12px;
    border-radius: 4px;
    min-width: 200px;
    background-color: #fff;
    color: #000;
    transition: background-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

    a.button:hover,
    a.button:focus {
        background-color: rgba(255, 255, 255, 0.8);
        transform: translateY(-2px);
    }

a.button-outline {
    background-color: transparent;
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

    a.button-outline:hover,
    a.button-outline:focus {
        background-color: transparent;
        box-shadow: inset 0 0 0 1px #fff;
    }

#news-slider {
    margin-top: 80px;
}

/* Card */
.post-slide {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all .35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}
    .post-slide .header {
        font-size:1.2rem;
        padding:10px 20px 5px 20px;
    }

/* Image */
.post-slide .post-img {
    position: relative;
    overflow: hidden;
}

.post-slide .post-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform .5s ease;
}

.post-slide:hover .post-img img {
    transform: scale(1.08);
}

/* Overlay */
.post-slide .over-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,110,253,.85), rgba(111,66,193,.75));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .35s ease;
}

.post-slide:hover .over-layer {
    opacity: 1;
}

.post-slide .over-layer i,
.post-slide .over-layer svg {
    font-size: 38px;
    color: #fff;
    transform: scale(.7);
    transition: .35s ease;
}

.post-slide:hover .over-layer i,
.post-slide:hover .over-layer svg {
    transform: scale(1);
}

/* Content */
.post-slide .post-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-slide .post-title {
    margin-bottom: 12px;
}

.post-slide .post-title a {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
    transition: .3s;
    line-height: 1.4;
}

.post-slide .post-title a:hover {
    color: #0d6efd;
}

/* Description */
.post-slide .post-description {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 22px;
    flex-grow: 1;
}

/* Button */
.post-slide .btn,
.post-slide .read-more {
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: .2px;
    background: linear-gradient(135deg,#0d6efd,#6f42c1);
    color: #fff;
    border: none;
    box-shadow: 0 10px 18px rgba(13,110,253,.18);
    transition: .3s ease;
}

.post-slide .btn:hover,
.post-slide .read-more:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 14px 22px rgba(13,110,253,.28);
}

/* Old unused date style hidden */
.post-slide .post-date {
    display: none;
}
/* Mobile */
@media (max-width: 768px) {

    .features {
        padding: 50px 0;
    }

    .post-slide {
        margin: 8px 0;
    }

        .post-slide .post-img img {
            height: 210px;
        }

        .post-slide .post-title a {
            font-size: 1.05rem;
        }

    .section-title p {
        font-size: 1.6rem;
    }
}

.owl-controls .owl-buttons {
    text-align: center;
    margin-top: 20px;
}

    .owl-controls .owl-buttons .owl-prev {
        background: #fff;
        position: absolute;
        top: -13%;
        left: 15px;
        padding: 0 18px 0 15px;
        border-radius: 50px;
        box-shadow: 3px 14px 25px -10px #92b4d0;
        transition: background 0.5s ease 0s;
    }

    .owl-controls .owl-buttons .owl-next {
        background: #fff;
        position: absolute;
        top: -13%;
        right: 15px;
        padding: 0 15px 0 18px;
        border-radius: 50px;
        box-shadow: -3px 14px 25px -10px #92b4d0;
        transition: background 0.5s ease 0s;
    }

        .owl-controls .owl-buttons .owl-prev:after,
        .owl-controls .owl-buttons .owl-next:after {
            content: "\f104";
            font-family: FontAwesome;
            color: #333;
            font-size: 30px;
        }

        .owl-controls .owl-buttons .owl-next:after {
            content: "\f105";
        }

@media only screen and (max-width: 1280px) {
    .post-slide .post-content {
        padding: 0px 15px 25px 15px;
    }
}
/* ===================================
   PREMIUM DEPARTMENTS SECTION (LIGHT)
=================================== */
.premium-departments-section {
    position: relative;
    padding: 100px 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,.6), transparent 30%), radial-gradient(circle at bottom left, rgba(13,110,253,.08), transparent 35%), rgba(202,233,253,.88);
    overflow: hidden;
}

/* Header */
.section-heading {
    max-width: 760px;
    margin: auto;
}

.section-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,.7);
    color: #0d6efd;
    border: 1px solid rgba(13,110,253,.08);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .6px;
    margin-bottom: 18px;
}

.section-title {
    font-size: clamp(34px,5vw,58px);
    font-weight: 900;
    color: #0b1e34;
    margin-bottom: 15px;
}

.section-subtitle {
    color: rgba(11,30,52,.75);
    font-size: 18px;
    line-height: 1.8;
}

/* Cards */
.dept-card {
    display: block;
    height: 100%;
    padding: 35px 28px;
    border-radius: 28px;
    text-decoration: none;
    background: rgba(255,255,255,.55);
    border: 1px solid rgba(13,110,253,.10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: .35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

    /* subtle gradient overlay on hover */
    .dept-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg,rgba(255,193,7,.06),transparent,rgba(13,110,253,.06));
        opacity: 0;
        transition: .35s ease;
    }

    .dept-card:hover::before {
        opacity: 1;
    }

    /* hover effect */
    .dept-card:hover {
        transform: translateY(-10px);
        background: rgba(255,255,255,.72);
        border-color: rgba(13,110,253,.25);
        box-shadow: 0 20px 45px rgba(13,110,253,.15);
    }

/* Icon */
.dept-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 28px;
    color: #111;
    background: linear-gradient(135deg,#ffc107,#ff9800);
    box-shadow: 0 12px 25px rgba(255,193,7,.25);
    transition: .35s ease;
}

/* icon hover animation */
.dept-card:hover .dept-icon {
    transform: scale(1.08) rotate(-3deg);
}

/* Text */
.dept-card h4 {
    font-size: 22px;
    font-weight: 800;
    color: #0b1e34;
    margin-bottom: 8px;
}

.dept-card span {
    color: rgba(11,30,52,.65);
    font-size: 14px;
    letter-spacing: .5px;
}

/* Button */
.all-dept-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg,#ffc107,#ff9800);
    color: #111;
    font-weight: 800;
    text-decoration: none;
    transition: .35s ease;
    box-shadow: 0 15px 35px rgba(255,193,7,.25);
}

    .all-dept-btn:hover {
        transform: translateY(-4px);
        color: #111;
        box-shadow: 0 20px 40px rgba(255,193,7,.35);
    }

/* Responsive */
@media(max-width:991px) {
    .premium-departments-section {
        padding: 80px 0;
    }

    .section-subtitle {
        font-size: 16px;
    }
}

@media(max-width:576px) {
    .section-title {
        font-size: 32px;
    }

    .dept-card {
        padding: 28px 22px;
    }

        .dept-card h4 {
            font-size: 20px;
        }

    .all-dept-btn {
        width: 100%;
        justify-content: center;
    }
}
.card-img-top-overlay .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /*     background: rgba(120,120,120,.4); */
}

/*a {
    text-decoration: none !important;
}*/

.card-img-top-overlay .card-badge.top-right {
    top: 1rem;
    right: 1rem;
}

.card-img-top-overlay .card-badge.top-left {
    top: 1rem;
    left: 1rem;
}
/* for images to be same height */
.img-same-height {
    object-fit: cover;
    height: 250px;
}

.card-img-top-overlay .card-badge {
    position: absolute;
    font-size: .8125rem;
    line-height: 1.5rem;
    font-weight: 600;
    box-shadow: 0 0.8rem 1.2rem #343a4014;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    border-radius: 0.25rem;
    z-index: 1000;
}

.card-img, .card-img-top {
    border-top-left-radius: calc(0.1875rem + 0px);
    border-top-right-radius: calc(0.1875rem + 0px);
}

.card-body {
    flex: 1 1 auto;
    padding: 1.5rem;
}

.card {
    margin-bottom: 1.5rem;
    position: relative;
}

.sections a {
    color: #442778;
    text-decoration: none;
}

    .sections a:hover {
        color: #22143D;
        text-decoration: none;
    }


/*--------------------------------------------------------------
# Incharge
--------------------------------------------------------------*/

/* =========================
   MODERN RECTOR SECTION
========================= */
.modern-rector-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff, #eef6ff);
    overflow: hidden;
}

    /* floating bg blur */
    .modern-rector-section::before,
    .modern-rector-section::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        filter: blur(70px);
        z-index: 0;
    }

    .modern-rector-section::before {
        width: 280px;
        height: 280px;
        background: rgba(13,110,253,0.12);
        top: -80px;
        left: -80px;
    }

    .modern-rector-section::after {
        width: 260px;
        height: 260px;
        background: rgba(111,66,193,0.10);
        bottom: -80px;
        right: -80px;
    }

/* IMAGE SIDE */
.rector-image-wrap {
    position: relative;
    z-index: 2;
}

.rector-image-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    background: #fff;
}

    .rector-image-card img {
        width: 100%;
        height: auto;
        transition: 0.5s ease;
    }

    .rector-image-card:hover img {
        transform: scale(1.04);
    }

/* Badge */
.rector-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(12px);
    padding: 14px 18px;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

    .rector-badge small {
        display: block;
        color: #0d6efd;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 11px;
        letter-spacing: 1px;
        margin-bottom: 4px;
    }

    .rector-badge span {
        font-size: 15px;
        font-weight: 700;
        color: #222;
    }

/* Decorative shapes */
.floating-shape {
    position: absolute;
    border-radius: 20px;
    z-index: -1;
}

.shape-1 {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg,#0d6efd,#6f42c1);
    top: -20px;
    left: -20px;
    opacity: .12;
}

.shape-2 {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg,#20c997,#0dcaf0);
    right: -20px;
    bottom: -20px;
    opacity: .12;
}

/* CONTENT */
.content-box {
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(13,110,253,0.08);
    color: #0d6efd;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: .4px;
}

.section-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #111;
    margin-bottom: 25px;
}

    .section-title span {
        display: block;
        margin-top: 10px;
        font-weight: 500;
        color: #0d6efd;
        font-size: 30px;
    }

/* Quote */
.modern-quote {
    position: relative;
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    padding-left: 28px;
    border-left: 4px solid #0d6efd;
    margin-bottom: 35px;
}

    .modern-quote::before {
        content: "“";
        position: absolute;
        left: -10px;
        top: -15px;
        font-size: 60px;
        color: rgba(13,110,253,0.15);
        font-weight: 800;
    }

/* Button */
.modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: linear-gradient(135deg,#0d6efd,#6f42c1);
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(13,110,253,0.25);
    transition: 0.35s ease;
}

    .modern-btn:hover {
        transform: translateY(-4px);
        color: #fff;
        box-shadow: 0 18px 35px rgba(13,110,253,0.30);
    }

/* Responsive */
@media (max-width: 991px) {
    .modern-rector-section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 34px;
    }

        .section-title span {
            font-size: 24px;
        }

    .modern-quote {
        font-size: 17px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }

        .section-title span {
            font-size: 21px;
        }

    .modern-btn {
        width: 100%;
        justify-content: center;
    }

    .rector-badge {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
}
.sec-title2 {
    color: #fff;
}

.sec-title {
    position: relative;
    padding-bottom: 40px;
    
}

    .sec-title .title {
        position: relative;
        color: rgba(71, 37, 122, 0.8);
        font-size: 18px;
        font-weight: 700;
        padding-right: 50px;
        margin-bottom: 15px;
        display: inline-block;
        text-transform: capitalize;
    }

        .sec-title .title:before {
            position: absolute;
            content: '';
            right: 0px;
            bottom: 7px;
            width: 40px;
            height: 1px;
            background-color: #bbbbbb;
        }

.list-style-one {
    position: relative;
    list-style:none;
}

    .list-style-one li {
        position: relative;
        font-size: 18px;
        line-height: 26px;
        color: #222222;
        font-weight: 400;
        padding-left: 10px;
        margin-bottom: 12px;
    }

        /*.list-style-one li:before {
            content: "\f058";
            position: absolute;
            left: 0;
            top: 0px;
            display: block;
            font-size: 18px;
            padding: 0px;
            color: #ff2222;
            font-weight: 600;
            -moz-font-smoothing: grayscale;
            -webkit-font-smoothing: antialiased;
            font-style: normal;
            font-variant: normal;
            text-rendering: auto;
            line-height: 1.6;
            font-family: "Font Awesome 5 Free";
        }*/

        .list-style-one li a:hover {
            color: #44bce2;
        }


#offices a {
    color:rgba(71, 37, 122, 0.9)
}
#offices a:hover {
    color:#333;
}
.offices a {
    color: rgba(71, 37, 122, 0.9)
}

    .offices a:hover {
        color: #333;
    }
/*modern news cards*/
.modern-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff; /* keep card background neutral */
}

    .modern-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    }

.img-wrapper {
    position: relative;
    overflow: hidden;
}

    .img-wrapper img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.modern-card:hover img {
    transform: scale(1.05);
}

.date-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #093B6A; /* primary color */
    color: #fff;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.card-body {
    padding: 1.25rem;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #6c757d; /* secondary color for text */
}

    .card-title a {
        color: #093B6A; /* primary color for links */
        text-decoration: none;
    }

        .card-title a:hover {
            text-decoration: underline;
            color: #062d4f; /* darker shade of primary for hover */
        }

/* Swiper navigation & pagination */
.swiper-button-next,
.swiper-button-prev {
    color: #093B6A; /* primary */
}

.swiper-pagination-bullet {
    background: #6c757d; /* secondary for inactive */
}

.swiper-pagination-bullet-active {
    background: #093B6A; /* primary for active */
}
.modern-card {
    border-radius: 18px;
    overflow: hidden;
    transition: all .35s ease;
}

    .modern-card img {
        height: 220px;
        object-fit: cover;
    }

    .modern-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.12) !important;
    }

    .modern-card .btn {
        font-weight: 600;
        letter-spacing: .3px;
    }

/* ===================================
   PREMIUM VIDEO SECTION
=================================== */
.premium-video-section {
    padding: 100px 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,.6), transparent 30%), radial-gradient(circle at bottom left, rgba(13,110,253,.08), transparent 35%), rgba(202,233,253,.88);
}

/* Video Card */
.video-card {
    border-radius: 26px;
    overflow: hidden;
    background: rgba(255,255,255,.55);
    border: 1px solid rgba(13,110,253,.10);
    backdrop-filter: blur(16px);
    transition: .35s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

    .video-card:hover {
        transform: translateY(-10px);
        background: rgba(255,255,255,.75);
        box-shadow: 0 20px 45px rgba(13,110,253,.15);
    }

/* Thumbnail */
.video-thumb {
    position: relative;
    overflow: hidden;
}

    .video-thumb img {
        width: 100%;
        display: block;
        transition: .5s ease;
    }

.video-card:hover .video-thumb img {
    transform: scale(1.08);
}

/* Play Button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-left: 3px; /* slight center alignment fix */
    box-shadow: 0 10px 30px rgba(255,193,7,.4);
    transition: .3s ease;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(10px);
    color: #0d6efd;
}

.video-card:hover .play-btn {
    transform: translate(-50%,-50%) scale(1.1);
}

/* Content */
.video-content {
    padding: 20px;
}

    .video-content h4 {
        font-size: 20px;
        font-weight: 800;
        color: #0b1e34;
        margin-bottom: 6px;
    }

    .video-content span {
        font-size: 14px;
        color: rgba(11,30,52,.65);
    }

/* Remove link style */
.video-link {
    text-decoration: none;
    display: block;
}

/* Responsive */
@media(max-width:576px) {
    .video-content h4 {
        font-size: 18px;
    }
}
/* ===================================
   PREMIUM PHD ORAL DEFENCE SECTION
=================================== */
.premium-phd-section {
    padding: 100px 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,.6), transparent 30%), radial-gradient(circle at bottom left, rgba(13,110,253,.08), transparent 35%), rgba(202,233,253,.88);
}

/* List container */
.phd-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Card */
.phd-card {
    display: block;
    padding: 28px 28px;
    border-radius: 26px;
    text-decoration: none;
    background: rgba(255,255,255,.65);
    border: 1px solid rgba(13,110,253,.10);
    backdrop-filter: blur(14px);
    transition: .35s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
    position: relative;
    overflow: hidden;
}

    /* hover */
    .phd-card:hover {
        transform: translateY(-8px);
        background: rgba(255,255,255,.85);
        box-shadow: 0 20px 45px rgba(13,110,253,.15);
    }

/* top */
.phd-card-top {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: flex-start;
}

.phd-card h4 {
    font-size: 20px;
    font-weight: 800;
    color: #0b1e34;
    margin: 0;
    line-height: 1.4;
}

    .phd-card h4 span {
        display: block;
        font-weight: 600;
        color: #0d6efd;
        margin-top: 5px;
    }

/* badge */
.status-badge {
    background: linear-gradient(135deg,#ffc107,#ff9800);
    color: #111;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

/* details */
.phd-details {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 14px;
    color: rgba(11,30,52,.75);
}

/* footer */
.phd-footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phd-date {
    font-size: 13px;
    font-weight: 600;
    color: #0d6efd;
}

.phd-arrow {
    font-size: 20px;
    color: #0d6efd;
    transition: .3s;
}

.phd-card:hover .phd-arrow {
    transform: translateX(6px);
}

/* Button */
.phd-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    background: linear-gradient(135deg,#ffc107,#ff9800);
    color: #111;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(255,193,7,.25);
    transition: .35s ease;
}

    .phd-btn:hover {
        transform: translateY(-4px);
        color: #111;
    }

/* Responsive */
@media(max-width:768px) {
    .phd-card-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .phd-details {
        flex-direction: column;
        gap: 8px;
    }

    .phd-card h4 {
        font-size: 18px;
    }
}

@media(max-width:576px) {
    .phd-card {
        padding: 22px 18px;
    }

    .phd-btn {
        width: 100%;
        justify-content: center;
    }
}
/* ===================================
   GLOBAL ABOUT SECTION (MODERN SYSTEM)
   Works on all inner pages
=================================== */

.about-section {
    padding: 100px 0;
    background: #fff; /* light neutral system background */
}

    /* container spacing consistency */
    .about-section .container {
        position: relative;
    }

    /* IMAGE COLUMN */
    .about-section .image-column .inner-column {
        position: relative;
    }

    /* image wrapper */
    .about-section .image-column .image {
        position: relative;
        border-radius: 22px;
        overflow: hidden;
        box-shadow: 0 18px 45px rgba(0,0,0,.08);
        background: #fff;
    }

        /* image */
        .about-section .image-column .image img {
            width: 100%;
            height: auto;
            display: block;
            transition: .5s ease;
        }

        /* hover zoom */
        .about-section .image-column .image:hover img {
            transform: scale(1.05);
        }

        /* soft overlay gradient */
        .about-section .image-column .image::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(11,30,52,.25), transparent 60%);
        }

    /* CONTENT COLUMN */
    .about-section .content-column .inner-column {
        padding: 10px 20px;
    }

    /* title */
    .about-section .sec-title h2 {
        font-size: clamp(28px,4vw,42px);
        font-weight: 900;
        color: #0b1e34; /* deep modern navy */
        margin-bottom: 18px;
        letter-spacing: .3px;
    }

    /* text */
    .about-section .text {
        font-size: 16px;
        line-height: 1.8;
        color: rgba(11,30,52,.75);
    }

        /* CTA button alignment */
        .about-section .text a.theme-btn {
            margin-top: 15px;
            display: inline-flex;
        }

/* BUTTON STYLE (modern reuse) */
.theme-btn.btn-style-three {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 50px;
    background: linear-gradient(135deg,#0d6efd,#6f42c1);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: .35s ease;
    box-shadow: 0 12px 30px rgba(13,110,253,.25);
}

    /* hover */
    .theme-btn.btn-style-three:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(13,110,253,.35);
    }

/* RESPONSIVE */
@media(max-width:991px) {
    .about-section {
        padding: 80px 0;
    }

        .about-section .content-column {
            margin-top: 30px;
            text-align: center;
        }

            .about-section .content-column .inner-column {
                padding: 0;
            }
}

@media(max-width:576px) {
    .about-section {
        padding: 60px 0;
    }

        .about-section .text {
            font-size: 15px;
        }
}
/* ===============================
   CAMPUS LIFE SECTION
================================= */

.campus-life-section {
    padding: 80px 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,.6), transparent 30%), radial-gradient(circle at bottom left, rgba(13,110,253,.08), transparent 35%), #CAE9FD;
}

/* Heading */
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(0,0,0,.05);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
}

.section-subtitle {
    color: #475569;
    max-width: 600px;
    margin: auto;
}

/* ===============================
   CARD
================================= */

.campus-card {
    background: rgba(255,255,255,.65);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    overflow: hidden;
    transition: .4s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

    .campus-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0,0,0,.12);
    }

/* Image */
.campus-img {
    overflow: hidden;
}

    .campus-img img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        transition: .5s;
    }

.campus-card:hover img {
    transform: scale(1.08);
}

/* Content */
.campus-content {
    padding: 25px;
}

    .campus-content h4 {
        font-weight: 700;
        margin-bottom: 10px;
        color: #0f172a;
    }

    .campus-content p {
        color: #64748b;
        font-size: 14px;
        margin-bottom: 15px;
    }

/* Link */
.campus-link {
    font-weight: 600;
    color: #0d6efd;
    text-decoration: none;
    transition: .3s;
}

    .campus-link i {
        margin-left: 5px;
    }

    .campus-link:hover {
        color: #000;
    }

/* CTA Button */
.campus-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    background: #0f172a;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

    .campus-btn:hover {
        background: #000;
        transform: translateY(-3px);
    }

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 768px) {

    .section-title {
        font-size: 2rem;
    }

    .campus-img img {
        height: 200px;
    }
}
/* ===============================
DEADLINE SECTION
================================= */

.deadline-section {
    padding: 80px 0;
    background: #f8fbff;
}

/* Heading */
.section-badge {
    background: rgba(13,110,253,.1);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
}

.section-subtitle {
    color: #64748b;
}

/* ===============================
TIMELINE
================================= */

.timeline {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid #0d6efd;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

    /* Dot */
    .timeline-item::before {
        content: "";
        position: absolute;
        left: -9px;
        top: 5px;
        width: 14px;
        height: 14px;
        background: #0d6efd;
        border-radius: 50%;
    }

/* Date Box */
.timeline-date {
    min-width: 70px;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

    .timeline-date span {
        display: block;
        font-size: 1.5rem;
    }

/* Content */
.timeline-content h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.timeline-content p {
    margin-bottom: 6px;
    color: #64748b;
}

/* ===============================
TEST DATES
================================= */

.test-box {
    background: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

/* ===============================
RESPONSIVE
================================= */

@media (max-width: 768px) {

    .section-title {
        font-size: 2rem;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline-date {
        min-width: 60px;
        font-size: 14px;
    }
}
.divider-soft svg {
    display: block;
    width: 100%;
    height: 90px;
    fill: #CAE9FD;
}

/* MODERN GLOBAL LIST STYLE */

.modern-list {
    list-style: none !important;
    padding-left: 0;
    margin: 0;
}

    .modern-list li {
        list-style: none !important;
        margin-bottom: 14px;
        padding-left: 0;
    }
        /* REMOVE THIS OLD BULLET */
        .modern-list li::before {
            display: none;
        }

        .modern-list li:last-child {
            margin-bottom: 0;
        }

        .modern-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 12px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0d6efd, #4dabff);
            box-shadow: 0 0 12px rgba(13, 110, 253, 0.35);
        }

    .modern-list a {
        display: block;
        position: relative;
        padding: 14px 18px;
        border-radius: 16px;
        text-decoration: none;
        font-weight: 600;
        color: #1e293b;
        background: rgba(255,255,255,0.9);
        border: 1px solid rgba(13,110,253,0.08);
        box-shadow: 0 10px 30px rgba(2, 6, 23, 0.05);
        transition: all .35s ease;
        overflow: hidden;
    }

        .modern-list a::after {
            content: "→";
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0;
            transition: all .3s ease;
        }

        .modern-list a:hover {
            transform: translateY(-4px);
            background: linear-gradient(135deg, #0d6efd, #2563eb);
            color: #ffffff !important;
            border-color: transparent;
            box-shadow: 0 18px 40px rgba(13,110,253,0.25);
            padding-right: 40px;
        }
        /* FIX FOR BOOTSTRAP DEFAULT WHITE HOVER */
        .modern-list a:hover,
        .modern-list a:focus,
        .modern-list a:active {
            color: #ffffff !important;
            text-decoration: none;
        }

            .modern-list a:hover::after {
                opacity: 1;
                right: 16px;
            }

/* DARK SECTION SUPPORT */
.bg-dark .modern-list a,
.bg-primary .modern-list a {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

    .bg-dark .modern-list a:hover,
    .bg-primary .modern-list a:hover {
        background: #fff;
        color: #0d6efd;
    }

@media (max-width: 767px) {
    .modern-list a {
        padding: 12px 16px;
        font-size: 15px;
    }
}
/* MODERN PREMIUM TABS */

.modern-tabs {
    border: 0;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

    .modern-tabs .nav-item {
        margin: 0;
    }

    .modern-tabs .nav-link {
        position: relative;
        border: none !important;
        border-radius: 16px;
        padding: 14px 24px;
        font-weight: 600;
        font-size: 15px;
        color: #334155;
        background: rgba(255,255,255,0.9);
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(2, 6, 23, 0.05);
        transition: all .35s ease;
        overflow: hidden;
    }

        .modern-tabs .nav-link::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #0d6efd, #2563eb);
            opacity: 0;
            transition: all .35s ease;
            z-index: 0;
        }

        .modern-tabs .nav-link span {
            position: relative;
            z-index: 2;
        }

        .modern-tabs .nav-link:hover {
            transform: translateY(-4px);
            color: #fff;
            box-shadow: 0 18px 40px rgba(13,110,253,0.20);
        }

            .modern-tabs .nav-link:hover::before {
                opacity: 1;
            }

        .modern-tabs .nav-link.active {
            color: #fff !important;
            background: linear-gradient(135deg, #0d6efd, #2563eb);
            box-shadow: 0 20px 45px rgba(13,110,253,0.30);
        }

            .modern-tabs .nav-link.active::before {
                opacity: 0;
            }

/* Optional glass effect on colored backgrounds */
.bg-dark .modern-tabs .nav-link,
.bg-primary .modern-tabs .nav-link {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
}

    .bg-dark .modern-tabs .nav-link.active,
    .bg-primary .modern-tabs .nav-link.active {
        background: #fff;
        color: #0d6efd !important;
    }

@media (max-width: 767px) {
    .modern-tabs .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px 18px;
        font-size: 14px;
    }
}
/* MODERN LEADERSHIP CARDS */

.leadership-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 15px 45px rgba(2, 6, 23, 0.08);
    transition: all .4s ease;
    height: 100%;
}

    .leadership-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(13,110,253,0.15);
    }

    .leadership-card .image-wrapper {
        position: relative;
        overflow: hidden;
        height: 100%;
        min-height: 320px;
    }

        .leadership-card .image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
        }

    .leadership-card:hover .image-wrapper img {
        transform: scale(1.05);
    }

    .leadership-card .post-content {
        padding: 32px 28px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    .leadership-card .card-title {
        font-size: 1.5rem;
        line-height: 1.35;
        color: #0f172a;
        margin-bottom: 10px;
    }

    .leadership-card .designation {
        font-size: 1rem;
        font-weight: 600;
        color: #0d6efd;
        margin-bottom: 22px;
    }

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

    .social-links a {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #f8fafc;
        color: #0f172a;
        text-decoration: none;
        font-size: 18px;
        transition: all .3s ease;
    }

        .social-links a:hover {
            background: linear-gradient(135deg, #0d6efd, #2563eb);
            color: #fff !important;
            transform: translateY(-4px);
            box-shadow: 0 12px 25px rgba(13,110,253,0.25);
        }

.leadership-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0d6efd, #2563eb);
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
    transition: all .35s ease;
    width: fit-content;
    box-shadow: 0 10px 25px rgba(13,110,253,0.18);
}

    .leadership-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 35px rgba(13,110,253,0.28);
        color: #fff !important;
    }

@media (max-width: 991px) {
    .leadership-card .image-wrapper {
        min-height: 260px;
    }
}

@media (max-width: 767px) {

    .leadership-card .post-content {
        padding: 24px 20px;
    }

    .leadership-card .image-wrapper {
        min-height: 300px;
    }

    .leadership-card .card-title {
        font-size: 1.25rem;
    }
}
