
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1F2A44;
    --gold: #C6A34F;
    --cream: #F5F2EB;
    --white: #ffffff;
    --gray-600: #6b7280;
    --gray-800: #1f2937;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--navy);
    background-color: var(--cream);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background:  #a67c00;
    color: var(--white);
}

.btn-primary:hover {
    background: #b8965e;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--gray-600);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--gray-800);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
}

.btn-navy:hover {
    background: #2a3b5c;
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* .modal-content {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    max-width: 85%;
    max-height: 80vh;
    overflow-y: auto;
    margin: 20px;
} */

.modal-content {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    max-width: 85%;
    max-height: 80vh;
    overflow-y: auto;
    margin: 20px;
    /* ...existing code... */
}

/* Custom scrollbar for modal-content */
.modal-content::-webkit-scrollbar {
    width: 10px;
    background: #f5e6c4; /* light cream */
    border-radius: 12px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--gold), var(--navy));
    border-radius: 12px;
    min-height: 40px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--navy), var(--gold));
}

/* For Firefox */
.modal-content {
    scrollbar-width: thin;
    scrollbar-color: var(--gold) #f5e6c4;
}

.modal-content h2 {
    color: var(--white);
    margin-bottom: 20px;
    text-align: center;
}

.disclaimer-text {
    margin-bottom: 30px;
}

.disclaimer-text ul {
    padding-left: 20px;
    margin: 15px 0;
}

.disclaimer-text li {
    margin: 8px 0;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.modal-hidden {
    display: none;
}

/* Header */
.header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo svg {
    color: var(--gold);
}

/* Logo image size for navbar */
.logo img {
    height: 60px;
    width: auto;
    display: block;
    border-radius: 6px;
    object-fit: contain;
}

.brand-text h1 {
    font-size: 24px;
    color: var(--navy);
    font-weight: 700;
}

.brand-text p {
    font-size: 14px;
    color: var(--gray-600);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--gold);
}
.nav-menu a.nav-link-active {
    color: var(--gold);
    background: rgba(198,163,79,0.12);
    border-radius: 8px;
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    transition: background 0.2s, outline 0.2s;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--navy);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, rgba(31, 42, 68, 0.95) 50%, rgba(31, 42, 68, 0.9) 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-icon {
    margin-bottom: 30px;
}

.hero-icon svg {
    color: var(--gold);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    margin-top: 15%;
}

.hero-title span {
    display: block;
}

.text-gold {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    gap: 40px;
    /* margin-top: 80px; */
}

.feature {
    text-align: center;
}

.feature svg {
    color: var(--gold);
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature p {
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-dot {
    width: 6px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.scroll-dot::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 1px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--gold);
    margin: 0 auto 30px;
}

.section-header p {
    font-size: 18px;
    color: var(--cream);
    max-width: 800px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 50px 0;
    background: var(--cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--navy);
}

.about-description {
    margin-bottom: 30px;
}

.about-description p {
    margin-bottom: 20px;
    color: var(--gray-600);
    font-size: 16px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 526px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.modal-content ul,
.disclaimer-text ul {
    list-style: disc inside;
    margin: 16px 0 16px 18px;
    padding-left: 18px;
}

.modal-content li,
.disclaimer-text li {
    margin-bottom: 10px;
    color: #fff; /* ya jo bhi aapko text color chahiye */
    font-size: 1rem;
}

.stat-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
}

.stat-label {
    font-size: 14px;
    color: var(--navy);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.stat-card {
    background: var(--navy);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card svg {
    color: var(--gold);
    margin-bottom: 20px;
}

.stat-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--gold);
}

.stat-card p {
    color: var(--cream);
}

/* .mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-card h3,
.vision-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--navy);
}

.mission-card p,
.vision-card p {
    margin-bottom: 30px;
    color: var(--gray-600);
} */

/* Mission-Vision Section Stylish Look */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
    padding: 40px 24px;
    border-radius: 18px;
    background: linear-gradient(120deg, #fffbe9 0%, #f5e6c4 40%, #c6a34f 100%);
    box-shadow: 0 6px 32px rgba(198,163,79,0.10), 0 1.5px 8px rgba(31,42,68,0.06);
}

.mission-card,
.vision-card {
    background: var(--navy);
    padding: 36px 28px;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(198,163,79,0.10);
    border: 1.5px solid #f5e6c4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.mission-card:hover,
.vision-card:hover {
    box-shadow: 0 8px 32px rgba(198,163,79,0.18);
    transform: translateY(-4px) scale(1.02);
    border-color: #c6a34f;
}

.mission-card h3,
.vision-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #c6a34f;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.mission-card p,
.vision-card p {
    margin-bottom: 24px;
    color: var(--cream);
    font-size: 1.08rem;
    line-height: 1.7;
}

.mission-card .btn-outline,
.vision-card .btn-outline {
    border: 2px solid #c6a34f;
    color: #c6a34f;
    background: transparent;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(198,163,79,0.08);
}

.mission-card .btn-outline:hover,
.vision-card .btn-outline:hover {
    background: #c6a34f;
    color: #fff;
    box-shadow: 0 4px 16px rgba(198,163,79,0.18);
}

/* Responsive for mobile */
@media (max-width: 900px) {
    .mission-vision {
        grid-template-columns: 1fr;
        padding: 24px 8px;
        gap: 24px;
    }
    .mission-card,
    .vision-card {
        padding: 28px 12px;
    }
}

/* Practice Areas */
.practice-areas {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--navy) 0%, rgba(31, 42, 68, 0.95) 50% 50%, rgba(31, 42, 68, 0.9) 100%);
    /* background: var(--white); */
    /* background-image: url('image/backfirmImg1.png'); */
    /* background-repeat: repeat-y; */
    
    width: 100%;
}
.practice-areas ::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80);
    background-size: cover; 
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}
.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.practice-card {
    background: var(--cream);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.practice-card:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-10px);
}

