:root {
    --primary-color: #0a1a2f;
    --secondary-color: #ff6b6b;
    --accent-color: #ff6b6b;
    --text-color: #2d3748;
    --bg-light: #f8fafc;
    --transition: all 0.3s ease-in-out;
  }
  
  body {
    font-family: "Inter", sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 16px;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  /* Navigation Bar */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--primary-color);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
  }
  
  nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.5), transparent);
    animation: shine 10s linear infinite;
    z-index: -1;
  }
  
  /* Logo */
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo-img {
    height: 40px; /* Default size for desktop */
    width: auto;
    margin-right: 10px;
    transition: height 0.3s ease; /* Smooth transition */
  }
  
  .shining-text {
    font-size: 1.8rem; /* More responsive font size */
    font-weight: bold;
    color: var(--secondary-color);
    position: relative;
    transition: font-size 0.3s ease; /* Smooth transition */
  }
  
  .shining-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    animation: shine 10s linear infinite;
    z-index: -1;
  }
  
  @keyframes shine {
    0% {
      left: -100%;
    }
    100% {
      left: 100%;
    }
  }
  
  /* Navigation Links */
  .nav-links {
    list-style: none;
    display: flex;
    gap: clamp(20px, 4vw, 50px); /* Responsive gap */
    margin: 0;
    padding: 0;
  }
  
  .nav-links li a {
    color: white;
    text-decoration: none;
    font-size: clamp(1rem, 1.5vw, 1.25rem); /* Responsive font size */
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  .nav-links li a:hover {
    color: var(--accent-color);
  }
  
  /* Burger Menu */
  .burger {
    display: none;
    cursor: pointer;
  }
  
  .burger div {
    width: 30px;
    height: 4px;
    background-color: white;
    margin: 6px;
    transition: var(--transition);
  }
  
  /* Show Burger Menu when screen is reduced */
  @media (max-width: 768px) {
    nav {
      padding: 0.8rem 1rem;
    }
  
    /* Smaller Logo and Text for Mobile */
    .logo-img {
      height: 30px; /* Smaller logo for mobile */
    }
  
    .shining-text {
      font-size: 1rem; /* Smaller text for mobile */
    }
  
    .nav-links {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: var(--primary-color);
      flex-direction: column;
      align-items: center;
      gap: 0;
      padding: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease;
    }
  
    .nav-links.active {
      max-height: 300px; /* Enough height for all items */
      padding: 1rem 0;
    }
  
    .nav-links li {
      width: 100%;
      text-align: center;
      padding: 0.5rem 0;
    }
  
    .burger {
      display: block;
    }
  
    /* Burger Animation */
    .burger.active div:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }
  
    .burger.active div:nth-child(2) {
      opacity: 0;
    }
  
    .burger.active div:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }
  }
  
  @media (max-width: 480px) {
    .shining-text {
      font-size: 0.9rem; /* Even smaller text for very small screens */
    }
  
    .nav-links li a {
      font-size: 0.9rem;
    }
  }
  
  /* Fluid Hero Section */
  /* Base Styles */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0; /* Remove top margin */
    padding-top: 70px; /* Add padding to account for fixed navbar */
  }
  
  .mobile-image {
    display: none;
    width: 100%;
    height: auto; /* Let height adjust automatically */
    object-fit: cover;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem;
  }
  
  .hero-text {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center; /* Center text on all devices */
  }
  
  .hero-text h1 {
    font-size: clamp(2rem, 5vw, 4rem); /* Responsive font size */
    line-height: 1.2; /* Improved line height */
    margin-bottom: clamp(1.5rem, 3vw, 5rem);
    color: white;
  }
  
  .hero-text p {
    font-size: clamp(1rem, 2vw, 1.5rem); /* Responsive font size */
    margin-bottom: clamp(1.5rem, 3vw, 3rem);
    color: rgba(255, 255, 255, 0.9);
  }
  
  .cta-container {
    display: flex;
    gap: clamp(10px, 2vw, 15px); /* Fluid gap */
    justify-content: center;
    flex-wrap: wrap; /* Wrap buttons on narrow screens */
  }
  
  .cta-button {
    padding: clamp(8px, 2vw, 12px) clamp(16px, 4vw, 24px); /* Fluid padding */
    font-size: clamp(0.9rem, 3vw, 1.2rem); /* Scales between 0.9rem-1.2rem */
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    color: white;
    transition: var(--transition);
    background: var(--secondary-color);
    border: none;
    min-width: 140px; /* Ensure tap-target size (WCAG compliance) */
  }
  
  .cta-button.secondary {
    background: transparent;
    border: 2px solid white;
  }
  
  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
  }
  
  /* Desktop Background Setup */
  @media (min-width: 768px) {
    .hero {
      background: linear-gradient(rgba(10, 26, 47, 0.8), rgba(10, 26, 47, 0.8)), url("images/banner3.jpg") center;
      background-size: cover;
    }
  
    .hero-content {
      padding: 0 5rem;
    }
  }
  
  /* Mobile Layout */
  @media (max-width: 767px) {
    .hero {
      flex-direction: column;
      min-height: auto;
      background: none;
      padding-top: 60px; /* Adjust for smaller navbar */
    }
  
    .mobile-image {
      display: block;
      width: 100%;
      height: auto;
      max-height: 40vh; /* Limit height on mobile */
      object-fit: cover;
    }
  
    .hero-content {
      background: #0a1a2f;
      padding: 2rem 1.5rem;
    }
  
    .hero-text h1 {
      font-size: 1.8rem;
      color: #ff6b6b;
      margin-bottom: 1rem;
    }
  
    .hero-text p {
      font-size: 1rem;
      color: white;
      margin-bottom: 1.5rem;
    }
  
    .cta-container {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
  
    .cta-button {
      text-align: center;
      font-size: 1rem;
      width: 100%;
      max-width: 250px;
    }
  }
  
  /*Services*/
  #services {
    padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 1.5rem); /* Responsive padding */
    background-color: #f8f9fa;
    text-align: center;
    height: auto;
    min-height: 100vh;
  }
  
  #services h2 {
    font-family: Roboto, sans-serif;
    font-size: clamp(2rem, 5vw, 3rem); /* Responsive font size */
    color: #0a1a2f;
    margin-bottom: clamp(1rem, 3vw, 2rem);
  }
  
  #services h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: #ff6b6b;
    margin: 10px auto 0;
  }
  
  .services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1rem, 3vw, 2rem);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }
  
  .service {
    background: white;
    padding: clamp(1rem, 3vw, 1.5rem);
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 100%;
    margin: 10px auto;
    height: 100%; /* Make all cards the same height */
    display: flex;
    flex-direction: column;
  }
  
  .service:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  
  .service:before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    opacity: 0.1;
    z-index: 0;
    transition: var(--transition);
  }
  
  .service:hover:before {
    transform: rotate(45deg);
  }
  
  .service figure {
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
  }
  
  .service img {
    width: clamp(60px, 10vw, 80px);
    height: clamp(60px, 10vw, 80px);
    object-fit: contain;
    margin: 0 auto 1rem;
  }
  
  .service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
  }
  
  .service h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 0.75rem;
    color: var(--primary-color);
  }
  
  .service p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #2d3748;
    line-height: 1.6;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .services-container {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }
  
    .service {
      padding: 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    #services h2 {
      font-size: 1.75rem;
    }
  
    .service h3 {
      font-size: 1.25rem;
    }
  
    .service p {
      font-size: 0.9rem;
    }
  }
  
  /* Contact Section */
  #contact {
    padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 3vw, 2rem);
    background-color: #f8f9fa;
    text-align: center;
  }
  
  #contact h2 {
    font-family: Roboto, sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #0a1a2f;
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  }
  
  #contact h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ff6b6b;
    margin: 10px auto 0;
  }
  
  #contactForm {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
  }
  
  .form-group label {
    display: block;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #0a1a2f;
    margin-bottom: 0.5rem;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: clamp(0.9rem, 2vw, 1rem);
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #00c2cb;
  }
  
  .form-group textarea {
    resize: vertical;
  }
  
  button[type="submit"] {
    background-color: #ff6b6b;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: auto;
  }
  
  button[type="submit"]:hover {
    background-color: #e55c5c;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    #contactForm {
      padding: 1.5rem;
    }
  
    button[type="submit"] {
      width: 100%;
      padding: 10px;
    }
  }
  
  /* Image Optimization */
  img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
  }
  
  picture {
    display: block;
  }
  
  .lazy-load {
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .lazy-load.loaded {
    opacity: 1;
  }
  
  /* FAQ Section */
  .faq-section {
    background: #f8f9fa;
    padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 3vw, 2rem);
    text-align: center;
    font-family: "Inter", sans-serif;
    height: auto;
    min-height: 80vh;
  }
  
  /* Heading styling */
  .faq-section h2 {
    font-family: Roboto, sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    color: #0a1a2f;
    position: relative;
  }
  
  .faq-section h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ff6b6b;
    margin: 10px auto 0;
  }
  
  /* Container for FAQ items */
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
  }
  
  /* Each FAQ item */
  .faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease-in-out;
  }
  
  /* Question button */
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    color: #0a1a2f;
    transition: color 0.3s ease-in-out;
  }
  
  .faq-question:hover {
    color: #ff6b6b;
  }
  
  /* FAQ Icon */
  .icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease-in-out;
  }
  
  /* Hidden Answer */
  .faq-answer {
    display: none;
    padding: 0 1rem 1rem;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #444;
    line-height: 1.5;
  }
  
  /* When item is active */
  .faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  .faq-item.active .icon {
    transform: rotate(45deg);
  }
  
  /* Responsive Fixes */
  @media (max-width: 768px) {
    .faq-section {
      padding: 3rem 1rem;
    }
  
    .faq-question {
      padding: 0.75rem;
    }
  }
  
  @media (max-width: 480px) {
    .faq-section h2 {
      font-size: 1.75rem;
    }
  
    .faq-question {
      font-size: 1rem;
    }
  
    .faq-answer {
      font-size: 0.9rem;
    }
  }
  
  /* Smooth fade-in effect */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-5px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Premium Footer Styles */
  .premium-footer {
    background: #0a1a2f;
    color: #fff;
    padding: clamp(2rem, 5vw, 4rem) 0 clamp(1rem, 3vw, 2rem);
    font-family: "Inter", sans-serif;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1.5rem, 4vw, 3rem);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
  }
  
  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-logo {
    width: clamp(120px, 15vw, 180px);
    height: auto;
    filter: invert(1) contrast(2);
  }
  
  .footer-slogan {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
  }
  
  .trust-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .trust-badges img {
    height: 40px;
    width: auto;
    opacity: 0.9;
  }
  
  .footer-nav h4,
  .footer-contact h4,
  .footer-social h4,
  .footer-map h4 {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
  }
  
  .footer-nav ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.8rem;
  }
  
  .footer-nav a {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .footer-nav a:hover {
    color: #ff6b6b;
    padding-left: 5px;
  }
  
  .footer-contact p {
    font-size: clamp(0.9rem, 2vw, 1rem);
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
  }
  
  .contact-item i {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #ff6b6b;
    width: 30px;
    text-align: center;
    margin-top: 0.2rem;
  }
  
  .social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255, 255, 255);
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    transform: translateY(-3px);
    background: #ff6b6b;
  }
  
  .newsletter {
    position: relative;
    margin-top: 1.5rem;
  }
  
  .newsletter input {
    width: 100%;
    padding: 12px 20px;
    border-radius: 30px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
  }
  
  .subscribe-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #ff6b6b;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .subscribe-btn:hover {
    transform: scale(1.1);
  }
  
  /* Footer Map */
  .footer-map {
    grid-column: span 2;
  }
  
  .footer-map iframe {
    width: 100%;
    height: clamp(200px, 30vw, 300px);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .footer-legal {
    text-align: center;
    margin-top: clamp(2rem, 5vw, 4rem);
    padding-top: clamp(1rem, 3vw, 2rem);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(0.8rem, 2vw, 1rem);
  }
  
  .legal-links {
    margin-top: 1rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 1rem;
  }
  
  .legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .legal-links a:hover {
    color: #ff6b6b;
  }
  
  /* Responsive Footer */
  @media (max-width: 992px) {
    .footer-map {
      grid-column: span 1;
    }
  }
  
  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
    }
  
    .legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .footer-grid {
      grid-template-columns: 1fr;
    }
  
    .social-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  /* Testimonial Section */
  .testimonial-section {
    position: relative;
    text-align: center;
    padding: clamp(3rem, 8vw, 10rem) clamp(1rem, 3vw, 2rem);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  /* Background Image */
  .testimonial-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("images/emoji.png") no-repeat center center;
    background-size: cover;
    z-index: 0;
  }
  
  /* Overlay Effect */
  .testimonial-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 238, 0, 0.303);
  }
  
  /* Content Above Background */
  .testimonial-content {
    position: relative;
    z-index: 1;
    width: clamp(80%, 90%, 95%);
    max-width: 900px;
  }
  
  .testimonial-section h2 {
    font-family: Roboto, sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--primary-color);
    margin-bottom: clamp(1rem, 3vw, 2rem);
  }
  
  .testimonial-section h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ff6b6b;
    margin: 10px auto 0;
  }
  
  .testimonial-slider {
    position: relative;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
  }
  
  .testimonial-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
  }
  
  .testimonial-card {
    background: white;
    padding: clamp(1.5rem, 4vw, 3rem);
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    text-align: center;
    transition: opacity 0.3s ease-in-out;
    width: 100%;
    max-width: 800px;
  }
  
  .testimonial-text {
    font-style: italic;
    color: var(--text-color);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin-bottom: 1.5rem;
  }
  
  .author-info h4 {
    color: var(--primary-color);
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 0.5rem;
  }
  
  .author-info p {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    color: #666;
  }
  
  .prev-btn,
  .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }
  
  .prev-btn {
    left: 10px;
  }
  .next-btn {
    right: 10px;
  }
  
  .prev-btn:hover,
  .next-btn:hover {
    background: var(--secondary-color);
  }
  
  /* Mobile and Small Screen Adjustments */
  @media (max-width: 768px) {
    .testimonial-section {
      padding: 3rem 1rem;
      height: auto;
    }
  
    .testimonial-card {
      padding: 1.5rem;
    }
  
    .prev-btn,
    .next-btn {
      width: 35px;
      height: 35px;
      font-size: 16px;
    }
  }
  
  @media (max-width: 480px) {
    .testimonial-text {
      font-size: 0.9rem;
    }
  
    .author-info h4 {
      font-size: 0.9rem;
    }
  
    .author-info p {
      font-size: 0.8rem;
    }
  }
  
  /* About Us Section */
  #about {
    padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 3vw, 2rem);
    background-color: #f8f9fa;
    text-align: center;
    height: auto;
    min-height: 100vh;
  }
  
  /* About Section Heading */
  #about h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-family: Roboto, sans-serif;
    color: #0a1a2f;
    position: relative;
    display: inline-block;
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  }
  
  #about h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ff6b6b;
    margin: 10px auto 0;
  }
  
  /* Content Wrapper */
  .about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: clamp(2rem, 5vw, 5rem);
    flex-wrap: wrap;
  }
  
  /* Left Side - Text Content */
  .about-text {
    flex: 1;
    text-align: left;
    min-width: 300px;
  }
  
  .about-text h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #0a1a2f;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }
  
  .about-text p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #2d3748;
    line-height: 1.8;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }
  
  /* Feature List */
  .about-features {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .about-features li {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #2d3748;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
  }
  
  .about-features li .icon {
    color: #00c2cb;
    margin-right: 10px;
    font-size: 1.2rem;
  }
  
  /* Right Side - Image */
  .about-image {
    flex: 1;
    text-align: right;
    min-width: 300px;
  }
  
  .about-image img {
    max-width: 100%;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: block;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .about-content {
      gap: 3rem;
    }
  }
  
  @media (max-width: 768px) {
    .about-content {
      flex-direction: column-reverse;
      gap: 2rem;
    }
  
    .about-text {
      text-align: center;
    }
  
    .about-features li {
      justify-content: center;
    }
  
    .about-image {
      text-align: center;
    }
  }
  
  /* Scroll Top Button */
  .scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--secondary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1001;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .scroll-top.visible {
    opacity: 1;
    visibility: visible;
  }
  
  @media (max-width: 768px) {
    .scroll-top {
      width: 40px;
      height: 40px;
      bottom: 1.5rem;
      right: 1.5rem;
    }
  }
  
  /* Animation Classes */
  .scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  