/* Google Fonts - Outfit */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    --primary-color: #4361EE;      /* Vibrant Blue */
    --primary-light: #4895EF;    
    --primary-dark: #3F37C9;
    
    --secondary-color: #F72585;    /* Pop Pink/Magenta */
    --secondary-light: #FF85B3;
    
    --accent-color: #F8961E;       /* Joyful Orange */
    --accent-light: #F9C74F;       /* Yellow */
    
    --success-color: #4CAF50;
    
    --text-dark: #2B2D42;
    --text-light: #8D99AE;
    --text-white: #FFFFFF;
    
    --bg-main: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-card: #FFFFFF;
    
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(67, 97, 238, 0.15);
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 30px;
    --border-radius-round: 50%;
    
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.bg-light { background-color: var(--bg-light); }
.text-center { text-align: center; }
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-accent { color: var(--accent-color); }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.w-max-700 { max-width: 700px; margin-left: auto; margin-right: auto; }

/* Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; font-weight: 600; }
p { margin-bottom: 1rem; color: var(--text-light); font-size: 1.1rem; }
.lead { font-size: 1.25rem; font-weight: 500; color: var(--text-dark); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn i { margin-right: 8px; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(67, 97, 238, 0.4);
    color: var(--text-white);
}

.btn-secondary {
    background-color: var(--bg-main);
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Section Header */
.section-header {
    margin-bottom: 3rem;
    position: relative;
}

.section-header.line-left { padding-left: 20px; border-left: 4px solid var(--secondary-color); }
.subtitle { display: inline-block; font-weight: 600; font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }

/* --- Top Bar --- */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--text-white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.contact-info span { margin-right: 20px; }
.contact-info i { margin-right: 8px; color: var(--accent-light); }
.social-links a { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background-color: rgba(255,255,255,0.1); color: var(--text-white); margin-left: 10px; transition: var(--transition); }
.social-links a:hover { background-color: var(--secondary-color); transform: translateY(-3px); }

/* --- Navbar --- */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar.scrolled { padding: 10px 0; box-shadow: var(--shadow-md); }

.nav-content { display: flex; justify-content: space-between; align-items: center; }

.logo img { height: 60px; transition: var(--transition); border-radius: 8px; box-shadow: var(--shadow-sm); }
.navbar.scrolled .logo img { height: 50px; }

.nav-links { display: flex; align-items: center; }
.nav-links li { margin-left: 30px; }
.nav-links a { font-weight: 600; color: var(--text-dark); position: relative; padding: 5px 0; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); transition: var(--transition); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--primary-color); }

.btn-nav {
    background-color: var(--secondary-color);
    color: var(--text-white) !important;
    padding: 10px 24px !important;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 10px rgba(247, 37, 133, 0.3);
}

.btn-nav::after { display: none !important; }
.btn-nav:hover { background-color: var(--primary-color); transform: translateY(-2px); box-shadow: 0 6px 15px rgba(67, 97, 238, 0.3); }

.menu-toggle { display: none; font-size: 1.5rem; color: var(--text-dark); cursor: pointer; }

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 80px 0 120px;
    background: linear-gradient(135deg, rgba(248, 249, 250, 1) 0%, rgba(226, 232, 240, 0.4) 100%);
    overflow: hidden;
}

.hero-shape { position: absolute; top: -100px; right: -100px; width: 600px; height: 600px; border-radius: 50%; background: linear-gradient(135deg, rgba(247, 37, 133, 0.1), rgba(67, 97, 238, 0.1)); z-index: 0; filter: blur(50px); }

.hero-container { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 10; gap: 50px; }

.hero-content { flex: 1; max-width: 600px; }
.badge { display: inline-block; padding: 8px 16px; background-color: rgba(67, 97, 238, 0.1); color: var(--primary-color); font-weight: 600; border-radius: var(--border-radius-lg); margin-bottom: 20px; font-size: 0.9rem; border: 1px solid rgba(67, 97, 238, 0.2); }
.hero-content h1 { margin-bottom: 20px; }
.hero-content p { font-size: 1.25rem; margin-bottom: 40px; }

.hero-actions { display: flex; gap: 20px; margin-bottom: 50px; }

.stats-row { display: flex; gap: 40px; padding-top: 30px; border-top: 1px solid rgba(0,0,0,0.1); }
.stat-item { display: flex; align-items: center; gap: 15px; }
.stat-icon { width: 50px; height: 50px; border-radius: 50%; background-color: var(--bg-main); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--accent-color); box-shadow: var(--shadow-sm); }
.stat-text h4 { margin-bottom: 0; font-size: 1.4rem; color: var(--primary-dark); }
.stat-text p { margin-bottom: 0; font-size: 0.9rem; color: var(--text-light); }

.hero-visual { flex: 1; display: flex; justify-content: center; position: relative; }
.blob-wrapper { position: relative; width: 450px; height: 450px; }
.blob { width: 100%; height: 100%; border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; background: linear-gradient(135deg, var(--primary-light), var(--primary-color)); animation: morph 8s ease-in-out infinite; box-shadow: var(--shadow-lg); }

