/*
--- TABLE OF CONTENTS ---
1.  Global Styles & Variables
2.  Utility Classes
3.  Header & Navigation
4.  Buttons & Forms
5.  Hero Section
6.  Page Header (for subpages)
7.  About Section
8.  Services Section (with 3D flip cards)
9.  Process Section (Timeline)
10. ROI Calculator Section
11. Industries Section
12. Testimonials Section
13. CTA (Call to Action) Section
14. Footer
15. Legal Pages Content
16. Contact Page
17. Popups & Modals
18. Scroll & Animation Effects
19. Responsive Media Queries
*/

/* 1. GLOBAL STYLES & VARIABLES
-------------------------------------------------- */
:root {
    --primary-color: #0052D4;
    --primary-gradient: linear-gradient(90deg, #4364F7, #6FB1FC);
    --secondary-color: #f4f7fc;
    --dark-blue: #0A1931;
    --medium-blue: #185ADB;
    --light-blue: #E4F1FF;
    --text-color: #555;
    --heading-color: #1c2e4a;
    --white-color: #ffffff;
    --border-color: #e0e6f1;
    --shadow-light: 0 4px 15px rgba(0, 82, 212, 0.08);
    --shadow-medium: 0 8px 25px rgba(0, 82, 212, 0.12);

    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Rajdhani', sans-serif;

    --header-height: 80px;
    --border-radius: 8px;
    --transition-speed: 0.3s;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--white-color);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-secondary);
    color: var(--heading-color);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--medium-blue);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--secondary-color);
}

.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--primary-color);
    background: var(--light-blue);
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.section-title {
    margin-bottom: 15px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.text-center {
    text-align: center;
}


/* 2. UTILITY CLASSES
-------------------------------------------------- */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-medium);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-speed) ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: scale(1.1);
    color: var(--white-color);
}


