
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700;900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;

}

:root {
	/* Premium Color Palette - Deep Ocean & Gold Accent */
	--primary-navy: #0f172a;
	--deep-blue: #1e293b;
	--royal-blue: #3b82f6;
	--sky-blue: #38bdf8;
	--gold-accent: #f59e0b;
	--emerald: #10b981;
	--white: #ffffff;
	--off-white: #f8fafc;
	--light-gray: #f1f5f9;
	--medium-gray: #94a3b8;
	--dark-gray: #475569;

	/* Gradients */
	--gradient-primary: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	--gradient-accent: linear-gradient(135deg, #f59e0b 0%, #fb923c 100%);
	--gradient-success: linear-gradient(135deg, #10b981 0%, #34d399 100%);
	--gradient-dark: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
	--gradient-mesh: radial-gradient(at 40% 20%, hsla(28, 100%, 74%, 0.15) 0px, transparent 50%),
		radial-gradient(at 80% 0%, hsla(189, 100%, 56%, 0.15) 0px, transparent 50%),
		radial-gradient(at 0% 50%, hsla(355, 100%, 93%, 0.1) 0px, transparent 50%);

	/* Typography */
	--font-primary: 'Poppins', sans-serif; 
	--font-display: 'Playfair Display', serif;

	/* Shadows */
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
	--shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	--shadow-glow: 0 0 50px rgba(59, 130, 246, 0.35);
}

body {
	font-family: var(--font-primary);
	color: var(--deep-blue);
	line-height: 1.6;
	overflow-x: hidden;
	background: var(--white);
    font-size: 0.85rem;
}
a{
    text-decoration:none !important;
}
.nav-item {
	position: relative;
}

.nav-item>a {
	color: var(--deep-blue);
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
	padding: 10px 8px;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: all 0.3s ease;
	border-radius: 8px;
}

.nav-item>a:hover {
	background: var(--light-gray);
	color: var(--gold-accent);
}

.nav-item>a .dropdown-arrow {
	font-size: 12px;
	transition: transform 0.3s ease;
}

.nav-item:hover>a .dropdown-arrow {
	transform: rotate(180deg);
}

/* Level 2 - Mega Menu Dropdown */
.mega-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: var(--white);
	min-width: 800px;
	/* padding: 30px; */
	padding: 20px;
	border-radius: 20px;
	box-shadow: var(--shadow-2xl);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	margin-top: 10px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.nav-item:hover>.mega-menu {
	opacity: 1;
	visibility: visible;
	margin-top: 0;
}

.mega-menu-column {
	display: flex;
	flex-direction: column;
}

.mega-menu-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--light-gray);
}

.mega-menu-icon {
	width: 40px;
	height: 40px;
	background: var(--gradient-accent);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 20px;
}

.mega-menu-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-navy);
	margin-top:0px;
	margin-bottom:0px;
}

/* Level 3 - Sub Menu Items */
.mega-menu-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding:0px;
	margin-top:0px;
}

.mega-menu-item {
	position: relative;
}

.mega-menu-item>a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2px 15px;
	color: var(--dark-gray);
	text-decoration: none;
	font-size: 14px;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.mega-menu-item>a:hover {
	background: var(--light-gray);
	color: var(--royal-blue);
	transform: translateX(5px);
}

.mega-menu-item .arrow {
	font-size: 12px;
	opacity: 0.5;
}

/* Level 3 - Nested Submenu */
.sub-menu {
	position: absolute;
	left: 100%;
	top: 0;
	background: var(--white);
	min-width: 250px;
	padding: 15px;
	border-radius: 15px;
	/* box-shadow: var(--shadow-xl); */
	box-shadow: var(--shadow-2xl);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	margin-left: 10px;
    z-index:1;
}

.mega-menu-item:hover>.sub-menu {
	opacity: 1;
	visibility: visible;
	margin-left: 5px;
}

.sub-menu-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.sub-menu-item{
    list-style: none;
}

