/* Modern Design System for SBS Technologies MoU Website */
:root {
    --primary-color: #0f172a;
    --secondary-color: #3b82f6;
    --accent-color: #10b981;
    --text-color: #1e293b;
    --light-text: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
    --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--primary-color);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar */
.navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

/* Social Links */
.social-links .nav-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links .nav-link:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Dynamic Animations and Visual Enhancements */
@keyframes float {
    0% {
        transform: translateY(0px) rotateY(-5deg);
    }

    50% {
        transform: translateY(-20px) rotateY(0deg);
    }

    100% {
        transform: translateY(0px) rotateY(-5deg);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(59, 130, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

@keyframes slide-in-bottom {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

.pulse-glow {
    animation: pulse-glow 2s infinite;
}

.hover-glow {
    box-shadow: 0 0 35px rgba(59, 130, 246, 0.7) !important;
   
    transform: translateY(-5px);
}

.hover-glow:hover {
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.5) !important;

    transition: var(--transition);
}

.shape-blob {
    position: absolute;
    filter: blur(80px);
    z-index: 0;
    border-radius: 50%;
    opacity: 0.3;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 250px;
    height: 250px;
    background: var(--accent-color);
    bottom: -50px;
    left: -50px;
}

/* Text Animation Effects */
.text-cycle-container {
    height: 100px;
    overflow: hidden;
    position: relative;
    display: inline-block;
    vertical-align: bottom;
}

.text-cycle-list {
    margin: 0;
    padding: 0;
    list-style: none;
    animation: cycle-text 10s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.text-cycle-list li {
    font-size: 4rem;
    font-weight: 800;
    line-height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

@keyframes cycle-text {

    0%,
    15% {
        transform: translateY(0);
    }

    20%,
    35% {
        transform: translateY(-100px);
    }

    40%,
    55% {
        transform: translateY(-200px);
    }

    60%,
    75% {
        transform: translateY(-300px);
    }

    80%,
    95% {
        transform: translateY(-400px);
    }

    100% {
        transform: translateY(-500px);
    }
}

.hero-stats-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.hero-stats-card:hover {
    transform: translateX(10px);
}

/* Updated Hero Image Styling */
/* Footer Section */
.hero-section {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-img-container {
    position: relative;
    z-index: 1;
}

.hero-img {
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Feature Cards */
.card {
    border: none;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
    padding: 2rem;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--secondary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--light-text);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Outcome Mapping */
.outcome-badge {
    padding: 0.5rem 1rem;
    border-radius: 100px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0.5rem;
    display: inline-block;
    transition: var(--transition);
}

.outcome-badge:hover {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

/* Founder Card */
.founder-card {
    transition: var(--transition);
}

.icon-box-sm {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.size-xs {
    width: 14px;
    height: 14px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e293b 100%);
    color: var(--white);
    border-radius: 30px;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
}

/* Company Profile Specific Styles */
.mission-card {
    border-left: 4px solid var(--secondary-color);
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0 15px 15px 0;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tech-badge {
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    background: #f1f5f9;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0.4rem;
    display: inline-flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.tech-badge:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.approach-step {
    position: relative;
    padding-left: 50px;
    margin-bottom: 2rem;
}

.approach-step::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.approach-step::after {
    content: '';
    position: absolute;
    left: 17px;
    top: 35px;
    bottom: -15px;
    width: 2px;
    background: #e2e8f0;
}

.approach-step:last-child::after {
    display: none;
}

.industry-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.industry-card:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.industry-card:hover i {
    color: var(--white);
}

/* Footer */
footer {
    background: var(--white);
    padding: 80px 0 20px;
    border-top: 1px solid #e2e8f0;
}

.footer-link {
    color: var(--light-text);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Animations */
[data-aos] {
    transition-duration: 800ms !important;
}