 
      :root {
        --black1: #0b0b0b;
        --black2: #1a1a1a;
        --black3: #2a2a2a;
        --cream: #f8f5ed;
        --gold1: #d4af37;
        --gold2: #b8941f;
        --gold3: #9a7b17;
        --goldLight: rgba(212, 175, 55, 0.1);
      }

      body {
        font-family: "Montserrat", sans-serif;
        background: linear-gradient(
          135deg,
          var(--black1) 0%,
          var(--black2) 50%,
          var(--black1) 100%
        );
        color: var(--cream);
        overflow-x: hidden;
        line-height: 1.6;
      }

      /* Header Styles */
      .navbar {
        background-color: rgba(10, 10, 10, 0.9);
        backdrop-filter: blur(10px);
        padding: 1rem 0;
        transition: all 0.3s ease;
      }

      .navbar-brand {
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--gold1) !important;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .navbar-nav .nav-link {
        color: var(--cream) !important;
        font-weight: 500;
        margin: 0 0.5rem;
        transition: color 0.3s ease;
        position: relative;
      }

      .navbar-nav .nav-link:hover {
        color: var(--gold1) !important;
      }

      .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--gold1);
        transition: width 0.3s ease;
      }

      .navbar-nav .nav-link:hover::after {
        width: 100%;
      }

      .btn-gold {
        background-color: var(--gold1);
        color: var(--black1);
        border: none;
        padding: 0.6rem 1.5rem;
        font-weight: 600;
        border-radius: 4px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .btn-gold:hover {
        background-color: var(--gold2);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
      }

      /* Hero Section */
      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        padding-top: 80px;
      }

      .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(
          circle at 70% 30%,
          rgba(212, 175, 55, 0.1) 0%,
          transparent 50%
        );
        z-index: -1;
      }

      .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        line-height: 1.2;
      }

      .hero-content .highlight {
        color: var(--gold1);
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
      }

      .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        color: rgba(248, 245, 237, 0.8);
      }

      .btn-outline-gold {
        border: 2px solid var(--gold1);
        color: var(--gold1);
        background: transparent;
        padding: 0.7rem 2rem;
        font-weight: 600;
        border-radius: 4px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: inline-flex;
        align-items: center;
      }

      .btn-outline-gold:hover {
        background-color: var(--gold1);
        color: var(--black1);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
      }

      .btn-outline-gold i {
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
      }

      .btn-outline-gold:hover i {
        transform: translateX(5px);
      }

      /* Holographic Head */
      .holographic-head {
        position: relative;
        height: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .head-container {
        position: relative;
        width: 300px;
        height: 400px;
      }

      .head-outline {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: linear-gradient(
          135deg,
          transparent 30%,
          var(--goldLight) 70%
        );
        filter: blur(1px);
        animation: pulse 4s infinite alternate;
      }

      .head-grid {
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(
            rgba(212, 175, 55, 0.1) 1px,
            transparent 1px
          ),
          linear-gradient(90deg, rgba(212, 175, 55, 0.1) 1px, transparent 1px);
        background-size: 20px 20px;
        border-radius: 50%;
        opacity: 0.5;
      }

      .head-glow {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        box-shadow: 0 0 60px 20px rgba(212, 175, 55, 0.2),
          0 0 100px 40px rgba(212, 175, 55, 0.1),
          0 0 140px 60px rgba(212, 175, 55, 0.05);
        animation: glow 6s infinite alternate;
      }

      @keyframes pulse {
        0% {
          transform: scale(1);
          opacity: 0.7;
        }
        100% {
          transform: scale(1.05);
          opacity: 1;
        }
      }

      @keyframes glow {
        0% {
          opacity: 0.5;
        }
        100% {
          opacity: 0.8;
        }
      }

      /* Section Styles */
      .section {
        padding: 5rem 0;
        position: relative;
      }

      .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 3rem;
        text-align: center;
        position: relative;
      }

      .section-title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: var(--gold1);
      }

      /* Services Section */
      .service-card {
        background: linear-gradient(145deg, var(--black2), var(--black3));
        border-radius: 12px;
        padding: 2.5rem 2rem;
        height: 100%;
        transition: all 0.4s ease;
        border: 1px solid rgba(212, 175, 55, 0.1);
        position: relative;
        overflow: hidden;
        cursor: pointer;
      }

      .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          135deg,
          transparent 0%,
          var(--goldLight) 100%
        );
        opacity: 0;
        transition: opacity 0.4s ease;
      }

      .service-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
          0 0 30px rgba(212, 175, 55, 0.2);
        border-color: rgba(212, 175, 55, 0.5);
      }

      .service-card:hover::before {
        opacity: 1;
      }

      .service-card:hover .service-icon {
        transform: scale(1.2) rotate(5deg);
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
      }

      .service-icon {
        font-size: 3rem;
        color: var(--gold1);
        margin-bottom: 1.5rem;
        display: inline-block;
        transition: all 0.4s ease;
      }

      .service-card h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
        position: relative;
        z-index: 1;
      }

      .service-card p {
        color: rgba(248, 245, 237, 0.7);
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 1;
      }

      .service-link {
        color: var(--gold1);
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        position: relative;
        z-index: 1;
        transition: all 0.3s ease;
      }

      .service-link:hover {
        color: var(--gold2);
        transform: translateX(5px);
      }

      .service-link i {
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
      }

      .service-link:hover i {
        transform: translateX(5px);
      }

      /* Service Detail Modal */
      .service-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 9999;
        overflow-y: auto;
        padding: 20px;
      }

      .service-modal-content {
        background: linear-gradient(145deg, var(--black2), var(--black1));
        max-width: 800px;
        margin: 50px auto;
        border-radius: 12px;
        padding: 3rem;
        position: relative;
        border: 1px solid rgba(212, 175, 55, 0.3);
        box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
      }

      .service-modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: var(--cream);
        font-size: 1.5rem;
        cursor: pointer;
        transition: color 0.3s ease;
      }

      .service-modal-close:hover {
        color: var(--gold1);
      }

      .service-modal-header {
        margin-bottom: 2rem;
        text-align: center;
      }

      .service-modal-icon {
        font-size: 4rem;
        color: var(--gold1);
        margin-bottom: 1rem;
      }

      .service-modal-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
      }

      .service-modal-subtitle {
        color: rgba(248, 245, 237, 0.7);
        font-size: 1.2rem;
        margin-bottom: 2rem;
      }

      .service-modal-body h4 {
        color: var(--gold1);
        margin: 1.5rem 0 1rem;
        font-weight: 600;
      }

      .service-modal-features {
        list-style: none;
        padding: 0;
        margin-bottom: 2rem;
      }

      .service-modal-features li {
        margin-bottom: 0.8rem;
        display: flex;
        align-items: flex-start;
      }

      .service-modal-features li i {
        color: var(--gold1);
        margin-right: 1rem;
        margin-top: 0.2rem;
      }

      .service-modal-cta {
        text-align: center;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
      }

      /* Contact Modal */
      .contact-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 9999;
        overflow-y: auto;
        padding: 20px;
      }

      .contact-modal-content {
        background: linear-gradient(145deg, var(--black2), var(--black1));
        max-width: 600px;
        margin: 50px auto;
        border-radius: 12px;
        padding: 3rem;
        position: relative;
        border: 1px solid rgba(212, 175, 55, 0.3);
        box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
      }

      .contact-modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: var(--cream);
        font-size: 1.5rem;
        cursor: pointer;
        transition: color 0.3s ease;
      }

      .contact-modal-close:hover {
        color: var(--gold1);
      }

      .contact-modal-header {
        margin-bottom: 2rem;
        text-align: center;
      }

      .contact-modal-icon {
        font-size: 3rem;
        color: var(--gold1);
        margin-bottom: 1rem;
      }

      .contact-modal-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1rem;
      }

      .contact-modal-subtitle {
        color: rgba(248, 245, 237, 0.7);
        font-size: 1.1rem;
        margin-bottom: 2rem;
      }

      .form-group {
        margin-bottom: 1.5rem;
      }

      .form-label {
        color: var(--cream);
        font-weight: 500;
        margin-bottom: 0.5rem;
      }

      .form-control {
        background-color: var(--black3);
        border: 1px solid rgba(212, 175, 55, 0.2);
        color: var(--cream);
        padding: 0.75rem 1rem;
        border-radius: 4px;
        transition: all 0.3s ease;
      }

      .form-control:focus {
        background-color: var(--black3);
        border-color: var(--gold1);
        color: var(--cream);
        box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
      }

      .form-control::placeholder {
        color: rgba(248, 245, 237, 0.5);
      }

      textarea.form-control {
        resize: vertical;
        min-height: 120px;
      }

      .form-select {
        background-color: var(--black3);
        border: 1px solid rgba(212, 175, 55, 0.2);
        color: var(--cream);
        padding: 0.75rem 1rem;
        border-radius: 4px;
        transition: all 0.3s ease;
      }

      .form-select:focus {
        background-color: var(--black3);
        border-color: var(--gold1);
        color: var(--cream);
        box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
      }

      .form-check-input {
        background-color: var(--black3);
        border: 1px solid rgba(212, 175, 55, 0.2);
      }

      .form-check-input:checked {
        background-color: var(--gold1);
        border-color: var(--gold1);
      }

      .form-check-label {
        color: rgba(248, 245, 237, 0.8);
      }

      .btn-whatsapp {
        background-color: #25d366;
        color: white;
        border: none;
        padding: 0.75rem 2rem;
        font-weight: 600;
        border-radius: 4px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 1rem;
      }

      .btn-whatsapp:hover {
        background-color: #128c7e;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
      }

      .btn-whatsapp i {
        margin-right: 0.5rem;
        font-size: 1.2rem;
      }

      /* Metrics Section */
      .metrics-section {
        background: linear-gradient(
          135deg,
          var(--black1) 0%,
          var(--black2) 100%
        );
        position: relative;
        overflow: hidden;
      }

      .metrics-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(
          circle at 30% 70%,
          rgba(212, 175, 55, 0.05) 0%,
          transparent 50%
        );
        z-index: 0;
      }

      .metric-item {
        text-align: center;
        padding: 2rem 1rem;
        position: relative;
        z-index: 1;
      }

      .metric-number {
        font-size: 3rem;
        font-weight: 800;
        color: var(--gold1);
        margin-bottom: 0.5rem;
        display: block;
      }

      .metric-label {
        font-size: 1rem;
        color: rgba(248, 245, 237, 0.8);
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      /* Innovation Section */
      .innovation-content {
        padding-right: 2rem;
      }

      .innovation-content h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
      }

      .innovation-content p {
        margin-bottom: 1.5rem;
        color: rgba(248, 245, 237, 0.8);
      }

      .innovation-list {
        list-style: none;
        padding: 0;
      }

      .innovation-list li {
        margin-bottom: 1rem;
        display: flex;
        align-items: flex-start;
      }

      .innovation-list li i {
        color: var(--gold1);
        margin-right: 1rem;
        margin-top: 0.2rem;
      }

      /* Globe Visualization */
      .globe-container {
        position: relative;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .globe-gif {
        width: 100%;
        max-width: 400px;
        border-radius: 50%;
        box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
        animation: float 6s ease-in-out infinite;
      }

      @keyframes float {
        0% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-20px);
        }
        100% {
          transform: translateY(0px);
        }
      }

      /* Clients Section */
      .clients-section {
        background: linear-gradient(
          135deg,
          var(--black1) 0%,
          var(--black2) 100%
        );
        position: relative;
        overflow: hidden;
      }

      .clients-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(
          circle at 70% 30%,
          rgba(212, 175, 55, 0.05) 0%,
          transparent 50%
        );
        z-index: 0;
      }

      .client-card {
        background: linear-gradient(145deg, var(--black2), var(--black3));
        border-radius: 12px;
        padding: 2rem;
        height: 100%;
        transition: all 0.4s ease;
        border: 1px solid rgba(212, 175, 55, 0.1);
        position: relative;
        overflow: hidden;
      }

      .client-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        border-color: rgba(212, 175, 55, 0.3);
      }

      .client-image {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0 auto 1.5rem;
        display: block;
        border: 2px solid var(--gold1);
      }

      .client-quote {
        font-style: italic;
        color: rgba(248, 245, 237, 0.8);
        margin-bottom: 1.5rem;
        position: relative;
      }

      .client-quote::before {
        content: '"';
        font-size: 3rem;
        color: var(--gold1);
        position: absolute;
        top: -20px;
        left: -10px;
        opacity: 0.5;
      }

      .client-name {
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: var(--gold1);
      }

      .client-position {
        color: rgba(248, 245, 237, 0.6);
        font-size: 0.9rem;
      }

      /* Ratings Section */
      .ratings-section {
        background: linear-gradient(
          135deg,
          var(--black1) 0%,
          var(--black2) 100%
        );
        position: relative;
        overflow: hidden;
      }

      .ratings-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(
          circle at 30% 70%,
          rgba(212, 175, 55, 0.05) 0%,
          transparent 50%
        );
        z-index: 0;
      }

      .rating-card {
        background: linear-gradient(145deg, var(--black2), var(--black3));
        border-radius: 12px;
        padding: 2rem;
        height: 100%;
        transition: all 0.4s ease;
        border: 1px solid rgba(212, 175, 55, 0.1);
        position: relative;
        overflow: hidden;
      }

      .rating-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        border-color: rgba(212, 175, 55, 0.3);
      }

      .rating-header {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
      }

      .rating-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 1rem;
        border: 2px solid var(--gold1);
      }

      .rating-info {
        flex: 1;
      }

      .rating-name {
        font-weight: 600;
        margin-bottom: 0.2rem;
        color: var(--gold1);
      }

      .rating-service {
        color: rgba(248, 245, 237, 0.7);
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
      }

      .rating-stars {
        color: var(--gold1);
        font-size: 1rem;
      }

      .rating-comment {
        color: rgba(248, 245, 237, 0.8);
        font-style: italic;
        margin-bottom: 1rem;
        position: relative;
      }

      .rating-comment::before {
        content: '"';
        font-size: 2rem;
        color: var(--gold1);
        position: absolute;
        top: -10px;
        left: -5px;
        opacity: 0.5;
      }

      .rating-date {
        color: rgba(248, 245, 237, 0.5);
        font-size: 0.8rem;
        text-align: right;
      }

      /* Star Rating System */
      .star-rating {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        margin-bottom: 1rem;
      }

      .star-rating input {
        display: none;
      }

      .star-rating label {
        color: #ddd;
        font-size: 1.5rem;
        padding: 0 0.1rem;
        cursor: pointer;
        transition: color 0.2s;
      }

      .star-rating label:hover,
      .star-rating label:hover ~ label,
      .star-rating input:checked ~ label {
        color: var(--gold1);
      }

      /* Rating Modal */
      .rating-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 9999;
        overflow-y: auto;
        padding: 20px;
      }

      .rating-modal-content {
        background: linear-gradient(145deg, var(--black2), var(--black1));
        max-width: 600px;
        margin: 50px auto;
        border-radius: 12px;
        padding: 3rem;
        position: relative;
        border: 1px solid rgba(212, 175, 55, 0.3);
        box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
      }

      .rating-modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: var(--cream);
        font-size: 1.5rem;
        cursor: pointer;
        transition: color 0.3s ease;
      }

      .rating-modal-close:hover {
        color: var(--gold1);
      }

      .rating-modal-header {
        margin-bottom: 2rem;
        text-align: center;
      }

      .rating-modal-icon {
        font-size: 3rem;
        color: var(--gold1);
        margin-bottom: 1rem;
      }

      .rating-modal-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1rem;
      }

      .rating-modal-subtitle {
        color: rgba(248, 245, 237, 0.7);
        font-size: 1.1rem;
        margin-bottom: 2rem;
      }
      /* Appointment Section Styles */
      .appointment-card {
        background: linear-gradient(145deg, var(--black2), var(--black3));
        border-radius: 12px;
        padding: 3rem;
        transition: all 0.4s ease;
        border: 1px solid rgba(212, 175, 55, 0.1);
        position: relative;
        overflow: hidden;
      }

      .appointment-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          135deg,
          transparent 0%,
          var(--goldLight) 100%
        );
        opacity: 0.1;
      }

      .appointment-form .form-group {
        margin-bottom: 1.5rem;
      }

      .appointment-form .form-label {
        color: var(--cream);
        font-weight: 500;
        margin-bottom: 0.5rem;
      }

      .appointment-form .form-control,
      .appointment-form .form-select {
        background-color: var(--black3);
        border: 1px solid rgba(212, 175, 55, 0.2);
        color: var(--cream);
        padding: 0.75rem 1rem;
        border-radius: 4px;
        transition: all 0.3s ease;
      }

      .appointment-form .form-control:focus,
      .appointment-form .form-select:focus {
        background-color: var(--black3);
        border-color: var(--gold1);
        color: var(--cream);
        box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
      }

      .appointment-form .form-control::placeholder {
        color: rgba(248, 245, 237, 0.5);
      }

      .appointment-form textarea.form-control {
        resize: vertical;
        min-height: 120px;
      }

      .appointment-form .form-check-input {
        background-color: var(--black3);
        border: 1px solid rgba(212, 175, 55, 0.2);
      }

      .appointment-form .form-check-input:checked {
        background-color: var(--gold1);
        border-color: var(--gold1);
      }

      .appointment-form .form-check-label {
        color: rgba(248, 245, 237, 0.8);
      }

      .appointment-form .form-check-label a {
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .appointment-form .form-check-label a:hover {
        color: var(--gold2);
      }

      /* Footer */
      .footer {
        background-color: var(--black1);
        padding: 4rem 0 2rem;
        border-top: 1px solid rgba(212, 175, 55, 0.1);
      }

      .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--gold1);
        margin-bottom: 1.5rem;
        display: inline-block;
      }

      .footer p {
        color: rgba(248, 245, 237, 0.7);
        margin-bottom: 1.5rem;
      }

      .footer h5 {
        color: var(--cream);
        font-weight: 600;
        margin-bottom: 1.5rem;
        position: relative;
      }

      .footer h5::after {
        content: "";
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 2px;
        background-color: var(--gold1);
      }

      .footer-links {
        list-style: none;
        padding: 0;
      }

      .footer-links li {
        margin-bottom: 0.8rem;
      }

      .footer-links a {
        color: rgba(248, 245, 237, 0.7);
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .footer-links a:hover {
        color: var(--gold1);
      }

      .footer-bottom {
        border-top: 1px solid rgba(248, 245, 237, 0.1);
        padding-top: 2rem;
        margin-top: 3rem;
        text-align: center;
        color: rgba(248, 245, 237, 0.5);
      }
      
      .redes_sociales{
        list-style-type: none;
         padding: 0;
         margin: 0;
      }
      .redes_sociales li{
          display: inline-block;
          margin-right: 15px; 
          font-size: 20px;
      }
      /* Responsive Adjustments */
      @media (max-width: 991.98px) {
        .hero-content h1 {
          font-size: 2.8rem;
        }

        .innovation-content {
          padding-right: 0;
          margin-bottom: 3rem;
        }

        .holographic-head,
        .globe-container {
          height: 400px;
        }
      }

      @media (max-width: 767.98px) {
        .hero-content h1 {
          font-size: 2.2rem;
        }

        .section-title {
          font-size: 2rem;
        }

        .metric-number {
          font-size: 2.5rem;
        }

        .service-modal-content,
        .contact-modal-content,
        .rating-modal-content {
          padding: 2rem 1.5rem;
        }

        .service-modal-title {
          font-size: 2rem;
        }

        .contact-modal-title,
        .rating-modal-title {
          font-size: 1.8rem;
        }
      }
   