/* Base Styles & Variables */
:root {
    /* Colors */
    --primary-red: #DC2626;
    --primary-yellow: #FDE047;
    --accent-red: #EF4444;
    --accent-yellow: #FACC15;
    --dark: #1F2937;
    --light: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-sans: 'Montserrat', system-ui, -apple-system, sans-serif;
    --font-heading: 'Montserrat', system-ui, -apple-system, sans-serif;
    --font-script: 'Dancing Script', cursive;
    
    /* Spacing */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    --spacing-24: 6rem;
    
    /* Border Radius */
    --rounded-sm: 0.125rem;
    --rounded: 0.25rem;
    --rounded-md: 0.375rem;
    --rounded-lg: 0.5rem;
    --rounded-xl: 0.75rem;
    --rounded-2xl: 1rem;
    --rounded-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--gray-900);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
}

.section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 30px;
}

.section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header.white {
    color: white;
}

.highlight {
    color: var(--primary-yellow);
}

.script {
    font-family: var(--font-script);
    font-weight: 600;
}

.red {
    color: var(--primary-red);
}

.yellow {
    color: var(--primary-yellow);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
    min-width: 180px;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
}

.btn i {
    margin-left: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-red);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--accent-red);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--primary-yellow);
    color: var(--gray-900);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background-color: var(--accent-yellow);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn-white {
    background-color: white;
    color: var(--primary-red);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background-color: var(--gray-100);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: var(--shadow-md);
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--primary-red);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 70px;
    padding: 0.5rem 1rem;
    flex-wrap: nowrap;
}

.logo {
    margin: 0.5rem 0 0 1.5rem;
    display: flex;
    align-items: center;
}

.logo img {
    height: 2.5rem;
    width: auto;
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.desktop-nav {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-end;
    margin-left: auto;
}

.nav-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-900);
    border-radius: var(--rounded);
    transition: var(--transition);
    display: inline-block;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
    transform: translateY(-1px);
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1rem;
        height: auto;
    }
    
    .desktop-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .desktop-nav.active {
        display: flex;
    }
    
    .logo {
        margin: 0;
    }
    
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--primary-red);
    }
    
    .nav-link {
        padding: 0.8rem 0;
        font-size: 1rem;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid var(--gray-100);
    }
}

.menu-toggle {
    display: none;
}


/* Animation Classes */
.fade-in-up,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transition: all 0.8s ease-out;
}

.fade-in-up {
  transform: translateY(40px);
}

.fade-in-left {
  transform: translateX(-50px);
}

.fade-in-right {
  transform: translateX(50px);
}

.show {
  opacity: 1;
  transform: translate(0, 0) !important;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/home.jpg') no-repeat center center/cover;
    padding: 6rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.2;
}

.decorative-icon {
    position: absolute;
    color: var(--primary-yellow);
    animation: float 6s ease-in-out infinite;
}

.decorative-icon:nth-child(1) {
    top: 10%;
    left: 10%;
    font-size: 3rem;
}

.decorative-icon:nth-child(2) {
    top: 20%;
    right: 15%;
    font-size: 2.5rem;
    animation-delay: 1s;
}

.decorative-icon:nth-child(3) {
    bottom: 20%;
    left: 25%;
    font-size: 3.5rem;
    animation-delay: 2s;
}

.decorative-icon:nth-child(4) {
    bottom: 15%;
    right: 10%;
    font-size: 2.5rem;
    animation-delay: 1.5s;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
}