.sub-menu-item a {
	display: block;
	padding: 8px 12px;
	color: var(--dark-gray);
	text-decoration: none;
	font-size: 13px;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.sub-menu-item a:hover {
	background: var(--light-gray);
	color: var(--gold-accent);
	transform: translateX(3px);
}

/* Featured Card in Mega Menu */
.mega-menu-featured {
	grid-column: span 3;
	background: var(--gradient-mesh), var(--light-gray);
	padding: 20px;
	border-radius: 15px;
	/* margin-top: 20px; */
}

.featured-card {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 20px;
	align-items: center;
}

.featured-image {
	width: 100px;
	height: 100px;
	background: var(--gradient-purple);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 40px;
}

.featured-content h4 {
	font-size: 18px;
	color: var(--primary-navy);
	margin-bottom: 5px;
}

.featured-content p {
	color: var(--dark-gray);
	font-size: 14px;
	margin-bottom: 10px;
}

.featured-link {
	color: var(--gold-accent);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	transition: gap 0.3s ease;
}

.featured-link:hover {
	gap: 10px;
}
/* Announcement Bar */
.announcement-bar {
	background: var(--gradient-accent);
	color: var(--white);
	padding: 10px 0;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	position: relative;
	overflow: hidden;
}

.announcement-bar::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	animation: shimmer 3s infinite;
}

@keyframes shimmer {
	100% {
		left: 100%;
	}
}

/* Header Styles */
header {
	background: var(--white);
	box-shadow: var(--shadow-md);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.95);
}

.header-top {
	background: var(--primary-navy);
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--white);
	font-size: 13px;
}

.header-info {
	display: flex;
	gap: 25px;
}

.header-info span {
	display: flex;
	align-items: center;
	gap: 6px;
	opacity: 0.9;
	transition: opacity 0.3s ease;
}

.header-info span:hover {
	opacity: 1; 
    color: orange;
    cursor: pointer;
} 

/* Navigation */
nav {
	background: var(--white);
	padding: 5px 0;
	transition: all 0.3s ease;
}

nav.scrolled {
	padding: 15px 0;
	box-shadow: var(--shadow-lg);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 15px;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.logo:hover {
	transform: scale(1.05);
}

.logo-icon {
	width: 55px;
	height: 55px;
	background: var(--gradient-primary);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-weight: bold;
	font-size: 22px;
	box-shadow: var(--shadow-lg);
	position: relative;
	overflow: hidden;
}

.logo-icon::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
	animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
	50% {
		transform: scale(1.5);
		opacity: 0;
	}
}

.logo-text {
	display: flex;
	flex-direction: column;
}

.logo-text .university {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-navy);
	font-family: var(--font-display);
}

.logo-text .tagline {
	font-size: 12px;
	color: var(--medium-gray);
	font-weight: 500;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 0px;
	align-items: center;
	margin-bottom:0px;
	margin-top:0px;
}

/* .nav-menu a {
	color: var(--deep-blue);
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
	position: relative;
	transition: color 0.3s ease;
	padding: 5px 0;
} */

/* .nav-menu a::before {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--gradient-accent);
	transition: width 0.3s ease;
	border-radius: 2px;
} */

.nav-menu a:hover {
	color: var(--gold-accent);
}

.nav-menu a:hover::before {
	width: 100%;
}

.nav-actions {
	display: flex;
	gap: 15px;
	align-items: center;
}

.btn-search {
	width: 40px;
	height: 40px;
	border: 2px solid var(--light-gray);
	background: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-search:hover {
	border-color: var(--gold-accent);
	transform: rotate(15deg);
}

.btn-apply {
	background: var(--gradient-accent);
	color: var(--white);
	padding: 12px 30px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-lg);
	position: relative;
	overflow: hidden;
}

.btn-apply::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.btn-apply:hover::before {
	width: 300px;
	height: 300px;
}

.btn-apply:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-2xl);
}

