/* THROWDOWN MEDIA LLP - Central Stylesheet */

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #111;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #e63946;
    text-decoration: none;
    gap: 0.8rem;
    letter-spacing: -0.02em;
}

.logo img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    position: relative;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: #e63946;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e63946;
    transition: width 0.3s ease;
}

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

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 8px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* Show dropdown on hover for desktop */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 0.25rem;
}

.dropdown-menu a:hover, .dropdown-menu a.active {
    background: rgba(230, 57, 70, 0.1);
    color: #e63946;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Modern Heading Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.015em;
}

h5 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 500;
}

h6 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 500;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

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

.hero-content h1 {
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    opacity: 0.9;
    margin-bottom: 1rem;
}

/* Hero Banner for Subsidiary Pages */
.hero-banner {
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px; /* Account for fixed navbar */
}

.hero-banner .hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero-banner .hero-content h1 {
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.hero-banner .hero-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    opacity: 0.9;
    margin-bottom: 1rem;
    color: #ccc;
}

.hero-banner .subsidiary-tag {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: #e63946;
    margin-bottom: 0.5rem;
    font-style: italic;
    font-weight: 500;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section.about {
    padding: 4rem 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 2rem;
}

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

.section-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #e63946;
    letter-spacing: -0.03em;
}

/* Card Styles */
.subsidiaries-grid, .features-grid, .types-grid, .benefits-grid, .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.subsidiary-card, .feature-card, .type-card, .benefit-card, .step-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 57, 70, 0.1);
}

.subsidiary-card:hover, .feature-card:hover, .type-card:hover, .benefit-card:hover, .step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.2);
    border-color: rgba(230, 57, 70, 0.3);
}

.subsidiary-card h3, .feature-card h3, .type-card h3, .benefit-card h3, .step-card h3 {
    color: #e63946;
    margin-bottom: 0.5rem;
}

.subsidiary-tag {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 1rem;
    font-style: italic;
}

.subsidiary-card p, .feature-card p, .type-card p, .benefit-card p, .step-card p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.subsidiary-card a, .feature-card a, .type-card a, .benefit-card a, .step-card a {
    color: #e63946;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.subsidiary-card a:hover, .feature-card a:hover, .type-card a:hover, .benefit-card a:hover, .step-card a:hover {
    color: #fff;
}

/* Step Card Specific Styles */
.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #e63946;
    color: #fff;
    border-radius: 50%;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #e63946 0%, #d62839 100%);
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
    margin-top: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.4);
}

/* Main Content Layout */
.main-content {
    min-height: 100vh;
    padding-top: 100px; /* Account for fixed navbar */
    padding-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.contact-form-container h1 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
}

.contact-form-container > p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #ccc;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(230, 57, 70, 0.1);
    text-align: left;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e63946;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #e63946;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

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

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #e63946 0%, #d62839 100%);
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.4);
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-info span {
    color: #999;
    font-size: 0.9rem;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation Improvements */
    .navbar {
        padding: 0.75rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.4rem;
        gap: 0.5rem;
    }

    .logo img {
        height: 32px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px;
        flex-direction: column;
        background-color: rgba(17, 17, 17, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(15px);
        padding: 2rem 0;
        height: calc(100vh - 65px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1.5rem 0;
        width: 100%;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        display: block;
        width: 100%;
        border-radius: 8px;
        margin: 0 1rem;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        background: rgba(230, 57, 70, 0.1);
        transform: translateX(5px);
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger span {
        width: 28px;
        height: 3px;
        border-radius: 2px;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Dropdown Improvements */
    .dropdown-menu {
        position: static;
        background: rgba(230, 57, 70, 0.15);
        border: 1px solid rgba(230, 57, 70, 0.3);
        border-radius: 12px;
        margin: 1rem 2rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        min-width: auto;
        width: calc(100% - 4rem);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .dropdown.active .dropdown-menu {
        display: block;
        animation: slideDown 0.3s ease;
    }

    .dropdown-menu a {
        padding: 1rem 1.5rem;
        margin: 0.5rem;
        font-size: 1rem;
        border-radius: 8px;
    }

    /* Hero Section Mobile */
    .hero {
        height: 100vh;
        padding: 0 1rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
        margin-bottom: 1.5rem;
    }

    .hero-content p {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        margin-top: 1rem;
    }

    /* Hero Banner Mobile */
    .hero-banner {
        height: 50vh;
        min-height: 350px;
        margin-top: 65px;
        padding: 0 1rem;
    }

    .hero-banner .hero-content {
        padding: 0 1rem;
    }

    /* Section Improvements */
    .section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 2rem;
    }

    /* Subsidiaries Grid Mobile */
    .subsidiaries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .subsidiary-card {
        padding: 2rem 1.5rem;
        margin: 0;
    }

    .subsidiary-card h3 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .subsidiary-card p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .subsidiary-tag {
        font-size: 0.9rem;
    }

    /* About Section Mobile */
    .about-content {
        padding: 0 1rem;
    }

    .about-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        text-align: left;
    }

    /* Footer Mobile */
    .footer {
        padding: 2rem 0;
    }

    .footer-content {
        padding: 0 1rem;
    }

    .footer-info {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.9rem;
    }

    .copyright {
        font-size: 0.85rem;
        margin-top: 1rem;
    }

    /* Contact Form Mobile */
    .main-content {
        padding-top: 80px;
        padding-bottom: 2rem;
        align-items: flex-start;
    }

    .contact-form-container {
        padding: 0 1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
        margin: 0;
        border-radius: 12px;
    }

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

    .form-group label {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 8px;
    }

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

    .submit-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        margin-top: 1rem;
    }

    /* Content Sections Mobile */
    .content-section {
        padding: 2rem 0;
    }

    .content-section h2 {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        margin-bottom: 1.5rem;
    }

    .content-section p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    /* Features Grid Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
        text-align: center;
    }

    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .feature-card p {
        font-size: 1rem;
    }
}

/* Additional Mobile Breakpoint for Small Phones */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.75rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo img {
        height: 28px;
    }

    .hero-content h1 {
        font-size: clamp(1.8rem, 10vw, 2.8rem);
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        line-height: 1.6;
    }

    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        border-radius: 25px;
    }

    .subsidiary-card {
        padding: 1.5rem 1rem;
        border-radius: 10px;
    }

    .subsidiary-card h3, .feature-card h3, .type-card h3, .benefit-card h3, .step-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .subsidiary-card p, .feature-card p, .type-card p, .benefit-card p, .step-card p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .contact-form {
        padding: 1.5rem 1rem;
    }

    .dropdown-menu {
        margin: 1rem 1rem;
        width: calc(100% - 2rem);
    }

    /* Improve text readability on small screens */
    body {
        font-size: 14px;
        line-height: 1.5;
    }

    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        hyphens: auto;
    }

    /* Better spacing for mobile */
    .section {
        padding: 2rem 0;
    }

    .about {
        text-align: left;
    }

    .about p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }

    /* Mobile-friendly footer */
    .footer-info {
        text-align: center;
        gap: 1rem;
    }

    .footer-info span {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* Animations for Mobile */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

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

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #e63946;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.2);
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e63946;
}

