:root {
    --primary: #4361ee;
    /* Vibrant blue */
    --secondary: #f72585;
    /* Electric pink */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.15);
    --text-light: rgba(255, 255, 255, 0.95);
    --text-lighter: rgba(255, 255, 255, 0.7);
    --dark-bg: #0f172a;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    min-height: 100vh;
    color: white;
}

/* Smooth scroll behavior for the entire page */
html {
    scroll-behavior: smooth;
}

/* ==================== */
/* Isolated Navbar CSS */
/* ==================== */
.akasa-navbar {
    --akasa-primary: #4361ee;
    --akasa-secondary: #f72585;
    --akasa-glass-bg: rgba(255, 255, 255, 0.1);
    --akasa-text-light: rgba(255, 255, 255, 0.95);

    background: var(--akasa-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.akasa-navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.akasa-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.akasa-logo-img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.akasa-logo:hover .akasa-logo-img {
    transform: rotate(-5deg);
}

.akasa-logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--akasa-primary), var(--akasa-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.akasa-nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.akasa-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.akasa-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--akasa-secondary);
    transition: width 0.3s ease;
}

.akasa-nav-link:hover {
    color: var(--akasa-text-light);
}

.akasa-nav-link:hover::after {
    width: 100%;
}

.akasa-nav-link.akasa-active {
    color: var(--akasa-text-light);
    font-weight: 600;
}

.akasa-nav-link.akasa-active::after {
    width: 100%;
}

.akasa-cta-button {
    background: linear-gradient(135deg, var(--akasa-primary), var(--akasa-secondary));
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.akasa-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
}

/* Mobile Toggle Button */
.akasa-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.akasa-toggle-line {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    .akasa-nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        transition: right 0.4s ease-out;
        z-index: 1000;
    }

    .akasa-nav-links.akasa-active {
        right: 0;
    }

    .akasa-mobile-toggle {
        display: block;
    }

    /* Animate toggle icon */
    .akasa-mobile-toggle.akasa-active .akasa-toggle-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .akasa-mobile-toggle.akasa-active .akasa-toggle-line:nth-child(2) {
        opacity: 0;
    }

    .akasa-mobile-toggle.akasa-active .akasa-toggle-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media (max-width: 576px) {
    .akasa-navbar {
        padding: 0.8rem 1rem;
    }

    .akasa-logo-text {
        font-size: 1.2rem;
    }
}

/* Modern Header Section */
.hero-header {
    position: relative;
    padding: 8rem 3rem 6rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
    color: white;
}