/* Hero Section */
.hero {
	margin-top: 115px;
	background: var(--gradient-mesh), var(--gradient-dark);
	min-height: 90vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50m-2 0a2 2 0 1 1 4 0a2 2 0 1 1 -4 0' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E") repeat;
	opacity: 0.5;
}

.floating-shapes {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(40px);
	animation: float-random 20s infinite ease-in-out;
}

.shape-1 {
	width: 300px;
	height: 300px;
	background: rgba(59, 130, 246, 0.3);
	top: 10%;
	left: 10%;
	animation-delay: 0s;
}

.shape-2 {
	width: 250px;
	height: 250px;
	background: rgba(245, 158, 11, 0.3);
	top: 60%;
	right: 10%;
	animation-delay: 5s;
}

.shape-3 {
	width: 350px;
	height: 350px;
	background: rgba(16, 185, 129, 0.2);
	bottom: 10%;
	left: 50%;
	animation-delay: 10s;
}

@keyframes float-random {

	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}

	33% {
		transform: translate(30px, -30px) scale(1.1);
	}

	66% {
		transform: translate(-20px, 20px) scale(0.9);
	}
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	position: relative;
	z-index: 2;
}

.hero-text {
	animation: slideUp 1s ease-out;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 8px 20px;
	border-radius: 30px;
	color: var(--gold-accent);
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 30px;
	border: 1px solid rgba(245, 158, 11, 0.3);
	animation: slideUp 1s ease-out 0.2s both;
}

.hero-badge .badge-icon {
	width: 20px;
	height: 20px;
	background: var(--gradient-accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-title {
	font-size: clamp(48px, 6vw, 58px);
	font-weight: 900;
	font-family: var(--font-display);
	color: var(--white);
	line-height: 1.1;
	margin-bottom: 25px;
	animation: slideUp 1s ease-out 0.3s both;
}

.hero-title .highlight {
	background: var(--gradient-accent);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-description {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.7;
	margin-bottom: 40px;
	animation: slideUp 1s ease-out 0.4s both;
}

.hero-buttons {
	display: flex;
    justify-content: start;
	gap: 20px;
	flex-wrap: wrap;
	animation: slideUp 1s ease-out 0.5s both;
}

.btn {
	padding: 16px 36px;
	border-radius: 30px;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.btn-primary {
	background: var(--gradient-accent);
	color: var(--white);
	box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	color: var(--white);
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
	background: var(--white);
	color: var(--primary-navy);
	border-color: var(--white);
}

.hero-image {
	position: relative;
	animation: slideUp 1s ease-out 0.6s both;
}

.hero-image-wrapper {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-2xl);
	background: var(--gradient-mesh), var(--white);
    height: auto;  
}

.hero-image img {
	width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-stats {
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border-radius: 15px;
	padding: 20px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	box-shadow: var(--shadow-xl);
}

.hero-stat {
	text-align: center;
}

.hero-stat-number {
	font-size: 28px;
	font-weight: 700;
	color: var(--primary-navy);
	display: block;
}

.hero-stat-label {
	font-size: 12px;
	color: var(--medium-gray);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* About Section */
.about {
	padding: 120px 0;
	background: var(--white);
	position: relative;
}

.about-decoration {
	position: absolute;
	top: 50px;
	right: 0;
	width: 200px;
	height: 200px;
	background: var(--gradient-accent);
	opacity: 0.1;
	border-radius: 50%;
	filter: blur(60px);
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.about-images {
	position: relative;
}

.about-image-main {
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-2xl);
}

.about-image-float {
	position: absolute;
	bottom: -30px;
	right: -30px;
	width: 200px;
	height: 200px;
	background: var(--gradient-success);
	border-radius: 20px;
	padding: 30px;
	color: var(--white);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-shadow: var(--shadow-2xl);
}

.about-float-number {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 5px;
}

.about-float-text {
	font-size: 14px;
	text-align: center;
}

.about-text {
	padding: 20px;
}

.section-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--light-gray);
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	color: var(--gold-accent);
	margin-bottom: 20px;
}

.section-title {
	font-size: 48px;
	font-weight: 900;
	font-family: var(--font-display);
	color: var(--primary-navy);
	margin-bottom: 25px;
	line-height: 1.2;
}

.section-description {
	font-size: 18px;
	color: var(--dark-gray);
	line-height: 1.8;
	margin-bottom: 35px;
}

.about-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
	margin-bottom: 40px;
}

.about-feature {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.about-feature-icon {
	width: 50px;
	height: 50px;
	background: var(--light-gray);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 24px;
}

.about-feature-text h4 {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-navy);
	margin-bottom: 5px;
}

.about-feature-text p {
	font-size: 14px;
	color: var(--medium-gray);
	line-height: 1.5;
}

/* Programs Section */
.programs {
	padding: 100px 0;
	background: var(--gradient-mesh), var(--light-gray);
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.programs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
}

.program-card {
	background: var(--white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	cursor: pointer;
	position: relative;
}

.program-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: var(--gradient-accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.program-card:hover::before {
	transform: scaleX(1);
}

.program-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-2xl);
}

.program-image {
	height: 200px;
	background: var(--gradient-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 64px;
	color: rgba(255, 255, 255, 0.9);
	position: relative;
	overflow: hidden;
}

.program-image::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	animation: rotate 10s linear infinite;
}

@keyframes rotate {
	100% {
		transform: rotate(360deg);
	}
}

.program-content {
	padding: 30px;
}

.program-tag {
	display: inline-block;
	background: var(--light-gray);
	color: var(--royal-blue);
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 15px;
}

.program-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-navy);
	margin-bottom: 15px;
}

