/* ==========================================================================
   Talisha Aerospace - Main Stylesheet
   ========================================================================== */

/* ==========================================================================
   Base Styles
   ========================================================================== */
   :root {
    --talisha-primary: #0c1f3a;
    --talisha-primary-dark: #08162a;
    --talisha-primary-light: #142847;
    --talisha-secondary: #ff7b00;
    --talisha-secondary-dark: #e06d00;
    --talisha-secondary-light: #ff8f1a;
    --talisha-light: #ffffff;
    --talisha-light-dark: #f8f9fa;
    --talisha-gray: #d4deec;
    --talisha-dark: #0a1729;
    --talisha-text: #e9ecef;
    --talisha-text-dark: #ced4da;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--talisha-text);
    background-color: var(--talisha-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--talisha-light);
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--talisha-secondary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--talisha-secondary-light);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.talisha-section {
    padding: 100px 0;
    position: relative;
}

.talisha-section-title {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.talisha-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--talisha-secondary);
}

.talisha-section-subtitle {
    font-size: 1.25rem;
    color: var(--talisha-text-dark);
    margin-bottom: 3rem;
}

.talisha-cta-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.talisha-cta-primary {
    background: var(--talisha-secondary);
    color: var(--talisha-light);
    border: 2px solid var(--talisha-secondary);
}

.talisha-cta-primary:hover {
    background: var(--talisha-secondary-dark);
    border-color: var(--talisha-secondary-dark);
    color: var(--talisha-light);
    transform: translateY(-3px);
}

.talisha-cta-secondary {
    background: transparent;
    color: var(--talisha-light);
    border: 2px solid var(--talisha-light);
    margin-left: 15px;
}

.talisha-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* ==========================================================================
   Preloader
   ========================================================================== */
.talisha-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--talisha-primary);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.talisha-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--talisha-secondary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.talisha-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(12, 31, 58, 0.9);
    backdrop-filter: blur(10px);
}

.talisha-header.scrolled {
    padding: 15px 0;
    background: rgba(10, 23, 41, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.talisha-navbar .navbar-brand img {
    transition: all 0.3s ease;
}

.talisha-header.scrolled .navbar-brand img {
    height: 35px;
}

.talisha-navbar .navbar-toggler {
    border: none;
    color: var(--talisha-light);
    font-size: 1.5rem;
    padding: 0;
}

.talisha-navbar .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.talisha-navbar .nav-link {
    color: var(--talisha-light);
    font-weight: 500;
    padding: 8px 15px;
    margin: 0 5px;
    position: relative;
}

.talisha-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    width: 0;
    height: 2px;
    background: var(--talisha-secondary);
    transition: width 0.3s ease;
}

.talisha-navbar .nav-link:hover::after,
.talisha-navbar .nav-link.active::after {
    width: calc(100% - 30px);
}

.talisha-navbar .nav-link.active {
    color: var(--talisha-secondary);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
/* Hero Section Styles */
/* Hero Section Styles */
.hero-section {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    background: 
      linear-gradient(90deg, rgba(10,23,41,0.9) 0%, rgba(10,23,41,0.6) 50%, transparent 100%),
      url('img/falcon-heavy-landing.gif') no-repeat right center/cover;
    color: white;
    padding: 0 5%;
    position: relative;
  }
  
  .hero-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
  }
  
  .hero-line {
    font-size: 6rem;
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
  }
  
  .hero-line:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 4px;
    background: var(--talisha-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  }
  
  .hero-section.loaded .hero-line:after {
    transform: scaleX(1);
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    max-width: 500px;
    font-weight: 300;
    opacity: 1; /* Ensures it's always visible */
    margin-top: 30px;
  }
  
  .hero-section.loaded .hero-subtitle {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 1200px) {
    .hero-line {
      font-size: 5rem;
    }
  }
  
  @media (max-width: 992px) {
    .hero-line {
      font-size: 4rem;
    }
    
    .hero-subtitle {
      font-size: 1.2rem;
    }
  }
  
  @media (max-width: 768px) {
    .hero-section {
      background: rgba(10,23,41,0.9);
      text-align: center;
      justify-content: center;
    }
    
    .hero-heading {
      margin: 0 auto 30px;
      text-align: center;
    }
    
    .hero-line {
      font-size: 3.5rem;
      display: block;
    }
    
    .hero-subtitle {
      margin: 0 auto;
      font-size: 1.1rem;
      max-width: 100%;
    }
  }
  
  @media (max-width: 576px) {
    .hero-line {
      font-size: 2.8rem;
    }
    
    .hero-subtitle {
      font-size: 1rem;
    }
  }
/* ==========================================================================
   Stats Bar
   ========================================================================== */
.talisha-stats-bar {
    background: var(--talisha-primary-light);
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.talisha-stat-item {
    text-align: center;
    padding: 20px;
}

.talisha-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--talisha-secondary);
    margin-bottom: 5px;
}

