/* ====== CSS Reset & Base Styles ====== */
:root {
    --primary: #4da6ff;
    --primary-dark: #0077e6;
    --primary-light: #b3d9ff;
    --secondary: #333333;
    --accent: #ff6b6b;
    --light: #f8f9fa;
    --dark: #212529;
    --text: #333333;
    --text-light: #ffffff;
    --gray-light: #e9ecef;
    --gray-medium: #adb5bd;
    --gray-dark: #495057;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: #f5f9ff;
    overflow-x: hidden;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  section {
    padding: 80px 0;
  }
  
  /* ====== Utility Classes ====== */
  .btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .btn-primary {
    background-color: var(--primary);
    color: black;
    border: 2px solid var(--primary);
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
  }
  
  .btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
  }
  
  .btn-outline:hover {
    background-color: var(--primary);
    color: black;
    transform: translateY(-2px);
  }
  
  .btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  
  .text-center {
    text-align: center;
  }
  
  
  
 /* ====== Header & Navigation Styles ====== */
.main-header {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Adjusted for consistent mobile padding */
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.logo-space {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.logo-space img {
    height: 55px;
    transition: all 0.3s ease;
}

.main-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-nav li {
    margin-left: 25px;
}

.main-nav a {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.main-nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.main-nav a:hover:after,
.main-nav a.active:after {
    width: 100%;
}

.cta-nav {
    background-color: var(--primary);
    color: white !important;
    padding: 8px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-nav:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--secondary);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        flex-wrap: wrap; /* Allow wrapping if needed */
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-nav {
        position: fixed;
        top: 85px;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    .main-nav li {
        margin: 12px 0;
        width: 100%;
    }
    
    .main-nav a {
        display: block;
        padding: 10px 0;
        width: 100%;
    }
    
    .main-nav a:after {
        display: none;
    }
    
    .cta-nav {
        display: block;
        margin-top: 15px;
        text-align: center;
    }
}

  /* ====== Hero Sections ====== */
  .page-hero {
    padding: 180px 0 100px;
    text-align: center;
    color: white;
    position: relative;
  }
  
  .index-hero {
    background: linear-gradient(135deg, rgba(0, 119, 230, 0.8), rgba(77, 166, 255, 0.9)), 
                url('../images/hero-bg.jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .about-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  }
  
  .services-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  }
  
  .contact-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  .hero-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
  }
  
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  
  .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: white;
    animation: bounce 2s infinite;
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-20px) translateX(-50%);}
    60% {transform: translateY(-10px) translateX(-50%);}
  }
  
  /* ====== Stats Bar ====== */
  .stats-bar {
    background-color: var(--primary-dark);
    color: white;
    padding: 50px 0;
    text-align: center;
  }
  
  .stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .stat-item {
    padding: 0 20px;
    margin: 10px 0;
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
  }
  
  .stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  /* ====== Services Preview ====== */
  .services-preview {
    background-color: white;
  }
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }
  
  .section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
  }
  
  .section-intro {
    font-size: 1.2rem;
    color: var(--gray-dark);
    max-width: 700px;
    margin: 0 auto 40px;
  }
  
  .preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
  
  .preview-card {
    background-color: var(--light);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .preview-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
  }
  
  .preview-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
  
  .preview-card.highlight {
    background-color: var(--primary);
    color: white;
  }
  
  .preview-card.highlight .preview-icon,
  .preview-card.highlight h3 {
    color: white;
  }
  
  /* ====== Media Network ====== */
  .media-network {
    background-color: var(--light);
  }
  
  .network-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  
  .network-content h2 {
    margin-bottom: 20px;
  }
  
  .network-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
  }
  
  .network-list {
    list-style: none;
    margin-bottom: 30px;
  }
  
  .network-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
  }
  
  .network-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    position: absolute;
    left: 0;
  }
  
  .network-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  /* ====== Testimonials ====== */
  .testimonials {
    background-color: white;
  }
  
  .testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
  }
  
  .testimonial {
    display: none;
    text-align: center;
  }
  
  .testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease;
  }
  
  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }
  
  blockquote {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    padding: 0 50px;
  }
  
  blockquote:before,
  blockquote:after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-light);
    position: absolute;
    opacity: 0.3;
    line-height: 1;
  }
  
  blockquote:before {
    top: -20px;
    left: 0;
  }
  
  blockquote:after {
    bottom: -40px;
    right: 0;
  }
  
  .client-info {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
  }
  
  .client-info h4 {
    margin-bottom: 5px;
  }
  
  .slider-controls {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .slider-controls button {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .slider-controls button:hover {
    color: var(--primary-dark);
  }
  
  /* ====== CTA Section ====== */
  .cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-align: center;
  }
  
  .cta-section h2 {
    color: white;
    margin-bottom: 20px;
  }
  
  .cta-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
  }
  
  /* ====== About Page Styles ====== */
  .our-story {
    background-color: white;
  }
  
  .story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  
  .story-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .our-team {
    background-color: var(--light);
    text-align: center;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
  }
  
  .team-member {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--light);
  }
  
  .full-team {
    margin-top: 60px;
  }
  
  .team-photo {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  /* ====== Contact Page Styles ====== */
  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background-color: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .contact-form h2 {
    margin-bottom: 30px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(77, 166, 255, 0.2);
  }
  
  textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .contact-info {
    display: grid;
    gap: 20px;
  }
  
  .info-card {
    background-color: var(--light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .info-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
  }
  
  .map-section {
    height: 400px;
    margin-top: 50px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  /* ====== Services Page Styles ====== */
  .services-listing {
    background-color: white;
  }
  
  .service-category {
    margin-bottom: 60px;
  }
  
  .service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
  }
  
  .service-item {
    background-color: var(--light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .service-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
  }
  
  .service-item.highlight {
    border: 2px solid var(--primary);
    position: relative;
  }
  
  .service-item.highlight::after {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--primary);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
  }
  
  .service-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-align: center;
  }
  
  /* ====== Footer Styles ====== */
  .main-footer {
    background-color: var(--secondary);
    color: white;
    padding: 60px 0 20px;
  }
  
  .footer-logo img {
    height: 50px;
    margin-bottom: 20px;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-col h4 {
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-col h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
  }
  
  .footer-col ul {
    list-style: none;
  }
  
  .footer-col li {
    margin-bottom: 10px;
  }
  
  .footer-col a {
    color: var(--gray-medium);
    transition: color 0.3s ease;
  }
  
  .footer-col a:hover {
    color: var(--primary);
  }
  
  .social-links {
    display: flex;
    gap: 15px;
  }
  
  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
  }
  
  .social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
  }
  
  .legal-links a {
    color: var(--gray-medium);
    margin-left: 20px;
  }
  
  /* ====== Responsive Styles ====== */
  @media (max-width: 992px) {
    .network-container,
    .story-container,
    .contact-content {
      grid-template-columns: 1fr;
    }
    
    .network-image,
    .story-image {
      order: -1;
    }
    
    .hero-content h1 {
      font-size: 2.8rem;
    }
  }
  
  @media (max-width: 768px) {
    .main-nav {
      position: fixed;
      top: 80px;
      left: 0;
      width: 100%;
      background-color: white;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      padding: 20px;
      transform: translateY(-150%);
      transition: transform 0.3s ease;
    }
    
    .main-nav.active {
      transform: translateY(0);
    }
    
    .main-nav ul {
      flex-direction: column;
    }
    
    .main-nav li {
      margin: 10px 0;
    }
    
    .mobile-menu-toggle {
      display: block;
    }
    
    .hero-content h1 {
      font-size: 2.2rem;
    }
    
    .hero-buttons {
      flex-direction: column;
      gap: 10px;
    }
    
    .stats-container {
      grid-template-columns: 1fr 1fr;
    }
    
    .preview-grid,
    .service-items {
      grid-template-columns: 1fr;
    }
    
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 15px;
    }
    
    .legal-links a {
      margin: 0 10px;
    }
  }
  
  /* ====== Animations ====== */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .animate {
    animation: fadeInUp 0.6s ease forwards;
  }