/* ========================================
   DIGIT Innovations - Custom Styles
   ======================================== */

/* CSS Variables */
:root {
    --color-primary: #007BFF;
    --color-primary-dark: #0056D2;
    --color-secondary: #FF6B00;
    --color-accent-orange: #FF8C00;
    --color-accent-cyan: #00D4FF;
    --color-dark-bg: #0A1628;
    --color-dark-card: #111827;
    --color-light-bg: #F8FAFC;
    --color-white: #FFFFFF;
    --color-text-primary: #1A1A1A;
    --color-text-secondary: #6B7280;
    --color-text-light: #9CA3AF;
    --color-border: #E5E7EB;
    
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    --transition-fast: 150ms;
    --transition-normal: 300ms;
    --transition-slow: 500ms;
    
    --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);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 62px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Utility Classes */
.text-orange {
    color: var(--color-secondary);
}

.text-cyan {
    color: var(--color-accent-cyan);
}

.text-dark {
    color: var(--color-text-primary) !important;
}

.gradient-text {
    background: linear-gradient(90deg, var(--color-accent-cyan), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Navigation
   ======================================== */
#mainNavbar {
    background: transparent;
    padding: 15px 0;
    transition: all var(--transition-normal) ease;
    z-index: 1000;
}

#mainNavbar.scrolled {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.navbar-brand {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.logo-digit {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -1px;
}

.logo-innovations {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-transform: lowercase;
}

/* SailPoint Academy Logo */
.logo-sailpoint {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

.logo-academy {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    align-self: flex-end;
    padding-bottom: 3px;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text-primary) !important;
    padding: 10px 20px !important;
    transition: color var(--transition-fast) ease;
}

.nav-link:hover {
    color: var(--color-primary) !important;
}

.dropdown-menu-large {
    width: 800px;
    max-width: 90vw;
    padding: 30px;
    border: none;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    margin-top: 15px !important;
}

.dropdown-item {
    padding: 15px;
    border-radius: 12px;
    transition: all var(--transition-fast) ease;
}

.dropdown-item:hover {
    background: var(--color-light-bg);
}

.dropdown-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent-cyan));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
    flex-shrink: 0;
}

.dropdown-item h6 {
    font-size: 15px;
    margin-bottom: 5px;
    color: var(--color-text-primary);
}

.dropdown-item p {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

.badge-sub {
    font-size: 10px;
    background: var(--color-light-bg);
    color: var(--color-primary);
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 8px;
    font-weight: 500;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--color-white) 0%, #f0f9ff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-description {
    border-left: 4px solid var(--color-secondary);
    padding-left: 20px;
    margin-bottom: 30px;
}

.hero-description p {
    font-size: 18px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.hero-description strong {
    color: var(--color-text-primary);
}

/* Feature Cards Small */
.feature-card-small {
    background: var(--color-white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    position: relative;
    transition: all var(--transition-normal) ease;
}

.feature-card-small:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-line {
    width: 30px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    margin-bottom: 15px;
}

.feature-card-small span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 15px;
}

.feature-icon {
    font-size: 24px;
    color: var(--color-text-light);
    opacity: 0.5;
}

/* Application Form Card */
.application-form-card {
    background: var(--color-white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.application-form-card h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.application-form-card .text-muted {
    font-size: 14px;
    margin-bottom: 25px;
}

.input-group-text {
    background: transparent;
    border-right: none;
    color: var(--color-text-light);
}

.form-control, .form-select {
    border-left: none;
    padding: 12px 16px;
    font-size: 14px;
}

.form-control:focus, .form-select:focus {
    box-shadow: none;
    border-color: var(--color-border);
}

.input-group:focus-within .input-group-text,
.input-group:focus-within .form-control {
    border-color: var(--color-primary);
}

.form-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--color-text-light);
}

.btn-apply {
    background: #000;
    color: white;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all var(--transition-fast) ease;
}

.btn-apply:hover {
    background: #333;
    transform: scale(1.02);
}

/* ========================================
   Section Common Styles
   ======================================== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-secondary);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-description {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.section-subtitle {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ========================================
   Excellence Section
   ======================================== */
.excellence-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0f9ff 0%, var(--color-white) 100%);
}