/* 3. HEADER & NAVIGATION
-------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background-color: var(--white-color);
    z-index: 1000;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header.sticky {
    box-shadow: var(--shadow-light);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo a {
    display: block;
}

.logo img {
    height: 45px;
    transition: height var(--transition-speed) ease;
}


.nav-list {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--heading-color);
    position: relative;
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width var(--transition-speed) ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active,
.nav-link:hover {
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-speed) ease;
    min-width: 200px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--heading-color);
    font-size: 1rem;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--dark-blue);
    border-radius: 5px;
    transition: all var(--transition-speed) ease;
}

.hamburger {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger::before {
    top: -10px;
}

.hamburger::after {
    bottom: -10px;
}

.nav.active .hamburger {
    background-color: transparent;
}

.nav.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}


/* 4. BUTTONS & FORMS
-------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-secondary);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all var(--transition-speed) ease;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.4s ease;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white-color);
}

.btn-primary:hover {
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: var(--white-color);
    color: var(--primary-color);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-light {
    background: var(--white-color);
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--dark-blue);
    color: var(--white-color);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.8rem;
    border-radius: 20px;
    border: 1px solid var(--white-color);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
}

.btn-sm:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--heading-color);
}

.form-group input,
.form-group textarea,
.custom-select select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--white-color);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
}

.form-group input:focus,
.form-group textarea:focus,
.custom-select select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 82, 212, 0.1);
}

.form-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--border-color);
    pointer-events: none;
}

.form-group input:focus + .form-icon {
    color: var(--primary-color);
}


/* 5. HERO SECTION
-------------------------------------------------- */
.hero {
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 80px;
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-shape-1 {
    position: absolute;
    top: -50px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: var(--primary-gradient);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(50px);
}

.hero-shape-2 {
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background-color: var(--medium-blue);
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(60px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    margin-bottom: 20px;
}

.hero-text h1 .highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image-3d-container {
    perspective: 1000px;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transform: rotateY(-20deg) rotateX(10deg);
    transition: transform 0.6s ease;
}

.hero-image-3d-container:hover img {
    transform: rotateY(0) rotateX(0);
}


/* 6. PAGE HEADER (for subpages)
-------------------------------------------------- */
.page-header {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 60px;
    background: var(--primary-gradient);
    color: var(--white-color);
    text-align: center;
}

.page-header h1 {
    color: var(--white-color);
    margin-bottom: 10px;
}

.breadcrumbs a,
.breadcrumbs span {
    color: var(--white-color);
    font-weight: 500;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* 7. ABOUT SECTION
-------------------------------------------------- */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 60px;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.about-list {
    margin-top: 20px;
    margin-bottom: 30px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.about-list i {
    color: var(--primary-color);
    font-size: 1.5rem;
}


/* 8. SERVICES SECTION (with 3D flip cards)
-------------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: transparent;
    perspective: 1500px;
    min-height: 320px;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.service-card-front {
    background-color: var(--white-color);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
}

.service-card-back {
    background: var(--primary-gradient);
    color: var(--white-color);
    transform: rotateY(180deg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-card-front h3 {
    margin-bottom: 10px;
}

.service-card-back h3 {
    color: var(--white-color);
    margin-bottom: 15px;
}

.service-card-back ul {
    text-align: left;
    margin-bottom: 20px;
}

.service-card-back li {
    margin-bottom: 8px;
}


/* 9. PROCESS SECTION (Timeline)
-------------------------------------------------- */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--light-blue);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-gradient);
    border-radius: 50%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 0 0 5px var(--light-blue);
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -25px;
}

.timeline-content {
    padding: 20px 30px;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.timeline-content h3 {
    margin-bottom: 10px;
}


/* 10. ROI CALCULATOR SECTION
-------------------------------------------------- */
.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--white-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.calculator-form .form-group label {
    font-size: 0.9rem;
}

.calculator-form input {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px;
    text-align: center;
}

.calculator-results {
    background: var(--primary-gradient);
    color: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calculator-results h3 {
    color: var(--white-color);
    margin-bottom: 20px;
    text-align: center;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.result-item:last-of-type {
    border-bottom: none;
}

.result-value {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
}

.calculator-results .disclaimer {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 20px;
    opacity: 0.8;
}


/* 11. INDUSTRIES SECTION
-------------------------------------------------- */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) ease;
}

.industry-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.industry-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.industry-item span {
    font-weight: 600;
    color: var(--heading-color);
}


/* 12. TESTIMONIALS SECTION
-------------------------------------------------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
}

.testimonial-card i {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-color);
}


/* 13. CTA (Call to Action) SECTION
-------------------------------------------------- */
.cta-section {
    padding: 60px 0;
    background-color: var(--dark-blue);
}

.cta-wrapper {
    background: var(--primary-gradient);
    padding: 60px 40px;
    border-radius: var(--border-radius);
    text-align: center;
    color: var(--white-color);
}

.cta-wrapper h2 {
    color: var(--white-color);
    margin-bottom: 15px;
}

.cta-wrapper p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* 14. FOOTER
-------------------------------------------------- */
.footer {
    padding-top: 70px;
    background-color: var(--dark-blue);
    color: rgba(255, 255, 255, 0.7);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col h3 {
    font-family: var(--font-secondary);
    color: var(--white-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.footer-logo img {
    height: 50px;
    filter: invert(1);
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white-color);
    transition: all var(--transition-speed) ease;
}

.footer-socials a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links ul li a:hover {
    color: var(--white-color);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact ul li i {
    margin-top: 5px;
    color: var(--primary-color);
}

.footer-contact ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact ul li a:hover {
    color: var(--white-color);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}


/* 15. LEGAL PAGES CONTENT
-------------------------------------------------- */
.main-content {
    padding: 80px 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p,
.legal-content ul {
    margin-bottom: 15px;
}


/* 16. CONTACT PAGE
-------------------------------------------------- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: var(--light-blue);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.contact-details h3 {
    margin-bottom: 5px;
}

.contact-form-container {
    background-color: var(--secondary-color);
    padding: 40px;
    border-radius: var(--border-radius);
}

.contact-form .form-title {
    margin-bottom: 30px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.custom-select {
    position: relative;
}

.custom-select::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-color);
}

.custom-select select {
    appearance: none;
    -webkit-appearance: none;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
}


/* 17. POPUPS & MODALS
-------------------------------------------------- */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
}

.popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 400px;
    position: relative;
    transform: scale(0.9);
    transition: transform var(--transition-speed) ease;
}

.popup.show .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

.popup-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.popup-content h3 {
    margin-bottom: 10px;
}


/* 18. SCROLL & ANIMATION EFFECTS (UPDATED)
-------------------------------------------------- */
.animate-on-scroll {
    /* Set initial state for GSAP to animate FROM */
    opacity: 1 !important; 
}
/* All other conflicting rules (transition, .is-visible) have been removed */


/* 19. RESPONSIVE MEDIA QUERIES
-------------------------------------------------- */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    h2 {
        font-size: 2.2rem;
    }

    /* Header & Nav */
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--white-color);
        transition: right 0.4s ease;
    }
    .nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        gap: 20px;
    }
    .nav-link {
        font-size: 1.5rem;
    }
    .dropdown {
        text-align: center;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 10px 0 0;
        display: none;
    }
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    .dropdown-menu li a {
        font-size: 1.2rem;
        text-align: center;
    }

    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image {
        grid-row: 1;
        margin-bottom: 30px;
    }

    /* About */
    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-list {
        display: inline-block;
        text-align: left;
    }

    /* Process */
    .process-timeline::after {
        left: 25px;
    }
    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        left: 0;
        padding-left: 70px;
        padding-right: 15px;
        text-align: left;
    }
    .timeline-icon,
    .timeline-item:nth-child(even) .timeline-icon {
        left: 0;
    }
    
    /* Calculator */
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .footer-col {
        text-align: center;
    }
    .footer-socials {
        justify-content: center;
    }
    .footer-contact ul li {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 60px 0;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
    }
}