.header-content {
    max-width: 1400px;
    margin: 65px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.header-text {
    max-width: 600px;
}

.header-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

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

.header-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.highlight {
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(67, 97, 238, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.header-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.primary-btn, .secondary-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(67, 97, 238, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(247, 37, 133, 0.4);
}

.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Header Visual Section */
.header-visual {
    position: relative;
}

.visual-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.visual-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.dashboard-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.glass-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 1.5rem;
    width: 280px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-stats {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(67, 97, 238, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    display: block;
    margin-top: 3px;
}

/* Animated Background Elements */
.header-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.1) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    animation: float 15s infinite ease-in-out;
}

.shape-wave {
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 800 800' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%234361ee' fill-opacity='0.05' d='M0 0h800v800H0z'/%3E%3Cpath d='M400 400c100 100 200 200 300 100s100-300 0-400-300-100-400 0-200 200-100 300 100 200 200 100z'/%3E%3C/svg%3E");
    bottom: -500px;
    left: -500px;
    animation: rotate 60s linear infinite;
}

.shape-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Mobile Social Buttons */
.mobile-social {
    display: none;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .header-text {
        max-width: 100%;
        margin-bottom: 4rem;
    }

    .header-cta {
        justify-content: center;
    }

    .header-title {
        font-size: 2.8rem;
    }

    .social-bar {
        display: none;
    }

    .mobile-social {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero-header {
        padding: 6rem 1.5rem 4rem;
    }

    .header-title {
        font-size: 2.2rem;
    }

    .header-subtitle {
        font-size: 1.1rem;
    }

    .header-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .glass-card {
        width: 220px;
        right: 0;
        bottom: -50px;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-50px) rotate(5deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ================================== */
/* About Founder Section - Compact CSS */
/* ================================== */
.about-founder {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, #0f172a 0%, #1a253a 100%);
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.8rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.divider {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 1.2rem auto;
    border-radius: 2px;
}

.founder-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.founder-image-container {
    position: relative;
    width: 380px;
    height: 480px;
    margin: 0 auto;
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    filter: grayscale(10%);
    transition: all 0.4s ease;
}

.founder-image:hover {
    filter: grayscale(0%);
    transform: translateY(-3px);
}

.image-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(67, 97, 238, 0.3);
    border-radius: 16px;
    top: -12px;
    left: -12px;
    z-index: 1;
    transition: all 0.4s ease;
}

.founder-image-container:hover .image-frame {
    top: -8px;
    left: -8px;
}

.image-accent {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.08) 0%, rgba(247, 37, 133, 0.08) 100%);
    border-radius: 16px;
    top: 15px;
    left: 15px;
    z-index: 0;
}

.founder-details {
    color: white;
}

.founder-name {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: white;
}

.founder-title {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.founder-bio {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.founder-bio p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.qualification-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.qualification-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.qualification-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    color: white;
    font-size: 1.1rem;
}

.qualification-card h4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: white;
}

.qualification-card ul {
    list-style: none;
    padding-left: 0;
}

.qualification-card ul li {
    margin-bottom: 0.4rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1rem;
}

.qualification-card ul li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
}

.founder-social {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .founder-profile {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .founder-image-container {
        width: 300px;
        height: 360px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-founder {
        padding: 3rem 1.5rem;
    }

    .qualification-cards {
        grid-template-columns: 1fr;
    }

    .founder-image-container {
        width: 260px;
        height: 320px;
    }

    .founder-name {
        font-size: 1.7rem;
    }

    .founder-bio p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .founder-image-container {
        width: 220px;
        height: 280px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .founder-name {
        font-size: 1.5rem;
    }
}

/* ==================== */
/* Services Section CSS */
/* ==================== */
.services-section {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #1a253a 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(247, 37, 133, 0.05) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
    position: relative;
}

.icon-shade {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    top: 0;
    left: 0;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features i {
    color: var(--primary);
    font-size: 0.9rem;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-cta:hover {
    color: var(--secondary);
    gap: 12px;
}

.service-cta i {
    transition: transform 0.3s ease;
}

.service-cta:hover i {
    transform: translateX(3px);
}

/* Animated Background Elements */
.service-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape-ring {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 2px dashed rgba(67, 97, 238, 0.15);
    border-radius: 50%;
    top: -300px;
    right: -300px;
    animation: rotate 60s linear infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}



/* ==================== */
/* Distinctive Features CSS */
/* ==================== */
.akasa-distinctive-features {
    padding: 6rem 2rem;
    background: #0b1120;
    position: relative;
    overflow: hidden;
}

.akasa-section-header.akasa-center-aligned {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.akasa-section-badge {
    display: inline-block;
    background: rgba(67, 97, 238, 0.2);
    color: var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.akasa-text-gradient {
    background: linear-gradient(90deg, #f72585, #b5179e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.akasa-features-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.akasa-feature-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.akasa-feature-card {
    position: relative;
    border-radius: 16px;
    padding: 2rem;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3),
        -5px -5px 15px rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
}

.akasa-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(247, 37, 133, 0.05) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.akasa-feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 8px 8px 25px rgba(0, 0, 0, 0.4),
        -8px -8px 25px rgba(255, 255, 255, 0.1);
}

.akasa-feature-card:hover::before {
    opacity: 1;
}

.akasa-card-backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, rgba(67, 97, 238, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.akasa-feature-card:hover .akasa-card-backdrop {
    opacity: 1;
}

.akasa-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

.akasa-feature-icon.akasa-pulse {
    animation: akasa-pulse 3s infinite;
}

.akasa-feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.akasa-feature-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.akasa-feature-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
}

.akasa-feature-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.akasa-visual-container {
    width: 100%;
    height: 500px;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border-radius: 20px;
    box-shadow: inset 5px 5px 15px rgba(0, 0, 0, 0.3),
        inset -5px -5px 15px rgba(255, 255, 255, 0.05);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.akasa-active-preview {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.akasa-default-preview i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    opacity: 0.7;
}

.akasa-default-preview p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    max-width: 300px;
}

/* Animations */
@keyframes akasa-pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .akasa-features-layout {
        grid-template-columns: 1fr;
    }

    .akasa-feature-visual {
        height: 400px;
        margin: 2rem 0;
    }
}

@media (max-width: 768px) {
    .akasa-feature-card {
        padding: 1.5rem;
    }

    .akasa-visual-container {
        height: 350px;
    }
}

/* ==================== */
/* 3D Testimonial Section CSS */
/* ==================== */
.akasa-testimonials {
    --akasa-primary: #4361ee;
    --akasa-secondary: #f72585;
    --akasa-dark: #0f172a;
    --akasa-light: rgba(255, 255, 255, 0.9);

    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #0f172a 0%, #1a253a 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.akasa-testimonial-carousel {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    perspective: 2000px;
    margin-top: 3rem;
}

.akasa-testimonial-card {
    width: 320px;
    height: 400px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
}

.akasa-testimonial-card:hover {
    transform: rotateY(15deg) translateY(-20px);
}

.akasa-testimonial-card:nth-child(even):hover {
    transform: rotateY(-15deg) translateY(-20px);
}

.akasa-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s;
}

.akasa-testimonial-card.flipped .akasa-card-inner {
    transform: rotateY(180deg);
}

.akasa-card-front,
.akasa-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.akasa-card-front {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateZ(30px);
}

.akasa-card-back {
    background: linear-gradient(145deg, #1a203a, #0f152a);
    transform: rotateY(180deg) translateZ(30px);
    border: 1px solid var(--akasa-primary);
    justify-content: center;
}

.akasa-client-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.akasa-client-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--akasa-primary);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.akasa-client-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: var(--akasa-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    border: 2px solid white;
}

.akasa-client-info {
    text-align: center;
    margin-bottom: 1.5rem;
}

.akasa-client-info h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0.3rem;
}

.akasa-client-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.akasa-rating {
    color: #FFD700;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.akasa-testimonial-excerpt p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    text-align: center;
    line-height: 1.6;
    position: relative;
    padding-top: 1.5rem;
}

.akasa-testimonial-excerpt p::before {
    content: '"';
    font-size: 3rem;
    color: var(--akasa-primary);
    opacity: 0.3;
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.akasa-full-testimonial {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    text-align: center;
    position: relative;
}

.akasa-full-testimonial p::before {
    content: '"';
    font-size: 4rem;
    color: var(--akasa-primary);
    opacity: 0.2;
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.akasa-client-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.akasa-client-meta span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 5px;
}

.akasa-client-meta i {
    color: var(--akasa-primary);
}

/* Background Shapes */
.akasa-testimonial-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.akasa-shape-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -300px;
    right: -300px;
}

.akasa-shape-wave {
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 800 800' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='grad' x1='0%' y1='0%' x2='100%' y2='100%'%3E%3Cstop offset='0%' style='stop-color:%234361ee;stop-opacity:0.1' /%3E%3Cstop offset='100%' style='stop-color:%234361ee;stop-opacity:0' /%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='800' height='800' fill='url(%23grad)' /%3E%3Cpath d='M400 400c100 100 200 200 300 100s100-300 0-400-300-100-400 0-200 200-100 300 100 200 200 100z' fill='%234361ee' fill-opacity='0.1'/%3E%3C/svg%3E");
    bottom: -500px;
    left: -500px;
    animation: akasa-rotate 60s linear infinite;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .akasa-testimonial-carousel {
        gap: 1.5rem;
    }

    .akasa-testimonial-card {
        width: 280px;
        height: 380px;
    }
}

@media (max-width: 992px) {
    .akasa-testimonial-card {
        width: 100%;
        max-width: 400px;
        height: auto;
        min-height: 450px;
        margin-bottom: 2rem;
    }

    .akasa-testimonial-card:hover {
        transform: none;
    }
}

@keyframes akasa-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* ==================== */
/* Video Gallery CSS */
/* ==================== */
.akasa-video-gallery {
    --akasa-primary: #4361ee;
    --akasa-secondary: #f72585;
    --akasa-dark: #0f172a;
    --akasa-light: rgba(255, 255, 255, 0.9);

    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #0f172a 0%, #1a253a 100%);
    position: relative;
    overflow: hidden;
}

.akasa-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.akasa-video-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.akasa-video-item.akasa-featured {
    grid-column: span 2;
}

.akasa-video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.akasa-video-item.akasa-featured .akasa-video-thumbnail {
    height: 300px;
}

.akasa-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.akasa-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--akasa-primary);
    font-size: 1.5rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.akasa-video-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.akasa-video-info {
    padding: 1.5rem;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-radius: 0 0 16px 16px;
}

.akasa-video-info h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0.5rem;
}

.akasa-video-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.akasa-video-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.akasa-video-meta i {
    margin-right: 0.3rem;
}

.akasa-video-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.9), rgba(247, 37, 133, 0.8));
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.akasa-video-item:hover .akasa-video-hover-content {
    opacity: 1;
    transform: translateY(0);
}

.akasa-video-item:hover .akasa-video-thumbnail img {
    transform: scale(1.1);
}

.akasa-video-item:hover .akasa-play-button {
    background: var(--akasa-secondary);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.akasa-video-hover-content h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.akasa-video-hover-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.akasa-video-hover-content li {
    margin-bottom: 0.7rem;
    color: white;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.akasa-video-hover-content i {
    color: white;
}

.akasa-watch-button {
    background: white;
    color: var(--akasa-primary);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.akasa-watch-button:hover {
    background: var(--akasa-dark);
    color: white;
    transform: translateY(-3px);
}

.akasa-view-all {
    text-align: center;
    margin-top: 3rem;
}

.akasa-cta-button {
    background: linear-gradient(135deg, var(--akasa-primary), var(--akasa-secondary));
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.akasa-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(247, 37, 133, 0.4);
}

/* Background Elements */
.akasa-gallery-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.akasa-shape-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 15px 15px;
}

.akasa-shape-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .akasa-video-item.akasa-featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .akasa-video-grid {
        grid-template-columns: 1fr;
    }

    .akasa-video-thumbnail {
        height: 250px;
    }
}

/* ==== Why Choose Us Section ==== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap');

/* 3D Floating Container */
.alasa-immersive-section {
    perspective: 2000px;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.alasa-3d-container {
    max-width: 1400px;
    margin: 0 auto;
    transform-style: preserve-3d;
    transition: transform 0.5s ease-out;
}

/* Floating SAP Modules Background */
.alasa-sap-modules {
    position: absolute;
    width: 100%;
    height: 80%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.15;
}

.alasa-module {
    position: absolute;
    font-size: 12rem;
    font-weight: 700;
    color: var(--alasa-blue);
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

.alasa-module:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.alasa-module:nth-child(2) {
    top: 30%;
    right: 8%;
    animation-delay: 2s;
    color: var(--alasa-pink);
}

.alasa-module:nth-child(3) {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

/* Glowing Header */
.alasa-main-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.alasa-main-title {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--alasa-blue), var(--alasa-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: #dbe4fad5;
    margin-bottom: 1.0rem;
    text-shadow: 0 0 20px rgba(247, 37, 133, 0.4);
    position: relative;
    display: inline-block;
}

.alasa-main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--alasa-blue), var(--alasa-pink));
    border-radius: 2px;
    filter: blur(2px);
}

.alasa-main-subtitle {
    font-size: 1.3rem;
    color: var(--alasa-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* 3D Card Grid */
.alasa-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    perspective: 1500px;
}

.alasa-feature-card {
    background: var(--alasa-glass);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transform-style: preserve-3d;
    transition: var(--alasa-transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.alasa-feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.1) 0%, transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.alasa-feature-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.alasa-feature-card:hover::before {
    opacity: 1;
}

/* 3D Icon */
.alasa-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--alasa-blue), var(--alasa-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: white;
    font-size: 2rem;
    transform: translateZ(30px);
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.4);
    position: relative;
    transition: var(--alasa-transition);
}

.alasa-feature-card:hover .alasa-card-icon {
    transform: translateZ(50px) rotateY(20deg);
    box-shadow: 0 15px 40px rgba(247, 37, 133, 0.4);
}

.alasa-card-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    animation: rotate 20s linear infinite;
}

/* Card Content */
.alasa-card-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #ff2e8ced;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.alasa-card-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--alasa-pink);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.alasa-feature-card:hover .alasa-card-title::after {
    width: 100px;
}