.trophy-container {
    position: relative;
}

.trophy-image {
    max-width: 100%;
    border-radius: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.ratings-section {
    margin-top: 30px;
}

.rating-card {
    background: var(--color-white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.rating-logo {
    font-weight: 700;
    font-size: 18px;
}

.rating-logo.google {
    color: #4285F4;
}

.rating-logo.urbanpro {
    color: #00A0B0;
}

.rating-logo.justdial {
    color: #FF6B00;
}

.stars {
    color: #FFC107;
    font-size: 14px;
    margin: 8px 0;
}

/* ========================================
   Success Stories Section
   ======================================== */
.success-stories-section {
    padding: 100px 0;
    background: var(--color-dark-bg);
    position: relative;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    animation: shapeFloat 6s ease-in-out infinite;
}

.shape-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes shapeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.student-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 20px;
    padding: 30px;
    height: 300px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal) ease;
}

.student-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.student-info {
    position: absolute;
    top: 20px;
    left: 20px;
}

.student-name {
    color: var(--color-accent-cyan);
    font-size: 20px;
    margin-bottom: 5px;
}

.student-role {
    color: var(--color-text-light);
    font-size: 14px;
    margin: 0;
}

.placed-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.company-logo {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.company-logo img {
    max-width: 120px;
    opacity: 0.8;
}

/* ========================================
   Training Features Section
   ======================================== */
.training-features-section {
    padding: 100px 0;
    background: var(--color-white);
}

.training-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all var(--transition-normal) ease;
    border: 1px solid var(--color-border);
}

.training-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--color-primary);
}

.training-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent-cyan));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.training-icon i {
    font-size: 24px;
    color: white;
}

.training-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
}

/* ========================================
   Mentor Section
   ======================================== */
.mentor-section {
    padding: 100px 0;
    background: var(--color-dark-bg);
}

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

.mentor-section .section-description {
    color: var(--color-text-light);
}

.mentor-logos {
    padding: 20px;
}

.mentor-logo-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition: all var(--transition-normal) ease;
}

.mentor-logo-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.mentor-logo-item img {
    max-width: 100%;
    max-height: 40px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-normal) ease;
}

.mentor-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ========================================
   Statistics Section
   ======================================== */
.statistics-section {
    padding: 80px 0;
    background: var(--color-white);
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 28px;
    color: white;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-text-primary);
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1;
    display: inline;
}

.stat-label {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   Companies Section
   ======================================== */
.companies-section {
    padding: 100px 0;
    background: var(--color-dark-bg);
}

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

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.company-logo {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition: all var(--transition-normal) ease;
}

.company-logo:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.05);
}

.company-logo img {
    max-width: 100%;
    max-height: 35px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--transition-normal) ease;
}

.company-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ========================================
   Certifications Section
   ======================================== */
.certifications-section {
    padding: 100px 0;
    background: var(--color-white);
}

.certification-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cert-tab {
    background: transparent;
    border: 2px solid var(--color-border);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--color-text-secondary);
    transition: all var(--transition-fast) ease;
    cursor: pointer;
}

.cert-tab.active {
    background: var(--color-dark-bg);
    border-color: var(--color-dark-bg);
    color: white;
}

.cert-tab:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.cert-panel {
    display: none;
}

.cert-panel.active {
    display: block;
}

.certificate-display {
    text-align: center;
    position: relative;
}

.verified-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #10B981;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
}

