
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.feature-card {
    scroll-margin-top: 100px; /* same as navbar height */
  }
  .neon-btn {
    display: block;
    margin: 30px auto 0 auto;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    background: transparent;
    border: 2px solid #00d4ff;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .neon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    transition: left 0.5s ease;
  }

  .neon-btn:hover {
    color: #000;
    background: rgba(0, 212, 255, 0.9);
    box-shadow: 
      0 0 5px rgba(0, 212, 255, 0.5),
      0 0 15px rgba(0, 212, 255, 0.3);
    border-color: #00d4ff;
  }

  .neon-btn:hover::before {
    left: 100%;
  }

  /* Alternative colors for different cards */
  .neon-btn.cyan {
    border-color: #0ff;
  }
  
  .neon-btn.cyan:hover {
    background: rgba(0, 255, 255, 0.9);
    box-shadow: 
      0 0 5px rgba(0, 255, 255, 0.5),
      0 0 15px rgba(0, 255, 255, 0.3);
    border-color: #0ff;
  }

  .neon-btn.pink {
    border-color: #ff00ff;
  }
  
  .neon-btn.pink:hover {
    background: rgba(255, 0, 255, 0.9);
    box-shadow: 
      0 0 5px rgba(255, 0, 255, 0.5),
      0 0 15px rgba(255, 0, 255, 0.3);
    border-color: #ff00ff;
  }

  .neon-btn.green {
    border-color: #39ff14;
  }
  
  .neon-btn.green:hover {
    background: rgba(57, 255, 20, 0.9);
    box-shadow: 
      0 0 5px rgba(57, 255, 20, 0.5),
      0 0 15px rgba(57, 255, 20, 0.3);
    border-color: #39ff14;
  }  

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0f;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Compact Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, transparent 100%);
    backdrop-filter: blur(80px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo with Subtle Neon Gradient Effect - Fully Responsive */
.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;

    /* Clean, modern gradient - solid + crisp */
    background: linear-gradient(90deg, #ffffff 0%, #e8faff 25%, #f3f6f8 85%, #f2f3f4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Minimal modern shadow - not vintage, not glowing */
    text-shadow: 0px 1px 2px rgba(204, 206, 241, 0.25);

    /* No outline (keeps it modern) */
    -webkit-text-stroke: 0;

    display: inline-block;
    line-height: 1.1;
}


.logo-main {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    align-items: center;
}

.logo .neon {
    font-size: 0.5em;
    display: inline-block;
    margin-left: 0.3rem;
    background: linear-gradient(135deg, #ff006e 0%, #ff4d94 50%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 12px rgba(255, 0, 110, 0.3);
    filter: drop-shadow(0 0 6px rgba(255, 77, 148, 0.4));
    white-space: nowrap;
}

.logo-tagline {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 0.35em;
    color: #b8b8b8;
    margin-top: 0.5rem;
    letter-spacing: 1px;
    font-weight: 400;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.2);
    white-space: normal;
    max-width: 100%;
}

/* Tablet View (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .logo {
        font-size: 1.6rem;
    }
    
    .logo-tagline {
        font-size: 0.32em;
        letter-spacing: 0.5px;
    }
}

/* Mobile View (481px - 767px) */
@media screen and (max-width: 767px) {
    .logo {
        font-size: 1.3rem;
    }
    
    .logo .neon {
        font-size: 0.45em;
        margin-left: 0.2rem;
    }
    
    .logo-tagline {
        font-size: 0.5rem;
        margin-top: 0.4rem;
        line-height: 1.3;
    }
}

/* Small Mobile View (≤ 480px) */
@media screen and (max-width: 480px) {
    .logo {
        font-size: 1.1rem;
    }
    
    .logo .neon {
        font-size: 0.5em;
        margin-left: 0.15rem;
    }
    
    .logo-tagline {
        font-size: 0.45rem;
        margin-top: 0.5rem;
        line-height: 1.4;
    }
}

/* Extra Small Mobile (≤ 375px) */
@media screen and (max-width: 375px) {
    .logo {
        font-size: 0.95rem;
    }
    
    .logo .neon {
        font-size: 0.5em;
    }
    
    .logo-tagline {
        font-size: 0.4rem;
    }
}

/* Add this at the top of your CSS file */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@800&display=swap');


.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.9;
}