.talisha-stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--talisha-text-dark);
}

/* ==========================================================================
   Rockets Section
   ========================================================================== */
.talisha-rockets-section {
    background: linear-gradient(to bottom, var(--talisha-primary) 0%, var(--talisha-primary-dark) 100%);
}

.talisha-rockets-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 50px;
}

.talisha-rocket-images {
    flex: 1;
    min-width: 300px;
    position: relative;
    height: 500px;
}

.talisha-rocket-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.talisha-rocket-image.active {
    opacity: 1;
}

.talisha-rocket-image img {
    max-height: 100%;
    object-fit: contain;
}

.talisha-rocket-info {
    flex: 1;
    min-width: 300px;
    padding-left: 50px;
}

.talisha-accordion {
    width: 100%;
}

.talisha-accordion-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.talisha-accordion-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.talisha-accordion-button {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--talisha-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.talisha-accordion-button.active {
    background: rgba(255, 123, 0, 0.1);
}

.talisha-accordion-button:focus {
    outline: none;
}

.talisha-rocket-name {
    font-size: 1.25rem;
    font-weight: 600;
}

.talisha-rocket-tag {
    background: var(--talisha-secondary);
    color: var(--talisha-light);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.talisha-accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.talisha-accordion-collapse.show {
    max-height: 300px;
}

.talisha-accordion-body {
    padding: 0 20px 20px;
}

.talisha-rocket-specs {
    margin-bottom: 20px;
}

.talisha-rocket-specs li {
    margin-bottom: 8px;
    display: flex;
}

.talisha-rocket-specs li strong {
    min-width: 120px;
    display: inline-block;
    color: var(--talisha-text-dark);
}

.talisha-rocket-more {
    display: inline-block;
    color: var(--talisha-secondary);
    font-weight: 600;
    position: relative;
    padding-right: 20px;
}

.talisha-rocket-more::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.talisha-rocket-more:hover {
    color: var(--talisha-secondary-light);
}

.talisha-rocket-more:hover::after {
    right: -5px;
}

/* ==========================================================================
   Technology Section
   ========================================================================== */
.talisha-tech-section {
    background: var(--talisha-primary-light);
}

.talisha-tech-item {
    margin-bottom: 30px;
}

.talisha-tech-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}

.talisha-tech-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 123, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.talisha-tech-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 123, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--talisha-secondary);
    font-size: 1.5rem;
}

.talisha-tech-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--talisha-light);
}

.talisha-tech-card p {
    color: var(--talisha-text-dark);
    font-size: 0.95rem;
}

/* ==========================================================================
   Milestones Section
   ========================================================================== */
.talisha-milestones-section {
    background: linear-gradient(to bottom, var(--talisha-primary-dark) 0%, var(--talisha-primary) 100%);
}

.talisha-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 50px;
}

.talisha-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 2px;
    background: var(--talisha-secondary);
}

.talisha-timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.talisha-timeline-date {
    position: absolute;
    left: -50px;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--talisha-secondary);
    color: var(--talisha-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.talisha-timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 25px;
    position: relative;
}

.talisha-timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid rgba(255, 255, 255, 0.05);
}

.talisha-timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--talisha-secondary);
}

.talisha-timeline-content p {
    color: var(--talisha-text-dark);
}

/* ==========================================================================
   Media Section
   ========================================================================== */