.certificate-image {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.cert-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cert-feature-card {
    background: var(--color-dark-bg);
    padding: 25px;
    border-radius: 16px;
    color: white;
}

.cert-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.cert-feature-icon i {
    font-size: 20px;
    color: var(--color-accent-cyan);
}

.cert-feature-card h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.cert-feature-card p {
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
}

/* ========================================
   Batches Section
   ======================================== */
.batches-section {
    padding: 100px 0;
    background: var(--color-light-bg);
}

.batch-carousel {
    position: relative;
}

.batch-card {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 24px;
    padding: 30px;
    color: white;
    box-shadow: var(--shadow-xl);
}

.batch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.batch-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.batch-icon {
    font-size: 24px;
    opacity: 0.8;
}

.batch-title {
    font-size: 28px;
    margin-bottom: 10px;
}

.batch-status {
    display: inline-block;
    background: #10B981;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 25px;
}

.batch-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.batch-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.batch-detail-item i {
    font-size: 18px;
    opacity: 0.8;
    margin-top: 3px;
}

.batch-detail-item small {
    display: block;
    font-size: 11px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.batch-detail-item p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.btn-secure {
    background: white;
    color: var(--color-primary);
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    transition: all var(--transition-fast) ease;
}

.btn-secure:hover {
    background: var(--color-light-bg);
    transform: scale(1.02);
}

.batch-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--color-border);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast) ease;
}

.dot.active {
    background: var(--color-primary);
    width: 25px;
    border-radius: 5px;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--color-dark-bg);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    height: 100%;
    transition: all var(--transition-normal) ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.testimonial-name {
    color: white;
    font-size: 16px;
    margin-bottom: 3px;
}

.testimonial-course {
    color: var(--color-accent-cyan);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-rating {
    color: #FFC107;
    font-size: 12px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--color-text-light);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 100px 0;
    background: var(--color-white);
}

.cta-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 30px;
    padding: 60px;
    overflow: hidden;
    position: relative;
}

.cta-image {
    position: relative;
}

.cta-image img {
    max-width: 100%;
    border-radius: 20px;
}

.cta-title {
    color: white;
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-description {
    color: var(--color-text-light);
    font-size: 16px;
    margin-bottom: 25px;
}

.cta-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.cta-contact span {
    color: var(--color-text-light);
}

.phone-number {
    color: var(--color-accent-cyan);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast) ease;
}

.phone-number:hover {
    color: var(--color-secondary);
}

.phone-number i {
    margin-right: 8px;
}

.btn-enroll {
    background: white;
    color: var(--color-text-primary);
    padding: 14px 35px;
    border-radius: 10px;
    font-weight: 600;
    transition: all var(--transition-fast) ease;
}

.btn-enroll:hover {
    background: var(--color-light-bg);
    transform: scale(1.02);
}

/* ========================================
   Footer Section
   ======================================== */
.footer-section {
    padding: 80px 0 30px;
    background: var(--color-dark-bg);
}

.footer-brand {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-description {
    color: var(--color-text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links span {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all var(--transition-fast) ease;
}

.social-icon.instagram {
    background: #E4405F;
}

.social-icon.linkedin {
    background: #0A66C2;
}

.social-icon.youtube {
    background: #FF0000;
}

.social-icon.whatsapp {
    background: #25D366;
}

.social-icon:hover {
    transform: scale(1.1);
    color: white;
}

.footer-title {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-text-light);
    font-size: 14px;
    text-decoration: none;
    transition: all var(--transition-fast) ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--color-accent-cyan);
}

.footer-links i {
    font-size: 10px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 12px;
}

.footer-contact a {
    color: var(--color-text-light);
    font-size: 14px;
    text-decoration: none;
    transition: all var(--transition-fast) ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact a:hover {
    color: var(--color-accent-cyan);
}

.footer-contact i {
    color: var(--color-primary);
}

.location-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 25px;
    height: 100%;
}

.location-icon {
    width: 45px;
    height: 45px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
    flex-shrink: 0;
}

.location-card h6 {
    color: white;
    font-size: 15px;
    margin-bottom: 10px;
}

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

.btn-directions {
    color: var(--color-accent-cyan);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast) ease;
}

.btn-directions:hover {
    color: var(--color-secondary);
}

.btn-directions i:first-child {
    margin-right: 5px;
}