.alasa-card-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0rem;
    line-height: 1.7;
    font-size: 1rem;
    flex-grow: 1;
}

/* 100% Placement Badge */
.alasa-placement-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(45deg, #38a169, #48bb78);
    color: white;
    padding: 0.5rem 3rem;
    font-size: 0.9rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(56, 161, 105, 0.3);
    z-index: 2;
}

/* Interactive CTA */
.alasa-immersion-cta {
    text-align: center;
    margin-top: 6rem;
    position: relative;
    z-index: 2;
}

.alasa-cta-box {
    background: linear-gradient(135deg, var(--alasa-blue), var(--alasa-pink));
    border-radius: 20px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 0 20px 50px rgba(67, 97, 238, 0.3);
    transition: transform 0.5s ease;
}

.alasa-cta-box:hover {
    transform: rotateY(5deg) rotateX(5deg);
}

.alasa-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: pulse 8s infinite;
}

.alasa-cta-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.alasa-cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.alasa-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.alasa-cta-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--alasa-transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.alasa-cta-btn-primary {
    /* background: rgba(255, 255, 255, 0);
    color: var(--alasa-blue);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2); */
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.alasa-cta-btn-primary:hover {
    transform: translateY(-5px) rotateX(10deg);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.alasa-cta-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.alasa-cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-5px) rotateX(-10deg);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .alasa-main-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .alasa-immersive-section {
        padding: 6rem 2rem;
    }

    .alasa-card-grid {
        grid-template-columns: 1fr 1fr;
    }

    .alasa-cta-box {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .alasa-main-title {
        font-size: 2.8rem;
    }

    .alasa-main-subtitle {
        font-size: 1.1rem;
    }

    .alasa-card-grid {
        grid-template-columns: 1fr;
    }

    .alasa-feature-card {
        min-height: auto;
    }

    .alasa-cta-box {
        padding: 2.5rem 1.5rem;
    }

    .alasa-cta-title {
        font-size: 1.8rem;
    }

    .alasa-cta-subtitle {
        font-size: 1rem;
    }

    .alasa-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .alasa-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .alasa-main-title {
        font-size: 2.2rem;
    }

    .alasa-card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

/* ==================== */
/* ------Footer------ */
/* ==================== */

.alasa-footer {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    /* glass effect background */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    color: #fff;
    padding: 4rem 2rem 2rem;
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
}

.alasa-footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: auto;
}

.alasa-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.alasa-footer-logo-img {
    width: 40px;
    height: 40px;
}

.alasa-footer-logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(90deg, #0040ffee, #ff2d95);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.alasa-footer-about {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.alasa-footer-social {
    display: flex;
    gap: 1rem;
}

.alasa-social-icon {
    color: #ffffff;
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s;
}

.alasa-social-icon:hover {
    color: #fff;
    transform: scale(1.2);
}

.alasa-footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #0033ff, #ff2d95);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

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

.alasa-footer-nav li {
    margin: 0.5rem 0;
}

.alasa-footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.alasa-footer-nav a i {
    margin-right: 0.4rem;
    color: #ffe3f3;
}

.alasa-footer-nav a:hover {
    color: #ffe3f3;
}

.alasa-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.alasa-contact-icon {
    color: #ffffff;
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.alasa-contact-text a {
    color: #fff;
    text-decoration: none;
}

.alasa-newsletter-form {
    display: flex;
    margin-top: 0.5rem;
}

.alasa-newsletter-input {
    padding: 0.5rem 1rem;
    flex-grow: 1;
    border: none;
    border-radius: 30px 0 0 30px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    outline: none;
}

.alasa-newsletter-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0 30px 30px 0;
    background: linear-gradient(to right, #ff80ab, #ffc1e3);
    color: #1f1f1f;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.alasa-newsletter-btn:hover {
    background: #ffc1e3;
}

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

.alasa-footer-legal {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
}

.alasa-footer-legal a {
    color: #ffffff;
    font-size: 0.85rem;
    text-decoration: none;
}

.alasa-footer-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(80px);
    z-index: 0;
}

.alasa-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(to right, #0f0c29, #302b63);
    top: -100px;
    left: -150px;
}

.alasa-shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(to right, #302b63, #ff007f);
    bottom: -80px;
    right: -120px;
}



/* ==================== */
/* ------service page header------ */
/* ==================== */


/* Main Header Container */
.erp-header {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 0 0 32px 32px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 60px rgba(3, 6, 44, 0.3);
    color: var(--text-light);
    padding: 8rem 0 12rem;
    text-align: center;
    margin-bottom: 4rem;
    overflow: hidden;
    /* min-height: 75vh; */
    max-height: 97vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated Tech Background */
.erp-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(67, 97, 238, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(247, 37, 133, 0.15) 0%, transparent 30%),
        linear-gradient(to bottom, #0f172a, #1e293b);
    z-index: -3;
}

/* Floating Dashboard Mockup */
.erp-dashboard-mockup {
    position: absolute;
    width: 800px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    overflow: hidden;
    z-index: -1;
    animation: float 8s ease-in-out infinite;
}

.dashboard-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.dashboard-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-1 {
    width: 180px;
    height: 100px;
    top: 30px;
    left: 30px;
    animation: pulse 4s infinite;
}

.card-2 {
    width: 220px;
    height: 150px;
    top: 30px;
    right: 30px;
    animation: pulse 5s infinite 0.5s;
}

.card-3 {
    width: 250px;
    height: 180px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: pulse 6s infinite 1s;
}

/* Animated Chart Elements */
.chart-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: chartGrow 3s infinite;
}

/* Content Styling */
.erp-header-content {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.erp-header h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(45deg,
            #4361ee,
            #3a0ca3 30%,
            #f72585 70%,
            #b5179e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    display: inline-block;
}

.erp-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
            var(--primary),
            var(--secondary));
    border-radius: 3px;
}

