
    :root {
      --white: #ffffff;
      --blue1: #c7e3f6;
      --blue2: #5fa8d3;
      --deep: #1b3c73;
      --yellow: #f7d64a;
      --orange: #f29b2b;
      --text: #333;
      --container-w: 720px;
    }

    body {
      margin: 0;
      font-family: 'Comic Sans', sans-serif;
      background: white;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      padding: 40px 20px;
    }

    .page-wrap {
      width: 100%;
      max-width: var(--container-w);
      display: flex;
      flex-direction: column;
      align-items: center;
      background: white;
      border-radius: 16px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .logo-wrap {
      background: linear-gradient(to bottom, var(--white) 0%, var(--white) 100%);
      padding: 18px 18px 0px 18px;
      border-radius: 12px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
      margin-top: 20px;
      width: 100%;
      text-align: center;
    }

    .logo-wrap img {
      width: 340px;
      height: auto;
    }

    
    .content-gradient {
      background: linear-gradient(to bottom, var(--white) 0%, var(--blue2) 100%);
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 0;
      border-radius: 0 0 16px 16px;
      padding-bottom: 0;
    }

    .card {
      background: transparent;
      padding: 30px 34px;
      border-radius: 14px;
      text-align: center;
      width: 90%;
      margin-top: 0px;
      color: black;
    }

    .tag {
      font-style: italic;
      color: black;
      margin-bottom: 6px;
    }

    h1 {
      margin: 6px 0 8px;
      color: black;
      font-size: 28px;
      letter-spacing: 1px;
    }

    h2 {
      margin: 8px 0 18px;
      color: black;
      font-size: 18px;
    }

    .hero-section {
      text-align: center;
      padding: 30px 20px;
    }

    .hero-section h1 {
      font-size: 32px;
      margin-bottom: 15px;
    }

    .hero-section p {
      font-size: 18px;
      line-height: 1.6;
      max-width: 600px;
      margin: 0 auto 20px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin: 30px 0;
      max-width: 600px;
    }

    .service-card {
      background: rgba(255, 255, 255, 0.7);
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s;
    }

    .service-card:hover {
      transform: translateY(-5px);
    }

    .service-card h3 {
      color: var(--deep);
      margin-top: 0;
    }

    .service-icon {
      font-size: 40px;
      margin-bottom: 10px;
    }

    .cta-section {
      background: var(--yellow);
      padding: 30px;
      border-radius: 10px;
      margin: 30px 0;
      text-align: center;
      max-width: 600px;
    }

    .cta-button {
      display: inline-block;
      background: var(--orange);
      color: white;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 18px;
      margin-top: 15px;
      transition: background-color 0.3s;
    }

    .cta-button:hover {
      background: var(--deep);
    }

    .arc-combo {
      width: 100%;
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      position: relative;
      margin-top: 0;
    }

    svg.phone-address-combo {
      width: 100%;
      max-width: 720px;
      overflow: visible;
    }

    .phone-text {
      font-weight: 700;
      font-size: 28px;
      font-family: 'Comic Sans', sans-serif;
      fill: #1b1b1b;
    }

    .address-text {
      font-weight: 700;
      font-size: 18px;
      font-family: Arial, sans-serif;
    }

    .contact-details {
      background: var(--deep);
      color: white;
      padding: 18px 22px;
      border-radius: 0 0 16px 16px;
      text-align: left;
      width: 100%;
      box-sizing: border-box;
    }

    .contact-row {
      display: flex;
      gap: 10px;
      align-items: center;
      margin-bottom: 6px;
    }

    .contact-row p {
      margin: 0;
    }

    /* Social Media Icons Styles */
.social-media-section {
    text-align: center;
    padding: 30px 20px;
    background-color: #3d82c8;
    margin-top: 20px;
    border-top: 2px solid #3679bd;
}

.social-media-section h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #2c3e50;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Individual icon colors on hover */
.social-icon:hover i {
    color: white;
}

.social-icon:nth-child(1):hover { background-color: #3b5998; } /* Facebook */
.social-icon:nth-child(2):hover { background-color: #1da1f2; } /* Twitter */
.social-icon:nth-child(3):hover { background-color: #e1306c; } /* Instagram */
.social-icon:nth-child(4):hover { background-color: #0077b5; } /* LinkedIn */
.social-icon:nth-child(5):hover { background-color: #ff0000; } /* YouTube */
.social-icon:nth-child(6):hover { background-color: #34a853; } /* Email */

.social-text {
    color: #666;
    font-size: 14px;
    margin-top: 10px;
}

/* Footer Styles */
.footer {
    text-align: center;
    padding: 20px;
    background-color: #2c3e50;
    color: white;
    margin-top: 10px;
}

.footer p {
    margin: 5px 0;
    font-size: 14px;
}

.footer p:first-child {
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-icons {
        gap: 15px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .social-media-section h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .social-icons {
        gap: 10px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .social-media-section {
        padding: 20px 15px;
    }
}
.footer {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 20px; /* Add spacing if needed */
    background: #f8f9fa; /* Add your preferred background color */
    padding: 20px 0;
    text-align: center;
    box-sizing: border-box;
}

.page-wrap {
    overflow-x: hidden; /* Prevents horizontal scroll */
}
