/* Aurangabad Page Custom Styles */

:root {
    --aura-primary: #004e92;
    /* Professional Deep Blue */
    --aura-secondary: #ff9900;
    /* Accent Orange */
    --aura-bg: #f9fbfd;
    /* Clean Light Blue-Gray */
    --aura-card-bg: #ffffff;
    --aura-text: #2c3e50;
    /* Dark Slate for readability */
    --aura-text-light: #596b7e;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --card-hover-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius: 16px;
    /* Modern cleaner radius */
}

body.aura-page {
    background-color: var(--aura-bg);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    /* Clean modern font stack */
    color: var(--aura-text);
    line-height: 1.6;
}

.aura-section {
    padding: 100px 0;
    position: relative;
}

/* Shape Dividers */
.custom-shape-divider-bottom-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1 svg {
    position: relative;
    display: block;
    width: calc(157% + 1.3px);
    height: 76px;
}

.custom-shape-divider-bottom-1 .shape-fill {
    fill: #FFFFFF;
}

/* --- Animations --- */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 153, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 153, 0, 0);
    }
}

@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        transform: translate3d(0, 50px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Apply Animations */
.aura-float-anim {
    animation: float 4s ease-in-out infinite;
}

.aura-pulse-anim {
    animation: pulse-glow 2s infinite;
}

/* --- Hero Section --- */
.aura-hero {
    position: relative;
    padding: 120px 0 100px;
    background: url('../img/herobanner/Aligning Learning To Business.jpg') center/cover no-repeat;
    color: white;
    overflow: hidden;
}

.aura-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.aura-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.aura-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.aura-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.aura-hero h1 span {
    color: var(--aura-secondary);
    background: -webkit-linear-gradient(45deg, #ff9900, #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.aura-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.aura-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, var(--aura-primary), #007bff);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.aura-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 123, 255, 0.4);
    color: white;
}

.aura-hero-row {
    margin-top: 10px;
}

.aura-hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .aura-hero-content {
        text-align: center;
    }

    .aura-hero-image {
        margin-top: 25px;
    }
}

/* --- Feature Cards (Why Choose Us) --- */
.aura-features {
    margin-top: -60px;
    /* Overlap hero */
    position: relative;
    z-index: 3;
    padding-bottom: 60px;
}

.aura-feature-card {
    background: var(--aura-card-bg);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border-bottom: 4px solid transparent;
}

.aura-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
    border-bottom-color: var(--aura-secondary);
}

.aura-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--aura-primary);
    transition: all 0.5s ease;
}

.aura-feature-card:hover .aura-feature-icon {
    background: var(--aura-primary);
    color: white;
    transform: rotateY(180deg);
}

.aura-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--aura-text);
}

.aura-feature-card p {
    font-size: 0.95rem;
    color: var(--aura-text-light);
    line-height: 1.6;
}

/* --- Course Curriculum Cards --- */
.aura-curriculum .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.aura-module-card {
    background: var(--aura-card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.aura-module-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow);
}

.aura-module-header {
    padding: 25px;
    background: #ffffff;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.aura-module-header::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--aura-secondary);
    transition: width 0.3s ease;
}

.aura-module-card:hover .aura-module-header::before {
    width: 100%;
}

.aura-module-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.aura-module-title h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--aura-text);
}

.aura-module-body {
    padding: 25px;
}

.aura-module-body p {
    color: var(--aura-text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.aura-badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.aura-badge {
    background: #f3f4f6;
    color: #4b5563;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: background 0.2s;
}

.aura-module-card:hover .aura-badge {
    background: #e0f2fe;
    color: #0284c7;
}

/* --- Who Can Join (Persona Cards) --- */
.aura-persona-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.aura-persona-card {
    background: white;
    border-radius: var(--radius);
    padding: 30px;
    text-align: left;
    border-left: 5px solid var(--aura-primary);
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.aura-persona-card:hover {
    transform: translateX(10px);
    background: #f8fbff;
}

.aura-persona-card h4 {
    color: var(--aura-primary);
    font-weight: 700;
    margin-bottom: 10px;
}

/* --- Career/Scope Section (Timeline) --- */
.aura-career {
    background: #ffffff;
}

.aura-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.aura-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #e5e7eb;
    margin-left: -1px;
}

.aura-timeline-item {
    padding: 20px 40px;
    position: relative;
    background: inherit;
    width: 50%;
}

.aura-timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background: white;
    border: 4px solid var(--aura-primary);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
}

.aura-timeline-item:hover::after {
    background: var(--aura-secondary);
    transform: scale(1.2);
}

.aura-timeline-item.left {
    left: 0;
}

.aura-timeline-item.right {
    left: 50%;
}

.aura-timeline-item.right::after {
    left: -10px;
}

.aura-timeline-content {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

.aura-timeline-item:hover .aura-timeline-content {
    transform: scale(1.02);
}

.aura-timeline-content h3 {
    margin-top: 0;
    color: var(--aura-primary);
    font-size: 1.25rem;
    font-weight: 700;
}

/* --- Salary Table --- */
.aura-salary-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-top: 30px;
}

.aura-salary-table th {
    background: var(--aura-primary);
    color: white;
    padding: 15px;
    text-align: left;
}

.aura-salary-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.aura-salary-table tr:last-child td {
    border-bottom: none;
}

.aura-salary-table tr:hover {
    background-color: #f9f9f9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .aura-hero h1 {
        font-size: 2.2rem;
    }

    .aura-timeline::before {
        left: 31px;
    }

    .aura-timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .aura-timeline-item::after {
        left: 21px;
    }

    .aura-timeline-item.right {
        left: 0%;
    }
}

/* --- Aurangabad: Bottom Fixed Bar (Download Syllabus) --- */
body.aura-page .navbar-fixedbottom-container {
    background-image: linear-gradient(90deg, var(--aura-primary) 0%, #2c5364 50%, #007bff 100%);
    background-color: transparent;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

body.aura-page .navbar-fixedbottom-container ul li a i {
    color: #ffffff;
}

body.aura-page .navbar-fixedbottom-container ul li a p {
    color: #ffffff;
    font-weight: 600;
    letter-spacing: .3px;
}

body.aura-page .navbar-fixedbottom-container ul li a {
    animation: none;
}

body.aura-page .navbar-fixedbottom-container ul li:first-child a i,
body.aura-page .navbar-fixedbottom-container ul li:nth-child(2) a i {
    background-color: #ffffff;
    color: var(--aura-primary);
}

/* --- Aurangabad: Ready CTA section structure & design --- */
body.aura-page .registration-form-container {
    background-image: linear-gradient(90deg, var(--aura-primary) 0%, #72c7eb 50%, #e600ff 100%);
}

body.aura-page .aura-cta-left h2 {
    color: #ffffff;
    font-weight: 800;
}

body.aura-page .aura-cta-left .lead {
    color: rgba(255, 255, 255, 0.9);
}

body.aura-page .aura-cta-right .registerarea__form {
    margin-top: 0;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

body.aura-page .aura-cta-right .registerarea__form__heading h4 {
    font-weight: 700;
}

body.aura-page .aura-cta-right .register__input {
    background: #f3f6fa;
    border: 1px solid #e3e8ef;
}

@media (max-width: 768px) {
    body.aura-page .aura-cta-left {
        text-align: center;
        margin-bottom: 20px;
    }
}