                                                            :root {
                                                               --primary-color: #000000;
                                                               --secondary-color: rgb(189, 163, 18);
                                                               --accent-color: #FFFFFF;
                                                               --light-color: #F5F5F5;
                                                               --dark-color: #1A1A1A;
                                                               --text-color: #333333;
                                                               --text-light: #777777;
                                                               --section-padding: 100px 0;
                                                           }
                                                           
                                                           * {
                                                               margin: 0;
                                                               padding: 0;
                                                               box-sizing: border-box;
                                                           }
                                                           
                                                           body {
                                                               font-family: 'Poppins', sans-serif;
                                                               color: var(--text-color);
                                                               line-height: 1.6;
                                                               overflow-x: hidden;
                                                               background-color: var(--accent-color);
                                                           }
                                                           
                                                           .container {
                                                               width: 100%;
                                                               max-width: 1200px;
                                                               margin: 0 auto;
                                                               padding: 0 20px;
                                                           }
                                                           /* Header */
                                                           
                                                           header {
                                                               background-color: var(--primary-color);
                                                               position: fixed;
                                                               width: 100%;
                                                               z-index: 1000;
                                                               box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
                                                               transition: all 0.3s ease;
                                                           }
                                                           
                                                           header.scrolled {
                                                               padding: 10px 0;
                                                               box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
                                                           }
                                                           
                                                           nav {
                                                               display: flex;
                                                               justify-content: space-between;
                                                               align-items: center;
                                                               padding: 20px 0;
                                                           }
                                                           
                                                           .logo {
                                                               font-size: 28px;
                                                               font-weight: 800;
                                                               color: var(--accent-color);
                                                               text-decoration: none;
                                                           }
                                                           
                                                           .logo span {
                                                               color: var(--secondary-color);
                                                           }
                                                           
                                                           .nav-links {
                                                               display: flex;
                                                               list-style: none;
                                                           }
                                                           
                                                           .nav-links li {
                                                               margin-left: 30px;
                                                           }
                                                           
                                                           .nav-links a {
                                                               text-decoration: none;
                                                               color: var(--accent-color);
                                                               font-weight: 600;
                                                               transition: all 0.3s;
                                                               position: relative;
                                                               font-size: 16px;
                                                           }
                                                           
                                                           .nav-links a::after {
                                                               content: '';
                                                               position: absolute;
                                                               width: 0;
                                                               height: 2px;
                                                               background: var(--secondary-color);
                                                               bottom: -5px;
                                                               left: 0;
                                                               transition: width 0.3s;
                                                           }
                                                           
                                                           .nav-links a:hover {
                                                               color: var(--secondary-color);
                                                           }
                                                           
                                                           .nav-links a:hover::after {
                                                               width: 100%;
                                                           }
                                                           
                                                           .menu-toggle {
                                                               display: none;
                                                               cursor: pointer;
                                                               font-size: 24px;
                                                               color: white;
                                                           }
                                                           /* Hero Section - Diseño*/
                                                           
                                                           .hero {
                                                               min-height: 100vh;
                                                               display: flex;
                                                               align-items: center;
                                                               padding: 150px 0 80px;
                                                               background-color: var(--primary-color);
                                                               position: relative;
                                                               overflow: hidden;
                                                           }
                                                           
                                                           .hero::before {
                                                               content: '';
                                                               position: absolute;
                                                               top: 0;
                                                               left: 0;
                                                               width: 100%;
                                                               height: 100%;
                                                               background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 40%, rgba(0, 0, 0, 0.5) 100%);
                                                               z-index: 1;
                                                           }
                                                           
                                                           .hero-container {
                                                               display: flex;
                                                               width: 100%;
                                                               align-items: center;
                                                               position: relative;
                                                               z-index: 2;
                                                           }
                                                           
                                                           .hero-content {
                                                               flex: 1;
                                                               padding-right: 50px;
                                                               color: var(--accent-color);
                                                           }
                                                           
                                                           .hero-content h1 {
                                                               font-size: 52px;
                                                               margin-bottom: 25px;
                                                               font-weight: 800;
                                                               line-height: 1.2;
                                                               text-transform: uppercase;
                                                           }
                                                           
                                                           .hero-content h1 span {
                                                               color: var(--secondary-color);
                                                           }
                                                           
                                                           .hero-content p {
                                                               font-size: 18px;
                                                               margin-bottom: 40px;
                                                               color: rgba(255, 255, 255, 0.8);
                                                               max-width: 500px;
                                                           }
                                                           
                                                           .hero-btns {
                                                               display: flex;
                                                               gap: 20px;
                                                               margin-bottom: 40px;
                                                           }
                                                           
                                                           .hero-contact {
                                                               display: flex;
                                                               gap: 30px;
                                                           }
                                                           
                                                           .hero-contact-item {
                                                               display: flex;
                                                               align-items: center;
                                                               gap: 10px;
                                                           }
                                                           
                                                           .hero-contact-item i {
                                                               color: var(--secondary-color);
                                                               font-size: 20px;
                                                           }
                                                           
                                                           .hero-contact-item p {
                                                               margin: 0;
                                                               font-weight: 600;
                                                           }
                                                           
                                                           .hero-image {
                                                               flex: 1;
                                                               position: relative;
                                                               height: 100%;
                                                               min-height: 500px;
                                                           }
                                                           
                                                           .hero-image img {
                                                               width: 100%;
                                                               height: 100%;
                                                               object-fit: contain;
                                                               object-position: right;
                                                               animation: float 6s ease-in-out infinite;
                                                           }
                                                           
                                                           @keyframes float {
                                                               0% {
                                                                   transform: translateY(0px);
                                                               }
                                                               50% {
                                                                   transform: translateY(-20px);
                                                               }
                                                               100% {
                                                                   transform: translateY(0px);
                                                               }
                                                           }
                                                           /* Botones */
                                                           
                                                           .btn {
                                                               display: inline-flex;
                                                               align-items: center;
                                                               justify-content: center;
                                                               padding: 15px 35px;
                                                               background-color: var(--secondary-color);
                                                               color: white;
                                                               border: none;
                                                               border-radius: 5px;
                                                               text-decoration: none;
                                                               font-weight: 600;
                                                               transition: all 0.3s;
                                                               cursor: pointer;
                                                               text-transform: uppercase;
                                                               letter-spacing: 1px;
                                                               font-size: 14px;
                                                               box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
                                                           }
                                                           
                                                           .btn:hover {
                                                               transform: translateY(-5px);
                                                               box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
                                                               background-color: #e60000;
                                                           }
                                                           
                                                           .btn-outline {
                                                               background-color: transparent;
                                                               border: 2px solid var(--accent-color);
                                                               color: var(--accent-color);
                                                               box-shadow: none;
                                                           }
                                                           
                                                           .btn-outline:hover {
                                                               background-color: var(--accent-color);
                                                               color: var(--primary-color);
                                                               border-color: var(--accent-color);
                                                           }
                                                           
                                                           .btn i {
                                                               margin-left: 8px;
                                                           }
                                                           /* Secciones */
                                                           
                                                           .section {
                                                               padding: var(--section-padding);
                                                           }
                                                           
                                                           .section-title {
                                                               text-align: center;
                                                               margin-bottom: 60px;
                                                           }
                                                           
                                                           .section-title h2 {
                                                               font-size: 36px;
                                                               color: var(--primary-color);
                                                               margin-bottom: 15px;
                                                               font-weight: 800;
                                                               text-transform: uppercase;
                                                               position: relative;
                                                               display: inline-block;
                                                           }
                                                           
                                                           .section-title h2::after {
                                                               content: '';
                                                               position: absolute;
                                                               width: 50%;
                                                               height: 3px;
                                                               background: var(--secondary-color);
                                                               bottom: -10px;
                                                               left: 25%;
                                                           }
                                                           
                                                           .section-title h2 span {
                                                               color: var(--secondary-color);
                                                           }
                                                           
                                                           .section-title p {
                                                               color: var(--text-light);
                                                               max-width: 700px;
                                                               margin: 0 auto;
                                                               font-size: 18px;
                                                           }
                                                           /* About Section */
                                                           
                                                           .about {
                                                               background-color: var(--accent-color);
                                                           }
                                                           
                                                           .about-content {
                                                               display: flex;
                                                               align-items: center;
                                                               gap: 50px;
                                                           }
                                                           
                                                           .about-text {
                                                               flex: 1;
                                                           }
                                                           
                                                           .about-text h3 {
                                                               font-size: 28px;
                                                               margin-bottom: 20px;
                                                               color: var(--primary-color);
                                                           }
                                                           
                                                           .about-text p {
                                                               margin-bottom: 20px;
                                                               color: var(--text-light);
                                                           }
                                                           
                                                           .about-image {
                                                               flex: 1;
                                                               border-radius: 10px;
                                                               overflow: hidden;
                                                               box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
                                                           }
                                                           
                                                           .about-image img {
                                                               width: 100%;
                                                               height: auto;
                                                               display: block;
                                                               transition: transform 0.5s;
                                                           }
                                                           
                                                           .about-image:hover img {
                                                               transform: scale(1.05);
                                                           }
                                                           /*servicios*/
                                                           /* SERVICES SECTION */
                                                           
                                                           .services {
                                                               padding: 60px 20px;
                                                               background: #f8f9fa;
                                                           }
                                                           
                                                           .services .container {
                                                               max-width: 600px;
                                                               margin: 0 auto;
                                                           }
                                                           
                                                           .section-title h2 {
                                                               font-size: 2.5rem;
                                                               text-align: center;
                                                               margin-bottom: 20px;
                                                               color: #333;
                                                           }
                                                           
                                                           .section-title h2 span {
                                                               color: #e74c3c;
                                                           }
                                                           
                                                           .section-title p {
                                                               text-align: center;
                                                               font-size: 1.1rem;
                                                               color: #666;
                                                               max-width: 600px;
                                                               margin: 0 auto 40px;
                                                           }
                                                           /* CAROUSEL BASE */
                                                           
                                                           .carousel {
                                                               position: relative;
                                                               width: 100%;
                                                               overflow: hidden;
                                                               margin: 30px 0;
                                                               border-radius: 10px;
                                                           }
                                                           
                                                           .carousel-track {
                                                               display: flex;
                                                               gap: 15px;
                                                               overflow-x: auto;
                                                               scroll-snap-type: x mandatory;
                                                               scrollbar-width: none;
                                                               -ms-overflow-style: none;
                                                               padding: 10px;
                                                           }
                                                           
                                                           .carousel-track::-webkit-scrollbar {
                                                               display: none;
                                                           }
                                                           
                                                           .slide {
                                                               flex: 0 0 85%;
                                                               scroll-snap-align: center;
                                                           }
                                                           
                                                           .slide img {
                                                               width: 100%;
                                                               height: 180px;
                                                               border-radius: 12px;
                                                               object-fit: cover;
                                                               box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
                                                           }
                                                           /* BUTTONS */
                                                           
                                                           .carousel .prev,
                                                           .carousel .next {
                                                               position: absolute;
                                                               top: 50%;
                                                               transform: translateY(-50%);
                                                               background: rgba(0, 0, 0, 0.5);
                                                               color: white;
                                                               border: none;
                                                               width: 45px;
                                                               height: 45px;
                                                               border-radius: 50%;
                                                               font-size: 20px;
                                                               cursor: pointer;
                                                               z-index: 10;
                                                               transition: 0.3s ease;
                                                           }
                                                           
                                                           .carousel .prev {
                                                               left: 10px;
                                                           }
                                                           
                                                           .carousel .next {
                                                               right: 10px;
                                                           }
                                                           
                                                           .carousel .prev:hover,
                                                           .carousel .next:hover {
                                                               background: #e74c3c;
                                                               transform: translateY(-50%) scale(1.1);
                                                           }
                                                           /* TITLES & TEXT */
                                                           
                                                           .services h2,
                                                           .services h3 {
                                                               text-align: center;
                                                               margin: 30px 0 15px;
                                                               color: #2c3e50;
                                                           }
                                                           
                                                           .services h2 {
                                                               font-size: 1.8rem;
                                                           }
                                                           
                                                           .services h3 {
                                                               font-size: 1.5rem;
                                                           }
                                                           
                                                           .services p {
                                                               text-align: center;
                                                               max-width: 700px;
                                                               margin: 0 auto 30px;
                                                               font-size: 1rem;
                                                               line-height: 1.6;
                                                               color: #555;
                                                           }
                                                           /* DESKTOP */
                                                           
                                                           @media (min-width: 769px) {
                                                               .slide {
                                                                   flex: 0 0 400px;
                                                               }
                                                           }
                                                           /* Portfolio Section */
                                                           
                                                           .portfolio {
                                                               background-color: var(--accent-color);
                                                           }
                                                           
                                                           .portfolio-grid {
                                                               display: grid;
                                                               grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                                                               gap: 30px;
                                                               margin-top: 50px;
                                                           }
                                                           
                                                           .portfolio-item {
                                                               position: relative;
                                                               border-radius: 10px;
                                                               overflow: hidden;
                                                               height: 250px;
                                                           }
                                                           
                                                           .portfolio-img {
                                                               width: 100%;
                                                               height: 100%;
                                                               object-fit: cover;
                                                               transition: transform 0.5s;
                                                           }
                                                           
                                                           .portfolio-overlay {
                                                               position: absolute;
                                                               top: 0;
                                                               left: 0;
                                                               width: 100%;
                                                               height: 100%;
                                                               background: rgba(255, 0, 0, 0.9);
                                                               display: flex;
                                                               flex-direction: column;
                                                               justify-content: center;
                                                               align-items: center;
                                                               opacity: 0;
                                                               transition: opacity 0.3s;
                                                           }
                                                           
                                                           .portfolio-item:hover .portfolio-overlay {
                                                               opacity: 1;
                                                           }
                                                           
                                                           .portfolio-item:hover .portfolio-img {
                                                               transform: scale(1.1);
                                                           }
                                                           
                                                           .portfolio-overlay h3 {
                                                               color: white;
                                                               font-size: 22px;
                                                               margin-bottom: 10px;
                                                           }
                                                           
                                                           .portfolio-overlay p {
                                                               color: rgba(255, 255, 255, 0.8);
                                                               margin-bottom: 20px;
                                                           }
                                                           /* Testimonials Section */
                                                           
                                                           .testimonials {
                                                               background-color: var(--light-color);
                                                           }
                                                           
                                                           .testimonial-slider {
                                                               max-width: 800px;
                                                               margin: 50px auto 0;
                                                               position: relative;
                                                           }
                                                           
                                                           .testimonial-slide {
                                                               background-color: var(--accent-color);
                                                               padding: 40px;
                                                               border-radius: 10px;
                                                               box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
                                                               text-align: center;
                                                               display: none;
                                                           }
                                                           
                                                           .testimonial-slide.active {
                                                               display: block;
                                                               animation: fadeIn 0.5s ease-in-out;
                                                           }
                                                           
                                                           @keyframes fadeIn {
                                                               from {
                                                                   opacity: 0;
                                                               }
                                                               to {
                                                                   opacity: 1;
                                                               }
                                                           }
                                                           
                                                           .testimonial-slide p {
                                                               font-size: 18px;
                                                               font-style: italic;
                                                               margin-bottom: 30px;
                                                               color: var(--text-color);
                                                           }
                                                           
                                                           .testimonial-author {
                                                               display: flex;
                                                               align-items: center;
                                                               justify-content: center;
                                                           }
                                                           
                                                           .author-img {
                                                               width: 60px;
                                                               height: 60px;
                                                               border-radius: 50%;
                                                               overflow: hidden;
                                                               margin-right: 20px;
                                                               border: 3px solid var(--secondary-color);
                                                           }
                                                           
                                                           .author-img img {
                                                               width: 100%;
                                                               height: 100%;
                                                               object-fit: cover;
                                                           }
                                                           
                                                           .author-info h4 {
                                                               font-size: 18px;
                                                               color: var(--primary-color);
                                                               margin-bottom: 5px;
                                                           }
                                                           
                                                           .author-info p {
                                                               font-size: 14px;
                                                               color: var(--text-light);
                                                               margin: 0;
                                                               font-style: normal;
                                                           }
                                                           
                                                           .slider-controls {
                                                               display: flex;
                                                               justify-content: center;
                                                               margin-top: 30px;
                                                           }
                                                           
                                                           .slider-dot {
                                                               width: 12px;
                                                               height: 12px;
                                                               background-color: #bdc3c7;
                                                               border-radius: 50%;
                                                               margin: 0 5px;
                                                               cursor: pointer;
                                                               transition: background-color 0.3s;
                                                           }
                                                           
                                                           .slider-dot.active {
                                                               background-color: var(--secondary-color);
                                                           }
                                                           /* Contact Section */
                                                           
                                                           .contact {
                                                               background-color: var(--accent-color);
                                                           }
                                                           
                                                           .contact-container {
                                                               display: flex;
                                                               gap: 50px;
                                                               margin-top: 50px;
                                                           }
                                                           
                                                           .contact-info {
                                                               flex: 1;
                                                           }
                                                           
                                                           .contact-info h3 {
                                                               font-size: 24px;
                                                               color: var(--primary-color);
                                                               margin-bottom: 20px;
                                                           }
                                                           
                                                           .contact-details {
                                                               margin-bottom: 30px;
                                                           }
                                                           
                                                           .contact-item {
                                                               display: flex;
                                                               align-items: center;
                                                               margin-bottom: 15px;
                                                           }
                                                           
                                                           .contact-icon {
                                                               width: 40px;
                                                               height: 40px;
                                                               background-color: var(--light-color);
                                                               border-radius: 50%;
                                                               display: flex;
                                                               align-items: center;
                                                               justify-content: center;
                                                               margin-right: 15px;
                                                               color: var(--secondary-color);
                                                           }
                                                           
                                                           .contact-text h4 {
                                                               font-size: 16px;
                                                               color: var(--primary-color);
                                                               margin-bottom: 5px;
                                                           }
                                                           
                                                           .contact-text p,
                                                           .contact-text a {
                                                               color: var(--text-light);
                                                               text-decoration: none;
                                                               transition: color 0.3s;
                                                           }
                                                           
                                                           .contact-text a:hover {
                                                               color: var(--secondary-color);
                                                           }
                                                           
                                                           .contact-form {
                                                               flex: 1;
                                                               background-color: var(--light-color);
                                                               padding: 40px;
                                                               border-radius: 10px;
                                                           }
                                                           
                                                           .form-group {
                                                               margin-bottom: 20px;
                                                           }
                                                           
                                                           .form-group label {
                                                               display: block;
                                                               margin-bottom: 8px;
                                                               color: var(--primary-color);
                                                               font-weight: 500;
                                                           }
                                                           
                                                           .form-control {
                                                               width: 100%;
                                                               padding: 12px 15px;
                                                               border: 1px solid #ddd;
                                                               border-radius: 5px;
                                                               font-family: 'Poppins', sans-serif;
                                                               transition: border-color 0.3s;
                                                           }
                                                           
                                                           .form-control:focus {
                                                               outline: none;
                                                               border-color: var(--secondary-color);
                                                           }
                                                           
                                                           textarea.form-control {
                                                               resize: vertical;
                                                               min-height: 150px;
                                                           }
                                                           /* Footer */
                                                           
                                                           footer {
                                                               background-color: var(--primary-color);
                                                               color: white;
                                                               padding: 70px 0 30px;
                                                           }
                                                           
                                                           .footer-container {
                                                               display: grid;
                                                               grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                                                               gap: 40px;
                                                               margin-bottom: 50px;
                                                           }
                                                           
                                                           .footer-col h3 {
                                                               font-size: 20px;
                                                               margin-bottom: 25px;
                                                               position: relative;
                                                               color: var(--accent-color);
                                                           }
                                                           
                                                           .footer-col h3::after {
                                                               content: '';
                                                               position: absolute;
                                                               left: 0;
                                                               bottom: -10px;
                                                               width: 50px;
                                                               height: 2px;
                                                               background-color: var(--secondary-color);
                                                           }
                                                           
                                                           .footer-col p {
                                                               color: rgba(255, 255, 255, 0.7);
                                                               margin-bottom: 20px;
                                                           }
                                                           
                                                           .footer-links {
                                                               list-style: none;
                                                           }
                                                           
                                                           .footer-links li {
                                                               margin-bottom: 15px;
                                                           }
                                                           
                                                           .footer-links a {
                                                               color: rgba(255, 255, 255, 0.7);
                                                               text-decoration: none;
                                                               transition: color 0.3s;
                                                           }
                                                           
                                                           .footer-links a:hover {
                                                               color: var(--secondary-color);
                                                           }
                                                           
                                                           .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;
                                                           }
                                                           
                                                           .social-links a:hover {
                                                               background-color: var(--secondary-color);
                                                               transform: translateY(-3px);
                                                           }
                                                           
                                                           .footer-bottom {
                                                               text-align: center;
                                                               padding-top: 30px;
                                                               border-top: 1px solid rgba(255, 255, 255, 0.1);
                                                               color: rgba(255, 255, 255, 0.5);
                                                               font-size: 14px;
                                                           }
                                                           /* WhatsApp Button */
                                                           
                                                           .whatsapp-btn {
                                                               position: fixed;
                                                               bottom: 0px;
                                                               right: 30px;
                                                               width: 60px;
                                                               height: 60px;
                                                               background-color: #25D366;
                                                               color: white;
                                                               border-radius: 50%;
                                                               display: flex;
                                                               align-items: center;
                                                               justify-content: center;
                                                               font-size: 30px;
                                                               box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
                                                               z-index: 999;
                                                               transition: all 0.3s;
                                                               text-decoration: none;
                                                               z-index: 999;
                                                           }
                                                           
                                                           .whatsapp-btn:hover {
                                                               transform: scale(1.1);
                                                               box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
                                                           }
                                                           /* Back to Top Button */
                                                           
                                                           .back-to-top {
                                                               position: fixed;
                                                               bottom: 100px;
                                                               right: 30px;
                                                               width: 50px;
                                                               height: 50px;
                                                               background-color: var(--secondary-color);
                                                               color: white;
                                                               border-radius: 50%;
                                                               display: flex;
                                                               align-items: center;
                                                               justify-content: center;
                                                               font-size: 20px;
                                                               box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                                                               z-index: 999;
                                                               opacity: 0;
                                                               visibility: hidden;
                                                               transition: all 0.3s;
                                                               cursor: pointer;
                                                           }
                                                           
                                                           .back-to-top.active {
                                                               opacity: 1;
                                                               visibility: visible;
                                                           }
                                                           
                                                           .back-to-top:hover {
                                                               background-color: var(--primary-color);
                                                               transform: translateY(-3px);
                                                           }
                                                           /* Responsive Styles */
                                                           
                                                           @media (max-width: 1200px) {
                                                               .container {
                                                                   max-width: 1000px;
                                                               }
                                                               .hero-content h1 {
                                                                   font-size: 42px;
                                                               }
                                                           }
                                                           
                                                           @media (max-width: 992px) {
                                                               .hero-container {
                                                                   flex-direction: column;
                                                                   text-align: center;
                                                               }
                                                               .hero-content {
                                                                   padding-right: 0;
                                                                   margin-bottom: 40px;
                                                               }
                                                               .hero-content p {
                                                                   margin-left: auto;
                                                                   margin-right: auto;
                                                               }
                                                               .hero-btns {
                                                                   justify-content: center;
                                                               }
                                                               .hero-contact {
                                                                   justify-content: center;
                                                               }
                                                               .hero-image {
                                                                   min-height: 400px;
                                                               }
                                                               .about-content {
                                                                   flex-direction: column;
                                                               }
                                                               .about-text,
                                                               .about-image {
                                                                   flex: none;
                                                                   width: 100%;
                                                               }
                                                               .about-image {
                                                                   order: -1;
                                                                   margin-bottom: 30px;
                                                               }
                                                               .contact-container {
                                                                   flex-direction: column;
                                                               }
                                                           }
                                                           
                                                           @media (max-width: 768px) {
                                                               .menu-toggle {
                                                                   display: block;
                                                               }
                                                               .nav-links {
                                                                   position: fixed;
                                                                   top: 80px;
                                                                   left: -100%;
                                                                   width: 100%;
                                                                   height: calc(100vh - 80px);
                                                                   background-color: var(--primary-color);
                                                                   flex-direction: column;
                                                                   align-items: center;
                                                                   justify-content: flex-start;
                                                                   padding-top: 40px;
                                                                   transition: left 0.3s;
                                                               }
                                                               .nav-links.active {
                                                                   left: 0;
                                                               }
                                                               .nav-links li {
                                                                   margin: 15px 0;
                                                               }
                                                               .hero {
                                                                   padding: 120px 0 60px;
                                                               }
                                                               .hero-content h1 {
                                                                   font-size: 36px;
                                                               }
                                                               .hero-content p {
                                                                   font-size: 16px;
                                                               }
                                                               .hero-btns {
                                                                   flex-direction: column;
                                                                   gap: 15px;
                                                               }
                                                               .btn {
                                                                   width: 100%;
                                                               }
                                                               .section-title h2 {
                                                                   font-size: 30px;
                                                               }
                                                               .portfolio-grid {
                                                                   grid-template-columns: 1fr;
                                                               }
                                                           }
                                                           
                                                           @media (max-width: 576px) {
                                                               .hero-content h1 {
                                                                   font-size: 32px;
                                                               }
                                                               .section-title h2 {
                                                                   font-size: 28px;
                                                               }
                                                               .testimonial-slide {
                                                                   padding: 30px 20px;
                                                               }
                                                               .hero-contact {
                                                                   flex-direction: column;
                                                                   gap: 15px;
                                                               }
                                                               .whatsapp-btn {
                                                                   width: 50px;
                                                                   height: 50px;
                                                                   font-size: 24px;
                                                                   bottom: 20px;
                                                                   right: 20px;
                                                               }
                                                               .back-to-top {
                                                                   width: 40px;
                                                                   height: 40px;
                                                                   font-size: 16px;
                                                                   bottom: 80px;
                                                                   right: 20px;
                                                               }
                                                           }