:root {
    --bg-primary: #0b0d13;
    --bg-secondary: #1a1d29;
    --bg-card: #1e2139;
    --text-primary: #ffffff;
    --text-secondary: #a0a6b3;
    --text-muted: #6b7280;
    --accent-blue: #06b6d4;
    --accent-green: #10b981;
    --accent-red: #ef4444;
    --accent-purple: #8c3dff;
    --accent-pink: #ff3db8;
    --border-color: #2a2d36;
    --gradient-primary: linear-gradient(135deg, #1f68ff, #8c3dff);
    --gradient-secondary: linear-gradient(270deg, #1f68ff, #8c3dff, #1f68ff);
    --gradient-hero: linear-gradient(135deg, rgba(31, 104, 255, 0.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}


/* Success Message */
.success-message {
    position: fixed;
    top: 100px;
    right: 30px;
    background: var(--bg-secondary);
    border: 1px solid var(--accent-green);
    border-radius: 15px;
    padding: 20px 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
}

.success-message.show {
    transform: translateX(0);
    opacity: 1;
}

.success-message .message-content {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--accent-green);
}

.success-message .message-icon {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.success-message .message-text h4 {
    font-weight: 700;
    margin-bottom: 5px;
}

.success-message .message-text p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--accent-blue);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-contentcontact {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .form-container {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    
    .hero-sectioncontact {
        padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .stat-card {
        width: 200px;
    }
    
    .floating-elements {
        height: 300px;
    }
    
    .floating-card {
        position: relative !important;
        display: flex;
        flex-direction: row;
        margin-bottom: 20px;
        animation: none !important;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-container {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .form-header h2 {
        font-size: 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-header h2 {
        font-size: 28px;
    }
    
    .success-message {
        right: 20px;
        left: 20px;
        transform: translateY(-100px);
    }
    
    .success-message.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 40px 15px;
    }
    
    .hero-sectioncontact {
        padding: 40px 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .method-card {
        padding: 30px 20px;
    }
    
    .form-container {
        padding: 25px 15px;
    }
    
    .submit-btn {
        padding: 15px 20px;
        font-size: 16px;
    }
}

/* Dark theme enhancements */
@media (prefers-color-scheme: dark) {
    body {
        background: var(--bg-primary);
    }
}

/* Print styles */
@media print {
    .header,
    .hero-sectioncontact,
    .footer,
    .floating-elements,
    .success-message {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .contact-form-section {
        break-inside: avoid;
    }
}1), rgba(140, 61, 255, 0.1));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: driftGrid 60s ease-in-out infinite;
}

@keyframes driftGrid {
    0% { background-position: 0 0, 0 0; }
    50% { background-position: 20px 40px, 40px 20px; }
    100% { background-position: 0 0, 0 0; }
}

/* Hero Section */
.hero-sectioncontact {
    padding: 80px 20px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero-contentcontact {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 24px;
    font-weight: 900;
    color: var(--accent-blue);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 400px;
}

.floating-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

.floating-card:nth-child(3) {
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

.floating-card i {
    font-size: 24px;
    color: var(--accent-blue);
}

.floating-card span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Main Container */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.method-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: all 0.6s;
}

.method-card:hover::before {
    left: 100%;
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-blue);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
}

.method-card:hover .method-icon {
    transform: scale(1.1);
}

.method-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.method-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.method-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.method-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(140, 61, 255, 0.4);
}

/* Contact Form Section */
.contact-form-section {
    margin-bottom: 80px;
}

.form-container {
    background: var(--bg-secondary);
    border-radius: 25px;
    padding: 50px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 36px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 18px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 50px 15px 20px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
    transform: translateY(-2px);
}

.form-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.form-group:has(textarea) .form-icon {
    top: 45px;
    transform: none;
}

.checkbox-group {
    margin: 30px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: var(--text-secondary);
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--gradient-primary);
    border-color: var(--accent-blue);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 15px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(140, 61, 255, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* FAQ Section */
.faq-section {
    margin-bottom: 60px;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 36px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.faq-header p {
    color: var(--text-secondary);
    font-size: 18px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-secondary);
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-blue);
    transform: translateY(-2px);
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(6, 182, 212, 0.05);
}

.faq-question i {
    color: var(--accent-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    color: var(--text-secondary);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 200px;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 20px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 900;
    color: var(--accent-blue);
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 28px;
}
 /* last section starts here  */
    :root {
      --bg: #0b0c11;
      --grid: #1a1b22;
      --text: #ffffff;
      --muted: #a0a6b3;
      --input-bg: #0f1014;
      --border: #2a2d36;
      --accent1: #004dff;
      --accent2: #007bff;
    }

    body {
      font-family: "Raleway", sans-serif;
      color: var(--text);
    }

    .request-section {
      position: relative;
      padding: 50px 20px 60px;
      overflow: hidden;
    }

    /* grid background */
    .request-section::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
    }

    /* polygon bg */
    .request-section::after {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      width: 450px;
      height: 350px;
      background: url("polygon-bg.png") no-repeat bottom right / contain;
      z-index: -1;
    }

    .request-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 60px;
      align-items: flex-start;
    }

    /* Left Side */
    .left h2 {
      font-size: 56px;
      font-weight: 900;
      line-height: 56px;
      margin-bottom: 20px;
    }

    .left p {
      font-size: 20px;
      margin-bottom: 24px;
    }

    .info {
      font-size: 15px;
      line-height: 1.6;
    }

    .info div {
      margin-bottom: 8px;
    }

    .socials {
      display: flex;
      gap: 16px;
      align-items: center;
    }

    .socials a {
      color: #ffffff00;
      display: inline-flex;
    }

    .socials a svg {
      width: 24px;
      height: 24px;
    }

    .instagram-button svg {
      width: 50px;
      /* Width of the icon */
      height: 50px;
      /* Height of the icon */
      fill: #E1306C;
      /* Instagram pink color */
      transition: transform 0.3s, fill 0.1s;
    }

    .instagram-button:hover svg {
      transform: scale(1.2);
      /* Slightly enlarge on hover */
      fill: #C13584;
      /* Darker Instagram pink on hover */
    }

    .instagram-button {
      display: inline-block;
      text-decoration: none;
      /* Remove underline */
    }


    /* Form */
    form {
      display: flex;
      flex-direction: column;
      gap: 18px;
      animation: fadeUp 1s ease both;
    }

    .row {
      display: flex;
      justify-content: space-between;
      gap: 18px;
    }

    input,
    input[type="text"] textarea {
      /* width: 100%; */
      background: #0b0c11;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 14px 16px;
      font-size: 15px;
      color: var(--text);
      outline: none;
      transition: border .3s ease;

    }

    input:focus,
    textarea:focus {
      border-color: var(--accent2);
    }

    textarea {
      resize: none;
    }

    .btn {
      width: 150px;
      padding: 14px;
      border-radius: 40px;
      border: none;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      background: linear-gradient(135deg, var(--accent1), var(--accent2));
      color: #fff;
      transition: all .3s ease;
    }

    .btn:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }

    /* Disclaimer */
    .disclaimer {
      text-align: justify;
      margin-top: 40px;
      margin-bottom: 20px;
      text-align: center;
      font-size: 13px;
      color: var(--muted);
      max-width: 960px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Animations */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .left {
      animation: fadeUp 1s ease both;
    }

    /* Responsive */
    @media(max-width: 1024px) {
      .request-inner {
        grid-template-columns: 1fr;
      }

      .left h2 {
        font-size: 42px;
        line-height: 48px;
      }
    }

    @media(max-width: 600px) {
      .row {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .left h2 {
        font-size: 34px;
      }
    }

    /* last section starts here  */
    :root {
      --bg: #0b0c11;
      --grid: #1a1b22;
      --text: #ffffff;
      --muted: #a0a6b3;
      --input-bg: #0f1014;
      --border: #2a2d36;
      --accent1: #004dff;
      --accent2: #007bff;
    }

    body {
      font-family: "Raleway", sans-serif;
      background: var(--bg);
      color: var(--text);
    }


    /* grid background */
    .request-section::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
    }

    /* polygon bg */
    .request-section::after {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      width: 450px;
      height: 350px;
      background: url("polygon-bg.png") no-repeat bottom right / contain;
      z-index: -1;
    }

    .request-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 40px;
      align-items: flex-start;
    }

    /* Left Side */
    .left h2 {
      font-size: 56px;
      font-weight: 900;
      line-height: 56px;
      margin-bottom: 20px;
    }

    .left p {
      font-size: 20px;
      margin-bottom: 24px;
    }

    .info {
      font-size: 15px;
      line-height: 1.6;
    }

    .info div {
      margin-bottom: 8px;
    }

    .socials {
      display: flex;
      gap: 18px;
      margin-top: 28px;
      margin-bottom: 28px;
    }

    .socials a svg {
      width: 24px;
      height: 24px;
      fill: #fff;
      transition: all 0.3s ease;
    }

    .socials a:hover svg {
      fill: var(--accent2);
      transform: scale(1.4);
    }

    /* Form */
    form {
      display: flex;
      flex-direction: column;
      gap: 18px;
      animation: fadeUp 1s ease both;
    }

    .row {
      display: flex;
      gap: 18px;
      margin: 0px 0px;
    }

    input,
    textarea {
      width: 100%;
      background: #000000 !important;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 14px 16px;
      font-size: 15px;
      color: var(--text);
      outline: none;
      transition: border .3s ease;
    }

    input:focus,
    textarea:focus {
      border-color: var(--accent2);
    }

    textarea {
      resize: none;
    }

    .btn-submit {
      width: 150px;
      padding: 14px;
      border-radius: 40px;
      border: none;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      background: linear-gradient(135deg, var(--accent1), var(--accent2));
      color: #fff;
      transition: all .3s ease;
    }

    .btn-submit:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }

    /* Disclaimer */
    .disclaimer {
      margin-top: 60px;
      margin-bottom: 40px;
      text-align: center;
      font-size: 13px;
      color: var(--muted);
      max-width: 960px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Animations */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .left {
      animation: fadeUp 1s ease both;
    }

    /* Responsive */
    @media(max-width: 1024px) {
      .request-inner {
        grid-template-columns: 1fr;
      }

      .left h2 {
        font-size: 42px;
        line-height: 48px;
      }
    }

    @media(max-width: 600px) {
      .row {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .left h2 {
        font-size: 34px;
      }
    }

    .input-color {
      background: #0b0c11 !important;
    }

    /* corner image starts here */




    /* keep your content above the image */
    .request-inner {
      position: relative;
      z-index: 1;
    }



    @media (max-width: 768px) {
      .request-section::after {
        z-index: -1;
      }
    }


    /* grid background starts here */
    /* Full-page grid background */
    body {
      margin: 0;
      padding: 0;
      background-color: #0a0a0a;
      /* dark base */
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
      background-size: 40px 40px;
      animation: driftGrid 60s ease-in-out infinite;
      color: #fff;
    }

    /* Floating / drifting animation */
    @keyframes driftGrid {
      0% {
        background-position: 0 0, 0 0;
      }

      50% {
        background-position: 20px 40px, 40px 20px;
      }

      100% {
        background-position: 0 0, 0 0;
      }
    }
 .title {
      font-size: 56px;
      line-height: 56px;
      letter-spacing: 0;
      font-variant-numeric: lining-nums proportional-nums;
      margin: 6px 0 16px;
      white-space: nowrap;
    }

    .title .strong {
      font-weight: 900;
      color: var(--accent);
    }

    .title .light {
      font-weight: 400;
      color: var(--text);
    }

    /* Mobile testing for hero section floting icons */
@media (max-width: 768px) {
  .floating-elements {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    height: auto; /* stop forcing big empty space */
    margin-top: 20px;
  }

  .floating-card {
    position: relative !important; /* override absolute */
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    flex: 1 1 140px;   /* responsive size */
    max-width: 160px; /* avoid too wide */
    padding: 16px;
    margin: 0;
    animation: float 6s ease-in-out infinite;
  }
}
.request-section::after {
  content: none !important;
}