/* News Carousel Styles */
.news-carousel {
    padding: 80px 0;
    background: #f8f8f8;
    overflow: hidden;
  }
  
  .section-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 3px;
    color: #000;
  }
  
  .news-slider {
    display: flex;
    gap: 30px;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
  
  .news-slide {
    min-width: 300px;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    display: flex;
    flex-direction: column;
    height: 400px;
  }
  
  .news-slide:hover {
    filter: grayscale(0%);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  .container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
  }
  
  .news-carousel {
    padding: 100px 0;
  }
  
  .news-slide {
    min-width: 380px; /* Increased from 300px */
    height: 480px; /* Increased from 400px */
    margin: 0 15px;
  }
  
  .news-image {
    height: 240px; /* Increased from 180px */
  }
  
  
  .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .news-slide:hover .news-image img {
    transform: scale(1.05);
  }
  
  .news-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .news-slide h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 25px;
    color: #000;
    font-weight: 700;
    flex-grow: 1;
  }
  
  .read-more {
    display: inline-block;
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1rem; 
    position: relative;
    padding-right: 20px;
    margin-top: auto;
  }
  
  .read-more::after {
    content: '→';
    position: absolute;
    right: 0;
    transition: all 0.3s ease;
  }
  
  .read-more:hover::after {
    right: -5px;
  }
  
  .news-source {
    padding: 15px 25px;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.8rem;
  }
  
  .slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
  }
  
  .slider-controls button {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #000;
    padding: 5px 25px;
  }
  
  .slider-dots {
    display: flex;
    gap: 10px;
  }
  
  .slider-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    padding: 0;
  }
  
  .slider-dots button.active {
    background: #000;
  }
  
  /* Auto-sliding animation */
  @keyframes slide {
    0%, 100% { transform: translateX(0); }
    16.66% { transform: translateX(0); }
    33.32% { transform: translateX(-100%); }
    49.98% { transform: translateX(-200%); }
    66.64% { transform: translateX(-300%); }
    83.3% { transform: translateX(-400%); }
  }
  
  @media (max-width: 768px) {
    .news-slide {
      min-width: 280px;
      height: 380px;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .news-slide h3 {
      font-size: 1.1rem;
    }
  }
/* ==========================================================================
   About Section
   ========================================================================== */
.talisha-about-section {
    background: linear-gradient(to bottom, var(--talisha-primary) 0%, var(--talisha-primary-dark) 100%);
}

.talisha-about-content {
    padding-right: 30px;
}

.talisha-about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.talisha-about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.talisha-about-features {
    margin-top: 30px;
}

.talisha-about-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.talisha-about-feature i {
    color: var(--talisha-secondary);
    margin-right: 10px;
    font-size: 1.1rem;
}

.talisha-about-feature span {
    color: var(--talisha-text-dark);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.talisha-contact-section {
    background: var(--talisha-primary-light);
}

.talisha-contact-info {
    padding-right: 30px;
}

.talisha-contact-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.talisha-contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 123, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--talisha-secondary);
    font-size: 1.25rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.talisha-contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--talisha-light);
}

.talisha-contact-details p {
    color: var(--talisha-text-dark);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.talisha-form-group {
    margin-bottom: 20px;
}

.talisha-form-control {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--talisha-light);
    transition: all 0.3s ease;
}

.talisha-form-control:focus {
    outline: none;
    border-color: var(--talisha-secondary);
    background: rgba(255, 255, 255, 0.08);
}

textarea.talisha-form-control {
    min-height: 150px;
    resize: vertical;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.talisha-footer {
    background: var(--talisha-dark);
    padding: 80px 0 0;
    position: relative;
}

.talisha-footer-col {
    margin-bottom: 40px;
}

.talisha-footer-about {
    color: var(--talisha-text-dark);
    margin: 20px 0;
    font-size: 0.95rem;
}

.talisha-social-links {
    display: flex;
    margin-top: 20px;
}

.talisha-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--talisha-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.talisha-social-links a:hover {
    background: var(--talisha-secondary);
    color: var(--talisha-light);
    transform: translateY(-3px);
}

.talisha-footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--talisha-light);
}

.talisha-footer-links li {
    margin-bottom: 10px;
}

.talisha-footer-links a {
    color: var(--talisha-text-dark);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.talisha-footer-links a:hover {
    color: var(--talisha-secondary);
    padding-left: 5px;
}

.talisha-newsletter-form {
    display: flex;
    margin-top: 20px;
}

.talisha-newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px 0 0 4px;
    color: var(--talisha-light);
    border-right: none;
}

.talisha-newsletter-form button {
    background: var(--talisha-secondary);
    color: var(--talisha-light);
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.talisha-newsletter-form button:hover {
    background: var(--talisha-secondary-dark);
}

.talisha-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
}