.nav-links a:hover {
    color: #00f5ff;
    opacity: 1;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
    transform: translateY(-2px);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    color: #00f5ff;
    cursor: pointer;
}

/* Compact Hero Banner - Reduced Height */
.hero-banner {
    min-height: 70vh; /* Reduced from 100vh */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at center top, #16213e 0%, #0f1419 50%, #0a0a0f 100%);
    overflow: hidden;
    padding: 70px 0 60px 0; /* Reduced padding */
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 30%, rgba(0, 245, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 75% 20%, rgba(255, 0, 128, 0.08) 0%, transparent 40%);
    animation: subtleGlow 8s ease-in-out infinite alternate;
}

@keyframes subtleGlow {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* Compact Grid Layout */
.hero-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 3rem; /* Reduced gap */
    align-items: center;
    z-index: 2;
    margin-top: 50px;
    position: relative;
}

/* Compact Left Content */
.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    padding: 0.6rem 1.8rem; /* Reduced padding */
    border-radius: 25px;
    font-size: 0.8rem; /* Reduced font size */
    color: #00f5ff;
    margin-bottom: 1.2rem; /* Reduced margin */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

.hero-title {
    font-size: clamp(1.5rem, 5vw, 2.5rem); /* Reduced font size */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem; /* Reduced margin */
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.title-highlight {
    background: linear-gradient(45deg, #00f5ff, #ff0080);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
    display: block;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-description {
    font-size: 1rem; /* Reduced font size */
    color: #c0d0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem; /* Reduced margin */
}
.achievements-compact {
    display: block;
    margin: 1.5rem 0;
}

.achievement {
    display: inline-flex;           /* changed from inline-block to inline-flex for flex alignment */
    flex-direction: row;
    align-items: flex-start;        /* aligns icon to top of multiline text */
    padding: 1rem 1.8rem;
    background: #0a1f2e;
    border: 1.5px solid #00d2ff;
    border-radius: 12px;
    color: #d0e7ff;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 0 6px #00d2ff88, 0 0 12px #00d2ff55;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    min-width: 240px;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
    vertical-align: middle;
}

.achievement:hover {
    border-color: #00f0ff;
    box-shadow: 0 0 10px #00f0ffcc, 0 0 20px #00f0ff99;
    transform: translateY(-4px);
}

.achievement i {
    flex-shrink: 0;                /* prevents shrinking */
    width: 1.5em;                  /* fixed width for consistent icon space */
    font-size: 1.3rem;
    color: #00d2ff;
    text-shadow: 0 0 6px #00d2ffaa;
    transition: color 0.3s ease;
    margin-right: 1rem;
    margin-top: 0.2rem;            /* small top margin to align with text top */
}

.achievement:hover i {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffffdd;
}

.achievement span {
    line-height: 1;
    color: #c7dfff;
    white-space: pre-line;         /* preserves your <br> for manual line breaks */
}

/* Container */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: start;
}

/* Base button style */
.compact-btn {
    padding: 1rem;
    border: 2px solid transparent;
    background: transparent;
    color: #e0f7ff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
    min-width: 160px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

/* Neon glowing border and text for primary */
.compact-btn.primary {
    border-color: #00cfff;
    color: #bfff00;
    text-shadow: 0 0 6px #00e5ff;
    box-shadow:
        0 0 10px #00e5ff,
        inset 0 0 15px #00cfff;
}

/* Neon glowing border and text for secondary */
.compact-btn.secondary {
    border-color: #ff4ec0;
    color: #ff5ab8;
    text-shadow: 0 0 6px #ff5ab8;
    box-shadow:
        0 0 10px #ff5ab8,
        inset 0 0 15px #ff4ec0;
}

/* Hover effect - subtle glow pulse & scale */
.compact-btn.primary:hover {
    color: #a0ffff;
    border-color: #40e0ff;
    box-shadow:
        0 0 20px #40e0ff,
        inset 0 0 25px #00e5ff;
    transform: scale(1.05);
}

.compact-btn.secondary:hover {
    color: #ff8ce0;
    border-color: #ff74d1;
    box-shadow:
        0 0 20px #ff74d1,
        inset 0 0 25px #ff5ab8;
    transform: scale(1.05);
}





/* Slide items stack on top */
.author-image-container {
    position: relative;
    margin-bottom: 2.5rem;
    margin-top: 3.5rem;
    width: 500px;
    height: 400px;
    overflow: hidden;
}

/* All slides positioned exactly same */
.author-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 400px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Author Image Slides */
.author-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 400px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    overflow: visible !important;
}

.author-slide.active {
    opacity: 1;
}

/* Author Image Styles */
.author-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid rgba(0, 230, 255, 0.95);
    transition: all 0.3s ease;
    z-index: 3;
    
    /* Neon effects */
    filter: drop-shadow(0 0 5px rgba(0, 230, 255, 0.7))
            drop-shadow(0 0 6px rgba(239, 146, 219, 0.5));
    animation: neonFilterPulse 2.2s ease-in-out infinite alternate;
}

/* Neon Pulse Animation */
@keyframes neonFilterPulse {
    from {
        filter: drop-shadow(0 0 4px rgba(0,230,255,0.45))
                drop-shadow(0 0 6px rgba(237, 155, 218, 0.32));
    }
    to {
        filter: drop-shadow(0 0 6px rgba(0,230,255,0.95))
                drop-shadow(0 0 8px rgba(242, 244, 245, 0.6));
    }
}

.author-image:hover {
    border-color: #00ccff;
    box-shadow:
        0 0 35px rgba(0, 245, 255, 0.8),
        0 0 70px rgba(0, 245, 255, 0.6),
        0 0 105px rgba(0, 245, 255, 0.4);
    transform: scale(1.02);
}

.author-image-container {
    overflow: visible !important;
}

/* Author Info */
.author-info {
    position: relative;
    z-index: 3;
    text-align: center;
}

.author-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #fff, #00f5ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.author-title {
    font-size: 1rem;
    color: #ff0080;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.3);
}