@keyframes morph {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
    67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
}

.card-float { position: absolute; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); padding: 20px; border-radius: var(--border-radius-md); box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 15px; transform: translateY(0); animation: float 6s ease-in-out infinite; width: 220px; border: 1px solid rgba(255,255,255,0.5); }
.card-float i { font-size: 2rem; }
.card-float h5 { margin-bottom: 5px; font-size: 1.1rem; }
.card-float span { font-size: 0.85rem; color: var(--text-light); font-weight: 500; }

.card-1 { top: 10%; left: -10%; animation-delay: 0s; }
.card-2 { bottom: 15%; right: -5%; animation-delay: 2s; }
.card-3 { bottom: -10%; left: 10%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* --- About Section --- */
.about-container { display: flex; align-items: center; gap: 60px; }
.about-image { flex: 1; position: relative; }
.image-grid { display: flex; gap: 20px; align-items: stretch; }
.img-box { border-radius: var(--border-radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.img-box img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.img-box:hover img { transform: scale(1.05); }
.box-1 { flex: 1.5; transform: translateY(20px); height: 400px; }
.box-2 { flex: 1; height: 350px; }

.experience-badge { position: absolute; bottom: 40px; left: -20px; background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light)); color: var(--text-white); padding: 25px; border-radius: var(--border-radius-round); width: 140px; height: 140px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; box-shadow: 0 10px 20px rgba(247, 37, 133, 0.4); border: 5px solid var(--bg-main); z-index: 10; animation: scalePulse 3s infinite;}

@keyframes scalePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.experience-badge h2 { color: var(--text-white); margin-bottom: 0; font-size: 2.2rem; }
.experience-badge span { font-weight: 600; font-size: 0.9rem; line-height: 1.2; }

.about-content { flex: 1; }
.about-features { display: flex; gap: 30px; margin-top: 30px; }
.feature { flex: 1; }
.feature-icon { width: 60px; height: 60px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 15px; }
.bg-light-primary { background-color: rgba(67, 97, 238, 0.1); }
.bg-light-secondary { background-color: rgba(247, 37, 133, 0.1); }

/* --- Adviser Section --- */
.adviser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.adviser-card { background: var(--bg-main); padding: 40px 30px; border-radius: var(--border-radius-md); box-shadow: var(--shadow-md); text-align: center; transition: var(--transition); position: relative; overflow: hidden; border-bottom: 4px solid var(--primary-color); }
.adviser-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 0; background: linear-gradient(135deg, var(--primary-color), var(--primary-light)); opacity: 0.05; transition: var(--transition); z-index: 0; }
.adviser-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.adviser-card:hover::before { height: 100%; }
.adviser-card .card-icon { width: 80px; height: 80px; background-color: rgba(67, 97, 238, 0.1); color: var(--primary-color); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2.5rem; margin: 0 auto 20px; transition: var(--transition); position: relative; z-index: 1; }
.adviser-card:hover .card-icon { background-color: var(--primary-color); color: var(--text-white); transform: rotateY(360deg); }
.adviser-card h3 { position: relative; z-index: 1; margin-bottom: 15px; }
.adviser-card p { position: relative; z-index: 1; margin-bottom: 0; }

.adviser-card:nth-child(2) { border-bottom-color: var(--secondary-color); }
.adviser-card:nth-child(2) .card-icon { color: var(--secondary-color); background-color: rgba(247, 37, 133, 0.1); }
.adviser-card:nth-child(2):hover .card-icon { background-color: var(--secondary-color); color: var(--text-white); }
.adviser-card:nth-child(2)::before { background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light)); }

.adviser-card:nth-child(3) { border-bottom-color: var(--accent-color); }
.adviser-card:nth-child(3) .card-icon { color: var(--accent-color); background-color: rgba(248, 150, 30, 0.1); }
.adviser-card:nth-child(3):hover .card-icon { background-color: var(--accent-color); color: var(--text-white); }
.adviser-card:nth-child(3)::before { background: linear-gradient(135deg, var(--accent-color), var(--accent-light)); }

.adviser-banner { background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)); padding: 40px 50px; border-radius: var(--border-radius-md); display: flex; justify-content: space-between; align-items: center; color: var(--text-white); box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.adviser-banner::after { content: ''; position: absolute; right: -50px; top: -50px; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,0.1); }
.banner-content h3 { color: var(--text-white); margin-bottom: 10px; font-size: 1.8rem; position: relative; z-index: 1; }
.banner-content p { color: rgba(255,255,255,0.8); margin-bottom: 0; position: relative; z-index: 1; }
.banner-action { position: relative; z-index: 1; }
.banner-action .btn { background: var(--text-white); color: var(--primary-color); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.banner-action .btn:hover { background: var(--bg-light); transform: translateY(-3px); }

/* --- Facilities Section --- */
.facilities-tabs { display: flex; justify-content: center; gap: 15px; margin-bottom: 50px; }
.tab-btn { padding: 12px 30px; font-size: 1.1rem; font-weight: 600; font-family: 'Outfit', sans-serif; background: transparent; border: 2px solid var(--primary-color); color: var(--primary-color); border-radius: var(--border-radius-lg); cursor: pointer; transition: var(--transition); }
.tab-btn:hover, .tab-btn.active { background: var(--primary-color); color: var(--text-white); box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3); }

