/* Global Styles */
:root {
    --primary: #3B82F6;
    --secondary: #10B981;
    --dark: #1F2937;
    --light: #F3F4F6;
    --form-input-error-color: #ff0000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark);
}

/* Container */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Responsive breakpoints for container */
@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1440px;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, #f6f8fc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100%;
}

.hero .split-content {
    text-align: center;
}

.gradient-text {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 5;
    opacity: 1 !important;
}

.hero-text {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #4B5563;
    position: relative;
    z-index: 5;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Projects Section */
.projects {
    padding: 4rem 0;
    background: #f8fafc;
}

.projects h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-heading {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
    margin-top: 2.5rem;
    text-align: center;
    position: relative;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(59,130,246,0.08);
}

.section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    margin: 1rem auto 0 auto;
}

.section-subtitle {
    color: #6b7280;
    font-size: 1.05rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 2.5rem;
    margin-top: 0.5rem;
    line-height: 1.5;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.92;
}

.section-intro {
    color: #6b7280;
    font-size: 1.18rem;
    font-weight: 400;
    text-align: left;
    margin: 1.2rem auto 2.5rem auto;
    line-height: 1.7;
    max-width: 700px;
    letter-spacing: 0;
    text-transform: none;
    opacity: 0.96;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.work-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    min-height: 420px;
    padding: 0;
    align-items: stretch;
    justify-content: flex-start;
}

.work-card:hover {
    box-shadow: 0 8px 32px rgba(59,130,246,0.10);
    transform: translateY(-4px) scale(1.02);
    cursor: pointer;
}

.work-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: top;
    display: block;
    border-radius: 0;
    margin: 0;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.82); /* dark, semi-transparent */
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    text-align: center;
    padding: 2rem 1.5rem;
}

.work-card:hover .project-overlay,
.work-card:focus-within .project-overlay {
    opacity: 1;
    pointer-events: auto;
}

.project-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-align: center;
}

.project-description {
    color: #f3f4f6;
    font-size: 1.05rem;
    text-align: center;
    margin: 0;
}

@media (hover: none) and (pointer: coarse) {
    .work-card:active .project-overlay,
    .work-card:focus .project-overlay {
        opacity: 1;
        pointer-events: auto;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: #fff;
}

.testimonial-card {
    padding: 2rem;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 1rem;
}

.client-info {
    margin-bottom: 1rem;
}

.client-name {
    font-weight: bold;
    color: var(--dark);
}

.client-role {
    color: #6B7280;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    color: var(--dark);
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 0.7rem;
    box-shadow: 0 4px 16px rgba(59,130,246,0.10);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.cta-button:hover,
.cta-button:focus {
    background: linear-gradient(90deg, #2563eb, var(--secondary));
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 32px rgba(59,130,246,0.18);
    color: #fff;
}

.cta-button:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

.nav-links .cta-button {
    margin-left: 1.5rem;
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 700;
    border-radius: 0.7rem;
    box-shadow: 0 2px 8px rgba(59,130,246,0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.nav-links .cta-button:hover,
.nav-links .cta-button:focus {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 6px 18px rgba(59,130,246,0.18);
    transform: none;
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Footer */
.footer {
    padding: 3rem 0 1.5rem;
    background: var(--dark);
    color: white;
    position: relative;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1.5px solid #374151;
    padding-top: 1.2rem;
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #9CA3AF;
    gap: 1rem;
}

.footer-policy-link {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}
.footer-policy-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

.footer-brand-highlight {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-title {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #a3aed6;
    letter-spacing: 1.2px;
    margin-bottom: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact p {
    color: #d1d5db;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem 0;
}

.footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.footer-social a {
    color: #1da1f2; /* Default to Twitter blue for all, override below */
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    margin-right: 0.2rem;
    text-decoration: none;
}

.footer-social a:last-child {
    margin-right: 0;
}

.footer-social a[aria-label="Twitter"] {
    color: #1da1f2;
}
.footer-social a[aria-label="LinkedIn"] {
    color: #0077b5;
}
.footer-social a[aria-label="Instagram"] {
    color: #e1306c;
}
.footer-social a[aria-label="Facebook"] {
    color: #1877f3;
}

.footer-social a:hover[aria-label="Twitter"] {
    background: #1da1f2;
    color: #fff;
    box-shadow: 0 4px 16px rgba(29,161,242,0.18);
    transform: scale(1.12);
}
.footer-social a:hover[aria-label="LinkedIn"] {
    background: #0077b5;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,119,181,0.18);
    transform: scale(1.12);
}
.footer-social a:hover[aria-label="Instagram"] {
    background: #e1306c;
    color: #fff;
    box-shadow: 0 4px 16px rgba(225,48,108,0.18);
    transform: scale(1.12);
}
.footer-social a:hover[aria-label="Facebook"] {
    background: #1877f3 !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(24,119,243,0.18);
    transform: scale(1.12);
}

@media (max-width: 900px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    .footer-bottom-row {
        font-size: 0.98rem;
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}
@media (max-width: 600px) {
    .footer {
        padding: 1.2rem 0 0.5rem;
    }
    .footer-bottom-row {
        font-size: 0.95rem;
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

/* Animations */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-menu-button span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--dark);
        margin: 5px 0;
        transition: 0.3s;
    }

    .mobile-menu-button.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-button.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-button.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        padding-bottom: 6rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .gradient-text {
        font-size: 2.5rem;
    }
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05));
    border-radius: 50%;
    z-index: 2;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation: floatAnimation 8s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation: floatAnimation 12s ease-in-out infinite;
    animation-delay: -3s;
}

.shape-3 {
    width: 70px;
    height: 70px;
    top: 30%;
    right: 25%;
    animation: floatAnimation 10s ease-in-out infinite;
    animation-delay: -5s;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-15px, 15px) rotate(5deg);
    }
    50% {
        transform: translate(15px, -15px) rotate(-5deg);
    }
    75% {
        transform: translate(-15px, -15px) rotate(3deg);
    }
}

/* Animated shapes */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    animation: morphing 15s ease-in-out infinite;
    z-index: 1;
}

.hero::before {
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.hero::after {
    bottom: -100px;
    right: -100px;
    animation-delay: -7.5s;
}

@keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg);
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: rotate(180deg);
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(360deg);
    }
}

/* Remove the floating animation for hero text */
.hero .gradient-text {
    animation: none; /* Remove the float animation */
}

/* Keep animations for background elements only */
@keyframes floatAnimation {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-15px, 15px) rotate(5deg);
    }
    50% {
        transform: translate(15px, -15px) rotate(-5deg);
    }
    75% {
        transform: translate(-15px, -15px) rotate(3deg);
    }
}