.practice-card svg {
    color: var(--gold);
    margin-bottom: 20px;
}

.practice-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.practice-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.practice-card:hover p {
    color: rgba(245, 242, 235, 0.9);
}

.learn-more {
    color: var(--gold);
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.practice-card:hover .learn-more {
    opacity: 1;
}

.practice-cta {
    background: linear-gradient(120deg, #fffbe9 0%, #f5e6c4 40%, #c6a34f 100%);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    color: var(--navy);
}

.practice-cta h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.practice-cta p {
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Team Section */
/* .team {
    padding: 50px 0;
    background: var(--cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.team-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 30px;
}

.team-info h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--navy);
}

.team-role {
    font-size: 16px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 5px;
}

.team-position {
    font-size: 18px;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-location,
.team-practice {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.team-info .btn {
    margin-top: 15px;
} */

/* Team Section */
.team {
    padding: 50px 0;
    background: var(--cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin: 40px 0;
}

.team-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(198,163,79,0.10);
    transition: transform 0.25s, box-shadow 0.25s;
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}

.team-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 32px rgba(198,163,79,0.18);
}

.team-image {
    width: 90px;
    height: 90px;
    margin-bottom: 14px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    background: #fff;
    box-shadow: 0 2px 8px rgba(198,163,79,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-info {
    padding: 0;
    width: 100%;
    text-align: center;
}

.team-info h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: var(--navy);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.team-role {
    font-size: 0.98rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 4px;
}

.team-position {
    font-size: 1rem;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 8px;
}

.team-location,
.team-practice {
    font-size: 0.92rem;
    color: var(--gray-600);
    margin-bottom: 6px;
}

.team-info .btn {
    margin-top: 10px;
    font-size: 0.95rem;
    padding: 6px 14px;
}

/* Responsive for tablets */
@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Responsive for mobile */
@media (max-width: 700px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-card {
        padding: 14px 4px;
    }
}


/* Contact Section */
/* .contact {
    padding: 50px 0;
    /* background: var(--white); 
     background-image: url(image/backfirmImg1.png); 
} */

.contact {
    padding: 50px 0;
    background:
        linear-gradient(135deg, var(--navy) 0%, rgba(31, 42, 68, 0.95) 50%, rgba(31, 42, 68, 0.9) 100%),
        url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-form-section {
    background: var(--gold);
    padding: 40px;
    border-radius: 12px;
}

.contact-form-section h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--navy);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--gold);
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item svg {
    color: var(--gold);
    margin-top: 2px;
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--cream);
    font-size: 14px;
}

.career-info {
    background: var(--gold);
    padding: 30px;
    border-radius: 12px;
    color: var(--white);
}

.career-info h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.career-info p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.offices {
    text-align: center;
}

.offices h3 {
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--gold);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.office-card {
    background: var(--gold);
    padding: 30px;
    border-radius: 12px;
    text-align: left;
}

.office-card h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--navy);
}

.office-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.office-item svg {
    color: var(--navy);
    margin-top: 2px;
}

.office-item p {
    font-size: 14px;
    color: var(--cream);
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--gold);
}

.footer-brand p {
    margin-bottom: 15px;
    opacity: 0.8;
    font-size: 14px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--gold);
}

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

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.8;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 14px;
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .practice-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .offices-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .modal-content {
        padding: 20px;
        margin: 10px;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .practice-cta {
        padding: 40px 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