/* Statistics */
.stats-compact {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.stat {
    text-align: center;
    padding: 1.2rem 1rem;
    background: rgba(0, 245, 255, 0.08);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    min-width: 100px;
}

.stat:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 245, 255, 0.4);
    box-shadow: 0 10px 25px rgba(0, 245, 255, 0.15);
    background: rgba(0, 245, 255, 0.12);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00f5ff;
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.5);
    margin-bottom: 0.3rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: #c0d0e0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .author-image {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 968px) {
    .author-image {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 768px) {

    .hero-content{
        margin-top: 10px;
    }
    .author-image-container {
        width: 100%;
        max-width: 320px;
        height: 320px;
        margin: 0 auto 2rem auto;
    }

    .author-slide {
        width: 100% !important;
        height: 100% !important;
    }

    .author-image {
        width: 100%;
        height: 100%;
        border-radius: 15px;
    }

    .author-info {
        width: 100%;
        padding: 0 1rem;
    }

    .stats-compact {
        flex-direction: column;
        gap: 1rem;
        max-width: 200px;
        margin: 0 auto;
    }

    .stat {
        width: 100%;
        min-width: auto;
    }
}

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

    .author-name {
        font-size: 1.4rem;
    }

    .author-title {
        font-size: 0.9rem;
    }

    .stat {
        padding: 1rem 0.8rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 375px) {
    .author-image-container {
        max-width: 250px;
        height: 250px;
    }

    .author-name {
        font-size: 1.3rem;
    }

    .stats-compact {
        max-width: 180px;
    }
}

/* Professional Features Section */
.features-section {
    padding: 2rem 0;
    background:
        radial-gradient(1600px 600px at 60% -10%, rgba(23, 255, 227, 0.15), transparent),
        radial-gradient(1200px 480px at -10% 10%, rgba(255, 71, 126, 0.12), transparent),
        var(--bg);
    position: relative;
}

/* Container */
.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Responsive grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Feature Card styling */
.feature-card {
    background: rgba(40, 40, 60, 0.7);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
    box-shadow: 0 0 6px rgba(0, 212, 255, 0.05);
}

/* Moving light effect */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s;
    pointer-events: none;
}

