* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --secondary: #f8f9fa;
    --dark: #343a40;
    --light: #f8f9fa;
    --success: #28a745;
    --text: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
  }
  
  body {
    font-family: 'Lato', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: #fff;
    overflow-x: hidden;
  }
  
  a {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.3s ease;
  }
  
  a:hover {
    color: var(--primary-dark);
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  

  header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
  }
  
  .logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    margin-right: 10px;
    object-fit: cover;
  }
  
  .logo span {
    color: var(--primary);
  }
  
  .top-info {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--gray);
  }
  
  .top-info div {
    margin-left: 20px;
    display: flex;
    align-items: center;
  }
  
  .top-info svg.icon {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    stroke: var(--primary);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    vertical-align: middle;
  }
  
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
  }
  
  nav ul {
    display: flex;
    list-style: none;
  }
  
  nav ul li {
    margin-left: 30px;
  }
  
  nav ul li a {
    color: var(--dark);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
  }
  
  nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
  }
  
  nav ul li a:hover:after,
  nav ul li a.active:after {
    width: 100%;
  }
  
  nav ul li a.active {
    color: var(--primary);
  }
  
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  }
  
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
  }
  
  .hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(230, 57, 70, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
  }
  
  .hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  
  .shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    opacity: 0.1;
    transform-origin: center;
    animation: floatAnimation 15s infinite alternate ease-in-out;
  }
  
  .shape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
  }
  
  .shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
    animation-delay: 3s;
  }
  
  .shape-3 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 1.5s;
  }
  
  .shape-4 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    right: 20%;
    animation-delay: 4.5s;
  }
  
  @keyframes floatAnimation {
    0% {
      transform: translateY(0) scale(1);
    }
    50% {
      transform: translateY(20px) scale(1.05);
    }
    100% {
      transform: translateY(-20px) scale(0.95);
    }
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 100vh;
    padding-top: 80px;
  }
  
  .hero-text {
    color: #fff;
    text-align: left;
  }
  
  .hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
  }
  
  .hero-text h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--primary);
  }
  
  .hero-text h1 span {
    color: var(--primary);
  }
  
  .hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    opacity: 0.9;
  }
  
  .hero-text .hero-btns {
    display: flex;
    gap: 20px;
  }
  
  .btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: white;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
  }
  
  .btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
  }
  
  .btn:hover::before {
    width: 100%;
  }
  
  .btn-outline {
    background-color: transparent;
    color: white;
  }
  
  .btn-outline:hover {
    background-color: var(--primary);
  }
  
  .hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
  }
  
  .hero-stat {
    position: relative;
  }
  
  .hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
  }
  
  .hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .hero-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .floating-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    position: relative;
    animation: cardFloat 6s ease-in-out infinite;
    transform-style: preserve-3d;
  }
  
  @keyframes cardFloat {
    0% {
      transform: translateY(0) rotateY(0deg);
    }
    50% {
      transform: translateY(-10px) rotateY(2deg);
    }
    100% {
      transform: translateY(0) rotateY(0deg);
    }
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .card-icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
  }
  
  .floating-card h3 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
  }
  
  .card-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .card-item-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(230, 57, 70, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
  }
  
  .card-item-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--primary);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
  }
  
  .floating-card-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    background-color: var(--primary);
    bottom: -40px;
    right: -40px;
    z-index: -1;
    opacity: 0.1;
    transform: rotate(15deg);
    animation: accentFloat 8s ease-in-out infinite;
  }
  
  @keyframes accentFloat {
    0% {
      transform: rotate(15deg);
    }
    50% {
      transform: rotate(10deg);
    }
    100% {
      transform: rotate(15deg);
    }
  }
  
  .hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .particle {
    position: absolute;
    display: block;
    background-color: rgba(255, 255, 255, 0.3);
    width: 3px;
    height: 3px;
    border-radius: 50%;
  }
  

  .services {
    padding: 100px 0;
    background-color: white;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark);
  }
  
  .section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .service-card {
    background-color: #e4e4e4;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .service-card .icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: white;
    position: relative;
  }
  
  .service-card .icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    margin-right: 15px;
  }
  
  .service-card .content {
    padding: 20px;
  }
  
  .service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
  
  .about {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8e8e8 0%, #dadada 100%);
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
  }
  
  .about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .about-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
  }
  
  .about-text p {
    margin-bottom: 20px;
  }
  
  .stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
  }
  
  .stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
  }
  
  .testimonials {
    padding: 100px 0;
    background-color: white;
  }
  
  .testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
  }
  
  .testimonial {
    text-align: center;
    padding: 30px;
    display: none;
  }
  
  .testimonial.active {
    display: block;
  }
  
  .testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
  }
  
  .testimonial .author {
    color: var(--primary);
    font-weight: 600;
  }
  
  .testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  
  .testimonial-controls button {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    margin: 0 10px;
    transition: color 0.3s ease;
  }
  
  .testimonial-controls button:hover {
    color: var(--primary-dark);
  }
  
  .contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8e8e8 0%, #dadada 100%);
  }
  
  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  
  .contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .contact-info p {
    margin-bottom: 30px;
  }
  
  .contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .contact-method .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 0.9rem;
    width: 32px;
    height: 32px;
  }
  
  .contact-method .icon svg {
    width: 16px;
    height: 16px;
  }
  
  .contact-form .form-group {
    margin-bottom: 20px;
  }
  
  .contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
  }
  
  .contact-form textarea {
    height: 150px;
    resize: vertical;
  }
  

  footer {
    background-color: var(--dark);
    color: white;
    padding: 80px 0 30px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-column h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
  }
  
  .footer-column ul {
    list-style: none;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    color: #adb5bd;
    transition: color 0.3s ease;
  }
  
  .footer-column ul li a:hover {
    color: white;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  

  @media (max-width: 992px) {
    .hero-content {
      grid-template-columns: 1fr;
      gap: 60px;
      text-align: center;
      padding-top: 120px;
      padding-bottom: 60px;
    }
    
    .hero-text h1::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .hero-text p {
      margin: 0 auto 30px;
    }
    
    .hero-text .hero-btns {
      justify-content: center;
    }
    
    .hero-stats {
      justify-content: center;
    }
    
    .about-content {
      grid-template-columns: 1fr;
    }
    
    .work-experience {
      grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .contact-content {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {

    .container {
      padding: 0 25px;
    }
    
    .header-container {
      padding: 15px 0;
    }
    
    .nav-toggle {
      display: block;

      margin-right: 5px;
    }
    
    .logo {

      margin-left: 5px;
    }
    
    .top-info {
      display: none;
    }
    
    .qr-code-container {
      display: none;
    }
    
    nav {
      position: fixed;
      top: 80px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 80px);
      background-color: white;
      transition: left 0.3s ease;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    nav.active {
      left: 0;
    }
    
    nav ul {
      flex-direction: column;
      padding: 30px;
    }
    
    nav ul li {
      margin-left: 0;
      margin-bottom: 20px;
    }
    
    .hero-text h1 {
      font-size: 2.5rem;
    }
    
    .section-title h2 {
      font-size: 2rem;
    }
    
    .about-text h2 {
      font-size: 2rem;
    }
    
    .floating-card {
      max-width: 100%;
      margin: 0 20px;
    }
    
    .hero-stats {
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }
    
    .hero-stat {
      text-align: center;
    }
  }
  
  @media (max-width: 576px) {

    .container {
      padding: 0 30px;
    }
    
    .header-container {
      padding: 12px 0;
    }
    
    .nav-toggle {
      margin-right: 8px;
    }
    
    .logo {
      margin-left: 8px;
    }
    
    .hero-text h1 {
      font-size: 2rem;
    }
    
    .hero-text p {
      font-size: 1rem;
    }
    
    .hero-text .hero-btns {
      flex-direction: column;
      gap: 15px;
    }
    
    .btn {
      width: 100%;
      text-align: center;
    }
    
    .work-experience {
      grid-template-columns: 1fr !important;
    }
    
    .services,
    .about,
    .testimonials,
    .contact {
      padding: 70px 0;
    }
    
    .section-title {
      margin-bottom: 40px;
    }
    
    .service-card .content {
      padding: 20px;
    }
    
    .footer-content {
      grid-template-columns: 1fr;
    }
    
    .qr-code-small {
      width: 50px;
      height: 50px;
    }
    
    .qr-code-expanded img {
      width: 150px;
      height: 150px;
    }
  }
  

  .qr-code-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    transition: all 0.3s ease;
  }
  
  .qr-code-small {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }
  
  .qr-code-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .qr-code-expanded {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
  }
  
  .qr-code-container:hover .qr-code-expanded {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
    pointer-events: all;
  }
  
  .qr-code-container:hover .qr-code-small {
    opacity: 0;
    transform: scale(0.8);
  }
  
  .qr-code-expanded img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
  }
  
  .qr-code-text {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 500;
  }
  
  .qr-code-text svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    stroke: var(--primary);
  }