/* Make sure the CTA button is also visible */
.hero .cta-button {
    position: relative;
    z-index: 5;
}

/* Contact Form Styling */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    color: var(--dark);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Form validation messages */
/* .form-group .validation-message {
    position: absolute;
    bottom: -1.25rem;
    left: 0;
    font-size: 0.875rem;
    color: #ef4444;
} */

.none {
  display: none;
}

.form-group .incorrect {
  border: 2px solid var(--form-input-error-color);
  background: url(../images/icon-error.svg) no-repeat 97%;
  /* background-color: #FFF; */
}

.error-message {
  text-align: end;
  color: var(--form-input-error-color);
  font-size: 0.8rem;
  padding: 0;
}

/* Custom styling for the submit button */
.contact-form .cta-button {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-align: center;
    justify-content: center;
}

.contact-form .cta-button:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.contact-form .cta-button:active {
    transform: translateY(0);
}

/* Form placeholder styling */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

/* Form success message */

/* .form-success {
    text-align: center;
    padding: 2rem;
    background: #f0fdf4;
    border-radius: 0.5rem;
    border: 2px solid #86efac;
    color: #166534;
    margin-top: 2rem;
} */

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);

  /* REMOVE COMMENT WHEN TESTING */
  /* display: block; */
}

.modal-content {
  background-color: #fff;
  margin: 20% auto;
  padding: 0px 20px 20px 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 320px;
  text-align: center;
  position: relative; /* Make the modal-content position relative */

  border-radius: 10px;
}

.success-modal-icon {
  font-size: 3.5rem;
  padding: 11px 16px;
  margin: 30px 0 16px 0;
  background-color: green;

  border-radius: 50%; /* Use 50% to create a perfect circle */
}

/* Close button styles */
.close {
  position: absolute;
  top: 0px;  /* Position from the top */
  right: 15px;  /* Position from the right */
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
}



/* Contact section background adjustment */
.contact {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    color: var(--dark);
}

.contact h2,
.contact .section-subtitle {
    color: var(--dark);
}

/* Form features list */
.form-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark);
}

.feature-item svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
        margin: 1rem auto;
    }

    .form-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 900px) {
    .work-image {
        height: 200px;
    }
    .work-card {
        min-height: 200px;
    }
}

