/* Reset and Base Styles */

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


/* Favicon Size Control */

link[rel="icon"] {
    width: 64px;
    height: 64px;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1,
h2,
h3 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
}

p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #cccccc;
}


/* ============================
   ABOUT PAGE STYLES
   ============================ */


/* About Hero Section */

.about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 2rem 80px;
    overflow: hidden;
}

.about-hero .hero-content {
    z-index: 2;
    max-width: 800px;
}

.about-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero .subtitle {
    font-size: 1.5rem;
    color: #00ffff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
}


/* About Sections Common */

.about-section {
    padding: 5rem 2rem;
    position: relative;
}

.about-section-dark {
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
}

.about-section-light {
    background: #000000;
}

.about-section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-align: center;
}

.about-section-text {
    font-size: 1.2rem;
    color: #cccccc;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}


/* Mission Section */

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.mission-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.mission-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.5);
}

.mission-item .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mission-item h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.mission-item p {
    font-size: 1rem;
    color: #aaaaaa;
}


/* Vision Section */

.vision-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

.vision-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #cccccc;
}


/* Founding Team Section */

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.6s ease, transform 0.6s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
}

section.fade-in .team-card {
    opacity: 1;
    transform: translateY(0);
}

section.fade-in .team-card:nth-child(1) {
    transition-delay: 0.2s;
}

section.fade-in .team-card:nth-child(2) {
    transition-delay: 0.4s;
}

section.fade-in .team-card:nth-child(3) {
    transition-delay: 0.6s;
}

.team-card:hover {
    transform: translateY(-15px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.founder-photo-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    background: #111; /* Fallback */
}

.team-card:hover .founder-photo-container {
    border-color: #00ffff;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.founder-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    transition: all 0.3s ease;
}

.linkedin-link:hover {
    background: #00ffff;
    color: #000000;
    transform: scale(1.1);
}

.linkedin-icon {
    width: 20px;
    height: 20px;
}

/* Responsive for Team Grid */

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-card {
        padding: 2.5rem 1.5rem;
    }
}


/* Core Values Section */

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

.value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
    border-color: rgba(0, 255, 255, 0.5);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.value-card:hover .value-icon {
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    border-color: rgba(0, 255, 255, 0.6);
}

.value-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.value-card p {
    font-size: 1rem;
    color: #aaaaaa;
    position: relative;
    z-index: 1;
}


/* About CTA Section */

.about-cta {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #000000 0%, #00ffff 100%);
    color: #000000;
}

.about-cta h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #000000;
}

.about-cta .btn {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}


/* About Page Responsive */

@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    .about-hero .subtitle {
        font-size: 1.2rem;
    }
    .about-section {
        padding: 3rem 1.5rem;
    }
    .about-section-title {
        font-size: 2rem;
    }
    .mission-list {
        grid-template-columns: 1fr;
    }
    .vision-content {
        padding: 2rem;
    }
    .vision-content p {
        font-size: 1.1rem;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .about-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    .about-hero {
        min-height: 50vh;
        padding: 100px 1rem 60px;
    }
    .about-section-title {
        font-size: 1.8rem;
    }
    .value-card {
        padding: 2rem 1.5rem;
    }
}


/* ============================
   MODERN SAAS NAVBAR
   ============================ */

/* ============================
   MODERN SAAS NAVBAR
   ============================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    height: 60px;
    background: rgba(5, 5, 5, 0.95);
    box-shadow: 0 4px 30px rgba(0, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}


.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
}

.logo-container {
    width: 45px;
    height: 45px;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-container:hover img {
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.6));
}

.navbar.scrolled .logo-container {
    width: 35px;
    height: 35px;
}

.brand-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    transition: font-size 0.3s ease;
}

.navbar.scrolled .brand-name {
    font-size: 1.1rem;
}

.nav-right {
    display: flex;
    align-items: center;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.nav-link {
    color: #b0b0b0;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    padding: 8px 0;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ffff;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

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


.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .arrow,
.dropdown.active .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: rgba(10, 26, 26, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: #cccccc;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(0, 255, 255, 0.1);
    color: #ffffff;
    border-left-color: #00ffff;
    padding-left: 30px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: #00ffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 3px 0;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background: rgba(5, 10, 10, 0.98);
    backdrop-filter: blur(25px);
    border-left: 1px solid rgba(0, 255, 255, 0.1);
    padding: 100px 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
}

.mobile-menu.active {
    right: 0;
}

.mobile-link {
    display: block;
    padding: 15px 0;
    color: #b0b0b0;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: #ffffff;
}

.mobile-dropdown {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-dropdown-btn {
    width: 100%;
    padding: 15px 0;
    background: none;
    border: none;
    color: #b0b0b0;
    text-align: left;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.mobile-dropdown-btn:hover {
    color: #ffffff;
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-dropdown.active .mobile-dropdown-content {
    max-height: 300px;
}

.mobile-dropdown.active .arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-content a {
    display: block;
    padding: 12px 0 12px 20px;
    color: #888;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    border-left: 2px solid transparent;
}

.mobile-dropdown-content a:hover {
    color: #00ffff;
    border-left-color: #00ffff;
    padding-left: 25px;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 900px) {
    .navbar-menu {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0 15px;
        height: 70px;
    }
    .navbar.scrolled {
        height: 60px;
    }
    .logo-container {
        width: 35px;
        height: 35px;
    }
    .navbar.scrolled .logo-container {
        width: 30px;
        height: 30px;
    }
    .brand-name {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    .navbar.scrolled .brand-name {
        font-size: 1rem;
    }
    .mobile-menu {
        width: 100%;
        padding: 80px 1.5rem 1.5rem;
    }
    .mobile-link, .mobile-dropdown-btn {
        font-size: 1.1rem;
        padding: 15px 0;
    }
}


/* ============================
   OLD NAVBAR STYLES (REMOVED)
   ============================ */