/* Hover state */
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(40, 40, 60, 0.9);
}

.feature-card:hover::before {
    left: 100%;
}

/* Icon */
.feature-icon {
    font-size: 2.8rem;
    color: #00d4ff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
    transition: color 0.3s ease;
}

.feature-card:hover .feature-icon {
    color: #33eaff;
    text-shadow: 0 0 20px #33eaff;
}

/* Heading */
.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* Paragraph */
.feature-card p {
    color: #b0c0d8;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-align: left;
    margin: 0 auto 1rem auto;
    max-width: 90%;
    white-space: pre-line; /* preserves line breaks */
}

/* Styling for bullet points inside paragraphs */
.feature-card p br + span,
.feature-card p span {
    display: block;
    margin-left: 1.4em;  /* Indent for bullet alignment */
    position: relative;
    padding-left: 0.6em;
}

/* Custom bullet styling */
.feature-card p span::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00d4ff; /* Neon cyan bullet */
    font-weight: 700;
    font-size: 1.2em;
    line-height: 1;
    top: 0;
}

/* Alternative styling if using ul/li lists */
.feature-card ul {
    text-align: left;
    margin: 0.5em auto 0 auto;
    max-width: 90%;
    padding-left: 1.5em;
    color: #b0c0d8;
    line-height: 1.6;
    font-size: 1rem;
}

.feature-card ul li {
    margin-bottom: 0.4em;
    list-style-type: disc;
    list-style-position: inside;
    color: #b0c0d8;
}


@media (max-width: 768px) {
    
   
  
    .features-grid {
      gap: 1.2rem;
      margin-top: 2rem;
    }
  
    .feature-card {
      padding: 1.2rem 1rem;
    }
  
    .feature-card h3 {
      font-size: 1.1rem;
      margin-bottom: 0.75rem;
    }
  
    .feature-card p,
    .feature-card ul {
      font-size: 1rem;
      max-width: 100%;
      margin: 0 auto 0.8rem auto;
    }
  
    .feature-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
    }
  }

  

/* Smooth Professional Glow Animation */
@keyframes smooth-glow {
    0%, 100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4))
                drop-shadow(0 0 16px rgba(0, 212, 255, 0.2));
    }
    25% {
        background-position: 50% 50%;
        filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.5))
                drop-shadow(0 0 24px rgba(0, 212, 255, 0.3));
    }
    50% {
        background-position: 100% 50%;
        filter: drop-shadow(0 0 16px rgba(0, 212, 255, 0.6))
                drop-shadow(0 0 32px rgba(0, 212, 255, 0.4));
    }
    75% {
        background-position: 50% 50%;
        filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.5))
                drop-shadow(0 0 24px rgba(0, 212, 255, 0.3));
    }
}

/* Alternative: Static Elegant Neon */
.section-title.static-neon {
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    background-size: 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5))
            drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
    animation: none;
}

/* Alternative: Subtle Breathing Effect */
.section-title.breathing {
    color: #ffffff;
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.9),
        0 0 10px rgba(0, 212, 255, 0.7),
        0 0 15px rgba(0, 212, 255, 0.5),
        0 0 20px rgba(0, 212, 255, 0.3);
    animation: breathing-glow 3s ease-in-out infinite;
    background: none;
    -webkit-text-fill-color: initial;
}

@keyframes breathing-glow {
    0%, 100% {
        text-shadow: 
            0 0 5px rgba(255, 255, 255, 0.9),
            0 0 10px rgba(0, 212, 255, 0.7),
            0 0 15px rgba(0, 212, 255, 0.5),
            0 0 20px rgba(0, 212, 255, 0.3);
        transform: scale(1);
    }
    50% {
        text-shadow: 
            0 0 8px rgba(255, 255, 255, 1),
            0 0 16px rgba(0, 212, 255, 0.8),
            0 0 24px rgba(0, 212, 255, 0.6),
            0 0 32px rgba(0, 212, 255, 0.4);
        transform: scale(1.02);
    }
}

/* Alternative: Clean Professional Style */
.section-title.clean {
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(0, 212, 255, 0.6),
        0 0 20px rgba(0, 212, 255, 0.4),
        0 0 30px rgba(0, 212, 255, 0.2);
    animation: none;
    background: none;
    -webkit-text-fill-color: initial;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
}


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

