/* ============================================
     Mobile Drawer Menu Styles
     ============================================ */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #103779;
    margin-right: 18px;
    cursor: pointer;
    z-index: 12000;
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
    .menu-header .menu {
        display: none !important;
    }
}

.mobile-drawer-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 85vw;
    max-width: 340px;
    height: 100vh;
    background: linear-gradient(135deg, #103779 70%, #84b535 100%);
    box-shadow: 2px 0 32px rgba(16,55,121,0.18);
    z-index: 12000;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(.77,0,.18,1);
    display: flex;
    flex-direction: column;
    padding-bottom: 32px;
}
.mobile-drawer-menu.open {
    transform: translateX(0);
}
.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px 12px 22px;
    border-bottom: 1px solid #e5e7eb33;
}
.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}
.mobile-menu-list {
    display: flex;
    flex-direction: column;
    padding: 18px 0 0 0;
    gap: 0;
}
.mobile-menu-list a,
.mobile-menu-link {
    color: #fff;
    font-size: 1.13rem;
    font-weight: 500;
    padding: 15px 28px 15px 28px;
    text-decoration: none;
    border: none;
    background: none;
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e7eb22;
    transition: background 0.18s, color 0.18s;
    cursor: pointer;
}
.mobile-menu-list a:hover,
.mobile-menu-link:hover {
    background: #fff2;
    color: #fbbf24;
}
.mobile-menu-item-with-mega {
    width: 100%;
}
.mobile-menu-link.has-mega {
    position: relative;
}
.mobile-mega-toggle {
    margin-left: 12px;
    color: #fbbf24;
    font-size: 1.2em;
    display: flex;
    align-items: center;
}
.mobile-mega-menu {
    display: none;
    flex-direction: column;
    background: #fff1;
    padding-left: 18px;
}
.mobile-menu-item-with-mega.open .mobile-mega-menu {
    display: flex;
    animation: fadeInMenu 0.25s;
}
.mobile-mega-menu a {
    color: #fff;
    font-size: 1rem;
    padding: 10px 0 10px 10px;
    border: none;
    border-radius: 0;
    background: none;
    border-bottom: 1px solid #e5e7eb11;
    transition: background 0.18s, color 0.18s;
}
.mobile-mega-menu a:hover {
    background: #fff2;
    color: #84b535;
}
@keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 993px) {
    .mobile-drawer-menu, .mobile-menu-toggle { display: none !important; }
}
@media (max-width: 768px) {
    .logo img {
        max-height: 50px;
        max-width: 160px;
    }
}

@media (max-width: 480px) {
    .logo img {
        max-height: 38px;
        max-width: 120px;
    }
}
/* ============================================
   SarvTechs Main Stylesheet
   Modern, Clean, Premium Design
   ============================================ */

:root {
    --primary-color: #103779;
    --secondary-color: #84b535;
    --accent-color: #84b535;
    --dark-color: #000000;
    --light-color: #f3f4f6;
    --text-color: #103779;
    --border-color: #e5e7eb;
    --success-color: #84b535;
    --error-color: #ef4444;
    --white: #ffffff;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
}

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

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

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

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

a:hover {
    color: var(--secondary-color);
}

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

/* ============================================
   Utility Classes
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    max-width: 100%;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

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

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

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

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

.btn-accent:hover {
    background: #1f2937;
}

/* ============================================
   Header & Navigation
   ============================================ */
header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 80px;
    max-width: 240px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #103779 0%, #84b535 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,112C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1.2s ease;
}

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