/* Hero Section */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 100px 20px 40px;
    width: 100%;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    width: 100%;
}

.logo {
    width: 100%;
    max-width: min(700px, 90vw);
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    transition: filter 0.3s ease;
    object-fit: contain;
}

.logo:hover {
    filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.5));
}

.hero h1 {
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    margin-bottom: 2rem;
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    max-width: 100%;
}

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

.scroll-arrow {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.arrow-btn {
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid #00ffff;
    color: #00ffff;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
}

.arrow-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.btn.primary {
    background: linear-gradient(45deg, #00ffff, #ffffff);
    color: #000000;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.btn.primary:hover {
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn.secondary {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
}

.btn.secondary:hover {
    background: #ffffff;
    color: #000000;
}

.btn.large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}


/* Grid Background */

.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}


/* Features Section */

.features {
    padding: 5rem clamp(1rem, 5vw, 2rem);
    text-align: center;
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
    width: 100%;
}

.features h2 {
    margin-bottom: 3rem;
    color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(1rem, 3vw, 2rem);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

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

.icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00ffff;

    display: flex;
    justify-content: center;
    align-items: center;
}

.icon svg {
    width: 3.5rem;
    height: 3.5rem;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    filter: drop-shadow(0 0 12px rgba(0, 255, 255, 0.5));
    transition: all 0.3s ease;
}

.feature-card:hover .icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.8));
}


/* About Section */