body {
    font-family: 'Inter', Arial, sans-serif;
    background: #0f0f0f;
    color: #ffffff;
}

/* Course Section */
.course-section {
    /* padding: 5rem 0; */
    /* background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); */
    /* min-height: 100vh; */
    background: radial-gradient(1600px 600px at 60% -10%, rgba(23, 255, 227, .15), transparent), radial-gradient(1200px 480px at -10% 10%, rgba(255, 71, 126, .12), transparent), var(--bg);
}

.course-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}



.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Inter', 'Arial', sans-serif;
    color: #ffffff; /* White text */

    /* Vibrant Blue Neon Glow */
    text-shadow:
        0 0 3px rgba(0, 212, 255, 0.8), /* Soft inner glow */
        0 0 6px rgba(0, 212, 255, 0.6); /* Outer glow */
}


/* Smooth Professional Glow Animation */
@keyframes smooth-glow {
    0%, 100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4))
                drop-shadow(0 0 16px rgba(0, 212, 255, 0.2));
    }
    25% {
        background-position: 50% 50%;
        filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.5))
                drop-shadow(0 0 24px rgba(0, 212, 255, 0.3));
    }
    50% {
        background-position: 100% 50%;
        filter: drop-shadow(0 0 16px rgba(0, 212, 255, 0.6))
                drop-shadow(0 0 32px rgba(0, 212, 255, 0.4));
    }
    75% {
        background-position: 50% 50%;
        filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.5))
                drop-shadow(0 0 24px rgba(0, 212, 255, 0.3));
    }
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Course Card Design */
.course-card {
    background: rgba(40, 40, 60, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.course-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.2);
}

/* Single Thumbnail Section */
.course-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 157, 0.1));
}

.course-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    
}

.course-card:hover .course-thumbnail img {
    transform: scale(1.05);
    opacity: 1;
}

.course-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 107, 157, 0.9);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

/* Course Content */
.course-content {
    padding: 2rem;
    text-align: left;
}

.course-content h3 {
    font-size: 1.5rem;
    padding: 2px !important;
    margin-bottom:0.5rem;
    color: #fff;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* Attractive Custom Bullet Points */
.course-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.course-features li {
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.5;
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

.course-features li:last-child {
    border-bottom: none;
}

.course-features li:hover {
    color: #fff;
    transform: translateX(5px);
}

/* Custom Neon Bullet Points */
.course-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00d4ff;
    box-shadow: 
        0 0 5px #00d4ff,
        0 0 10px #00d4ff,
        0 0 15px rgba(0, 212, 255, 0.5);
    animation: pulse-bullet 2s ease-in-out infinite;
}

@keyframes pulse-bullet {
    0%, 100% {
        box-shadow: 
            0 0 5px #00d4ff,
            0 0 10px #00d4ff,
            0 0 15px rgba(0, 212, 255, 0.5);
        transform: translateY(-50%) scale(1);
    }
    50% {
        box-shadow: 
            0 0 8px #00d4ff,
            0 0 15px #00d4ff,
            0 0 25px rgba(0, 212, 255, 0.7);
        transform: translateY(-50%) scale(1.2);
    }
}

/* Enhanced Neon Button */
.neon-btn.secondary {
    background: transparent;
    border: 2px solid #00d4ff;
    color: #00d4ff;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

.neon-btn.secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    color: #fff;
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.6),
        inset 0 0 20px rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
    border-color: #fff;
}

.neon-btn.secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.neon-btn.secondary:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
        letter-spacing: 1.5px;
    }
    
    .course-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .course-thumbnail {
        height: 180px;
    }
    
    .course-content {
        padding: 1.5rem;
    }
    
    .course-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .course-container {
        padding: 0 1rem;
    }
    
    .course-thumbnail {
        height: 160px;
    }
    
    .course-features li {
        font-size: 0.85rem;
        padding-left: 1.5rem;
    }
}