.testimonial-info h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-position {
    color: #e63946;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.testimonial-company {
    color: #ccc;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.testimonial-subsidiary {
    color: #888;
    font-size: 0.8rem;
    font-style: italic;
}

.testimonial-social {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: brightness(1.1);
}

.social-link.linkedin {
    background: #0077b5;
    color: white;
}

.social-link.linkedin:hover {
    background: #005885;
}

.social-link svg {
    width: 16px;
    height: 16px;
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial-text p {
    color: #ddd;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-error {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.3);
    border-radius: 15px;
    color: #e63946;
    font-size: 1.1rem;
    font-weight: 500;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #e63946;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e63946;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    color: #ccc;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Mission & Vision Cards */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.mission-card, .vision-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    border-color: #e63946;
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.2);
}

.mission-card .icon, .vision-card .icon {
    font-size: 3rem;
    color: #e63946;
    margin-bottom: 1.5rem;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.mission-card p, .vision-card p {
    color: #ddd;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: #e63946;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.2);
}

.value-icon {
    font-size: 2.5rem;
    color: #e63946;
    margin-bottom: 1rem;
}

.value-item h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-item p {
    color: #ddd;
    line-height: 1.6;
}

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

.subsidiary-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.subsidiary-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.subsidiary-link:hover .subsidiary-card {
    transform: translateY(-5px);
    border-color: #e63946;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.2);
}

.subsidiary-card h4 {
    color: #e63946;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.subsidiary-card p {
    color: #ddd;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(230, 57, 70, 0.05));
    border-radius: 20px;
    margin: 4rem 0;
}

.cta-content {
    text-align: center;
    padding: 4rem 2rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-content p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 2rem;
}

/* Pagination Styles */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pagination-info {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0 1rem;
}

.pagination-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    min-width: 40px;
    text-align: center;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(230, 57, 70, 0.2);
    border-color: #e63946;
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn.active {
    background: #e63946;
    border-color: #e63946;
}

.page-size-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    font-size: 0.9rem;
}

.page-size-selector select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Responsive Design for New Elements */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 0;
    }
    
    .testimonial-header {
        gap: 1rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-info h4 {
        font-size: 1rem;
    }
    
    .testimonial-position {
        font-size: 0.85rem;
    }
    
    .testimonial-company {
        font-size: 0.8rem;
    }
    
    .testimonial-subsidiary {
        font-size: 0.75rem;
    }
    
    .pagination-container {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .pagination-controls {
        order: 1;
    }
    
    .pagination-info {
        order: 2;
        margin: 0;
    }
    
    .page-size-selector {
        order: 3;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-card, .vision-card {
        padding: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .subsidiaries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-avatar {
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }
    
    .testimonial-info h4 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .testimonial-position {
        font-size: 0.8rem;
    }
    
    .testimonial-company {
        font-size: 0.75rem;
    }
    
    .testimonial-subsidiary {
        font-size: 0.7rem;
    }
    
    .testimonial-social {
        justify-content: center;
        margin-top: 0.75rem;
    }
    
    .social-link {
        width: 28px;
        height: 28px;
    }
    
    .testimonial-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .pagination-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        min-width: 35px;
    }
    
    .pagination-info {
        font-size: 0.8rem;
    }
    
    .page-size-selector {
        font-size: 0.8rem;
    }
}

/* Client Testimonials CTA Section */
.client-testimonials {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(230, 57, 70, 0.05));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #e63946, #d62839);
    color: white;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
    background: linear-gradient(135deg, #d62839, #c21e2a);
}

/* Section Subtitle Styling */
.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin: 1rem 0 2rem 0;
    line-height: 1.6;
}

/* Impact Highlight Section */
.impact-highlight {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.15), rgba(230, 57, 70, 0.08));
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 15px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.impact-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e63946, #d62839, #e63946);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.impact-content {
    text-align: center;
    padding: 2rem 0;
}

.impact-title {
    color: #e63946;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.impact-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.impact-item:hover {
    transform: translateY(-5px);
    background: rgba(230, 57, 70, 0.1);
    border-color: rgba(230, 57, 70, 0.3);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.2);
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.impact-item h3 {
    color: #e63946;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.impact-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Design for Impact Section */
@media (max-width: 768px) {
    .impact-title {
        font-size: 2rem;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .impact-item {
        padding: 1.5rem;
    }
}
