/* Base Styles */
:root {
    --primary-color: #1e73be;
    --secondary-color: #0d47a1;
    --accent-color: #f39c12;
    --light-color: #f5f5f5;
    --dark-color: #333;
    --text-color: #444;
    --border-color: #ddd;
    --success-color: #2ecc71;
    --error-color: #e74c3c;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 4px;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--secondary-color);
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--dark-color);
  }
  
  p {
    margin-bottom: 15px;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2rem;
  }
  
  .section-subtitle {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
  }
  
  .primary-btn {
    background-color: var(--primary-color);
    color: white;
  }
  
  .primary-btn:hover {
    background-color: var(--secondary-color);
    color: white;
  }
  
  .secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
  }
  
  .secondary-btn:hover {
    background-color: var(--primary-color);
    color: white;
  }
  
  /* Header & Navigation */
  header {
    background-color: white;
    box-shadow: var(--box-shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary-color);
  }
  
  .logo p {
    font-size: 0.8rem;
    margin-bottom: 0;
    color: var(--text-color);
  }
  
  /* Side Navigation */
  .menu-toggle {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
    z-index: 1001;
  }
  
  .side-nav {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background-color: white;
    box-shadow: var(--box-shadow);
    z-index: 1001;
    transition: var(--transition);
    overflow-y: auto;
    padding-top: 60px;
  }
  
  .side-nav.active {
    left: 0;
  }
  
  .side-nav-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: flex-end;
  }
  
  .side-nav-close {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
  }
  
  .nav-menu {
    padding: 0;
    margin: 0;
  }
  
  .nav-menu li {
    border-bottom: 1px solid var(--border-color);
  }
  
  .nav-menu li a {
    display: block;
    padding: 15px 20px;
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition);
  }
  
  .nav-menu li a:hover,
  .nav-menu li a.active {
    background-color: var(--light-color);
    color: var(--primary-color);
  }
  
  .nav-menu li a.cta-button {
    background-color: var(--primary-color);
    color: white;
    margin: 15px 20px;
    border-radius: var(--border-radius);
    text-align: center;
  }
  
  .nav-menu li a.cta-button:hover {
    background-color: var(--secondary-color);
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
  }
  
  .overlay.active {
    display: block;
  }
  
  /* Hero Section - Full Viewport */
  .hero-fullscreen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  /* Hero Slideshow Styles - Updated structure */