.erp-header p {
    font-size: 1.5rem;
    color: var(--text-lighter);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Feature Badges */
.erp-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.feature-badge i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes chartGrow {
    0% {
        width: 0;
        opacity: 0;
    }

    50% {
        width: 100%;
        opacity: 0.8;
    }

    100% {
        width: 0;
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .erp-header h1 {
        font-size: 3rem;
    }

    .erp-header p {
        font-size: 1.2rem;
    }

    .erp-dashboard-mockup {
        width: 90%;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .erp-header {
        padding: 6rem 0 8rem;
        min-height: auto;
    }

    .erp-features {
        gap: 1rem;
    }

    .feature-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}


/* ==================== */
/* ------service page service section------ */
/* ==================== */

.services-section {
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4rem;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    color: var(--text-light);
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.service-desc {
    font-size: 1rem;
    color: var(--text-lighter);
    margin-bottom: 1.5rem;
}

.view-btn {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border: none;
    border-radius: 2rem;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
}

.view-btn:hover {
    opacity: 0.85;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(6px);
    justify-content: center;
    align-items: flex-start;
    /* changed */
    padding: 2rem;
    overflow-y: auto;
}

.modal-content {
    margin-top: 100px;
    /* added */
    background: var(--glass-bg);
    color: var(--text-light);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 3rem;
    width: 95%;
    max-width: 1000px;
    backdrop-filter: blur(20px);
    position: relative;
    animation: zoomIn 0.4s ease;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

.modal-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-content h3 {
    font-size: 1.4rem;
    color: var(--text-light);
}

.modal-content p {
    font-size: 1.1rem;
    color: var(--text-lighter);
    line-height: 1.7;
    margin-top: 1rem;
}

.modal-content ul {
    padding-left: 1.2rem;
    margin: 0.5rem 0 1rem;
}

.modal-content ul li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
    font-size: 1.05rem;
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    margin: 1.5rem 0;
    box-shadow: 0 0 10px rgba(67, 97, 238, 0.2);
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2.2rem;
    cursor: pointer;
    color: var(--text-lighter);
    transition: var(--transition);
}

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}



/* ==================== */
/* ------service page pdf download section------ */
/* ==================== */

.brochures-section {
    margin-top: 100px;
    padding: 6rem 2rem;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brochure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.brochure-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(14px);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.brochure-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
}

.brochure-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.brochure-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.brochure-card p {
    font-size: 1rem;
    color: var(--text-lighter);
    margin-bottom: 1.5rem;
}

.download-btn {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

.download-btn:hover {
    opacity: 0.85;
}



/* <!-- --------------------- -->
        <!-- cources page header section -->
          <!-- --------------------- --> */

.hero-header {
    position: relative;
    height: 98vh;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 180px;
    /* Ensures no navbar overlap */
    text-align: center;
    overflow: hidden;
}

.hero-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    padding: 4rem 2rem;
    border-radius: 2rem;
    max-width: 800px;
    color: var(--text-light);
    z-index: 1;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content h1 {
    font-size: 3rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-lighter);
    margin-bottom: 2rem;
}

.hero-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    font-size: 1rem;
    text-align: left;
    color: var(--text-light);
}

.hero-highlights li {
    margin: 0.4rem 0;
}

.hero-btn {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.hero-btn:hover {
    opacity: 0.85;
}

/* Background animation */
.hero-bg {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 30%, #4361ee33 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, #f7258533 0%, transparent 60%);
    animation: moveBg 25s linear infinite;
    z-index: 0;
}

@keyframes moveBg {
    0% {
        transform: translate(-10%, -10%);
    }

    50% {
        transform: translate(10%, 10%);
    }

    100% {
        transform: translate(-10%, -10%);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* <!-- --------------------- -->
        <!-- cources page cources section -->
          <!-- --------------------- --> */

.full-courses-section {
    padding: 0.5rem 2rem;
    background: var(--dark-bg);
    color: var(--text-light);
    text-align: center;
}

.full-courses-section h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.course-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 4rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.course-card.reverse {
    flex-direction: row-reverse;
}

.course-info {
    flex: 1;
    text-align: left;
}

.course-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.course-info p {
    color: var(--text-lighter);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.course-info ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.course-info ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.view-btn {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: var(--transition);
}

.view-btn:hover {
    opacity: 0.9;
}

.course-img {
    flex: 1;
    text-align: center;
}

.course-img img {
    max-width: 100%;
    border-radius: 1rem;
    object-fit: cover;
    height: auto;
}

/* Responsive */
@media (max-width: 768px) {

    .course-card,
    .course-card.reverse {
        flex-direction: column;
    }

    .course-info, .course-img {
        text-align: center;
    }
}


/* <!-- --------------------- -->
        <!-- cources page why choose us section -->
             <!-- --------------------- --> */


.why-choose-section {
    padding: 6rem 0rem;
    background: var(--dark-bg);
    text-align: center;
    color: var(--text-light);
}

.why-choose-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counters-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.counter-box {
    flex: 1 1 200px;
    max-width: 250px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.counter-box:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.count {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.counter-box p {
    color: var(--text-lighter);
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .counters-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .counter-box {
        width: 100%;
        max-width: 300px;
    }
}



/* <!-- --------------------- -->
             <!-- career pafe headersection -->
             <!-- --------------------- --> */

.careers-hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    background: var(--dark-bg);
    overflow: hidden;
    margin-top: 50px;
    /* below navbar */
}

.careers-hero-content {
    position: relative;
    z-index: 2;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(14px);
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    max-width: 800px;
    box-shadow: 0 0 20px rgba(67, 97, 238, 0.2);
    animation: float 6s ease-in-out infinite;
}

.careers-hero h1 {
    font-size: 3rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.careers-hero p {
    color: var(--text-lighter);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-btn {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}

.hero-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Animated blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 1;
    animation: move 20s infinite alternate ease-in-out;
}

.blob1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 10%;
    left: 5%;
}

.blob2 {
    width: 250px;
    height: 250px;
    background: var(--secondary);
    bottom: 15%;
    right: 10%;
    animation-delay: 3s;
}

.blob3 {
    width: 200px;
    height: 200px;
    background: #ffffff22;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 6s;
}

@keyframes move {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.2) translate(20px, -30px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .careers-hero h1 {
        font-size: 2.2rem;
    }

    .careers-hero p {
        font-size: 1rem;
    }

    .blob {
        filter: blur(60px);
    }
}


/* <!-- --------------------- -->
             <!-- career page header section -->
             <!-- --------------------- --> */

.sap-careers-section {
    padding: 6rem 2rem;
    background: var(--dark-bg);
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
}

.section-title {
    font-size: 2.8rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-lighter);
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.career-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.career-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
    width: 100%;
    max-width: 320px;
    text-align: left;
    backdrop-filter: blur(14px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.career-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 0 30px rgba(67, 97, 238, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

.career-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.career-card h3 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    position: relative;
}

.career-card h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 40%;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transition: width 0.4s ease;
}

.career-card:hover h3::after {
    width: 100%;
}

.career-card p {
    color: var(--text-lighter);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .career-cards {
        flex-direction: column;
        align-items: center;
    }

    .career-card {
        max-width: 90%;
    }
}

/* <!-- --------------------- -->
             <!-- career page career path section -->
                 <!-- --------------------- --> */

.certification-path-section {
    padding: 6rem 2rem;
    background: #0f172a;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    background: linear-gradient(to right, #4361ee, #f72585);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.certification-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    padding: 2rem;
    border-radius: 1.25rem;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-icon {
    font-size: 2rem;
    background: linear-gradient(to right, #4361ee, #f72585);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    color: #fff;
}

.step-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
}

/* Add vertical line effect */
.certification-steps::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    width: 3px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .step-card {
        flex-direction: column;
    }

    .step-icon {
        margin-bottom: 0.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}


/* <!-- --------------------- -->
                 <!-- career page any section -->
                 <!-- --------------------- --> */


.why-different-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #0f172a, #1a1a2e);
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.why-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    font-weight: bold;
    background: linear-gradient(to right, #4361ee, #f72585);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.why-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(14px);
    padding: 2.5rem 1.5rem;
    width: 290px;
    border-radius: 1.5rem;
    box-shadow: 0 12px 30px rgba(67, 97, 238, 0.2);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    color: var(--text-light);
    opacity: 0;
    transform: translateY(50px);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(67, 97, 238, 0.5);
}

.why-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #4361ee, #f72585);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    color: #ffffff;
}

.why-card p {
    font-size: 1rem;
    color: var(--text-lighter);
    line-height: 1.5;
}

/* Reveal animation */
@media (min-width: 768px) {
    .why-card {
        transition-delay: 0.1s;
    }
}



/* <!-- --------------------- -->
                 <!-- erp page header section -->
                 <!-- --------------------- --> */

.blog-header {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem;
    margin-top: 76px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 30%, rgba(67, 97, 238, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(247, 37, 133, 0.15) 0%, transparent 30%),
        var(--dark-bg);
}

.blog-header-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.blog-header-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    padding: 4rem;
    box-shadow: 0 20px 50px rgba(3, 6, 44, 0.3);
}

.blog-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
    letter-spacing: -1px;
}

.blog-subtitle {
    font-size: 1.4rem;
    color: var(--text-lighter);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--text-lighter);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta i {
    color: var(--primary);
}

.blog-header-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float 15s infinite linear;
    opacity: 0.3;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    50% {
        transform: translateY(-100px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .blog-header {
        padding: 4rem 1rem;
        min-height: 60vh;
    }

    .blog-header-glass {
        padding: 2rem;
    }

    .blog-title {
        font-size: 2.5rem;
    }

    .blog-subtitle {
        font-size: 1.1rem;
    }

    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* <!-- --------------------- -->
                 <!-- erp page blog section -->
                 <!-- --------------------- --> */


.blog-section {
    padding: 5rem 2rem;
    background: var(--dark-bg);
    position: relative;
    z-index: 1;
}

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.blog-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    width: 300px;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.blog-date {
    font-size: 0.9rem;
    color: var(--text-lighter);
    margin-bottom: 0.8rem;
}

.blog-desc {
    color: var(--text-lighter);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--secondary);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--primary);
}


.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    max-width: 700px;
    width: 90%;
    color: var(--text-light);
    position: relative;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.modal-content img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-date {
    color: var(--text-lighter);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.modal-body {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-lighter);
    cursor: pointer;
    transition: 0.3s;
}

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


/* <!-- --------------------- -->
                 <!-- about page header section -->
                 <!-- --------------------- --> */

.about-hero {
    position: relative;
    height: 97vh;
    padding: 5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7') center/cover no-repeat;
    z-index: 1;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
    /* dark overlay */
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(14px);
    padding: 3rem;
    border-radius: 20px;
    color: var(--text-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-size: 2.8rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-lighter);
    margin-bottom: 2rem;
}

.cta-button {
    padding: 0.75rem 2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    transition: var(--transition);
    text-decoration: none;
}

.cta-button:hover {
    background: var(--secondary);
}

/* Floating shapes for animation */
.floating-shape {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(var(--secondary), transparent);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 10s infinite ease-in-out;
    z-index: 0;
}

.shape1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.shape2 {
    bottom: 15%;
    right: 10%;
    animation-delay: 5s;
}

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

    50% {
        transform: translateY(-30px);
    }
}

/* <!-- --------------------- -->
<!-- about page story section -->
<!-- --------------------- --> */

.our-journey {
    padding: 6rem 2rem;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.section-heading {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    z-index: 0;
    opacity: 0.5;
    animation: pulseLine 4s linear infinite alternate;
}

@keyframes pulseLine {
    0% {
        opacity: 0.5;
        height: 100%;
    }

    100% {
        opacity: 1;
        height: 105%;
    }
}

.timeline-box {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    position: relative;
    margin-bottom: 4rem;
}

.timeline-box.right {
    justify-content: flex-end;
}

.content-glass {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    max-width: 400px;
    position: relative;
    color: var(--text-light);
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.timeline-box:nth-child(even) .content-glass {
    animation-delay: 0.3s;
}

.timeline-box:nth-child(odd) .content-glass {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.year {
    font-size: 1.2rem;
    font-weight: bold;
    background: var(--primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    position: absolute;
    top: -1.2rem;
    left: -1.5rem;
    box-shadow: 0 0 20px var(--primary);
}

.timeline-box.right .year {
    left: auto;
    right: -1.5rem;
    background: var(--secondary);
    box-shadow: 0 0 20px var(--secondary);
}

/* Background animation container */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* Floating circles */
.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    background: radial-gradient(circle, var(--primary), transparent);
    animation: float 20s infinite ease-in-out alternate;
}

.circle1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.circle2 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 60%;
    animation-delay: 4s;
    background: radial-gradient(circle, var(--secondary), transparent);
}

.circle3 {
    width: 250px;
    height: 250px;
    top: 80%;
    left: 10%;
    animation-delay: 8s;
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.15;
    }

    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.25;
    }

    100% {
        transform: translateY(30px) scale(1);
        opacity: 0.15;
    }
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 0;
    top: 0;
    left: 0;
    pointer-events: none;
  }
  
  /* <!-- --------------------- -->
<!-- about page mission vision section -->
<!-- --------------------- --> */

.mvv-carousel-section {
    position: relative;
    padding: 100px 20px;
    background: var(--dark-bg);
    overflow: hidden;
    color: var(--text-light);
  }
  
  .carousel-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 60px;
  }
  
  .carousel-container {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0px;
    padding-left: 80px;
    scrollbar-width: none;
  }
  
  .carousel-container::-webkit-scrollbar {
    display: none;
  }
  
  .carousel-card {
    min-width: 300px;
    max-width: 350px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px;
    scroll-snap-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }
  
  .carousel-card:hover {
    transform: scale(1.05);
  }
  
  .carousel-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .carousel-card p,
  .carousel-card ul {
    color: var(--text-lighter);
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .carousel-card ul {
    padding-left: 20px;
  }
  
  .carousel-card li::marker {
    color: var(--secondary);
  }
  
  .card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  /* Particle background */
  #particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }

  /* <!-- --------------------- -->
<!-- about page why choose us section -->
<!-- --------------------- --> */

.why-choose-us {
    padding: 100px 20px;
    background-color: #0f172a;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    overflow: hidden;
  }
  
  .section-heading {
    text-align: center;
    font-size: 2.8rem;
    color: #f72585;
    margin-bottom: 60px;
  }
  
  .choose-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 70px;
  }
  
  .choose-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 30px;
    flex: 1 1 250px;
    max-width: 280px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }
  
  .choose-card:hover {
    transform: translateY(-5px);
  }
  
  .choose-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #4361ee;
  }
  
  .counter-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
  }
  
  .counter-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    min-width: 200px;
  }
  
  .counter-box h3 {
    font-size: 2.5rem;
    color: #4361ee;
    margin-bottom: 10px;
  }
  
  .counter-box p {
    color: rgba(255, 255, 255, 0.7);
  }
  
  /* Floating background animation */
  .floating-blobs::before,
  .floating-blobs::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatBlob 20s ease-in-out infinite;
    background: #f72585;
    z-index: 0;
  }
  
  .floating-blobs::before {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -5%;
  }
  
  .floating-blobs::after {
    width: 200px;
    height: 200px;
    bottom: 0%;
    right: 5%;
  }
  
  @keyframes floatBlob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px) scale(1.05); }
  }