/* ============================================
   Services Section
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

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

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    color: var(--text-color);
    line-height: 1.8;
}

/* ============================================
   Portfolio Section
   ============================================ */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    padding: 2rem;
    color: var(--white);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-slider {
    max-width: 900px;
    margin: 3rem auto;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.testimonial-company {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.testimonial-rating {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.page-hero-contact {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #103779 0%, #84b535 100%);
    padding: 140px 0 80px;
    color: white;
    text-align: center;
}

.page-hero-contact .hero-badge {
    display: inline-block;
    padding: 10px 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 0.95rem;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-hero-contact h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: white;
    font-weight: 800;
    line-height: 1.2;
}

.page-hero-contact .hero-desc {
    font-size: 1.2rem;
    max-width: 750px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.7;
}

/* Contact Info Cards */
.contact-info-section {
    padding: 60px 0 80px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.contact-info-card {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #103779, #84b535);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 10px 25px rgba(16, 55, 121, 0.3);
}

.contact-icon-purple {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.contact-icon-green {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.contact-icon-orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.contact-info-card h4 {
    color: #1f2937;
    margin-bottom: 10px;
    font-size: 1.15rem;
    font-weight: 700;
}

.contact-info-card p {
    color: #6b7280;
    margin: 0 0 10px 0;
    font-size: 0.95rem;
}

.contact-info-card a {
    color: #103779;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-card a:hover {
    color: #84b535;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.section-label {
    color: #103779;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-heading {
    font-size: 2.5rem;
    margin: 15px 0 20px;
    color: #1f2937;
}

.text-highlight-gradient {
    background: linear-gradient(135deg, #103779, #84b535);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-desc {
    color: #6b7280;
    margin-bottom: 35px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-form-modern {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.form-label i {
    color: #84b535;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #84b535;
    box-shadow: 0 0 0 4px rgba(132, 181, 53, 0.1);
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-right: 40px;
}

.btn-submit-modern {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #103779, #84b535);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 55, 121, 0.3);
}

.btn-submit-modern i {
    transition: transform 0.3s ease;
}

.btn-submit-modern:hover i {
    transform: translateX(5px);
}

/* Contact Sidebar */
.contact-sidebar {
    position: sticky;
    top: 100px;
}

.contact-sidebar-content {
    background: linear-gradient(135deg, #103779 0%, #1e40af 100%);
    padding: 50px 40px;
    border-radius: 20px;
    color: white;
}

.contact-sidebar-content h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 35px;
}

.sidebar-feature {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.sidebar-feature:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fbbf24;
}

.sidebar-feature-content h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 700;
}

.sidebar-feature-content p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.sidebar-social {
    margin-top: 35px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar-social p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.social-links-sidebar {
    display: flex;
    gap: 12px;
}

.social-icon-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* Map Section */
.map-section {
    background: #f8fafc;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center .section-label {
    display: block;
    margin-bottom: 15px;
}

.section-header-center h2 {
    font-size: 2.5rem;
    color: #1f2937;
}

.map-container {
    height: 450px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.map-placeholder i {
    font-size: 4rem;
    color: #103779;
    margin-bottom: 20px;
}

.map-placeholder h3 {
    color: #1f2937;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.map-placeholder p {
    color: #6b7280;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.map-note {
    color: #9ca3af;
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive Contact Page */
@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .page-hero-contact {
        padding: 80px 0 40px !important;
        min-height: auto !important;
    }
    
    .page-hero-contact h1 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    
    .page-hero-contact .hero-desc {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    .page-hero-contact .hero-badge,
    .page-hero-contact span[style*="inline-block"] {
        font-size: 0.8rem !important;
        padding: 6px 14px !important;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        margin-top: -60px;
        gap: 20px;
    }
    
    .form-heading {
        font-size: 2rem;
    }
    
    .contact-sidebar-content {
        padding: 35px 25px;
    }
    
    .map-container {
        height: 350px;
    }
}

/* ============================================
   TESTIMONIALS PAGE STYLES
   ============================================ */
.page-hero-testimonials {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #103779 0%, #84b535 100%);
    padding: 140px 0 100px;
    color: white;
    text-align: center;
}

.page-hero-testimonials .hero-badge {
    display: inline-block;
    padding: 10px 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 0.95rem;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-hero-testimonials h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: white;
    font-weight: 800;
    line-height: 1.2;
}

.page-hero-testimonials .hero-desc {
    font-size: 1.2rem;
    max-width: 750px;
    margin: 0 auto 50px;
    opacity: 0.95;
    line-height: 1.7;
}

/* Testimonials Stats */
.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.testi-stat-item {
    text-align: center;
}

.testi-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 10px;
    line-height: 1;
}

.testi-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Testimonials Page Section */
.testimonials-page-section {
    background: #f8fafc;
    padding: 80px 0;
}

.testimonials-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 35px;
}

.testimonial-card-page {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.testimonial-card-page:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.quote-icon-large {
    color: rgba(132, 181, 53, 0.2);
    font-size: 4rem;
    margin-bottom: 20px;
}

.testimonial-rating-page {
    margin-bottom: 25px;
}

.testimonial-rating-page i {
    color: #fbbc04;
    font-size: 1.1rem;
    margin-right: 4px;
}

.testimonial-text-page {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-footer-page {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 25px;
    border-top: 2px solid #f3f4f6;
    margin-top: auto;
}

.testimonial-author-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar-page {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-avatar-initials {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.author-info-page h4 {
    color: #1f2937;
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 700;
}

.author-info-page p {
    color: #6b7280;
    margin: 0;
    font-size: 0.9rem;
}

.project-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(16, 55, 121, 0.1), rgba(132, 181, 53, 0.1));
    color: #103779;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Responsive Testimonials Page */
@media (max-width: 1024px) {
    .testimonials-grid-page {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 25px;
    }
}

/* Testimonial Masonry Grid */
.testimonial-container-wide {
    max-width: 1400px;
    padding: 0 20px;
}

.testimonial-masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    grid-auto-flow: dense;
}

.testimonial-masonry-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial-masonry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(16, 55, 121, 0.15);
    border-color: rgba(132, 181, 53, 0.3);
}

/* Card Header */
.card-header-testi {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.client-info-testi {
    display: flex;
    gap: 15px;
    flex: 1;
}

.client-avatar-testi {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.client-details-testi h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: #1f2937;
    font-weight: 700;
}

.client-details-testi p {
    margin: 0 0 8px 0;
    color: #6b7280;
    font-size: 0.95rem;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, rgba(16, 55, 121, 0.08), rgba(132, 181, 53, 0.08));
    color: #103779;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.location-badge i {
    font-size: 0.75rem;
}

.rating-stars-testi {
    color: #fbbf24;
    font-size: 1.3rem;
    letter-spacing: 2px;
    line-height: 1;
}

/* Testimonial Content */
.testimonial-content-testi {
    color: #374151;
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
    position: relative;
}

.testimonial-content-testi::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -15px;
    font-size: 5rem;
    color: rgba(132, 181, 53, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

/* Card Footer */
.card-footer-testi {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #f3f4f6;
    flex-wrap: wrap;
}

.project-tag-testi {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #103779, #84b535);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.project-tag-testi i {
    font-size: 0.9rem;
}

.verified-badge-testi {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 600;
}

.verified-badge-testi i {
    font-size: 1rem;
}

/* Masonry variations for visual interest */
.testimonial-masonry-card:nth-child(3n+1) {
    grid-row: span 1;
}

.testimonial-masonry-card:nth-child(5n+2) {
    background: linear-gradient(135deg, rgba(16, 55, 121, 0.02), rgba(132, 181, 53, 0.02));
}

@media (max-width: 1200px) {
    .testimonial-masonry-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-hero-testimonials {
        padding: 80px 0 40px !important;
        min-height: auto !important;
    }
    
    .page-hero-testimonials h1 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    
    .page-hero-testimonials .hero-desc {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    .page-hero-testimonials .hero-badge,
    .page-hero-testimonials span[style*="inline-block"] {
        font-size: 0.8rem !important;
        padding: 6px 14px !important;
    }
    
    .testimonials-stats {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px !important;
    }
    
    .testi-stat-item {
        flex: 0 0 auto;
    }
    
    .testi-stat-number {
        font-size: 2rem !important;
        margin-bottom: 5px !important;
    }
    
    .testi-stat-label {
        font-size: 0.85rem !important;
    }
    
    .testimonials-grid-page {
        grid-template-columns: 1fr;
    }
    
    .testimonial-footer-page {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .project-type-badge {
        align-self: flex-start;
    }
    
    .testimonial-masonry-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-masonry-card {
        padding: 25px;
    }
    
    .card-header-testi {
        flex-direction: column;
    }
    
    .rating-stars-testi {
        align-self: flex-start;
    }
}

/* ============================================
   PRICING PAGE STYLES
   ============================================ */
.page-hero-pricing {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #103779 0%, #84b535 100%);
    padding: 140px 0 80px;
    color: white;
    text-align: center;
}

.page-hero-pricing .hero-badge {
    display: inline-block;
    padding: 10px 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 0.95rem;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-hero-pricing h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: white;
    font-weight: 800;
    line-height: 1.2;
}

.page-hero-pricing .hero-desc {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.7;
}

/* Pricing Cards */
.pricing-cards-section {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.pricing-card {
    background: white;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #84b535;
}

.pricing-card-popular {
    border: 3px solid #fbbf24;
    transform: scale(1.05);
}

.pricing-card-popular:hover {
    transform: scale(1.05) translateY(-15px);
    border-color: #fbbf24;
}

.popular-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-header {
    padding: 40px 35px 25px;
    text-align: center;
    border-bottom: 2px solid #f3f4f6;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #103779, #84b535);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.pricing-title {
    font-size: 1.8rem;
    color: #1f2937;
    margin: 0;
    font-weight: 700;
}

.pricing-price {
    text-align: center;
    padding: 30px 35px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.5rem;
    color: #6b7280;
    font-weight: 600;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #103779, #84b535);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0 35px 35px;
    margin: 0;
}

.pricing-feature-item {
    padding: 15px 0;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #4b5563;
}

.pricing-feature-item:last-child {
    border-bottom: none;
}

.pricing-feature-item i {
    color: #84b535;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-btn {
    display: block;
    width: calc(100% - 70px);
    margin: 0 35px 35px;
    padding: 16px 30px;
    background: linear-gradient(135deg, #103779, #84b535);
    color: white;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 55, 121, 0.3);
}

.pricing-btn i {
    transition: transform 0.3s ease;
}

.pricing-btn:hover i {
    transform: translateX(5px);
}

/* Custom CTA */
.pricing-custom-cta {
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(16, 55, 121, 0.05), rgba(132, 181, 53, 0.05));
    padding: 50px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 35px;
    border: 2px solid #e5e7eb;
}

.custom-cta-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #103779, #84b535);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.custom-cta-content h3 {
    font-size: 1.8rem;
    color: #1f2937;
    margin-bottom: 10px;
}

.custom-cta-content p {
    color: #6b7280;
    margin: 0;
    font-size: 1.05rem;
}

.btn-custom-quote {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: linear-gradient(135deg, #103779, #84b535);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-custom-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 55, 121, 0.3);
}

/* Pricing Benefits */
.pricing-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, rgba(16, 55, 121, 0.1), rgba(132, 181, 53, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #103779;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Pricing */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .pricing-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-custom-cta {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }
    
    .custom-cta-icon {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-hero-pricing {
        padding: 80px 0 40px !important;
        min-height: auto !important;
    }
    
    .page-hero-pricing h1 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    
    .page-hero-pricing .hero-desc {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    .page-hero-pricing .hero-badge,
    .page-hero-pricing span[style*="inline-block"] {
        font-size: 0.8rem !important;
        padding: 6px 14px !important;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        margin-top: -60px;
    }
    
    .pricing-card-popular {
        transform: scale(1);
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .pricing-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-custom-cta {
        padding: 35px 25px;
    }
}

/* ============================================
   PORTFOLIO PAGE STYLES
   ============================================ */
.page-hero-portfolio {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #103779 0%, #84b535 100%), url('https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 30px 0 80px;
    color: white;
    text-align: center;
}

.hero-overlay-portfolio {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 55, 121, 0.95) 0%, rgba(132, 181, 53, 0.9) 100%);
}

.page-hero-portfolio .container {
    position: relative;
    z-index: 2;
}

.page-hero-portfolio .hero-badge {
    display: inline-block;
    padding: 10px 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 0.95rem;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-hero-portfolio h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: white;
    font-weight: 800;
    line-height: 1.2;
}

.page-hero-portfolio .text-highlight {
    color: #fbbf24;
}

.page-hero-portfolio .hero-desc {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.7;
}

/* Portfolio Stats Section */
.portfolio-stats-section {
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    /* margin-top: -80px; */
    position: relative;
    z-index: 10;
}
.stats-grid i{
    color: #fff;
}

.stat-card {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: #84b535;
}

.stat-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #103779, #84b535);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #103779, #84b535);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.stat-label {
    color: #6b7280;
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
}

/* Portfolio Grid Section */
.portfolio-grid-section {
    background: #f8fafc;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.portfolio-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.portfolio-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.portfolio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image-wrapper img {
    transform: scale(1.1);
}

.portfolio-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #103779, #84b535);
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16, 55, 121, 0.95), rgba(132, 181, 53, 0.85));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-content {
    color: white;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay-content {
    transform: translateY(0);
}

.portfolio-overlay-content i {
    font-size: 2.5rem;
}

.portfolio-content {
    padding: 30px;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1f2937;
    font-weight: 700;
}

.portfolio-desc {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.portfolio-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #103779, #84b535);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.portfolio-link-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(16, 55, 121, 0.3);
}

.portfolio-link-btn i {
    transition: transform 0.3s ease;
}

.portfolio-link-btn:hover i {
    transform: translateX(5px);
}

/* Portfolio Testimonials Section */
.portfolio-testimonials-section {
    background: linear-gradient(135deg, #103779 0%, #84b535 100%);
    color: white;
}

.testimonials-grid-portfolio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card-portfolio {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card-portfolio:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.quote-icon-port {
    color: #fbbf24;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.testimonial-text-port {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.testimonial-author-port {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar-port {
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #103779;
    font-weight: 800;
    font-size: 1.1rem;
}

.testimonial-author-port h4 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.testimonial-author-port p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Portfolio */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .testimonials-grid-portfolio {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    /* Portfolio Hero */
    .page-hero-portfolio {
        padding: 80px 0 40px !important;
        min-height: auto !important;
    }
    
    .page-hero-portfolio h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }
    
    .page-hero-portfolio .hero-desc {
        font-size: 0.95rem !important;
        line-height: 1.6;
    }
    
    .page-hero-portfolio .hero-badge {
        font-size: 0.8rem !important;
        padding: 6px 14px !important;
    }
    
    /* Services Page Hero & About Page Hero */
    .page-hero-banner {
        padding: 80px 0 40px !important;
        min-height: auto !important;
    }
    
    .page-hero-banner h1 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    
    .page-hero-banner p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    .page-hero-banner span[style*="inline-block"],
    .page-hero-banner span[style*="display: inline"] {
        font-size: 0.8rem !important;
        padding: 6px 14px !important;
    }
    
    /* Portfolio Stats */
    .portfolio-stats-section {
        padding: 40px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        margin-top: 0;
    }
    
    .stat-card {
        padding: 20px 15px !important;
        border-radius: 12px !important;
    }
    
    .stat-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.1rem !important;
        margin: 0 auto 12px !important;
    }
    
    .stat-number {
        font-size: 1.8rem !important;
        margin-bottom: 8px !important;
    }
    
    .stat-label {
        font-size: 0.8rem !important;
        line-height: 1.3;
    }
    
    /* Portfolio Grid Section */
    .portfolio-grid-section {
        padding: 40px 0 !important;
    }
    
    .portfolio-grid-section .section-header {
        margin-bottom: 30px !important;
    }
    
    .portfolio-grid-section .section-subtitle {
        font-size: 0.75rem !important;
    }
    
    .portfolio-grid-section h2 {
        font-size: 1.6rem !important;
        margin-bottom: 10px !important;
    }
    
    .portfolio-grid-section .section-header > p {
        font-size: 0.9rem !important;
    }
    
    /* Portfolio Cards */
    .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 30px !important;
    }
    
    .portfolio-card {
        border-radius: 15px !important;
    }
    
    .portfolio-image-wrapper {
        height: 200px !important;
    }
    
    .portfolio-category {
        top: 12px !important;
        left: 12px !important;
        padding: 6px 12px !important;
        font-size: 0.75rem !important;
        gap: 4px !important;
    }
    
    .portfolio-overlay-content {
        font-size: 1rem !important;
    }
    
    .portfolio-overlay-content i {
        font-size: 2rem !important;
    }
    
    .portfolio-content {
        padding: 20px !important;
    }
    
    .portfolio-content h3 {
        font-size: 1.15rem !important;
        margin-bottom: 10px !important;
        line-height: 1.4;
    }
    
    .portfolio-desc {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
        margin-bottom: 15px !important;
    }
    
    .portfolio-link-btn {
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
        gap: 8px !important;
        border-radius: 6px !important;
    }
    
    /* Home Page Stats Counter Section */
    .stats-counter-section {
        padding: 40px 0 !important;
    }
    
    .stats-counter-section .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    .stats-counter-section .stat-item {
        padding: 20px 10px !important;
    }
    
    .stats-counter-section .stat-icon {
        font-size: 24px !important;
        margin-bottom: 12px !important;
    }
    
    .stats-counter-section .stat-number {
        font-size: 2rem !important;
        margin-bottom: 6px !important;
    }
    
    .stats-counter-section .stat-label {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 480px) {
    .page-hero-portfolio h1 {
        font-size: 1.5rem !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    
    .stat-number {
        font-size: 1.6rem !important;
    }
    
    /* Home Page Stats Counter - keep 2 columns on mobile */
    .stats-counter-section .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .stats-counter-section .stat-number {
        font-size: 1.8rem !important;
    }
    
    .stats-counter-section .stat-label {
        font-size: 0.8rem !important;
    }
    
    .portfolio-grid-section h2 {
        font-size: 1.4rem !important;
    }
    
    .portfolio-content h3 {
        font-size: 1.05rem !important;
    }
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #103779 0%, #84b535 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
}

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

.text-highlight-yellow {
    color: #fbbf24;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ============================================
   Top Info Bar - Professional Addition
   ============================================ */
.top-info-bar {
    background: var(--dark-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 12px;
}

.top-info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-info-left,
.top-info-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-info-left a,
.top-info-left span {
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-info-left a:hover {
    color: var(--accent-color);
}

.top-info-right a {
    color: rgba(255,255,255,0.9);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.top-info-right a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* ============================================
   Main Header Enhancement
   ============================================ */
.main-header {
    position: sticky;
    top: 0;
    z-index: 10000;
    padding-left: 12px;
    padding-right: 12px;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.nav-phone {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
}

.btn-primary-nav {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-primary-nav:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* ============================================
   Static Hero Section (No Slider)
   ============================================ */
body {
    margin: 0;
    padding: 0;
    padding-top: 89px;
}

.hero-static-section {
    position: relative;
    min-height: calc(100vh - 89px);
    display: flex;
    align-items: center;
    z-index: 1;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 55, 121, 0.92) 0%, rgba(132, 181, 53, 0.88) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    /* max-width: 800px; */
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
}

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

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

.hero-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    /* max-width: 900px; */
    margin: 0 auto;
    justify-content: start;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 0 0 auto;
    min-width: 260px;
    max-width: 280px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-stat-item .stat-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.hero-stat-item strong {
    display: block;
    font-size: 26px;
    font-weight: 700;
}

.hero-stat-item span {
    display: block;
    font-size: 13px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 65px;
    }

    .hero-static-section {
        min-height: calc(100vh - 65px);
        padding: 0;
        display: flex;
        align-items: center;
    }
    
    .hero-background {
        background-position: center center;
        background-size: cover;
    }
    
    .hero-content {
        padding: 40px 20px;
        width: 100%;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .hero-buttons a {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        display: none !important;
        width: 45px;
        height: 45px;
        font-size: 15px;
    }
    
    .hero-stat-item span {
        font-size: 10px;
    }
}

/* ============================================
   Clients Section - Modern Design
   ============================================ */
.clients-section-modern {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%);
    position: relative;
    overflow: hidden;
}

.clients-section-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(132, 181, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.clients-section-modern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 55, 121, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.clientsSwiper {
    margin-top: 20px;
    padding: 20px 10px 20px 10px;
    position: relative;
    z-index: 1;
}

.clientsSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-card {
    background: white;
    padding: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.client-logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(132, 181, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.client-logo-card:hover::before {
    left: 100%;
}

.client-logo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.client-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.client-logo-wrapper span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: #666;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
}

.client-inline-icon {
    font-size: 24px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.client-logo-card:hover .client-logo-wrapper span {
    color: #103779;
    transform: scale(1.05);
}

.clientsSwiper .swiper-pagination {
    bottom: 20px;
}

.clientsSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #84b535;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.clientsSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 24px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .clients-section-modern {
        padding: 40px 0;
    }
    
    .clientsSwiper {
        margin-top: 40px;
        padding: 20px 10px 50px 10px;
    }
    
    .client-logo-card {
        padding: 10px;
    }
    
    .client-logo-wrapper span {
        font-size: 16px !important;
    }
    
    .client-inline-icon {
        font-size: 16px !important;
        width: 16px !important;
        height: 16px !important;
    }
}

/* ============================================
   About Section
   ============================================ */
.about-home-section {}

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

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-content i {
    font-size: 40px;
    color: var(--accent-color);
}

.badge-content strong {
    font-size: 32px;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-header h2 {
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(135deg, #103779 0%, #84b535 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    gap: 15px;
}

.about-feature i {
    font-size: 22px;
    color: var(--success-color);
}

.about-feature h4 {
    margin-bottom: 5px;
}

.about-actions {
    display: flex;
    gap: 15px;
}

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

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

/* ============================================
   Modern Services
   ============================================ */
.services-home-section {
    position: relative;
}

/* Fix for category card overflow on mobile */
.category-card {
    overflow: hidden;
}

@media (max-width: 768px) {
    .service-categories-grid {
        gap: 20px !important;
    }
    
    .category-card {
        padding: 30px 25px !important;
    }
}


.modern-service-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    padding: 35px 25px;
    transition: var(--transition);
}

.modern-service-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: var(--shadow-xl);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.service-icon-modern {
    width: 65px;
    height: 65px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
}

.modern-service-card:hover .service-icon-modern {
    background: var(--primary-color);
    color: var(--white);
}

.service-number {
    font-size: 42px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
}

.modern-service-card:hover .service-number {
    color: rgba(37, 99, 235, 0.1);
}


.modern-service-card h3 {
    color: var(--text-color);
    margin-bottom: 12px;
}

.modern-service-card:hover h3 {
    color: var(--dark-color);
}


.modern-service-card p {
    color: var(--text-color);
    margin-bottom: 20px;
}

.modern-service-card:hover p {
    color: var(--text-color);
}

.service-link {
    color: var(--white);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.modern-service-card:hover .service-link {
    color: var(--primary-color);
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
    padding: 100px 0;
    position: relative;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, #82b536 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* ============================================
   Stats Counter
   ============================================ */
.stats-counter-section {
    padding: 70px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-color);
}

/* ============================================
   Portfolio Modern
   ============================================ */
.portfolio-home-section {
    background: var(--light-color);
}

.portfolio-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.portfolio-card-modern {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.portfolio-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    flex-shrink: 0;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-card-modern:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card-modern:hover .portfolio-overlay-modern {
    opacity: 1;
}

.portfolio-view-btn {
    background: var(--white);
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
}

.portfolio-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-card-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.portfolio-card-content p {
    flex-grow: 1;
}

/* Portfolio Swiper */
.portfolioSwiper {
    padding: 30px 0 70px;
}

.portfolioSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.portfolioSwiper .swiper-pagination {
    bottom: 20px !important;
}

.portfolioSwiper .swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.portfolioSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color);
}

/* ============================================
   Testimonials Modern
   ============================================ */
.testimonials-section {
    position: relative;
}

.testimonialsSwiper {
    padding: 30px 0 50px;
}

.testimonialsSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.testimonial-card-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    min-height: 380px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 15px;
    opacity: 0.5;
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: #fbbc04;
    font-size: 16px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.8;
    flex-grow: 1;
    min-height: 140px;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.author-avatar {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.avatar-text {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1;
}

.testimonial-author-info h4 {
    color: var(--white);
    margin-bottom: 3px;
}

.testimonial-author-info p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 14px;
}

/* ============================================
   Blog Modern
   ============================================ */
.blog-home-section {}

.blog-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.blog-card-modern {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.blog-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card-modern:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.blog-card-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-light);
}

.blog-card-content h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.read-more-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.read-more-link:hover {
    color: var(--secondary-color);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-info-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-xl);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-phone,
    .btn-primary-nav {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .heroSwiper {
        height: auto;
        min-height: auto;
    }
    
    .hero-slide {
        min-height: auto;
        padding: 40px 0 200px;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .hero-buttons a {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 12px;
        width: 100%;
    }
    
    
    .hero-stat-item .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .hero-stat-item strong {
        font-size: 15px;
    }
    
    .hero-stat-item span {
        font-size: 10px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid,
    .portfolio-grid-modern,
    .blog-grid-modern {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   NEW WORKING STRATEGY SECTION - SCROLL STACKING
   ============================================ */
.working-strategy-section-new {
    position: relative;
    background: #0f172a;
    min-height: 100vh;
}

.strategy-scroll-container {
    position: relative;
    padding-bottom: 60px;
}

.strategy-header-sticky {
    position: relative;
    z-index: 100;
    padding: 60px 0 40px;
    background: transparent;
}

.strategy-header-sticky .section-header {
    pointer-events: auto;
}

.strategy-header-sticky h2,
.strategy-header-sticky p,
.strategy-header-sticky .section-subtitle {
    color: white;
}

.strategy-card-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 0;
    position: relative;
}

.strategy-card {
    width: calc(100% - 40px);
    max-width: 1200px;
    margin: 0 20px;
    min-height: 500px;
    border-radius: 24px;
    padding: 60px;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    /* Initial state for GSAP - cards start hidden */
    transform: scale(0.9);
    opacity: 0;
}

.strategy-card-content {
    position: relative;
    z-index: 2;
}

.strategy-card-number {
    font-size: 80px;
    font-weight: 900;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 40px;
    line-height: 1;
    z-index: 1;
}

.strategy-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.strategy-card > .strategy-card-content > p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.strategy-card-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.strategy-card-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
}

.strategy-card-points li i {
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Responsive for Strategy Cards */
@media (max-width: 1024px) {
    .strategy-card {
        padding: 50px 40px;
        min-height: 450px;
    }
    
    .strategy-card-number {
        font-size: 60px;
    }
    
    .strategy-card h3 {
        font-size: 2rem;
    }
    
    .strategy-card-points {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .strategy-header-sticky {
        padding: 40px 0 30px;
    }
    
    .strategy-card-wrapper {
        padding: 15px 0;
    }
    
    .strategy-card-wrapper:nth-child(2),
    .strategy-card-wrapper:nth-child(3),
    .strategy-card-wrapper:nth-child(4),
    .strategy-card-wrapper:nth-child(5) {
        top: 0;
    }
    
    .strategy-card {
        width: calc(100% - 30px);
        margin: 0 15px;
        padding: 40px 30px;
        min-height: 400px;
    }
    
    .strategy-card-number {
        font-size: 50px;
        top: 15px;
        right: 25px;
    }
    
    .strategy-card h3 {
        font-size: 1.75rem;
    }
    
    .strategy-card > .strategy-card-content > p {
        font-size: 1rem;
    }
    
    .strategy-card-points li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .strategy-card {
        width: calc(100% - 30px);
        margin: 0 15px;
        padding: 30px 20px;
        min-height: 350px;
    }
    
    .strategy-card-number {
        font-size: 40px;
    }
    
    .strategy-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .strategy-card > .strategy-card-content > p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .strategy-card-points {
        gap: 12px;
    }
    
    .strategy-card-points li {
        font-size: 0.9rem;
    }
    
    .strategy-card-points li i {
        font-size: 16px;
    }
}



/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 4rem;
    align-items: start;
}

/* Left Side - Feature Cards */
.why-choose-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.why-feature-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: #103779;
}

.why-feature-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, #103779, #84b535);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.why-feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
    font-weight: 700;
}

.why-feature-content p {
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* Right Side - Highlights */
.why-choose-highlights {
    position: sticky;
    top: 100px;
}

.highlight-main-card {
    background: linear-gradient(135deg, #103779 0%, #84b535 100%);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.highlight-main-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.highlight-badge {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.highlight-main-card h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.highlight-item {
    display: flex;
    gap: 15px;
    margin-bottom: 1.75rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fbbf24;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-item h4 {
    color: white;
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.highlight-item p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Success Metrics */
.success-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(59, 130, 246, 0.1);
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.metric-info h4 {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #103779, #84b535);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-info p {
    color: #6b7280;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive - Why Choose Us */
@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-choose-highlights {
        position: static;
    }
    
    .success-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-feature-card {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .why-feature-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.5rem;
    }
    
    .highlight-main-card {
        padding: 2rem;
    }
    
    .highlight-badge {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .highlight-main-card h3 {
        font-size: 1.5rem;
    }
    
    .highlight-item {
        padding: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .success-metrics {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .why-feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.25rem;
    }
    
    .why-feature-content h3 {
        font-size: 1.1rem;
    }
    
    .highlight-main-card {
        padding: 1.5rem;
    }
    
    .highlight-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .metric-item {
        flex-direction: column;
        text-align: center;
    }
    
    .metric-icon {
        width: 55px;
        height: 55px;
        font-size: 1.25rem;
    }
    
    .metric-info h4 {
        font-size: 1.75rem;
    }
}

/* ============================================
   CORE VALUES SECTION
   ============================================ */
.core-values-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.core-values-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent 70%);
    border-radius: 50%;
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 4rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #103779, #84b535);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #103779;
}

.value-icon-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #103779, #84b535);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: rotateY(360deg);
}

.value-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(59, 130, 246, 0.1);
    line-height: 1;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1f2937;
    font-weight: 700;
}

.value-card > p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.value-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-points li {
    padding: 0.5rem 0;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.value-points li i {
    color: #10b981;
    font-size: 14px;
}

/* Values Statement */
.values-statement {
    margin-top: 4rem;
    position: relative;
}

.statement-content {
    background: linear-gradient(135deg, #103779 0%, #84b535 100%);
    padding: 3.5rem 3rem;
    border-radius: 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(16, 55, 121, 0.3);
}

.statement-content i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
}

.statement-content p {
    color: white;
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-style: italic;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.statement-author {
    color: #fbbf24;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive - Core Values */
@media (max-width: 1024px) {
    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .core-values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .value-card {
        padding: 2rem;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .value-number {
        font-size: 2.5rem;
    }
    
    .statement-content {
        padding: 2.5rem 2rem;
    }
    
    .statement-content p {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .value-card h3 {
        font-size: 1.2rem;
    }
    
    .statement-content {
        padding: 2rem 1.5rem;
    }
    
    .statement-content i {
        font-size: 2.5rem;
    }
    
    .statement-content p {
        font-size: 1rem;
    }
}

/* ============================================
   FAQs SECTION
   ============================================ */
.faqs-section {
    background: #ffffff;
    position: relative;
}

.faqs-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 4rem;
    align-items: start;
}

.faqs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #103779;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-item.active {
    border-color: #103779;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2rem;
    cursor: pointer;
    gap: 20px;
    user-select: none;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #1f2937;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question h3 {
    color: #103779;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #103779, #84b535);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #84b535, #103779);
}

.faq-toggle:hover {
    transform: scale(1.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 2rem;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

/* FAQ CTA Card */
.faq-cta-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #e0e7ff;
    position: sticky;
    top: 100px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-cta-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #103779, #84b535);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    animation: float 3s ease-in-out infinite;
}

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

.faq-cta-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1f2937;
    font-weight: 700;
}

.faq-cta-card p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-cta-buttons .btn {
    width: 100%;
    justify-content: center;
}

/* Responsive - FAQs */
@media (max-width: 1024px) {
    .faqs-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-cta-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-toggle {
        width: 35px;
        height: 35px;
        min-width: 35px;
        font-size: 1.1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }
    
    .faq-cta-card {
        padding: 2.5rem 2rem;
    }
    
    .faq-cta-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .faq-toggle {
        align-self: flex-end;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
    }
}

/* ============================================
   About Page Responsive Styles
   ============================================ */

/* Hero Banner */
.page-hero-banner {
    padding: 120px 0 80px !important;
}

.page-hero-banner h1 {
    font-size: 3.5rem !important;
    margin-bottom: 20px !important;
    line-height: 1.2 !important;
}

.page-hero-banner p {
    font-size: 1.3rem !important;
    line-height: 1.7 !important;
}

/* About Grid */
.about-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 60px !important;
    align-items: center !important;
}

.about-grid h2 {
    font-size: 2.5rem !important;
    line-height: 1.3 !important;
}

.about-grid p {
    font-size: 1.05rem !important;
    line-height: 1.8 !important;
}

/* Timeline Items */
.timeline-item h3 {
    font-size: 1.5rem !important;
}

.timeline-item p {
    font-size: 1rem !important;
    line-height: 1.8 !important;
}

@media (max-width: 768px) {
    .page-hero-banner {
        padding: 80px 0 50px !important;
    }
    
    .page-hero-banner h1 {
        font-size: 2rem !important;
        margin-bottom: 15px !important;
    }
    
    .page-hero-banner p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
    
    .page-hero-banner span {
        font-size: 0.85rem !important;
        padding: 6px 16px !important;
    }
    
    /* About Grid - Single Column */
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .about-grid h2 {
        font-size: 1.75rem !important;
        margin: 10px 0 15px !important;
    }
    
    .about-grid p {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
        margin-bottom: 15px !important;
    }
    
    .about-grid span {
        font-size: 0.85rem !important;
    }
    
    /* Timeline - Single Column */
    .timeline-item {
        grid-template-columns: 80px 1fr !important;
        gap: 20px !important;
        margin-bottom: 40px !important;
    }
    
    .timeline-item > div:first-child > div {
        width: 80px !important;
        height: 80px !important;
        font-size: 1.3rem !important;
    }
    
    .timeline-item > div:last-child {
        padding: 25px !important;
    }
    
    .timeline-item h3 {
        font-size: 1.2rem !important;
        margin-bottom: 10px !important;
    }
    
    .timeline-item p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
    
    .timeline-item > div:last-child > div:last-child {
        font-size: 0.75rem !important;
        padding: 5px 12px !important;
    }
    
    /* Story Timeline Vertical Line */
    .story-timeline > div:first-child {
        left: 40px !important;
    }
    
    /* Timeline Circle Indicator */
    .timeline-item > div:last-child > div:first-child {
        width: 20px !important;
        height: 20px !important;
        left: -10px !important;
        border-width: 3px !important;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 1.75rem !important;
    }
    
    .section-header p {
        font-size: 0.95rem !important;
    }
    
    .section-header .section-subtitle {
        font-size: 0.85rem !important;
        padding: 6px 16px !important;
    }
}

@media (max-width: 480px) {
    .page-hero-banner h1 {
        font-size: 1.75rem !important;
    }
    
    .page-hero-banner p {
        font-size: 0.95rem !important;
    }
    
    .timeline-item {
        grid-template-columns: 70px 1fr !important;
        gap: 15px !important;
    }
    
    .timeline-item > div:first-child > div {
        width: 70px !important;
        height: 70px !important;
        font-size: 1.1rem !important;
    }
    
    .timeline-item > div:last-child {
        padding: 20px !important;
    }
    
    .timeline-item h3 {
        font-size: 1.1rem !important;
    }
    
    .timeline-item p {
        font-size: 0.85rem !important;
    }
    
    .about-grid h2 {
        font-size: 1.5rem !important;
    }
    
    /* Mission & Vision Grid - Single Column */
    .section > .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    /* What Makes Us Different Grid - Single Column */
    .section > .container > div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Mission/Vision Cards */
    .section > .container > div > div[style*="padding: 50px 40px"] {
        padding: 30px 25px !important;
    }
    
    .section > .container > div > div[style*="padding: 50px 40px"] h2 {
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
    }
    
    .section > .container > div > div[style*="padding: 50px 40px"] p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    /* Icon boxes in Mission/Vision */
    .section > .container > div > div[style*="padding: 50px 40px"] > div[style*="width: 80px"] {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 20px !important;
    }
    
    .section > .container > div > div[style*="padding: 50px 40px"] > div[style*="width: 80px"] i {
        font-size: 1.8rem !important;
    }
    
    /* What Makes Us Different Cards */
    .section > .container > div[style*="repeat(3, 1fr)"] > div {
        padding: 25px !important;
    }
    
    .section > .container > div[style*="repeat(3, 1fr)"] > div > div[style*="width: 70px"] {
        width: 55px !important;
        height: 55px !important;
    }
    
    .section > .container > div[style*="repeat(3, 1fr)"] > div > div[style*="width: 70px"] i {
        font-size: 1.5rem !important;
    }
    
    .section > .container > div[style*="repeat(3, 1fr)"] > div h3 {
        font-size: 1.15rem !important;
        margin-bottom: 12px !important;
    }
    
    .section > .container > div[style*="repeat(3, 1fr)"] > div p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
}

/* ============================================
   Service Pages Responsive Styles
   ============================================ */

@media (max-width: 768px) {
    /* Service Pages Only - Banner */
    .page-hero-banner h1 {
        font-size: 2rem !important;
    }
    
    .page-hero-banner p {
        font-size: 1rem !important;
    }
    
    /* Service Detail Page Only - Compact Service Stats Section on Mobile */
    section[style*="margin-top: -50px"][style*="box-shadow"] {
        margin-top: -30px !important;
        padding: 20px 15px !important;
        border-radius: 15px !important;
    }
    
    section[style*="margin-top: -50px"] > .container > div[style*="grid-template-columns"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        padding: 20px 15px !important;
    }
    
    section[style*="margin-top: -50px"] .stat-item {
        padding: 15px 10px !important;
    }
    
    section[style*="margin-top: -50px"] .stat-icon {
        width: 50px !important;
        height: 50px !important;
        margin: 0 auto 12px !important;
    }
    
    section[style*="margin-top: -50px"] .stat-icon i {
        font-size: 1.2rem !important;
    }
    
    section[style*="margin-top: -50px"] div[style*="font-size: 1.5rem"] {
        font-size: 1.1rem !important;
        margin-bottom: 5px !important;
    }
    
    section[style*="margin-top: -50px"] div[style*="font-size: 0.9rem"] {
        font-size: 0.75rem !important;
    }
    
    /* Section Headings */
    h2[style*="font-size: 2.5rem"] {
        font-size: 1.75rem !important;
    }
    
    /* Commented out to prevent affecting home page
    h3[style*="font-size: 1.5rem"],
    h3[style*="font-size: 1.15rem"] {
        font-size: 1.1rem !important;
    }
    */
    
    /* Commented out to prevent affecting home page
    div[style*="font-size: 1.15rem"],
    p[style*="font-size: 1.05rem"] {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    */
    
    /* Commented out to prevent affecting home page
    i[style*="font-size: 2.2rem"],
    i[style*="font-size: 1.6rem"] {
        font-size: 1.4rem !important;
    }
    */
    
    /* Commented out - too broad, affects home page
    div[style*="padding: 50px"],
    div[style*="padding: 40px"] {
        padding: 25px !important;
    }
    
    div[style*="padding: 35px"] {
        padding: 20px !important;
    }
    */
    
    /* Commented out - too broad, affects home page service categories grid
    div[style*="grid-template-columns: 1fr 1fr"],
    div[style*="grid-template-columns: repeat(2, 1fr)"],
    div[style*="grid-template-columns: repeat(3, 1fr)"],
    div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    */
    
    /* Service Detail Page Hero */
    section[style*="padding: 100px 0 60px"] {
        padding: 80px 0 40px !important;
    }
    
    section[style*="padding: 100px 0 60px"] h1 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    
    section[style*="padding: 100px 0 60px"] p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    section[style*="padding: 100px 0 60px"] div[style*="display: inline-flex"] {
        font-size: 0.8rem !important;
        padding: 6px 14px !important;
    }
    
    section[style*="padding: 100px 0 60px"] .btn,
    section[style*="padding: 100px 0 60px"] a[style*="padding: 15px"] {
        padding: 12px 24px !important;
        font-size: 0.95rem !important;
    }
}

@media (max-width: 480px) {
    /* Extra small screens - all page heroes */
    .page-hero-portfolio h1,
    .page-hero-testimonials h1,
    .page-hero-pricing h1,
    .page-hero-contact h1,
    .page-hero-banner h1,
    section[style*="padding: 100px 0 60px"] h1 {
        font-size: 1.5rem !important;
    }
    
    /* Commented out to prevent affecting home page
    h1[style*="font-size: 3.5rem"],
    h1[style*="font-size: 2rem"] {
        font-size: 1.75rem !important;
    }
    
    h2[style*="font-size: 2.5rem"],
    h2[style*="font-size: 1.75rem"] {
        font-size: 1.5rem !important;
    }
    
    p[style*="font-size: 1.2rem"],
    p[style*="font-size: 1rem"] {
        font-size: 0.9rem !important;
    }
    
    div[style*="padding: 25px"] {
        padding: 20px !important;
    }
    */
}