.about {
    padding: 5rem clamp(1rem, 5vw, 2rem);
    background: #000000;
    width: 100%;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.about-text p {
    margin-bottom: 1rem;
}

.grid-illustration {
    height: 300px;
    background-image: linear-gradient(rgba(0, 255, 255, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    border-radius: 10px;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%,
    100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}


/* Why Choose Section */

.why-choose {
    padding: 5rem clamp(1rem, 5vw, 2rem);
    text-align: center;
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    width: 100%;
}

.why-choose h2 {
    margin-bottom: 3rem;
    color: #ffffff;
}

.why-choose ul {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    width: 100%;
    padding: 0 1rem;
}

.why-choose li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    color: #cccccc;
}

.why-choose li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00ffff;
    font-size: 1.2rem;
}

.why-choose strong {
    color: #ffffff;
}


/* CTA Section */

.cta-section {
    padding: 5rem clamp(1rem, 5vw, 2rem);
    text-align: center;
    background: linear-gradient(135deg, #000000 0%, #00ffff 100%);
    color: #000000;
    width: 100%;
}

.cta-section h2 {
    margin-bottom: 1rem;
    color: #000000;
}

.cta-section p {
    margin-bottom: 2rem;
    color: #000000;
}


/* Footer */

footer {
    padding: 3rem clamp(1rem, 5vw, 2rem);
    background: #000000;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
    width: 100%;
}

.footer-logo {
    width: 100px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

footer nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #00ffff;
}

footer p {
    color: #666666;
    font-size: 0.9rem;
}


/* Events Section */

.events-section {
    padding: 5rem clamp(1rem, 5vw, 2rem);
    background: #000000;
    width: 100%;
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(0, 255, 255, 0.2);
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(1rem, 3vw, 2rem);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
    pointer-events: none;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
    border-color: rgba(0, 255, 255, 0.5);
}

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

.event-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    transition: box-shadow 0.3s ease;
}

.event-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.event-card:hover .event-logo {
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.event-poster {
    width: calc(100% + 4rem); /* Counteract the card padding of 2rem */
    margin: -2rem -2rem 1.5rem -2rem; /* Pull image to the very edges of the card */
    border-top-left-radius: 15px; /* Match card radius */
    border-top-right-radius: 15px;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.event-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-poster img {
    transform: scale(1.05); /* Slight zoom on hover for the poster */
}

.event-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.event-meta {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 1rem;
}

.event-desc {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.event-badges {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge.upcoming {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border: 1px solid #00ff00;
}

.badge.registration-open {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 1px solid #ffa500;
}

.badge.free {
    background: rgba(0, 255, 255, 0.2);
    color: #00ffff;
    border: 1px solid #00ffff;
}

.badge.past {
    background: rgba(128, 128, 128, 0.2);
    color: #888888;
    border: 1px solid #888888;
}

.badge.paid {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
    border: 1px solid #ff0000;
}

.event-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}


/* Responsive Design */


/* Large screens (desktops) */

@media (min-width: 1200px) {
    .hero h1 {
        font-size: 4rem;
    }
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Medium screens (tablets and small desktops) */

@media (max-width: 1199px) and (min-width: 769px) {
    .hero h1 {
        font-size: 3rem;
    }
    .logo {
        width: min(500px, 80vw);
        margin-top: 40px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-content {
        gap: 3rem;
    }
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
    .navbar {
        padding: 0 20px;
    }
    .navbar-logo, .logo-container {
        width: 38px;
        height: 38px;
    }
}


/* Small screens (tablets) */

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 90px 15px 40px;
    }
    .hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .hero p {
        font-size: clamp(0.85rem, 2.5vw, 1rem);
    }
    .logo {
        max-width: min(400px, 85vw);
    }
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0.8rem;
    }
    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .features {
        padding: 3rem 1rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .about {
        padding: 3rem 1rem;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .why-choose {
        padding: 3rem 1rem;
    }
    .why-choose ul {
        text-align: left;
        padding-left: 1rem;
    }
    .events-section {
        padding: 3rem 1rem;
    }
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .filter-bar {
        gap: 0.8rem;
    }
    .event-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .event-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    footer nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    .btn.large {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    .cta-section {
        padding: 3rem 1rem;
    }
}


/* Extra small screens (phones) */

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    .hero {
        padding: 80px 15px 30px;
        min-height: 100vh;
    }
    .hero p {
        font-size: clamp(0.85rem, 3vw, 1rem);
        line-height: 1.5;
    }
    .logo {
        max-width: min(280px, 90vw);
    }
    .features, .about, .why-choose, .events-section, .cta-section {
        padding: 2.5rem 1rem;
    }
    .features-grid, .events-grid {
        gap: 1.5rem;
    }
    .feature-card, .event-card {
        padding: 1.5rem 1rem;
    }
    .icon {
        font-size: 2.5rem;
    }
    .why-choose ul {
        padding-left: 0;
    }
    .why-choose li {
        padding-left: 1.5rem;
        font-size: 0.95rem;
    }
    .why-choose li::before {
        font-size: 1rem;
    }
    .event-card h3 {
        font-size: 1.3rem;
    }
    .event-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }
    .btn {
        width: 100%;
    }
    footer {
        padding: 2.5rem 1rem;
    }
    .footer-logo {
        width: 80px;
    }
    footer nav {
        gap: 1rem;
        font-size: 0.95rem;
    }
    .scroll-arrow {
        margin-top: 1rem;
    }
    .arrow-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .filter-bar {
        gap: 0.5rem;
    }
    .filter-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

}

/* }
/* ============================
   BLOG PAGE STYLES
   ============================ */

/* Blog Hero Section */
.blog-hero {
    min-height: 50vh;
    padding: 120px 2rem 60px;
    background: linear-gradient(to bottom, #000000, #0a0a0a);
}

.blog-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    background: linear-gradient(90deg, #ffffff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.blog-hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #aaaaaa;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Sections Common */
.blog-section {
    padding: 5rem 2rem;
    background: #000000;
}

.latest-posts {
    background: #050505;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

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

.section-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.section-subtext {
    text-align: center;
    color: #aaaaaa;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Blog Grid Layouts */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.text-only-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

/* Blog Cards */
.blog-card {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.1);
}

.blog-card-image {
    width: 100%;
    height: 380px; /* Tall portrait aspect ratio suitable for founder photos */
    position: relative;
    overflow: hidden;
    background: #111;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the area, potentially cropping to fill the height */
    object-position: center top; /* Focus on the face/top of portrait */
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 255, 255, 0.2);
    color: #00ffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', monospace;
}

.blog-meta {
    font-size: 0.9rem;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-date {
    display: inline-block;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.8rem;
    font-family: 'Orbitron', monospace;
}

.blog-excerpt {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    color: #00ffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-link:hover {
    color: #ffffff;
    gap: 5px; /* Creates movement effect with arrow */
}

/* Responsive Adjustments for Blog */
@media (max-width: 768px) {
    .blog-hero {
        padding: 100px 1rem 40px;
        min-height: 40vh;
    }
    
    .blog-section {
        padding: 3rem 1rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .text-only-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card-image {
        height: 300px;
    }
}