/* About Section */
.about-section {
    padding: 5rem 0;
    /* background: linear-gradient(135deg, #16213e 0%, #1a1a2e 50%, #0f0f23 100%); */
    position: relative;
    background: radial-gradient(1600px 600px at 60% -10%, rgba(23, 255, 227, .15), transparent), radial-gradient(1200px 480px at -10% 10%, rgba(255, 71, 126, .12), transparent), var(--bg);
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* About Content Layout */
.about-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

/* Coach Image Container */
.coach-image-container {
    text-align: center;
    position: sticky;
    top: 2rem;
}

.coach-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    padding: 8px;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    border-radius: 28px;
}

.coach-image {
    width: 350px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Professional Border Glow Effect */
.image-border-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 28px;
    background: linear-gradient(
        45deg,
        rgba(0, 212, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(0, 212, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 75%,
        rgba(0, 212, 255, 0.3) 100%
    );
    background-size: 300% 300%;
    animation: subtle-glow 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes subtle-glow {
    0%, 100% {
        background-position: 0% 50%;
        opacity: 0.6;
    }
    50% {
        background-position: 100% 50%;
        opacity: 0.8;
    }
}

.coach-image-wrapper:hover .coach-image {
    transform: scale(1.02);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.coach-image-wrapper:hover .image-border-glow {
    animation-duration: 3s;
    opacity: 1;
}

.coach-title {
    text-align: center;
}

.coach-title h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    font-weight: 700;
}

/* Logo Container */
.logo-container {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coach-logo {
    /* height: 50px; */
    width: 300px;
    max-width: 150px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
    transition: all 0.3s ease;
}

.coach-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.6));
}

.coach-title p {
    color: #00d4ff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.experience-badge {
    display: inline-block;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.2), rgba(255, 107, 157, 0.2));
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    border: 2px solid rgba(0, 212, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.experience-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: badge-shimmer 4s ease-in-out infinite;
}

@keyframes badge-shimmer {
    0% { left: -100%; }
    50% { left: -100%; }
    100% { left: 100%; }
}

/* Coach Details - Keep existing styles */
.coach-details {
    color: #e0e0e0;
}

.intro-text {
    margin-bottom: 3rem;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #f0f0f0;
    padding: 2rem;
    background: rgba(40, 40, 60, 0.3);
    border-radius: 15px;
    border-left: 4px solid #00d4ff;
}

.highlight {
    color: #00d4ff;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.3);
}

.detail-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: rgba(40, 40, 60, 0.4);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.detail-section:hover {
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(40, 40, 60, 0.6);
    transform: translateY(-2px);
}

.detail-section h4 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.3);
    font-weight: 600;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    padding-bottom: 0.5rem;
}

.detail-list {
    list-style: none;
    padding: 0;
}

.detail-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

.detail-list li:last-child {
    border-bottom: none;
}

.detail-list li:hover {
    color: #fff;
    transform: translateX(5px);
}

.detail-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00d4ff;
    box-shadow: 0 0 5px #00d4ff, 0 0 10px rgba(0, 212, 255, 0.5);
}

.detail-list li strong {
    color: #00d4ff;
    font-weight: 600;
}

.closing-statement {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 157, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.closing-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.closing-statement p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #f0f0f0;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .coach-image-container {
        position: static;
    }
    
    .coach-image {
        width: 280px;
        height: 320px;
    }
    
    .coach-logo {
        height: 40px;
    }
    
    .detail-section {
        padding: 2rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 0 1rem;
    }
    
    .coach-image {
        width: 240px;
        height: 280px;
    }
    
    .coach-logo {
        height: 235px;
    }
    
    .coach-title h3 {
        font-size: 1.6rem;
    }
    
    .intro-text {
        font-size: 1rem;
        padding: 1.2rem;
    }
    
    .detail-section {
        padding: 1.5rem;
    }
    
    .detail-section h4 {
        font-size: 1.2rem;
    }
}




/* Professional Footer */
.footer {
    /* background: rgba(26, 26, 46, 0.95); */
    padding: 3rem 0;
    text-align: center;
    /* border-top: 1px solid rgba(0, 212, 255, 0.1); */
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: #00d4ff;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-links a:hover {
    color: #ff6b9d;
    transform: translateY(-3px);
    text-shadow: 0 0 10px currentColor;
    opacity: 1;
}