.program-description {
	color: var(--dark-gray);
	line-height: 1.6;
	margin-bottom: 20px;
}

.program-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	border-top: 1px solid var(--light-gray);
}

.program-duration {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--medium-gray);
	font-size: 14px;
}

.program-link {
	color: var(--gold-accent);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: gap 0.3s ease;
}

.program-link:hover {
	gap: 10px;
}

/* Campus Life Section */
.campus-life {
	padding: 100px 0;
	background: var(--white);
}

.campus-gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 250px);
	gap: 20px;
	margin-top: 50px;
}

.gallery-item {
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease;
}

.gallery-item:hover {
	transform: scale(1.05);
	box-shadow: var(--shadow-2xl);
	z-index: 10;
}

.gallery-item:nth-child(1) {
	grid-column: span 2;
	grid-row: span 2;
}

.gallery-item:nth-child(2) {
	background: var(--gradient-accent);
}

.gallery-item:nth-child(3) {
	background: var(--gradient-primary);
}

.gallery-item:nth-child(4) {
	grid-column: span 2;
	background: var(--gradient-success);
}

.gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	padding: 20px;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
	transform: translateY(0);
}

.gallery-title {
	color: var(--white);
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 5px;
}

.gallery-description {
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
}

/* Testimonials */
.testimonials {
	padding: 100px 0;
	background: var(--gradient-mesh), var(--light-gray);
}

.testimonials-slider {
	max-width: 800px;
	margin: 50px auto 0;
	position: relative;
}

.testimonial-card {
	background: var(--white);
	border-radius: 20px;
	padding: 40px;
	box-shadow: var(--shadow-xl);
	text-align: center;
}

.testimonial-stars {
	display: flex;
	justify-content: center;
	gap: 5px;
	margin-bottom: 20px;
}

.star {
	color: var(--gold-accent);
	font-size: 20px;
}

.testimonial-text {
	font-size: 18px;
	color: var(--dark-gray);
	line-height: 1.8;
	margin-bottom: 30px;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.author-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--gradient-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-weight: 600;
	font-size: 24px;
}

.author-info {
	text-align: left;
}

.author-name {
	font-weight: 600;
	color: var(--primary-navy);
	margin-bottom: 3px;
}

.author-role {
	font-size: 14px;
	color: var(--medium-gray);
}

/* CTA Section */
.cta {
	padding: 100px 0;
	background: var(--gradient-dark);
	position: relative;
	overflow: hidden;
}

.cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50m-2 0a2 2 0 1 1 4 0a2 2 0 1 1 -4 0' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E") repeat;
}

.cta-content {
	text-align: center;
	position: relative;
	z-index: 1;
}

.cta-title {
	font-size: 56px;
	font-weight: 900;
	font-family: var(--font-display);
	color: var(--white);
	margin-bottom: 20px;
}

.cta-description {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.8);
	max-width: 600px;
	margin: 0 auto 40px;
	line-height: 1.6;
}

/* Footer */
footer {
	background: var(--primary-navy);
	color: var(--white);
	padding: 80px 0 30px;
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 50px;
	margin-bottom: 50px;
}

.footer-column h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 25px;
	color: var(--white);
}

.footer-column p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
	margin-bottom: 20px;
}

.footer-column ul {
	list-style: none;
	padding-left:0px;
}

.footer-column ul li {
	margin-bottom: 12px;
}

.footer-column ul li a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.footer-column ul li a:hover {
	color: var(--gold-accent);
	transform: translateX(5px);
}

.social-links {
	display: flex;
	gap: 12px;
}

.social-link {
	width: 45px;
	height: 45px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	text-decoration: none;
	color: var(--white);
	font-size: 20px;
}

.social-link:hover {
	background: var(--gradient-accent);
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.footer-newsletter {
	background: rgba(255, 255, 255, 0.05);
	padding: 25px;
	border-radius: 15px;
	margin-top: 20px;
}

.newsletter-form {
	display: flex;
	gap: 10px;
	margin-top: 15px;
}

.newsletter-input {
	flex: 1;
	padding: 12px 20px;
	border-radius: 30px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	color: var(--white);
	font-size: 14px;
	outline: none;
	transition: all 0.3s ease;
}

.newsletter-input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--gold-accent);
}

.newsletter-btn {
	padding: 12px 25px;
	background: var(--gradient-accent);
	border: none;
	border-radius: 30px;
	color: var(--white);
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.newsletter-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.footer-bottom {
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-copyright {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
}

.footer-links {
	display: flex;
	gap: 30px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--gold-accent);
}

/* Container */
.container {
	max-width: 96%;
	margin: 0 auto;
	padding: 0 30px;
}

/* Scroll to Top Button */
.scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: var(--gradient-accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 24px;
	cursor: pointer;
	box-shadow: var(--shadow-xl);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 999;
}

.scroll-top.active {
	opacity: 1;
	visibility: visible;
}

.scroll-top:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-2xl);
}

/* Mobile Menu */
.mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	padding: 10px;
}

.mobile-toggle span {
	width: 30px;
	height: 3px;
	background: var(--primary-navy);
	border-radius: 3px;
	transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.hero-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.about-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.campus-gallery {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(4, 200px);
	}

	.gallery-item:nth-child(1) {
		grid-column: span 2;
		grid-row: span 1;
	}
}

@media (max-width: 768px) {
	.header-info {
		display: none;
	}

	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--white);
		flex-direction: column;
		padding: 30px;
		box-shadow: var(--shadow-xl);
		gap: 20px;
	}

	.nav-menu.active {
		display: flex;
	}

	.mobile-toggle {
		display: flex;
	}

	.hero-title {
		font-size: 40px;
	}

	.section-title {
		font-size: 36px;
	}

	.programs-grid {
		grid-template-columns: 1fr;
	}

	.about-features {
		grid-template-columns: 1fr;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}

/* Loading Animation */
.loader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--white);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.5s ease;
}

.loader.hidden {
	opacity: 0;
	pointer-events: none;
}

.loader-spinner {
	width: 60px;
	height: 60px;
	border: 4px solid var(--light-gray);
	border-top-color: var(--gold-accent);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	100% {
		transform: rotate(360deg);
	}
}
img{
    width:100%;
}
@media (max-width: 768px) {
    .btn-apply{
        display: none;
    }
}
 @media (max-width:567px){
     .profile-info h2{
         font-size:2rem !important;
     }
 }