:root {
    --primary: #0b2a4a;        /* Amity navy blue */
    --primary-light: #163a63a7;  /* Lighter navy for hovers/sections */

    --accent: #e29415;         /* Amity golden yellow */
    --accent-dark: #f3b600c4;    /* Darker gold for buttons/hover */

    --gold: #ff9d00;           /* Soft white (background balance) */

    --text: #1f2937;           /* Strong readable dark text */
    --text-light: #6b7280;     /* Muted secondary text */

    --bg: #f9fafb;             /* Clean academic background */
    --white: #ffffff;

    --border: #e5e7eb;         /* Subtle neutral borders */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo svg {
    display: block;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.phone-link:hover {
    color: var(--accent);
}

.btn {
    padding: 12px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background:
    linear-gradient(
      115deg,
      #0f172a 0%,
      #1e293b 50%,
      rgba(0, 53, 128, 0.75) 100%
    ),
    url("./images/banner.webp") center/cover no-repeat;

}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
    animation: pulse-bg 10s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero-decoration-1 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    top: -200px;
    right: -200px;
}

.hero-decoration-2 {
    width: 400px;
    height: 400px;
    background: var(--teal);
    bottom: -100px;
    left: -100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.2); 
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    line-height: 1.8;
}

.recognition-logos {
    display: flex;
    gap: 12px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.recognition-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.recognition-badge:hover {
    transform: translateY(-2px);
}

.hero-form {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 28px;
}

.form-header h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 800;
}

.form-header p {
    color: var(--text-light);
    font-size: 14px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--bg);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    margin-top: 8px;
}

.form-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--text-light);
    font-size: 13px;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    text-align: center;
    padding: 36px 24px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1.2;
}

.stat-label {
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
}

/* Career Section */
.career {
    padding: 100px 0;
    background: white;
}

.career-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title.light {
    color: white;
}

.section-text {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.section-text.light {
    color: rgba(255, 255, 255, 0.8);
}

.career-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.career-image img {
    width: 100%;
    height: auto;
    display: block;
}

.career-content .btn {
    margin-top: 24px;
}

/* Program Fees */
.program-fees {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.fees-card {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.admissions-banner {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    padding: 24px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
}

.fees-content {
    padding: 60px 50px;
}

.fees-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.fee-highlight {
    text-align: center;
    padding: 36px 28px;
    background: var(--bg);
    border-radius: 20px;
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.fee-highlight:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fee-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.fee-highlight h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 800;
}

.fee-highlight p {
    color: var(--text-light);
    font-size: 15px;
}

.semester-fees h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 32px;
    text-align: center;
    font-weight: 800;
}

.semester-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.semester-column {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s;
}

.semester-column:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.semester-column h3 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 8px;
    font-weight: 800;
}

.semester-column p {
    color: var(--text);
    font-weight: 600;
}

.eligibility h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 32px;
    text-align: center;
    font-weight: 800;
}

.eligibility ul {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
}

.eligibility li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    margin-bottom: 12px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.eligibility li:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.eligibility li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 900;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Program Overview */
.overview {
    padding: 100px 0;
    background: white;
}

.semester-structure {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.semester-col {
    background: var(--bg);
    padding: 32px 24px;
    border-radius: 20px;
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.semester-col:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.semester-col h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 800;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--accent);
}

.semester-col ul {
    list-style: none;
}

.semester-col li {
    padding: 10px 0;
    color: var(--text);
    font-size: 14px;
    border-bottom: 1px solid var(--border);
    transition: all 0.2s;
}

.semester-col li:hover {
    padding-left: 8px;
    color: var(--accent);
}

.semester-col li:last-child {
    border-bottom: none;
}

.specializations {
    text-align: center;
    margin-bottom: 40px;
}

.specializations h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 800;
}

.spec-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.spec-tags span {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: default;
}

.spec-tags span:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

/* Why Choose */
.why-choose {
    padding: 100px 0;
    background: var(--bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 40px 28px;
    background: white;
    border-radius: 20px;
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    color: white;
}

.feature-card h4 {
    font-size: 1.0rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Accreditations */
.accreditations {
    padding: 100px 0;
    background: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.accreditations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255, 107, 53, 0.2) 0%, transparent 50%);
}

.accreditations .container {
    position: relative;
    z-index: 2;
}

.accreditation-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.accreditation-item {
    text-align: center;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s;
}

.accreditation-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.logo-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.logo-circle img {
    max-width: 100%;
    height: auto;
    display: block;
}

.accreditation-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
}

/* Alumni */
.alumni {
    padding: 80px 0;
    background: white;
}

.alumni-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.alumni-logo {
    /* background: var(--bg); */
    padding: 0px;
    border-radius: 16px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    border: 2px solid var(--border);
    transition: all 0.3s;
}
.alumni-logo img {
    max-width:60%;
    height: auto;
    display: block;

    margin: 0 auto;
   
}

.alumni-logo:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: var(--bg);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    border: 2px solid var(--border);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: all 0.3s;
}

.faq-question:hover {
    background: var(--bg);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-light);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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");
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    font-weight: 900;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-white {
    background: white;
    color: var(--accent);
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-white:hover {
    background: var(--bg);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    font-size: 14px;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid,
    .career-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-left {
        margin-bottom: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fees-highlights,
    .semester-grid {
        grid-template-columns: 1fr;
    }
    
    .semester-structure {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .accreditation-slider {
        grid-template-columns: 1fr;
    }
    
    .alumni-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-cta .phone-link {
        display: none;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .recognition-logos {
        justify-content: center;
    }
    
    .hero-form {
        padding: 32px 24px;
    }

    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .semester-structure {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .spec-tags {
        justify-content: center;
    }

    .alumni {
        padding: 40px 0;
    }
    .why-choose {
        padding: 40px 0;
    }
    .faq {
        padding: 40px 0;
    }
    .overview {
        padding: 40px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}