/* Animation Keyframes */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr 320px;
        gap: 3rem;
    }
    

    
    .company-logo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .author-profile {
        order: -1;
    }
    
    .hero-text {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .achievements {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 2rem auto;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 46, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        border-top: 1px solid rgba(0, 212, 255, 0.2);
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .neon-btn {
        width: 100%;
        max-width: 280px;
    }
 
    
    .author-credentials {
        grid-template-columns: 1fr;
        max-width: 200px;
    }
    
    .company-logo {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
  
    
  
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
}


        /* Pricing Section */
        .pricing-section {
            padding: 6rem 0;
            background: radial-gradient(circle at center, rgba(128, 0, 255, 0.08) 0%, rgba(26, 26, 46, 1) 70%);
        }
        .pricing-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
        }
        .pricing-card {
            background: rgba(40, 40, 60, 0.9);
            border: 2px solid #ff0080;
            border-radius: 20px;
            padding: 3rem;
            position: relative;
            margin: 2rem auto;
            max-width: 500px;
            box-shadow: 0 0 50px rgba(255, 0, 128, 0.3);
        }
        .pricing-card::before {
            content: 'FEATURED';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(45deg, #ff0080, #8000ff);
            padding: 0.5rem 2rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            letter-spacing: 1px;
        }
        .price {
            font-size: 4rem;
            font-weight: bold;
            color: #00ffff;
            text-shadow: 0 0 30px #00ffff;
            margin-bottom: 1rem;
        }
        .price-features {
            list-style: none;
            margin: 2rem 0;
        }
        .price-features li {
            padding: 0.8rem 0;
            color: #d0d0d0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .price-features li:last-child {
            border-bottom: none;
        }
        .price-features li i {
            color: #00ffff;
            margin-right: 1rem;
        }
        /* Footer */
        .footer {
            /* background: #1a1a2e; */
            padding: 3rem 0;
            /* border-top: 1px solid rgba(255, 0, 128, 0.3); */
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
        }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0;
        }
        .social-links a {
            color: #888;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }
        .social-links a:hover {
            color: #ff0080;
            text-shadow: 0 0 15px #ff0080;
            transform: translateY(-3px);
        }
        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .mobile-menu {
                display: block;
            }
            .hero-banner {
                padding-top: 100px;
            }
            .hero-content {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }
            .hero-title {
                font-size: 2.8rem;
            }
    
            .hero-buttons {
                justify-content: center;
            }
            .achievements {
                justify-content: center;
            }
            .author-credentials {
                grid-template-columns: 1fr;
                max-width: 250px;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
            .price {
                font-size: 3rem;
            }
            .pricing-card {
                padding: 2rem;
            }
        }
        @media (max-width: 480px) {
            .hero-banner {
                padding-top: 120px;
            }
            .hero-title {
                font-size: 2.2rem;
            }
            .hero-subtitle {
                font-size: 1.1rem;
            }
         
            .nav-container {
                padding: 0 1rem;
            }
            .features-container,
            .pricing-container,
            .footer-container {
                padding: 0 1rem;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            .neon-btn {
                width: 100%;
                max-width: 250px;
            }
        }
        /* Scrollbar Styling */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1a2e;
        }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(45deg, #ff0080, #00ffff);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(45deg, #00ffff, #ff0080);
        }

        .testimonial-section {
            color: #dbeafe;
            padding: 4rem 2rem;
            text-align: center;
            overflow: hidden;
            position: relative;
           
          }
          
     
          
          .container {
            max-width: 1100px;
            margin: 0 auto;
          }
          
          .testimonial-slider {
            display: flex;
            gap: 3rem;
            white-space: nowrap;
            padding-bottom: 1rem;
            animation: scrollLeft 30s linear infinite;
          }
          
          .testimonial-item {
            display: inline-block;
            background: rgba(15, 20, 36, 0.92);
            padding: 2rem 2.5rem;
            border-radius: 22px;
            min-width: 280px;
            max-width: 340px;
            box-shadow: 
              0 0 10px 2px #00f2fe,
              0 0 22px 4px #ff42c5,
              0 0 20px 6px #2ecfff77;
            user-select: none;
            transition: box-shadow 0.3s;
            vertical-align: top;
            overflow-wrap: break-word;
            white-space: normal;
            text-align: left;
            position: relative;
            z-index: 1;
          }
          
          .testimonial-item::before {
            content: "";
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border-radius: 25px;
            z-index: -1;
            background: linear-gradient(135deg, #00f2fe66 0%, #ff42c544 100%);
            opacity: .60;
            filter: blur(8px);
            pointer-events: none;
          }
          
          .testimonial-item:hover {
            box-shadow: 
              0 0 60px 12px #ff42c5cc,
              0 0 80px 14px #00f2fecf,
              0 0 64px 16px #2ecfff77;
          }
          
          .testimonial-quote {
            font-style: italic;
            font-size: 1.1rem;
            margin-bottom: 1.25rem;
            line-height: 1.5;
            color: #e8e8ff;
            text-shadow: 0 0 6px #33f6fc44, 0 0 12px #ff42c555;
          }
          
          .author-name {
            font-weight: 700;
            color: #00f2fe;
            font-size: 1rem;
            margin: 0;
            letter-spacing: 1px;
            text-shadow:
              0 0 15px #00f2fecc,
              0 0 8px #ff42c5a0;
          }
          
          @keyframes scrollLeft {
            0% {
              transform: translateX(0);
            }
            100% {
              transform: translateX(-50%);
            }
          }
          
      /* Responsive */
@media (max-width: 768px) {
    .testimonial-section {
      padding: 0;
      overflow: visible;
    }
  
    .container {
      padding: 0;
      width: 100%;
    }
  
    .testimonial-slider {
      display: flex;
      overflow-x: auto;
      gap: 1.2rem;
      padding: 1rem 1rem; /* Horizontal padding for spacing */
      margin: 0; /* Remove any default margin */
      animation: none;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      touch-action: pan-y pan-x;
      width: 100%;
    }
  
    .testimonial-item {
      flex: 0 0 auto;
      min-width: 250px;
      max-width: 280px;
      padding: 1.2rem;
      font-size: 0.95rem;
      margin: 0 0.5rem; /* Horizontal margin for spacing between items */
      scroll-snap-align: start;
      background: rgba(15, 20, 36, 0.92);
      border-radius: 22px;
      box-shadow: 0 0 10px 2px #00f2fe;
    }
  
    /* Hide scrollbar for a cleaner look */
    .testimonial-slider::-webkit-scrollbar {
      display: none;
    }
  }
  


          #contact {
            padding: 1rem 2rem;
            background: radial-gradient(1600px 600px at 60% -10%, rgba(23, 255, 227, .15), transparent), radial-gradient(1200px 480px at -10% 10%, rgba(255, 71, 126, .12), transparent), var(--bg);
            color: #f0f0f0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
          }
          
          .contact-container {
            max-width: 500px;
            margin: 0 auto;
            text-align: left;
          }
          
          .contact-container h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #00d4ff;
          }
          
          .contact-form label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
          }
          
          .contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1.5px solid #444d6e;
  margin-bottom: 1.5rem;
  background-color: #e1e1e1;   /* White background */
  color: #121621;              /* Dark text color */
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00d4ff;
  background-color: #ffffff;   /* Keep white on focus */
  outline: none;
}

          
          .contact-form input:focus,
          .contact-form textarea:focus {
            outline: none;
            border-color: #00d4ff;
            background-color: #283350;
          }
          
          .submit-btn {
            background-color: #f8f8f8;
            color: #121621;
            border: none;
            padding: 1rem 2rem;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 30px;
            cursor: pointer;
            width: 100%;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        
        .submit-btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: -75%;
            width: 50%;
            height: 100%;
            background: linear-gradient(
                120deg,
                rgba(255, 255, 255, 0.2) 0%,
                rgba(255, 255, 255, 0.6) 60%,
                rgba(255, 255, 255, 0.2) 100%
            );
            transform: skewX(-25deg);
            transition: all 0.5s ease;
        }
        
        .submit-btn:hover::before {
            left: 125%;
        }
        
        .submit-btn:hover {
            background-color: #e0e0e0;
            color: #000000;
        }
        
          .submit-btn:hover {
            background-color: #009ac4;
          }
          
   