/*
================================================
TABLE OF CONTENTS
================================================
1.  GLOBAL STYLES & VARIABLES
2.  UTILITY CLASSES & BUTTONS
3.  HEADER & NAVIGATION (GLASSMORPHISM)
4.  FOOTER
5.  HERO SECTION (ANIMATED BLOBS)
6.  PARTNERS SECTION
7.  SERVICES SECTION
8.  ABOUT US SECTION
9.  STATS COUNTER SECTION
10. PROCESS SECTION
11. PRICING SECTION
12. TESTIMONIALS SECTION
13. FAQ SECTION
14. CTA (CALL TO ACTION) SECTION
15. PAGE-SPECIFIC STYLES
    - General Page Header
    - Contact Page
    - Legal Pages
16. INTERACTIVE ELEMENTS
    - Popup Modal
    - Glassmorphism Effect
17. ANIMATIONS & KEYFRAMES
18. RESPONSIVE DESIGN (MEDIA QUERIES)
================================================
*/


/* ================================================
   1. GLOBAL STYLES & VARIABLES
   ================================================ */
:root {
    --primary-color: #007BFF;
    --secondary-color: #E83E8C;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));

    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --bg-footer: #E9ECEF;

    --text-dark: #212529;
    --text-muted: #6C757D;

    --border-color: rgba(0, 0, 0, 0.1);
    --shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 20px rgba(0, 0, 0, 0.07);

    --font-family: 'Inter', sans-serif;
    --header-height: 80px;
    --border-radius: 12px;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    max-width: 65ch;
    /* Improves readability */
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: #0056b3;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================================================
   2. UTILITY CLASSES & BUTTONS
   ================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    text-transform: capitalize;
}

.btn-primary {
    background: var(--gradient);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(232, 62, 140, 0.25);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-color: #DEE2E6;
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    background-color: #F1F3F5;
    transform: translateY(-2px);
    border-color: #CED4DA;
}

.btn-light {
    background-color: var(--bg-white);
    color: var(--text-dark);
    box-shadow: var(--shadow-soft);
}

.btn-light:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
    border-radius: 16px;
}

.btn-block {
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* ================================================
   3. HEADER & NAVIGATION (GLASSMORPHISM)
   ================================================ */
.header {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: all var(--transition-speed) ease;
}

.header-inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.header.scrolled {
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
}

.header.scrolled .header-inner {
    border-radius: 0;
    background: rgba(255, 255, 255, 0.8);
}


.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.logo:hover {
    color: var(--text-dark);
}

.logo img {
    height: 70px;
}

.nav-list {
    display: flex;
    gap: 10px;
}

.nav-link {
    color: var(--text-muted);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
    transition: all var(--transition-speed) ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-dark);
    background-color: rgba(255, 255, 255, 0.5);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ================================================
   4. FOOTER
   ================================================ */
.footer {
    background-color: var(--bg-footer);
    padding: 80px 0 0;
    margin-top: 100px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-col p {
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #DEE2E6;
    color: var(--text-muted);
    border-radius: 50%;
    transition: all var(--transition-speed) ease;
}

.footer-social a:hover {
    background: var(--gradient);
    color: var(--bg-white);
    transform: translateY(-3px);
}

.links-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a {
    color: var(--text-muted);
    font-weight: 500;
}

.links-col ul li a:hover {
    color: var(--primary-color);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-weight: 500;
}

.footer-contact li i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-contact a {
    color: var(--text-muted);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #CED4DA;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-legal-links {
    display: flex;
    gap: 25px;
}

.footer-legal-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ================================================
   5. HERO SECTION (ANIMATED BLOBS)
   ================================================ */
.hero {
    position: relative;
    padding: 200px 0 100px;
    text-align: center;
    overflow: hidden;
}

.background-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.blob1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    background: var(--primary-color);
    animation: moveBlob1 20s infinite alternate;
}

.blob2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    right: -150px;
    background: var(--secondary-color);
    animation: moveBlob2 25s infinite alternate;
}

