/* ===== PARSHOTAM & ASSOCIATES - PROFESSIONAL CA THEME ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
    --navy: #1a3a5c;
    --navy-light: #264d73;
    --navy-mid: #1e4470;
    --navy-dark: #0f2b45;
    --gold: #c9a84c;
    --gold-light: #dbc278;
    --gold-dark: #a88b35;
    --white: #ffffff;
    --off-white: #f8f9fb;
    --gray-50: #fafbfc;
    --gray-100: #f1f3f6;
    --gray-200: #e2e6ec;
    --gray-300: #c5cdd8;
    --gray-400: #9aa7b8;
    --gray-500: #6b7d92;
    --gray-600: #4a5d72;
    --gray-700: #344455;
    --text: #2a3a4a;
    --text-light: #8ba4c7;
    --text-muted: #7e8fa3;
    --border: #e5e9ef;
    --shadow: 0 2px 12px rgba(26, 58, 92, 0.08);
    --shadow-md: 0 4px 20px rgba(26, 58, 92, 0.10);
    --shadow-lg: 0 8px 32px rgba(26, 58, 92, 0.14);
    --radius: 10px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar a {
    color: var(--gold-light);
}

.top-bar a:hover {
    color: var(--gold);
}

.top-bar-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-bar i {
    margin-right: 5px;
}

/* ===== NRI BANNER ===== */
.nri-banner {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--navy-dark);
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
}

.nri-banner a {
    color: var(--navy-dark);
    font-weight: 700;
    text-decoration: underline;
}

/* ===== HEADER / NAVBAR ===== */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 var(--border), 0 2px 12px rgba(0, 0, 0, 0.06);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    white-space: nowrap;
    flex-shrink: 0;
    max-width: 320px;
}

.ca-logo img {
    height: 45px;
    width: auto;
    display: block;
}

.ca-logo {
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.logo-text span {
    color: var(--gray-500);
    font-weight: 400;
    font-size: 12px;
    display: block;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

/* Nav */
.nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav>li {
    position: relative;
}

.nav>li>a {
    display: block;
    padding: 20px 10px;
    color: var(--gray-600);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--navy);
    transition: var(--transition);
    border-radius: 3px 3px 0 0;
}

.nav>li>a:hover,
.nav>li>a.active {
    color: var(--navy);
}

.nav>li>a:hover::after,
.nav>li>a.active::after {
    width: 70%;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    border-top: 3px solid var(--navy);
}

.nav>li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--gray-600);
    font-size: 13px;
    border-bottom: 1px solid var(--gray-100);
}

.dropdown-menu a:hover {
    color: var(--navy);
    background: var(--gray-50);
    padding-left: 25px;
}

/* Mobile menu */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--navy);
    padding: 10px;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
    color: var(--white);
}

.hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    margin: 0 auto 35px;
    font-weight: 300;
}

.hero-btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--gold);
    color: var(--navy-dark);
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.35);
    transition: var(--transition);
}

.hero-btn:hover {
    transform: translateY(-2px);
    background: var(--gold-light);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.45);
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--white);
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
    border-radius: var(--radius);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-lg);
}

.stats-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
}

.stat-item {
    text-align: center;
    padding: 35px 20px;
    border-right: 1px solid var(--gray-200);
    transition: var(--transition);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: var(--gray-50);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--navy);
    display: block;
}

.stat-label {
    color: var(--gray-500);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 5px;
}

/* ===== SECTION TITLES ===== */
.section {
    padding: 80px 0;
}

.section-light {
    background: var(--off-white);
}

.section-dark {
    background: var(--off-white);
}

.section-navy {
    background: var(--navy);
    color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.section-navy .section-title h2 {
    color: var(--white);
}

.section-title p {
    color: var(--gray-500);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.section-title .divider {
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin: 15px auto 0;
    border-radius: 3px;
}

/* ===== PAGE BANNER ===== */
.page-banner {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.page-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: var(--white);
    margin-bottom: 10px;
}

.page-banner .breadcrumb {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.page-banner .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.page-banner .breadcrumb a:hover {
    color: var(--gold);
}

/* ===== WELCOME SECTION ===== */
.welcome-section .content-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.welcome-section .content-box p {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    padding: 12px 35px;
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--navy-light);
    box-shadow: 0 6px 20px rgba(26, 58, 92, 0.25);
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--navy);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card .icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--off-white);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--navy);
    transition: var(--transition);
}

.service-card:hover .icon {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13px;
    color: var(--gray-500);
}

/* Service Detail Page */
.service-detail {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--navy);
}

.service-detail h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 20px;
}

.service-detail ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px;
}

.service-detail li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--gray-700);
    font-size: 14px;
}

.service-detail li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--navy);
    font-size: 12px;
}