.hero h1 {
    font-size: 1.75rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero .tagline {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero .script {
    font-size: 1.5rem;
    display: inline;
    margin-bottom: 0;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin: 0 auto 2.5rem;
    max-width: 600px;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2.5rem auto 0;
    max-width: 800px;
    padding: 0 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-item i {
    color: #fac62f;
    font-size: 1.2rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 30px auto;
    max-width: 1200px;
}

.feature-card {
    background: white;
    border-radius: var(--rounded-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.red-bg {
    background-color: var(--primary-red);
    color: white;
}

.yellow-bg {
    background-color: var(--primary-yellow);
    color: var(--gray-900);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Services Section */
.services-preview {
    background-color: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    background: white;
    border-radius: var(--rounded-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--rounded-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.service-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0;
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.service-link {
    color: var(--primary-red);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent-red);
}

.service-link i {
    margin-left: 0.25rem;
    font-size: 0.875rem;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(3px);
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cta-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

/* Why Choose Us */
.why-choose-us {
    background-color: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.why-choose-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.features-list {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-icon-small {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
    font-size: 0.875rem;
}

.feature-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.testimonial-card {
    background: linear-gradient(135deg, #fcd34d, #f59e0b);
    border-radius: var(--rounded-2xl);
    padding: 2rem;
    color: var(--gray-900);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    position: relative;
    padding: 1.5rem;
    background: white;
    border-radius: var(--rounded-lg);
    box-shadow: var(--shadow);
}

.testimonial-icon {
    width: 3rem;
    height: 3rem;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -3.5rem auto 1rem;
    font-size: 1.25rem;
}

.testimonial-content blockquote {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.testimonial-content cite {
    font-style: normal;
    font-weight: 600;
    color: var(--gray-800);
}

/* NDIS Section */
.ndis-preview {
    background-color: var(--primary-red);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.ndis-preview .section-header h2 {
    color: white;
}

.ndis-preview .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    justify-content: center;
    margin: 2rem auto;
    max-width: 30rem;
}

.ndis-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.ndis-feature {
    text-align: center;
}

.ndis-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.ndis-feature h3 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.ndis-feature p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Contact CTA */
.contact-cta {
    background-color: var(--gray-50);
    text-align: center;
    padding: 60px 0;
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 200px;
    padding: 1.5rem;
    background: white;
    border-radius: var(--rounded-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.25rem;
}

.contact-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--gray-800);
}

.contact-info a {
    color: var(--primary-red);
    transition: var(--transition);
    font-weight: 500;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.5rem;
}

.contact-info a:hover {
    color: var(--accent-red);
    transform: translateY(-2px);
}

.contact-info p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin: 0.5rem 0 0;
    line-height: 1.5;
}

/* Footer */
.footer {
  background-color: #111827;
  color: #d1d5db;
  padding: 60px 20px;
  font-family: "Montserrat", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-about h3 {
  color: #facc15;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-logo {
  height: 35px;
  margin-right: 10px;
  border-radius: 4px;
}

.footer-about p {
  color: #9ca3af;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

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

.footer-links ul li {
  margin: 8px 0;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #facc15;
}

.footer-contact p {
  margin: 8px 0;
}

.footer-contact i {
  color: #dc2626;
  margin-right: 8px;
}

.footer-contact a {
  color: #facc15;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  color: #9ca3af;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-about h3 {
    justify-content: center;
  }
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-200 {
    transition-delay: 200ms;
}

.reveal-delay-300 {
    transition-delay: 300ms;
}

.reveal-delay-400 {
    transition-delay: 400ms;
}

.reveal-delay-500 {
    transition-delay: 500ms;
}

/* Responsive Styles */
@media (min-width: 640px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .tagline {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .trust-indicators {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ndis-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .nav-container {
        height: 70px;
    }
    
    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .mobile-menu-button {
        display: none;
    }
    
    .hero {
        padding: 8rem 0;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero .tagline {
        font-size: 1.25rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 3rem;
    }
    
}

@media (min-width: 1024px) {
    .hero {
        padding: 10rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    
    .contact-info {
        min-width: 250px;
    }
}

@media (min-width: 1280px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero .tagline {
        font-size: 1.5rem;
    }
}

/* New Why Choose Section */
.why-choose {
  padding: 60px 0;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #1b1b1b;
}

.why-choose .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.why-choose .left {
  flex: 1;
  min-width: 300px;
}

.why-choose h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  font-weight: 700;
  color: #1b1b1b;
}

.why-choose h2 .script {
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  color: var(--primary-red);
}

.why-choose .feature {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  transition: transform 0.3s ease;
}

.why-choose .feature:hover {
  transform: translateX(5px);
}

.why-choose .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  font-size: 1.2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.why-choose .icon.red {
  background-color: var(--primary-red);
}

.why-choose .icon.yellow {
  background-color: var(--primary-yellow);
  color: #1b1b1b;
}

.why-choose .feature h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.3rem 0;
  color: #333;
}

.why-choose .feature p {
  margin: 0;
  color: #555;
  line-height: 1.5;
  font-size: 0.95rem;
}

.why-choose .right {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Changed from center to flex-start */
  height: 100%;
  padding-top: 3rem; /* Added more top padding */
  padding-bottom: 1rem;
  margin-top: 1.5rem; /* Added margin to push it down */
}

.why-choose .quote-box {
  background: linear-gradient(135deg, #FFED80, #FDBA2D);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
  max-width: 500px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 2rem; /* Added margin to push it down further */
}

.why-choose .quote-icon {
  background: var(--primary-red);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.why-choose .quote-box p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.why-choose .quote-author {
  font-weight: 600;
  color: #1b1b1b;
  font-size: 1rem;
  display: block;
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
  .why-choose .container {
    flex-direction: column;
    align-items: center;
  }

  .why-choose .left, 
  .why-choose .right {
    width: 100%;
    max-width: 700px;
  }

  .why-choose h2 {
    text-align: center;
  }

  .why-choose .quote-box {
    margin-top: 2rem;
  }
}

@media (max-width: 600px) {
  .why-choose {
    padding: 3rem 0;
  }

  .why-choose h2 {
    font-size: 1.8rem;
  }

  .why-choose .feature h3 {
    font-size: 1rem;
  }

  .why-choose .feature p {
    font-size: 0.9rem;
  }

  .why-choose .quote-box {
    padding: 2rem 1.5rem;
  }

  .why-choose .quote-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .why-choose .quote-box p {
    font-size: 1rem;
  }
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    .container {
        width: 100%;
        padding: 0;
    }
    
    .section {
        padding: 2rem 0;
        page-break-inside: avoid;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    a {
        text-decoration: none;
        color: #000;
    }
    
    .btn, .mobile-menu-button, .mobile-menu-close {
        display: none !important;
    }
    
    }