@media (max-width: 600px) {
    .work-image {
        height: 300px;
    }
    .work-card {
        min-height: 300px;
    }
    .project-overlay {
        padding: 1rem 0.5rem;
    }
    .split-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .projects {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .contact {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .split-section.hero, .hero.split-section {
        padding-top: 110px;
        /* padding-top: 64px; */
        padding-bottom: 64px;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.service-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s, transform 0.2s;
    min-height: 260px;
    position: relative;
}

.service-card:hover {
    box-shadow: 0 6px 24px rgba(59,130,246,0.10);
    transform: translateY(-4px) scale(1.03);
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: var(--primary);
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    text-align: left;
}

.service-description {
    color: #6b7280;
    font-size: 1rem;
    text-align: left;
    margin: 0;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }
    .service-card {
        padding: 1.5rem 1rem;
        min-height: 200px;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .service-card {
        padding: 1.2rem 0.75rem;
        min-height: 0;
    }
}

.why-choose-section, .proven-results-section {
    background: #f3f8fd;
    padding: 4rem 0;
}

.why-choose-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.why-card {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 6px 32px rgba(59,130,246,0.10);
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 220px;
    border: none;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    margin-bottom: 0;
}

.why-card:hover {
    box-shadow: 0 12px 36px rgba(16,185,129,0.13);
    transform: translateY(-4px) scale(1.04);
}

.why-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    color: #222;
    font-size: 1.7rem;
    border-radius: 50%;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 8px rgba(59,130,246,0.06);
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    text-align: left;
}

.why-card p {
    color: #374151;
    font-size: 1rem;
    text-align: left;
    margin: 0;
}

@media (max-width: 900px) {
    .why-card {
        padding: 1.5rem 1rem;
        min-height: 160px;
    }
    .why-choose-section .features-grid {
        gap: 1.2rem;
    }
}

@media (max-width: 600px) {
    .why-card {
        padding: 1.2rem 0.75rem;
        min-height: 0;
    }
    .why-icon {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 1.2rem;
        margin-bottom: 0.7rem;
    }
    .why-choose-section .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 900px) {
    .section-heading {
        font-size: 2rem;
        margin-top: 2rem;
    }
    .section-heading::after {
        width: 40px;
        height: 3px;
    }
    .section-subtitle {
        font-size: 0.98rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 600px) {
    .section-heading {
        font-size: 1.4rem;
        margin-top: 1.2rem;
    }
    .section-heading::after {
        width: 28px;
        height: 2px;
    }
    .section-subtitle {
        font-size: 0.92rem;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 900px) {
    .section-intro {
        text-align: left !important;
    }
}

@media (max-width: 600px) {
    .section-intro {
        font-size: 0.98rem;
        margin-bottom: 1.2rem;
        text-align: center;
    }
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2.5rem;
    margin-bottom: 3rem;
    flex-wrap: nowrap;
}

.footer-brand {
    max-width: 340px;
}

@media (max-width: 1100px) {
    .footer-brand, .footer-links, .footer-contact {
        max-width: 280px;
    }
}

@media (max-width: 900px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    .footer-grid {
        flex-direction: column;
        gap: 2rem;
        align-items: stretch;
        flex-wrap: wrap;
    }
    .footer-brand, .footer-links, .footer-contact {
        flex: 1 1 100%;
    }
    .split-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-contact {
        order: 1 !important;
    }
    .footer-links {
        order: 2 !important;
    }
    .footer-brand {
        order: 3 !important;
    }
    .footer {
        padding: 1.2rem 0 0.5rem;
    }
    .footer-bottom-row {
        font-size: 0.95rem;
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    .split-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.footer-contact a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--primary);
}

.split-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    /* border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(59,130,246,0.08); */
    display: block;
    margin: 0 auto;
}
@media (max-width: 1100px) {
    .split-image img {
        max-width: 320px;
    }
}
@media (max-width: 900px) {
    .split-image img {
        max-width: 90vw;
    }
}

.split-section .container {
    display: flex;
    align-items: center;
    gap: 5.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
@media (max-width: 1100px) {
    .split-section .container {
        gap: 2.5rem;
    }
}
@media (max-width: 900px) {
    .split-section .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}

@media (min-width: 901px) {
    .proven-results-section .container {
        flex-direction: row-reverse;
    }
}

/* Privacy Policy Page Styles */
.privacy-policy {
    padding: 8rem 0 4rem;
    background: #f8fafc;
    min-height: 100vh;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.policy-date {
    color: #6B7280;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-align: center;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
}

.policy-section h3 {
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
}

.policy-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #374151;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #374151;
}

.policy-section strong {
    color: var(--dark);
    font-weight: 600;
}

.policy-section a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.policy-section a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* Responsive design for privacy policy */
@media (max-width: 900px) {
    .privacy-policy {
        padding: 6rem 0 3rem;
    }

    .policy-content {
        padding: 2rem;
        margin: 0 1rem;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }

    .policy-section h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .privacy-policy {
        padding: 5rem 0 2rem;
    }

    .policy-content {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .policy-section {
        margin-bottom: 2rem;
    }

    .policy-section h2 {
        font-size: 1.2rem;
    }

    .policy-section h3 {
        font-size: 1rem;
    }

    .policy-section ul {
        padding-left: 1rem;
    }
}