/* ===== TEAM GRID ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--border);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-card .photo {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--navy);
    position: relative;
}

.team-card .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card .info {
    padding: 25px 20px;
}

.team-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px;
}

.team-card .designation {
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
}

.team-card .bio {
    color: var(--gray-500);
    font-size: 13px;
    line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 30px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--border);
    border-top: 3px solid transparent;
}

.testimonial-card:hover {
    border-top-color: var(--navy);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card .quote-icon {
    font-size: 36px;
    color: rgba(26, 58, 92, 0.12);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 14px;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
}

.testimonial-card .author-info h4 {
    font-size: 15px;
    color: var(--navy);
}

.testimonial-card .author-info span {
    font-size: 12px;
    color: var(--gray-500);
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border);
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--navy-light);
    background: var(--gray-50);
}

.faq-question i {
    transition: var(--transition);
    color: var(--navy);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-question.active {
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.8;
}

.faq-answer.open {
    padding: 0 25px 20px;
    max-height: 500px;
}

/* ===== CONTACT / OFFICES ===== */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.office-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--navy);
    transition: var(--transition);
    border: 1px solid var(--border);
    border-left: 4px solid var(--navy);
}

.office-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.office-card .type-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--off-white);
    color: var(--navy);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.office-card h3 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 10px;
}

.office-card .address {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 8px;
}

.office-card .phone {
    color: var(--navy);
    font-weight: 500;
}

/* ===== CONTENT PAGES ===== */
.content-section {
    padding: 60px 0;
}

.content-section .content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.9;
    color: var(--gray-600);
}

.content-section .content p {
    margin-bottom: 18px;
}

.content-section .content strong {
    color: var(--navy);
}

.content-section .content ul {
    margin: 15px 0 15px 20px;
}

.content-section .content li {
    list-style: disc;
    margin-bottom: 8px;
}

/* ===== CLIPPINGS ===== */
.clippings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.clipping-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.clipping-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.clipping-card .image {
    height: 180px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-size: 40px;
}

.clipping-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clipping-card .info {
    padding: 18px;
}

.clipping-card h3 {
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 5px;
}

.clipping-card .date {
    font-size: 12px;
    color: var(--gray-500);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer p,
.footer li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.footer a:hover {
    color: var(--gold-light);
}

.footer-links li {
    padding-left: 15px;
    position: relative;
}

.footer-links li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== ENQUIRY BUTTON ===== */
.enquiry-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
}

.enquiry-float a {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(26, 58, 92, 0.35);
    transition: var(--transition);
}

.enquiry-float a:hover {
    transform: translateY(-3px) scale(1.02);
    background: var(--navy-light);
    box-shadow: 0 8px 30px rgba(26, 58, 92, 0.45);
}

/* ===== WELCOME LAYOUT (Image + Text side by side) ===== */
.welcome-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-text .content-box {
    text-align: left;
    max-width: none;
    margin: 0;
}

.welcome-image {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--navy);
    color: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(26, 58, 92, 0.3);
}

.experience-badge .number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    color: var(--gold);
}

.experience-badge .text {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== ABOUT LAYOUT ===== */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-image {
    position: relative;
}

.about-stats-card {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--navy);
    border-radius: var(--radius);
    display: flex;
    gap: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(26, 58, 92, 0.3);
}

.about-stat {
    padding: 20px 22px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.about-stat:last-child {
    border-right: none;
}

.about-stat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--gold);
    line-height: 1.2;
}

.about-stat span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .content {
    font-size: 15px;
    line-height: 1.9;
    color: var(--gray-600);
}

.about-content .content p {
    margin-bottom: 18px;
}

/* ===== PARTNERS GRID ===== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.partner-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--border);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.partner-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.partner-card h4 {
    font-size: 16px;
    color: var(--navy);
    margin: 15px 0 5px;
    padding: 0 15px;
}

.partner-card p {
    font-size: 13px;
    color: var(--gray-500);
    padding: 0 15px 20px;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--off-white);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--navy);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===== SERVICE DETAIL CARD (Alternating Layout) ===== */
.service-detail-card {
    margin-bottom: 35px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-lg);
}

.service-detail-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    min-height: 280px;
}

.service-detail-layout.reverse {
    grid-template-columns: 1fr 350px;
}

.service-detail-layout.reverse .service-detail-image {
    order: 2;
}

.service-detail-layout.reverse .service-detail-content {
    order: 1;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    padding: 35px 40px;
}

.service-detail-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-200);
}

.service-detail-content ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 8px;
}

.service-detail-content li {
    padding: 6px 0 6px 22px;
    position: relative;
    color: var(--gray-600);
    font-size: 13px;
}

.service-detail-content li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--navy);
    font-size: 11px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border);
    }

    .nav.open {
        display: flex;
    }

    .nav>li>a {
        padding: 15px 25px;
        border-bottom: 1px solid var(--gray-100);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: var(--gray-50);
        border-top: none;
        border-radius: 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero {
        padding: 60px 0 50px;
    }

    .stats-bar {
        margin-left: 20px;
        margin-right: 20px;
    }

    .stats-bar .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .top-bar-left {
        display: none;
    }

    .welcome-layout,
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-layout,
    .service-detail-layout.reverse {
        grid-template-columns: 1fr;
    }

    .service-detail-image {
        height: 220px;
    }

    .service-detail-layout.reverse .service-detail-image {
        order: 0;
    }

    .service-detail-layout.reverse .service-detail-content {
        order: 0;
    }

    .about-stats-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 15px;
    }

    .experience-badge {
        bottom: 10px;
        left: 10px;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 28px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .stats-bar .container {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 30px;
    }

    .page-banner h1 {
        font-size: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-content {
        padding: 25px 20px;
    }
}