/* <!-- --------------------- -->
<!-- about page team section -->
<!-- --------------------- --> */

.team-section {
    padding: 100px 20px;
    background: #0f172a;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  
  .section-title {
    font-size: 2.8rem;
    color: #f72585;
    margin-bottom: 50px;
  }
  
  .team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  
  .team-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    overflow: hidden;
    width: 250px;
    text-align: center;
    transition: transform 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  }
  
  .team-card:hover {
    transform: translateY(-10px);
  }
  
  .team-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  
  .team-info {
    padding: 20px;
  }
  
  .team-info h3 {
    margin: 10px 0 5px;
    color: #4361ee;
  }
  
  .team-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
  }
  
  .social-icons a {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 10px;
    display: inline-block;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #f72585;
  }
  
  /* Background animation */
  .floating-circles::before,
  .floating-circles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: #4361ee;
    opacity: 0.07;
    animation: floatY 16s infinite ease-in-out;
  }
  
  .floating-circles::before {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -100px;
  }
  
  .floating-circles::after {
    width: 200px;
    height: 200px;
    bottom: -60px;
    right: -80px;
  }
  
  @keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(20px); }
  }
  

  /* <!-- --------------------- -->
<!-- about page certification section -->
<!-- --------------------- --> */

.certifications-section {
    padding: 100px 20px;
    background: #0f172a;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  
  .cert-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    z-index: 1;
    position: relative;
  }
  
  .cert-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px 20px;
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease;
    color: white;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
  }
  
  .cert-card:hover {
    transform: translateY(-10px) scale(1.03);
  }
  
  .cert-card img {
    width: 80px;
    margin-bottom: 15px;
  }
  
  .cert-card h3 {
    color: #4361ee;
    margin-bottom: 8px;
  }
  
  .cert-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
  }
  
  /* Heading Reuse */
  .section-title {
    font-size: 2.5rem;
    color: #f72585;
    margin-bottom: 50px;
  }
  
  /* Background animation effect */
  .cert-background-animation::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, rgba(67,97,238,0.08), rgba(247,37,133,0.08));
    background-size: 400% 400%;
    animation: certBG 15s ease infinite;
    z-index: 0;
  }
  
  @keyframes certBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