.blob3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    background: #6f42c1;
    /* Purple */
    animation: moveBlob3 15s infinite alternate;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 35px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image-mockup {
    margin-top: 80px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.hero-image-mockup img {
    border-radius: 8px;
}

/* ================================================
   6. PARTNERS SECTION
   ================================================ */
.partners-section {
    padding: 60px 0;
}

.partners-title {
    text-align: center;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 40px;
}

.partners-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-logo {
    opacity: 0.6;
    transition: opacity var(--transition-speed) ease;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo img {
    max-height: 30px;
}

/* ================================================
   7. SERVICES SECTION
   ================================================ */
.services-section {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;
    padding: 30px;
    transition: all var(--transition-speed) ease;
    border-radius: var(--border-radius);
}

.service-card::before {
    /* For border glow */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    padding: 1px;
    background: var(--gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: var(--bg-white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.service-title {
    margin-bottom: 15px;
}

/* ================================================
   8. ABOUT US SECTION
   ================================================ */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-col img {
    border-radius: var(--border-radius);
}

.about-features-list {
    margin-top: 30px;
}

.about-features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.about-features-list i {
    color: var(--primary-color);
}

.about-content-col .btn {
    margin-top: 30px;
}

/* ================================================
   9. STATS COUNTER SECTION
   ================================================ */
.stats-section {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
}

.stat-number::after {
    content: '%';
    font-size: 2rem;
}

.stat-item:nth-child(2) .stat-number::after {
    content: '%';
}

.stat-item:nth-child(3) .stat-number::after {
    content: 'M';
}

.stat-item:nth-child(4) .stat-number::after {
    content: '+';
}


/* ================================================
   10. PROCESS SECTION
   ================================================ */
.process-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
}

.process-step {
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.process-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.5;
    margin-bottom: 15px;
}

.process-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* ================================================
   11. PRICING SECTION
   ================================================ */
.pricing-section {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    transition: all var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
        var(--gradient) border-box;
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--bg-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 20px 0;
}

.price sup {
    font-size: 1.5rem;
    font-weight: 600;
    top: -1.5rem;
}

.price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-features {
    text-align: left;
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    color: var(--primary-color);
}

.pricing-footer {
    margin-top: auto;
}

.pricing-footer .btn {
    width: 100%;
}

/* ================================================
   12. TESTIMONIALS SECTION
   ================================================ */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform var(--transition-speed) ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 40px;
    text-align: center;
}

.testimonial-quote {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.slider-dots {
    text-align: center;
    margin-top: 30px;
}

.slider-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #DEE2E6;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

.slider-dot.active {
    background-color: var(--primary-color);
}

/* ================================================
   13. FAQ SECTION
   ================================================ */
.faq-section {
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 25px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-question i {
    transition: transform var(--transition-speed) ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding-bottom: 25px;
    line-height: 1.8;
}

/* ================================================
   14. CTA (CALL TO ACTION) SECTION
   ================================================ */
.cta-section {
    padding: 0 0 100px;
}

.cta-wrapper {
    background: var(--gradient);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    color: var(--bg-white);
}

.cta-title {
    color: var(--bg-white);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.cta-text {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ================================================
   15. PAGE-SPECIFIC STYLES
   ================================================ */
.page-header {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    background-color: var(--bg-white);
}

.page-header .section-subtitle {
    font-size: 1rem;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-page-section {
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item .contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--gradient);
    color: var(--bg-white);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-text h3 {
    margin-bottom: 10px;
}

.contact-text p {
    margin-bottom: 10px;
}

.contact-text a {
    font-weight: 600;
}

.contact-form-wrapper {
    padding: 40px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--bg-light);
    border: 1px solid #DEE2E6;
    border-radius: 8px;
    color: var(--text-dark);
    font-family: var(--font-family);
    transition: all var(--transition-speed) ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

.legal-content {
    padding: 80px 0;
}

.legal-content .content-container {
    max-width: 800px;
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.legal-section h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 1.8rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.legal-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 10px;
}

/* ================================================
   16. INTERACTIVE ELEMENTS
   ================================================ */
.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(33, 37, 41, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.popup-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    padding: 40px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup-overlay.visible .popup-content {
    transform: scale(1);
}

.popup-icon-success {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
}

/* ================================================
   17. ANIMATIONS & KEYFRAMES
   ================================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.services-grid .animate-on-scroll,
.pricing-grid .animate-on-scroll,
.process-timeline .animate-on-scroll {
    transition-delay: calc(0.1s * var(--i, 0));
}

@keyframes moveBlob1 {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(100px, 50px) scale(1.2);
    }
}

@keyframes moveBlob2 {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(-80px, -60px) scale(0.9);
    }
}

@keyframes moveBlob3 {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-40%, -60%) rotate(180deg);
    }
}

/* ================================================
   18. RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 992px) {

    h1,
    .hero-title {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .header {
        left: 10px;
        right: 10px;
        top: 10px;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: var(--bg-white);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        padding-top: 100px;
        z-index: 999;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
    }

    .header-actions .btn-primary {
        display: none;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image-col {
        max-width: 400px;
        margin: 0 auto 40px;
    }

    .about-features-list {
        display: inline-block;
        text-align: left;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    h1,
    .hero-title {
        font-size: 2.5rem;
    }

    h2,
    .section-title {
        font-size: 2rem;
    }

    .hero {
        padding: 150px 0 80px;
    }

    .footer-top {
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-social,
    .footer-contact {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .cta-wrapper {
        text-align: center;
    }

    .legal-content .content-container {
        padding: 30px;
    }
}