.tab-content { display: none; animation: fadeIn 0.5s ease; }
.tab-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
.service-card { background: var(--bg-main); border: 1px solid rgba(0,0,0,0.05); padding: 35px 30px; border-radius: var(--border-radius-md); box-shadow: var(--shadow-sm); transition: var(--transition); position: relative; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(67, 97, 238, 0.2); }
.service-icon { width: 60px; height: 60px; border-radius: 12px; background: linear-gradient(135deg, var(--primary-color), var(--primary-light)); color: var(--text-white); display: flex; justify-content: center; align-items: center; font-size: 1.8rem; margin-bottom: 25px; box-shadow: 0 8px 15px rgba(67, 97, 238, 0.3); }
.service-card h3 { font-size: 1.4rem; margin-bottom: 15px; }
.service-link { display: inline-flex; align-items: center; font-weight: 600; margin-top: 15px; font-size: 1.05rem; }
.service-link i { margin-left: 8px; transition: var(--transition); }
.service-link:hover i { transform: translateX(5px); }
.service-card:hover .service-link { color: var(--secondary-color); }

/* --- CTA Section --- */
.cta-section { background: linear-gradient(135deg, #1E3A8A, #3F37C9); color: var(--text-white); padding: 80px 0; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); opacity: 0.5; }
.cta-content { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.cta-content h2 { color: var(--text-white); font-size: 2.5rem; margin-bottom: 20px; }
.cta-content p { color: rgba(255,255,255,0.8); font-size: 1.2rem; margin-bottom: 40px; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.c-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); padding: 30px 20px; border-radius: var(--border-radius-md); border: 1px solid rgba(255,255,255,0.2); transition: var(--transition); }
.c-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.2); }
.c-card i { font-size: 2.5rem; color: var(--accent-light); margin-bottom: 20px; }
.c-card h4 { color: var(--text-white); margin-bottom: 10px; }
.c-card p { color: rgba(255,255,255,0.9); margin-bottom: 0; font-size: 1rem; }

/* --- Footer --- */
.footer { background-color: #111827; color: #9CA3AF; padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; margin-bottom: 60px; }
.footer-logo { max-width: 250px; margin-bottom: 20px; border-radius: 8px; background: white; padding: 10px;}
.about-col p { margin-bottom: 25px; }
.footer h3 { color: var(--text-white); font-size: 1.2rem; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background-color: var(--secondary-color); border-radius: 3px; }
.footer ul li { margin-bottom: 15px; }
.footer ul li a { color: #9CA3AF; font-weight: 400; display: inline-block; transition: var(--transition); }
.footer ul li a:hover { color: var(--text-white); transform: translateX(5px); }
.footer-social a { background-color: rgba(255,255,255,0.05); color: #fff; }
.footer-social a:hover { background-color: var(--primary-color); }
.bottom-content { display: flex; justify-content: space-between; align-items: center; padding: 25px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.bottom-content p { margin: 0; font-size: 0.95rem; }

/* --- Responsive Layout --- */
@media (max-width: 1024px) {
    .hero-container { flex-direction: column; text-align: center; }
    .hero-content { max-width: 100%; margin-bottom: 50px; }
    .hero-actions { justify-content: center; }
    .stats-row { justify-content: center; }
    .about-container { flex-direction: column; }
    .adviser-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    
    .nav-links { position: fixed; top: 70px; left: -100%; width: 100%; height: calc(100vh - 70px); background: var(--bg-main); flex-direction: column; justify-content: center; align-items: center; transition: var(--transition); }
    .nav-links.active { left: 0; }
    .nav-links li { margin: 20px 0; }
    .nav-links a { font-size: 1.5rem; }
    .menu-toggle { display: block; }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .adviser-banner { flex-direction: column; text-align: center; gap: 30px; }
    
    .cta-content h2 { font-size: 2rem; }
    .contact-cards { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .bottom-content { flex-direction: column; gap: 15px; text-align: center; }
    
    .blob-wrapper { width: 300px; height: 300px; margin: 0 auto; }
    .card-float { width: 180px; padding: 15px; }
    .card-float i { font-size: 1.5rem; }
    .card-float h5 { font-size: 1rem; }
}

@media (max-width: 480px) {
    .stats-row { flex-direction: column; align-items: center; text-align: center; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; }
    .image-grid { flex-direction: column; }
    .box-1, .box-2 { height: 250px; }
    .experience-badge { top: 50%; left: 50%; transform: translate(-50%, -50%); bottom: auto; }
}