.talisha-copyright {
    color: var(--talisha-text-dark);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.talisha-legal-links {
    display: flex;
    justify-content: flex-end;
}

.talisha-legal-links li {
    margin-left: 20px;
}

.talisha-legal-links a {
    color: var(--talisha-text-dark);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.talisha-legal-links a:hover {
    color: var(--talisha-secondary);
}

/* ==========================================================================
   Back to Top Button
   ========================================================================== */
.talisha-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--talisha-secondary);
    color: var(--talisha-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.talisha-back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.talisha-back-to-top:hover {
    background: var(--talisha-secondary-dark);
    transform: translateY(-3px);
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 1199.98px) {
    .talisha-hero h1 {
        font-size: 3rem;
    }
    
    .talisha-section {
        padding: 80px 0;
    }
}

@media (max-width: 991.98px) {
    .talisha-hero {
        min-height: 700px;
    }
    
    .talisha-hero h1 {
        font-size: 2.5rem;
    }
    
    .talisha-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .talisha-rocket-images {
        height: 400px;
    }
    
    .talisha-rocket-info {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .talisha-about-image {
        margin-top: 40px;
    }
    
    .talisha-contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 767.98px) {
    .talisha-hero {
        text-align: center;
        min-height: 600px;
        padding-top: 100px;
    }
    
    .talisha-hero h1 {
        font-size: 2.2rem;
    }
    
    .talisha-hero-btns {
        display: flex;
        flex-direction: column;
    }
    
    .talisha-cta-secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .talisha-section-title {
        font-size: 2rem;
    }
    
    .talisha-rocket-images {
        height: 300px;
    }
    
    .talisha-timeline {
        padding-left: 30px;
    }
    
    .talisha-timeline::before {
        left: 15px;
    }
    
    .talisha-timeline-date {
        left: -30px;
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .talisha-footer-col {
        margin-bottom: 30px;
    }
    
    .talisha-legal-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
    
    .talisha-legal-links li {
        margin-left: 0;
        margin-right: 15px;
    }
}

@media (max-width: 575.98px) {
    .talisha-hero h1 {
        font-size: 1.8rem;
    }
    
    .talisha-section {
        padding: 60px 0;
    }
    
    .talisha-stat-item {
        margin-bottom: 20px;
    }
    
    .talisha-stat-number {
        font-size: 2rem;
    }
    
    .talisha-back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }
}










/* About Page Styles */
.about-header {
    background: rgba(10, 23, 41, 0.9);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.about-hero {
    height: 70vh;
    background: url('img/kalpana22.gif') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    padding-top: 80px;
}

.about-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: #0a1729;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.mv-card {
    background: #142847;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.mv-card h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
 
}

/* Leadership Section */
.leadership-section {
    padding: 100px 0;
    background: rgb(255, 255, 255);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.leader-card {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.leader-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--talisha-secondary);
}

.leader-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--talisha-primary);
}

.position {
    font-weight: 600;
    color: var(--talisha-secondary);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.bio {
    color: #555;
    line-height: 1.6;
}

/* Timeline Section */
.journey-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 2px;
    background: var(--talisha-secondary);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-date {
    position: absolute;
    left: -50px;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--talisha-secondary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.timeline-content {
    background: white;
    border-radius: 8px;
    padding: 25px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid white;
}

/* Investors Section */
.investors-section {
    padding: 100px 0;
    background: white;
}

.investors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    margin-top: 50px;
    align-items: center;
}

.investor-logo {
    text-align: center;
    filter: grayscale(100%);
    opacity: 0.7;
    height: 40px;
    transition: all 0.3s ease;
}

.investor-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.investor-logo img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
}

/* Awards Section */
/* Simplified CSS */
.awards-section {
    padding: 80px 0;
    background: #08162a;
}

.section-title-award {
    color: white;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 40px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.award-card {
    background: #142847;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
}

.award-img-container {
    position: relative;
    height: 200px;
}

.award-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.award-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 114, 255, 0.9);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.award-content {
    padding: 20px;
    text-align: center;
}

.award-content h3 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.award-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Modal Styles */
.award-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #142847;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    text-align: center;
}

.modal-img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.modal-text h2 {
    color: white;
    margin-bottom: 10px;
}

.modal-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

#modalDate {
    color: #00c6ff;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        padding: 20px;
    }
}

/* Policies Section */
.policies-section {
    padding: 100px 0;
    background: white;
}

.policy-documents {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.policy-card {
    background: #08162a;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.policy-icon {
    width: 160px;
    margin: 0 auto 20px;
}

.download-btn {
    display: inline-block;
    background: var(--talisha-secondary);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    margin-top: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: var(--talisha-secondary-dark);
}

/* Footer */
.about-footer {
    background: var(--talisha-primary);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    max-width: 180px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: white;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--talisha-secondary);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social img {
    width: 30px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-social img:hover {
    opacity: 1;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.2rem;
    }
    
    .leader-image {
        width: 150px;
        height: 150px;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline-date {
        left: -30px;
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}










/*//contact////-----------------------------------------------------------------/////*/

.hero-section-contact {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    background: 
      linear-gradient(90deg, rgba(10,23,41,0.9) 0%, rgba(10,23,41,0.6) 50%, transparent 100%),
      url('img/reusable\ rocker\ gif2.gif') no-repeat right center/cover;
    color: white;
    padding: 0 5%;
    position: relative;
  }
  
  
  .hero-section-technology{
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    background: 
      linear-gradient(90deg, rgba(10,23,41,0.9) 0%, rgba(10,23,41,0.6) 50%, transparent 100%),
      url('img/fire\ testing\ test.gif') no-repeat right center/cover;
    color: white;
    padding: 0 5%;
    position: relative;
  }
  










  



  