.btn-directions i:last-child {
    margin-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
}

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

/* ========================================
   Scroll to Top Button
   ======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 82px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal) ease;
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-4px);
}

/* ========================================
   Responsive Styles — Tablet (≤ 991px)
   ======================================== */
@media (max-width: 991px) {
    /* Navbar — always solid white on mobile/tablet */
    #mainNavbar {
        background: var(--color-white) !important;
        box-shadow: var(--shadow-md) !important;
        padding: 10px 0 !important;
    }

    /* Mobile nav links — full-width, touch-friendly */
    .navbar-collapse {
        border-top: 1px solid var(--color-border);
        margin-top: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .navbar-nav .nav-link {
        padding: 12px 8px !important;
        border-bottom: 1px solid var(--color-border);
        font-size: 15px;
    }

    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    /* Hamburger icon color (visible on white bg) */
    .navbar-toggler {
        border-color: var(--color-border);
        padding: 6px 10px;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 123, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .hero-title {
        font-size: 46px;
    }

    .section-title {
        font-size: 32px;
    }

    .dropdown-menu-large {
        width: 100%;
        padding: 20px;
    }

    .cta-card {
        padding: 40px;
    }

    .cta-title {
        font-size: 32px;
    }

    /* Section padding reduce on tablet */
    .excellence-section,
    .success-stories-section,
    .training-features-section,
    .mentor-section,
    .companies-section,
    .certifications-section,
    .batches-section,
    .testimonials-section,
    .cta-section,
    .footer-section {
        padding: 70px 0;
    }

    .statistics-section {
        padding: 60px 0;
    }
}

/* ========================================
   Responsive Styles — Mobile (≤ 767px)
   ======================================== */
@media (max-width: 767px) {
    /* Hero */
    .hero-section {
        padding: 100px 0 50px;
        min-height: auto;
    }

    .hero-title {
        font-size: 34px;
        margin-bottom: 20px;
    }

    .hero-description p {
        font-size: 15px;
    }

    /* Form card */
    .application-form-card {
        margin-top: 35px;
        padding: 24px 20px;
    }

    /* Section titles */
    .section-title {
        font-size: 26px;
    }

    .section-description,
    .section-subtitle {
        font-size: 14px;
    }

    /* Section padding */
    .excellence-section,
    .success-stories-section,
    .training-features-section,
    .mentor-section,
    .companies-section,
    .certifications-section,
    .batches-section,
    .testimonials-section,
    .cta-section {
        padding: 60px 0;
    }

    .footer-section {
        padding: 50px 0 25px;
    }

    .statistics-section {
        padding: 50px 0;
    }

    /* Training feature cards — 2 per row on mobile */
    .training-features-section .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .training-card {
        padding: 20px 15px;
    }

    .training-card h5 {
        font-size: 13px;
    }

    .training-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 14px;
    }

    /* Stat items */
    .stat-item {
        padding: 20px 10px;
    }

    .stat-number,
    .stat-suffix {
        font-size: 38px;
    }

    .stat-label {
        font-size: 13px;
    }

    /* Student cards */
    .student-card {
        margin-bottom: 20px;
        height: 260px;
    }

    /* Batch */
    .batch-details {
        grid-template-columns: 1fr;
    }

    .batch-title {
        font-size: 22px;
    }

    /* CTA */
    .cta-card {
        padding: 30px 22px;
    }

    .cta-title {
        font-size: 26px;
        margin-top: 25px;
    }

    /* Companies */
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Ratings */
    .rating-card {
        padding: 14px 10px;
    }

    /* Certifications */
    .cert-feature-card {
        padding: 18px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 20px 16px;
    }

    /* Footer logo spacing */
    .footer-brand {
        margin-bottom: 15px;
    }

    /* Logo on mobile */
    .logo-sailpoint {
        font-size: 20px;
    }

    .logo-academy {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
}

/* ========================================
   Responsive Styles — Small Mobile (≤ 575px)
   ======================================== */
@media (max-width: 575px) {
    /* Hero */
    .hero-section {
        padding: 90px 0 40px;
    }

    .hero-title {
        font-size: 30px;
    }

    /* Feature cards in hero */
    .feature-card-small {
        padding: 14px 12px;
    }

    .feature-card-small span {
        font-size: 11px;
    }

    .feature-icon {
        font-size: 18px;
    }

    /* Application form card */
    .application-form-card {
        padding: 20px 16px;
    }

    .application-form-card h3 {
        font-size: 20px;
    }

    /* Buttons */
    .btn-apply {
        padding: 13px 20px;
        font-size: 14px;
    }

    /* Section title */
    .section-title {
        font-size: 23px;
    }

    /* Section badge */
    .section-badge {
        font-size: 11px;
    }

    /* Stats */
    .stat-number,
    .stat-suffix {
        font-size: 32px;
    }

    .stat-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 14px;
    }

    /* Training cards 2-per-row maintained */
    .training-features-section .col-md-6 {
        width: 50%;
    }

    .training-card {
        padding: 16px 12px;
    }

    .training-card h5 {
        font-size: 12px;
    }

    /* Certification tabs */
    .certification-tabs {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .cert-tab {
        width: 100%;
        max-width: 260px;
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Batch card */
    .batch-card {
        padding: 22px 18px;
    }

    /* CTA */
    .cta-card {
        padding: 24px 16px;
    }

    .cta-title {
        font-size: 22px;
    }

    /* Sticky CTA bar text */
    .sticky-cta-btn span {
        font-size: 12px;
    }

    .sticky-cta-btn i {
        font-size: 16px;
    }

    /* Footer */
    .footer-description {
        font-size: 13px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    /* Logo */
    .logo-sailpoint {
        font-size: 18px;
    }

    .logo-academy {
        font-size: 9px;
        letter-spacing: 1px;
    }
}

/* ========================================
   Responsive Styles — Extra Small (≤ 400px)
   ======================================== */
@media (max-width: 400px) {
    .hero-title {
        font-size: 26px;
    }

    .section-title {
        font-size: 21px;
    }

    .feature-card-small span {
        font-size: 10px;
    }

    .stat-number,
    .stat-suffix {
        font-size: 28px;
    }

    .sticky-cta-btn {
        gap: 5px;
        padding: 0 6px;
    }

    .sticky-cta-btn span {
        font-size: 11px;
    }

    .sticky-cta-btn i {
        font-size: 15px;
    }
}

/* Animation for AOS */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* ========================================
   Sticky Bottom CTA Bar
   ======================================== */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9998;
    height: 62px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.28);
}

.sticky-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 12px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.15s ease;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.sticky-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background 0.2s ease;
}

.sticky-cta-btn:hover::before {
    background: rgba(255, 255, 255, 0.1);
}

.sticky-cta-btn:active {
    transform: scale(0.98);
}

.sticky-cta-btn:hover {
    color: #ffffff;
    text-decoration: none;
}

.sticky-cta-btn i {
    font-size: 19px;
    flex-shrink: 0;
}

.sticky-cta-btn span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* Dividers between buttons */
.sticky-cta-btn + .sticky-cta-btn {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

/* Book A Free Demo — Dark Navy → Primary Blue */
.sticky-btn-demo {
    background: linear-gradient(135deg, #0A1628 0%, #0056D2 100%);
}

/* Call Now — Primary Blue → Cyan */
.sticky-btn-call {
    background: linear-gradient(135deg, #007BFF 0%, #00C4EF 100%);
}

/* WhatsApp — Green gradient */
.sticky-btn-whatsapp {
    background: linear-gradient(135deg, #1DAA5C 0%, #128C7E 100%);
}

/* Responsive — tighter on very small screens */
@media (max-width: 400px) {
    .sticky-cta-btn span {
        font-size: 11px;
    }
    .sticky-cta-btn i {
        font-size: 16px;
    }
    .sticky-cta-btn {
        gap: 6px;
    }
}