.cert-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(8px);
    background: rgba(15, 23, 42, 0.7);
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  .modal-content {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    max-width: 600px;
    color: white;
    position: relative;
    animation: fadeIn 0.4s ease-in-out;
  }
  
  .modal-content img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  .modal-content h3 {
    color: #4361ee;
    margin-bottom: 10px;
  }
  
  .modal-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
  }
  
  .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }
  

   /* <!-- --------------------- -->
<!-- about page testimonial section -->
<!-- --------------------- --> */
  

.testimonials-section {
    padding: 100px 20px;
    background: #0f172a;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .section-title {
    font-size: 2.8rem;
    color: #f72585;
    margin-bottom: 50px;
  }
  
  .swiper {
    width: 90%;
    padding-bottom: 60px;
  }
  
  .testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 40px 25px;
    color: white;
    max-width: 500px;
    margin: auto;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    text-align: center;
  }
  
  .testimonial-card img {
    border-radius: 50%;
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
  }
  
  .testimonial-card h3 {
    color: #4361ee;
    margin-bottom: 10px;
  }
  
  .testimonial-card p {
    color: var(--text-lighter);
    font-style: italic;
  }
  
  /* Background Animation */
  .testimonials-bg-anim::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 40%, rgba(67,97,238,0.07), transparent 50%),
                radial-gradient(circle at 80% 60%, rgba(247,37,133,0.07), transparent 50%);
    animation: floatBG 10s ease-in-out infinite alternate;
    z-index: 0;
  }
  
  @keyframes floatBG {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
  }
  

  /* <!-- --------------------- -->
<!-- about page clients section -->
<!-- --------------------- --> */