.hero-fullscreen {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
  }
  
  .hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .hero-slide.active {
    opacity: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 10; /* Higher z-index to stay above slides */
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
    color: white;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .slideshow-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
  }
  
  .slide-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .slide-dot.active {
    background-color: white;
  }
  
  /* Media query for responsive text size */
  @media (max-width: 768px) {
    .hero-content h2 {
      font-size: 2rem;
    }
    
    .hero-content p {
      font-size: 1rem;
    }
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  /* Page Banner */
  .page-banner {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 100px 0 50px;
  }
  
  .page-banner h2 {
    color: white;
    margin-bottom: 10px;
    margin-top: 20px;
  }
  
  .page-banner p{
    margin-bottom: 0;
  }

  /* Sections */
  section {
    padding: 50px 0;
  }
  
  /* Welcome Section */
  .welcome-section {
    background-color: white;
  }
  
  .welcome-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .welcome-text {
    flex: 1;
  }
  
  .welcome-image {
    flex: 1;
  }
  
  .welcome-text .tagline {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  /* Services Overview */
  .services-overview {
    background-color: var(--light-color);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 30px;
  }
  
  .service-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
  }
  
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .service-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
  }
  
  .service-card h3 {
    margin-bottom: 10px;
  }
  
  .service-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
  }
  
  .services-cta {
    text-align: center;
    margin-top: 30px;
  }
  
  /* Why Choose Us */
  .why-choose-us {
    background-color: white;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 30px;
  }
  
  .feature {
    text-align: center;
    padding: 20px;
  }
  
  .feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
  }
  
  /* Recent Projects */
  .recent-projects {
    background-color: var(--light-color);
  }
  
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 30px;
  }
  
  .project-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
  }
  
  .project-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .project-info {
    padding: 20px;
  }
  
  .project-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
  }
  
  .projects-cta {
    text-align: center;
    margin-top: 30px;
  }
  
  /* Testimonials Preview */
  .testimonials-preview {
    background-color: white;
  }
  
  .testimonial {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .testimonial-content {
    margin-bottom: 15px;
  }
  
  .testimonial-author h4 {
    margin-bottom: 5px;
  }
  
  .testimonial-author p {
    color: #666;
    margin-bottom: 0;
  }
  
  .testimonials-cta {
    text-align: center;
    margin-top: 30px;
  }
  
  /* CTA Section */
  .cta-section {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 50px 0;
  }
  
  .cta-section h2 {
    color: white;
    margin-bottom: 15px;
  }
  
  .cta-section p {
    margin-bottom: 30px;
  }
  
  /* Footer */
  footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .footer-logo h3 {
    color: white;
    margin-bottom: 5px;
  }
  
  .footer-logo p {
    color: #ccc;
    margin-bottom: 0;
  }
  
  .footer-contact h4,
  .footer-links h4,
  .footer-social h4 {
    color: white;
    margin-bottom: 15px;
  }
  
  .footer-contact p {
    margin-bottom: 10px;
  }
  
  .footer-links ul li {
    margin-bottom: 10px;
  }
  
  .footer-links ul li a {
    color: #ccc;
  }
  
  .footer-links ul li a:hover {
    color: white;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
  }
  
  .social-icons 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: var(--transition);
  }
  
  .social-icons a:hover {
    background-color: var(--primary-color);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-bottom p {
    margin-bottom: 0;
    color: #ccc;
  }
  
  /* About Page */
  .about-intro {
    background-color: white;
  }
  
  .about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .about-text {
    flex: 1;
  }
  
  .about-image {
    flex: 1;
  }
  
  .mission-values {
    background-color: var(--light-color);
  }
  
  .mission {
    margin-bottom: 30px;
  }
  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  
  .value-item {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
    text-align: center;
  }
  
  .value-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
  }
  
  /* Services Page */
  .services-intro {
    background-color: white;
    text-align: center;
  }
  
  .services-grid-section {
    background-color: var(--light-color);
  }
  
  .service-item {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    overflow: hidden;
  }
  
  .service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  
  .service-content {
    padding: 20px;
  }
  
  .service-content h3 {
    margin-bottom: 15px;
  }
  
  .service-content h4 {
    margin: 20px 0 10px;
  }
  
  .service-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
  }
  
  .service-content ul li {
    margin-bottom: 5px;
    list-style-type: disc;
  }
  
  .custom-services {
    background-color: white;
    text-align: center;
  }
  
  .custom-services-cta {
    margin-top: 30px;
  }
  
  .service-process {
    background-color: var(--light-color);
  }
  
  .process-steps {
    margin-top: 30px;
  }
  
  .process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
  }
  
  .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
  }
  
  .step-content h3 {
    margin-bottom: 5px;
  }
  
  .step-content p {
    margin-bottom: 0;
  }
  
  /* Gallery Page */
  .gallery-intro {
    background-color: white;
    text-align: center;
  }
  
  .gallery-filter {
    background-color: white;
    padding-bottom: 0;
  }
  
  .filter-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
  }
  
  .filter-btn {
    padding: 8px 16px;
    background-color: var(--light-color);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
  }
  
  .filter-btn:hover,
  .filter-btn.active {
    background-color: var(--primary-color);
    color: white;
  }
  
  .gallery-grid {
    background-color: var(--light-color);
  }
  
  .gallery-items {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  
  .gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
  }
  
  .gallery-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
  }
  
  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }
  
  .gallery-item:hover .gallery-image img {
    transform: scale(1.1);
  }
  
  .overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
  }
  
  .overlay-content h3 {
    color: white;
    margin-bottom: 10px;
  }
  
  .view-project {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    margin-top: 15px;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .view-project:hover {
    background-color: var(--secondary-color);
  }
  
  .project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1002;
    overflow-y: auto;
  }
  
  .modal-content {
    position: relative;
    background-color: white;
    margin: 50px auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    border-radius: var(--border-radius);
  }
  
  .close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark-color);
  }
  
  .project-title {
    margin-bottom: 20px;
  }
  
  .main-project-image {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: var(--border-radius);
  }
  
  .image-thumbnails {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
  }
  
  .image-thumbnails img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius);
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
  }
  
  .image-thumbnails img.active,
  .image-thumbnails img:hover {
    opacity: 1;
  }
  
  .project-info h3 {
    margin-top: 20px;
  }
  
  .services-list {
    padding-left: 20px;
    margin-bottom: 20px;
  }
  
  .services-list li {
    margin-bottom: 5px;
    list-style-type: disc;
  }
  
  .client-testimonial {
    background-color: var(--light-color);
    padding: 15px;
    border-radius: var(--border-radius);
    font-style: italic;
  }
  
  .client-testimonial p:last-child {
    margin-bottom: 0;
    text-align: right;
    font-style: normal;
    font-weight: 600;
  }
  
  /* Testimonials Page */
  .testimonials-intro {
    background-color: white;
    text-align: center;
  }
  
  .testimonials-grid {
    background-color: var(--light-color);
  }
  
  .testimonials {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  
  .testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
  }
  
  .testimonial-content {
    margin-bottom: 20px;
  }
  
  .quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
  }
  
  .author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
  }
  
  .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .author-info h4 {
    margin-bottom: 5px;
  }
  
  .author-info p {
    color: #666;
    margin-bottom: 5px;
  }
  
  .rating {
    color: var(--accent-color);
  }
  
  .review-platforms {
    background-color: white;
  }
  
  .platforms-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 30px;
  }
  
  .platform {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
  }
  
  .platform-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
  }
  
  .platform-rating {
    margin: 15px 0;
  }
  
  .stars {
    color: var(--accent-color);
    margin-bottom: 5px;
  }
  
  .video-testimonials {
    background-color: var(--light-color);
  }
  
  .videos-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 30px;
  }
  
  .video-item {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
  }
  
  .video-thumbnail {
    position: relative;
  }
  
  .video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .play-button:hover {
    background-color: var(--primary-color);
  }
  
  .video-item h3 {
    padding: 15px 15px 5px;
  }
  
  .video-item p {
    padding: 0 15px 15px;
    margin-bottom: 0;
  }
  
  /* Contact Page */
  .contact-intro {
    background-color: white;
    text-align: center;
  }
  
  .contact-methods {
    background-color: white;
    padding-top: 0;
  }
  
  .contact-methods .container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  
  .contact-method {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
  }
  
  .contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
  }
  
  .contact-method h3 {
    margin-bottom: 10px;
  }
  
  .contact-method p {
    margin-bottom: 5px;
  }
  
  .contact-form {
    background-color: var(--light-color);
  }
  
  .contact-form-container {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
  }
  
  .form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
  }
  
  textarea.form-control {
    height: 150px;
    resize: vertical;
  }
  
  .map-section {
    background-color: white;
  }
  
  .map-container {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
  }
  
  .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }
  
  .business-hours {
    background-color: var(--light-color);
  }
  
  .hours-list {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
  }
  
  .hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
  }
  
  .hours-list li:last-child {
    border-bottom: none;
  }
  
  /* FAQ Section Styles */
  .faq-section {
    padding: 3rem 0;
    background-color: var(--light-color);
  }
  
  .faq-container {
    margin-top: 2rem;
  }
  
  .faq-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    margin-bottom: 1rem;
    overflow: hidden;
  }
  
  .faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
  }
  
  .faq-question:hover {
    background-color: rgba(30, 115, 190, 0.05);
  }
  
  .faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
  }
  
  .faq-toggle {
    color: var(--primary-color);
    font-size: 1.2rem;
  }
  
  .faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px; /* Adjust as needed */
  }
  
  .faq-answer p {
    margin: 0;
    color: #666;
  }
  
  /* Media Queries */
  @media (min-width: 576px) {
    .services-grid,
    .features-grid,
    .projects-grid,
    .values-grid,
    .gallery-items,
    .testimonials,
    .platforms-container,
    .videos-container,
    .contact-methods .container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 768px) {
    .logo h1 {
      font-size: 1.8rem;
    }
    
    .logo p {
      font-size: 0.9rem;
    }
    
    .hero-content h2 {
      font-size: 3rem;
    }
    
    .welcome-content,
    .about-content {
      flex-direction: row;
    }
    
    .services-grid,
    .features-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .faq-question h3 {
      font-size: 1.2rem;
    }
  }
  
  @media (min-width: 992px) {
    .footer-content {
      grid-template-columns: repeat(4, 1fr);
    }
    
    .projects-grid,
    .gallery-items,
    .platforms-container {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials,
    .videos-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1200px) {
    .gallery-items {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  /* Standardize image sizing */
  .standardized-image {
    width: 100%;
    height: 0;
    padding-bottom: 66.67%; /* 3:2 aspect ratio */
    position: relative;
    overflow: hidden;
  }
  
  .standardized-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Accessibility */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
  
  /* Focus styles for accessibility */
  a:focus,
  button:focus,
  input:focus,
  textarea:focus,
  select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
  }
  
  /* Animation for side nav */
  @keyframes slideIn {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(0);
    }
  }
  
  .side-nav.active {
    animation: slideIn 0.3s forwards;
  }