      :root {
        --primary-red: #dc2626;
        --dark-red: #b91c1c;
        --light-red: #fee2e2;
        --pure-white: #ffffff;
        --off-white: #f9fafb;
        --pure-black: #000000;
        --dark-gray: #111827;
        --medium-gray: #374151;
        --light-gray: #6b7280;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Poppins", sans-serif;
        line-height: 1.6;
        color: var(--dark-gray);
        overflow-x: hidden;
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      /* Header Styles */
      .header {
        background: var(--pure-white);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        transition: all 0.3s ease;
      }

      .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
      }

      .logo {
        display: flex;
        align-items: center;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary-red);
      }

      .logo i {
        margin-right: 0.5rem;
        font-size: 2rem;
      }

      .nav-menu {
        display: flex;
        list-style: none;
        gap: 2rem;
      }

      .nav-menu a {
        text-decoration: none;
        color: var(--dark-gray);
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
      }

      .nav-menu a:hover,
      .nav-menu a.active {
        color: var(--primary-red);
      }

      .nav-menu a::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -5px;
        left: 50%;
        background: var(--primary-red);
        transition: all 0.3s ease;
        transform: translateX(-50%);
      }

      .nav-menu a:hover::after,
      .nav-menu a.active::after {
        width: 100%;
      }

      .contact-btn {
        background: var(--primary-red);
        color: var(--pure-white);
        padding: 0.8rem 1.5rem;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
      }

      .contact-btn:hover {
        background: var(--dark-red);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
      }

      .mobile-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--dark-gray);
        cursor: pointer;
      }

      /* Hero Section */
      .hero {
        background: linear-gradient(
          135deg,
          var(--pure-black) 0%,
          var(--dark-gray) 100%
        );
        color: var(--pure-white);
        padding: 150px 0 100px;
        position: relative;
        overflow: hidden;
      }

      .hero::before {
        content: "";
        position: absolute;
        top: 0;
        right: -10%;
        width: 60%;
        height: 100%;
        background: var(--primary-red);
        transform: skewX(-15deg);
        opacity: 0.1;
      }

      .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        position: relative;
        z-index: 2;
      }

      .hero-text h1 {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        line-height: 1.1;
      }

      .hero-text .highlight {
        color: var(--primary-red);
      }

      .hero-text p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        line-height: 1.8;
      }

      .hero-buttons {
        display: flex;
        gap: 1rem;
      }

      .btn-primary {
        background: var(--primary-red);
        color: var(--pure-white);
        padding: 1rem 2rem;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
      }

      .btn-primary:hover {
        background: var(--dark-red);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
      }

      .btn-secondary {
        background: transparent;
        color: var(--pure-white);
        padding: 1rem 2rem;
        border: 2px solid var(--pure-white);
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
      }

      .btn-secondary:hover {
        background: var(--pure-white);
        color: var(--dark-gray);
      }

      .hero-image {
        text-align: center;
      }

      .hero-image img {
        max-width: 100%;
        height: auto;
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
      }

      /* About Section */
      .about {
        background: var(--off-white);
        padding: 100px 0;
      }

      .section-header {
        text-align: center;
        margin-bottom: 4rem;
      }

      .section-header .subtitle {
        color: var(--primary-red);
        font-weight: 600;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
      }

      .section-header h2 {
        font-size: 2.8rem;
        font-weight: 700;
        color: var(--dark-gray);
        margin-bottom: 1rem;
      }

      .section-header p {
        font-size: 1.1rem;
        color: var(--light-gray);
        max-width: 600px;
        margin: 0 auto;
      }

      .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
      }

      .about-text h3 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: var(--dark-gray);
      }

      .about-text p {
        margin-bottom: 2rem;
        color: var(--medium-gray);
        line-height: 1.8;
      }

      .feature-list {
        list-style: none;
      }

      .feature-list li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1.5rem;
        color: var(--medium-gray);
      }

      .feature-list i {
        color: var(--primary-red);
        font-size: 1.2rem;
        margin-right: 1rem;
        margin-top: 0.2rem;
        flex-shrink: 0;
      }

      .about-stats {
        background: var(--pure-white);
        padding: 3rem;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
      }

      .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }

      .stat-item {
        text-align: center;
      }

      .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--primary-red);
        margin-bottom: 0.5rem;
      }

      .stat-label {
        color: var(--medium-gray);
        font-weight: 500;
      }

      /* Services Section */
      .services {
        padding: 100px 0;
        background: var(--pure-white);
      }

      .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
      }

      .service-card {
        background: var(--pure-white);
        padding: 2.5rem;
        border-radius: 20px;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid #e5e7eb;
        position: relative;
        overflow: hidden;
      }

      .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--primary-red);
        transform: scaleX(0);
        transition: transform 0.3s ease;
      }

      .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
      }

      .service-card:hover::before {
        transform: scaleX(1);
      }

      .service-icon {
        width: 80px;
        height: 80px;
        background: var(--light-red);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        transition: all 0.3s ease;
      }

      .service-card:hover .service-icon {
        background: var(--primary-red);
        color: var(--pure-white);
        transform: scale(1.1);
      }

      .service-icon i {
        font-size: 2rem;
        color: var(--primary-red);
        transition: color 0.3s ease;
      }

      .service-card:hover .service-icon i {
        color: var(--pure-white);
      }

      .service-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--dark-gray);
      }

      .service-card p {
        color: var(--medium-gray);
        line-height: 1.6;
      }

      /* Testimonials Section */
      .testimonials {
        background: var(--dark-gray);
        color: var(--pure-white);
        padding: 100px 0;
      }

      .testimonials .section-header h2,
      .testimonials .section-header .subtitle {
        color: var(--pure-white);
      }

      .testimonials .section-header .subtitle {
        color: var(--primary-red);
      }

      .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
      }

      .testimonial-card {
        background: rgba(255, 255, 255, 0.05);
        padding: 2.5rem;
        border-radius: 20px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
      }

      .testimonial-content {
        margin-bottom: 2rem;
        font-style: italic;
        line-height: 1.8;
      }

      .testimonial-author {
        display: flex;
        align-items: center;
        gap: 1rem;
      }

      .author-avatar {
        width: 50px;
        height: 50px;
        background: var(--primary-red);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--pure-white);
        font-weight: 700;
        font-size: 1.2rem;
      }

      .author-info h4 {
        font-weight: 600;
        margin-bottom: 0.2rem;
      }

      .author-info p {
        color: var(--light-gray);
        font-size: 0.9rem;
      }

      /* Contact Section */
      .contact {
        background: var(--off-white);
        padding: 100px 0;
      }

      .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
      }

      .contact-info h3 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 2rem;
        color: var(--dark-gray);
      }

      .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 2rem;
      }

      .contact-icon {
        width: 50px;
        height: 50px;
        background: var(--primary-red);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        flex-shrink: 0;
      }

      .contact-icon i {
        color: var(--pure-white);
        font-size: 1.2rem;
      }

      .contact-details h4 {
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: var(--dark-gray);
      }

      .contact-details p {
        color: var(--medium-gray);
      }

      .contact-details a {
        color: var(--primary-red);
        text-decoration: none;
      }

      .contact-form {
        background: var(--pure-white);
        padding: 3rem;
        border-radius: 20px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
      }

      .form-group {
        margin-bottom: 1.5rem;
      }

      .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: var(--dark-gray);
      }

      .form-group input,
      .form-group textarea {
        width: 100%;
        padding: 1rem;
        border: 2px solid #e5e7eb;
        border-radius: 10px;
        font-size: 1rem;
        transition: border-color 0.3s ease;
      }

      .form-group input:focus,
      .form-group textarea:focus {
        outline: none;
        border-color: var(--primary-red);
      }

      .form-group textarea {
        resize: vertical;
        min-height: 120px;
      }

      /* Footer */
      .footer {
        background: white;
        color: var(--pure-white);
        padding: 60px 0 30px;
      }

      .footer-content {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
      }

      .footer-section h3 {
        color: var(--primary-red);
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
        font-weight: 700;
      }

      .footer-section p {
        margin-bottom: 1.5rem;
        line-height: 1.8;
        color: #9ca3af;
      }

      .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
        color: black;
        font-weight: 600;
      }

      .footer-section ul {
        list-style: none;
      }

      .footer-section ul li {
        margin-bottom: 0.8rem;
      }

      .footer-section ul li a {
        color: rgb(61, 59, 59);
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .footer-section ul li a:hover {
        color: var(--primary-red);
      }

      .footer-bottom {
        border-top: 1px solid #374151;
        padding-top: 2rem;
        text-align: center;
        color: #262627;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .mobile-toggle {
          display: block;
        }

        .nav-menu {
          display: none;
          position: absolute;
          top: 100%;
          left: 0;
          width: 100%;
          background: var(--pure-white);
          flex-direction: column;
          padding: 1rem;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .nav-menu.active {
          display: flex;
        }

        .hero-content {
          grid-template-columns: 1fr;
          text-align: center;
        }

        .hero-text h1 {
          font-size: 2.5rem;
        }

        .about-content,
        .contact-content {
          grid-template-columns: 1fr;
        }

        .stats-grid {
          grid-template-columns: 1fr;
        }

        .footer-content {
          grid-template-columns: 1fr;
        }

        .hero-buttons {
          flex-direction: column;
          align-items: center;
        }
      }

      /* Animations */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .fade-in-up {
        animation: fadeInUp 0.6s ease-out;
      }

      /* Smooth scrolling */
      html {
        scroll-behavior: smooth;
      }