.clients-section {
    padding: 100px 20px;
    background: #0f172a;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #4361ee;
    margin-bottom: 50px;
  }
  
  .clients-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    z-index: 1;
    position: relative;
  }
  
  .client-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .client-card img {
    max-width: 100%;
    height: auto;
    filter: brightness(1.2);
  }
  
  .client-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.2);
  }
  
  /* Background Animation */
  .clients-bg-anim::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(67,97,238,0.07), rgba(247,37,133,0.07));
    animation: pulseAnim 10s ease-in-out infinite alternate;
    z-index: 0;
  }
  
  @keyframes pulseAnim {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.7; transform: scale(1.05); }
  }
  

  /* <!-- --------------------- -->
<!-- about page cta section -->
<!-- --------------------- --> */

.cta-section {
    position: relative;
    background: #0f172a;
    padding: 120px 20px;
    text-align: center;
    overflow: hidden;
  }
  
  .cta-glass {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    padding: 60px 30px;
    border-radius: 24px;
    max-width: 800px;
    margin: auto;
    z-index: 1;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }
  
  .cta-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
  }
  
  .cta-text {
    color: var(--text-lighter);
    font-size: 1.2rem;
    margin-bottom: 40px;
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .cta-btn {
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
    font-weight: bold;
  }
  
  .cta-btn.primary {
    background: var(--primary);
    color: white;
  }
  
  .cta-btn.secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
  }
  
  .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }
  
  /* Background Animation */
  .cta-bg-anim::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 40% 50%, rgba(67, 97, 238, 0.08), transparent 70%),
                radial-gradient(circle at 70% 60%, rgba(247, 37, 133, 0.08), transparent 70%);
    animation: ctaFloat 15s ease-in-out infinite alternate;
    z-index: 0;
  }
  
  @keyframes ctaFloat {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
  }
  