/*
================================================================================
CYBERFRAME LANDING PAGES - COMMON CSS
================================================================================
This file contains common styles for all landing pages:
1. Web Development Company in Ludhiana
2. Web Designing Company in Ludhiana
3. Mobile App Development in Ludhiana

Note: Hero section styles are in separate file: css/hero-section.css
Last Updated: 2025
================================================================================
*/

/* ============================================================================
   TABLE OF CONTENTS
   ============================================================================
   1. GLOBAL STYLES & RESETS
   2. COMMON COMPONENTS & ANIMATIONS
   3. STATISTICS / STATS BAR SECTION
   4. SERVICES SECTION
   5. FEATURES & SPECIALITIES SECTION
   6. TESTIMONIALS SECTION
   7. CONTACT & CTA SECTION
   8. FAQ SECTION
   9. RESPONSIVE STYLES
   10. MOBILE APP DEVELOPMENT PAGE - SPECIFIC STYLES
   ============================================================================ */


/* ============================================================================
   1. GLOBAL STYLES & RESETS
   ============================================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Font Awesome Icon Fix for Mobile Menu */
.icon {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ============================================================================
   2. COMMON COMPONENTS - ANIMATIONS
   ============================================================================ */

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Section Headers */
.section-header {
    margin-bottom: 50px;
}

.section-title-new {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-title-new span {
    color: #ed1c24;
}

.section-subtitle-new {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.text-center {
    text-align: center;
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
    .form-info {
        padding: 1em;
    }

    .our-expertise-section,
    .faq-accordion-section {
        padding: 60px 10px !important;
    }

    .photo_grid_container {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 1em !important;
        padding: 1em;
    }

    .howitworks_combined_container {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 1em !important;
        max-width: unset !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .technologies_cards_container {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 1em !important;
        max-width: unset !important;
        width: 100% !important;
    }

    .faq-accordion-wrapper {
        display: grid !important;
        grid-template-columns: repeat(1, 1fr) !important;
        place-content: center !important;
    }

    .features_capabilities_cards_container {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 1em;
        max-width: unset !important;
        width: 100% !important;
    }

    .how_it_works_title {
        font-size: 26px !important;
    }

    .complete_dm_services_cards_container {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 1em !important;
        max-width: unset !important;
        padding: 1em;
        width: 100% !important;
    }

    .tools_platforms_cards_container {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 1em !important;
        max-width: unset !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .features_cards_container {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 1em !important;
        align-items: center !important;
        max-width: unset !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .trusted_dm_agency_cards_container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1em;
        align-items: center;
        max-width: unset;
        width: 100%;
        justify-content: center;
    }

    .stats-bar {
        padding: 50px 10px;
    }

    .stats-grid {
        grid-template-columns: repeat(1, 1fr) !important;
        max-width: unset !important;
        width: 100%;
    }

    .features-specialities,
    .dm_services_section {
        padding: 50px 10px !important;
    }

    .cards_container {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 1em !important;
        max-width: unset !important;
        width: 100%;
    }

    .form-container {
        grid-template-columns: 1fr;
        gap: 1em;
        place-content: center;
    }

    .hero p,
    .form-info p {
        font-size: 13px !important;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .logo img {
        height: 3em !important;
    }

    .cta-header {
        background: #ed1c24;
        color: #fff;
        padding: 0.5em !important;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.7em !important;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(237, 28, 36, 0.3);
        white-space: nowrap;
    }

    .container {
        padding: 0 !important;
    }

    .features-content {
        padding: 1em;
    }

    .specialities-wrapper,
    .testimonial-grid-new,
    .form-section .container,
    .tech-features-grid {
        padding: 0 1em !important;
    }

    .form-info h2 {
        font-size: 16px !important;
    }

    .form-info img {
        height: 13em;
    }

    .contact-form {
        padding: 1em !important;
    }

    .form-group {
        margin-bottom: 1em !important;
    }

    .form-row {
        gap: 0 !important;
    }

    .btns_container {
        flex-direction: column;
        gap: 0 !important;
    }

    .stats-grid,
    .services-grid,
    .testimonial-grid,
    .features-grid {
        display: grid !important;
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 1em;
        padding: 1em;
    }

    .section-title {
        font-size: 28px;
    }

    .seo_tools_technologies_grid_container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1em !important;
    }

    .faq-list {
        max-width: 90% !important;
    }

    .audit-form {
        max-width: 90% !important;
        margin: 0 auto !important;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1em;
        padding: 1em;
    }

    .technologies-diagram-section {
        padding: 80px 10px;
    }

}

@media only screen and (min-width: 481px) and (max-width: 768px) {

    .cards_container {
        grid-template-columns: repeat(2, 1fr) !important;
        place-content: center;
    }

    .photo_grid_container,
    .howitworks_combined_container {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 1em;
    }

    .features-specialities,
    .stats-bar {
        padding: 50px 10px !important;
    }

    .features_capabilities_cards_container,
    .complete_dm_services_cards_container {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .stats-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        place-content: center;
        gap: 1em;
    }

    .dm_services_section,
    .stats-bar .container {
        padding: 0;
    }

    .trusted_dm_agency_cards_container {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 1em !important;
    }
}

@media only screen and (min-width: 769px) and (max-width: 992px) {
    .stats-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .howitworks_combined_container {
        grid-template-columns: 46% 50% !important;
    }

}

/* ============================================================================
   3. HEADER & NAVIGATION (COMMON TO ALL LANDING PAGES)
   ============================================================================ */

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
}

.cta-header {
    background: #ed1c24;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 28, 36, 0.3);
}

.cta-header:hover {
    background: #d11820;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 28, 36, 0.4);
}


/* ============================================================================
   4. GROUP A LANDING PAGES - HERO NEW STYLE
   (web-development, digital-marketing-agency, digital-marketing-company,
    web-designing, mobile-app-development)
   ============================================================================ */

/* Hero Section */
.hero-new {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 0;
}

.hero-new::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shapes .shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-shapes .shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation: pulse 4s ease-in-out infinite;
}

.hero-shapes .shape-2 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 15%;
    animation: pulse 5s ease-in-out infinite 0.5s;
}

.hero-shapes .shape-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation: pulse 6s ease-in-out infinite 1s;
}

.hero-illustration {
    border-radius: 30px;
    padding: 40px;
    position: relative;
    animation: floatUpDown 3s ease-in-out infinite;
}

.hero-illustration svg {
    width: 100%;
    height: auto;
}

.hero-content-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text-new h1 {
    font-size: 35px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-text-new h1 span {
    background: linear-gradient(90deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text-new p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    text-align: justify;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary-new {
    background: linear-gradient(90deg, #ed1c24, #ff4444);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(237, 28, 36, 0.4);
    text-shadow: none;
}

.btn-primary-new:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(237, 28, 36, 0.8);
    background: linear-gradient(90deg, #ff4444, #ed1c24);
    color: #fff;
    text-shadow: none;
    text-decoration: none;
}

.btn-secondary-new {
    background: transparent;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    text-shadow: none;
}

.btn-secondary-new:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 1);
    color: #fff;
    text-shadow: none;
    text-decoration: none;
}

.hero-image-new img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* Features Specialities (Group A) */
.features-specialities {
    padding: 50px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.features-specialities .container {
    position: relative;
    z-index: 1;
}

.section-tag-features {
    display: inline-block;
    color: #f24444;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.features-specialities-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.features-illustration {
    width: 100%;
    max-width: 100%;
    padding-right: 30px;
}

.features-illustration svg,
.features-illustration img {
    width: 100%;
    height: auto;
    display: block;
}

.features-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-spec-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #f3f4f6;
}

.feature-spec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.feature-spec-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.feature-spec-icon {
    width: 70px;
    height: 70px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-spec-icon svg {
    width: 38px;
    height: 38px;
    transition: all 0.3s ease;
}

.feature-spec-card:hover .feature-spec-icon {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(108, 99, 255, 0.35);
}

.feature-spec-card:hover .feature-spec-icon svg {
    transform: scale(1.15);
}

.feature-spec-content h4 {
    font-size: 18px;
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

.feature-spec-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 968px) {
    .features-specialities-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .features-cards-grid {
        grid-template-columns: 1fr;
    }

    .features-illustration {
        max-width: 100%;
    }
}

/* Testimonials (Group A) */
.testimonials-new {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
}

.testimonials-new::before {
    content: '\201C';
    position: absolute;
    top: 50px;
    left: 5%;
    font-size: 300px;
    font-family: Georgia, serif;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
}

.testimonials-new::after {
    content: '\201D';
    position: absolute;
    bottom: -50px;
    right: 5%;
    font-size: 300px;
    font-family: Georgia, serif;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
}

.testimonial-card-new::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 50px;
    font-family: Georgia, serif;
    color: #FFD700;
    line-height: 1;
    font-weight: bold;
}

.testimonials-new .section-tag {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

.testimonials-new .section-title-new,
.testimonials-new .section-subtitle-new {
    color: #333;
    text-align: center;
}

.testimonial-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card-new {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 280px;
    position: relative;
}

.testimonial-stars {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text-new {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: auto;
    font-style: italic;
    padding-left: 10px;
    flex-grow: 1;
}

.author-info {
    margin-top: 20px;
}

.author-info h5 {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.author-info p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

/* Form Section (Group A) */
.form-section {
    padding: 60px 0;
    background: #f8f9ff;
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 50%;
}

.form-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
    border-radius: 50%;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.form-info h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.form-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.contact-form {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* FAQ Section (Group A) */
.faq-new {
    padding: 60px 0;
    background: #f1f2f9;
    position: relative;
}

.faq-new .section-subtitle-new {
    max-width: 700px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    margin-top: 60px;
}

.faq-item-new {
    display: flex;
    gap: 20px;
    align-items: center;
}

.faq-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border: 2px solid #0099ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-icon svg {
    width: 20px;
    height: 20px;
    stroke: #0099ff;
    fill: none;
    stroke-width: 3;
}

.faq-item-new:hover .faq-icon {
    background: #0099ff;
}

.faq-item-new:hover .faq-icon svg {
    stroke: #fff;
}

.faq-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.faq-item-new p {
    font-size: 14px;
    color: #666;
    padding-left: 35px;
}

/* Responsive - Group A */
@media (max-width: 1024px) {

    .hero-content-new,
    .form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-new {
        padding: 60px 0;
    }

    .hero-text-new h1 {
        font-size: 32px;
    }

    .hero-text-new p {
        font-size: 15px;
    }

    .hero-illustration {
        padding: 30px;
    }

    .services-grid-new,
    .testimonial-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-new {
        padding: 40px 0;
    }

    .hero-content-new {
        gap: 30px;
    }

    .hero-text-new h1 {
        font-size: 28px;
        margin-bottom: 20px;
        margin-top: 80px;
    }

    .hero-text-new p {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .hero-illustration {
        padding: 20px;
    }

    .hero-illustration img {
        max-width: 100%;
        height: auto;
    }

    .btn-primary-new,
    .btn-secondary-new {
        padding: 12px 18px;
        font-size: 12px;
        text-align: center;
    }

    .services-grid-new,
    .why-grid,
    .process-grid,
    .testimonial-grid-new,
    .faq-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .section-title-new {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .hero-buttons {
        display: flex;
        flex-direction: row;
        gap: 15px;
        justify-content: flex-start;
    }

    .btn-primary-new,
    .btn-secondary-new {
        flex: 0 1 auto;
        white-space: nowrap;
    }

    .hero-shapes .shape-1 {
        width: 120px;
        height: 120px;
    }

    .hero-shapes .shape-2 {
        width: 80px;
        height: 80px;
    }

    .hero-shapes .shape-3 {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .hero-new {
        padding: 0px 0 30px;
    }

    .hero-content-new {
        gap: 20px;
    }

    .hero-text-new {
        padding: 0 10px;
    }

    .hero-text-new h1 {
        font-size: 22px;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .hero-text-new p {
        font-size: 13px;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .hero-buttons {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .btn-primary-new,
    .btn-secondary-new {
        padding: 12px 20px;
        font-size: 13px;
        flex: 1;
        text-align: center;
    }

    .hero-illustration {
        padding: 10px;
        margin-top: 10px;
    }

    .hero-illustration img {
        height: auto !important;
        max-height: 300px;
        width: 100%;
        object-fit: contain;
    }

    .hero-new::before {
        display: none;
    }

    .hero-shapes .shape-1,
    .hero-shapes .shape-2,
    .hero-shapes .shape-3 {
        display: none;
    }
}


/* ============================================================================
   5. GROUP B LANDING PAGES - HERO OLD STYLE
   (best-seo-services, seo-agency, ecommerce, ivr, official-whatsapp,
    seo-company-ludhiana)
   ============================================================================ */

/* Hero Section (Group B) */
.hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.hero-image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.hero-image-placeholder span {
    font-size: 18px;
    opacity: 0.8;
}

/* Stats Section (Group B) */
.stats {
    background: #f8f9fa;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    background: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

.stat-number {
    font-size: 48px;
    color: #007bff;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Titles (Group B) */
.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 20px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* Services Grid (Group B) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #007bff;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.2);
    border-top-color: #ed1c24;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* Why Choose Us (Group B) */
.why-choose {
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 36px;
    color: #ed1c24;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.feature-content p {
    color: #666;
    line-height: 1.7;
}

/* Process Section (Group B) */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(0, 123, 255, 0.3);
}

.process-step p {
    color: #666;
    line-height: 1.7;
}

/* Testimonials (Group B) */
.testimonials {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
}

.testimonials .section-title,
.testimonials .section-subtitle {
    color: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    font-size: 18px;
}

.testimonial-position {
    font-size: 14px;
    opacity: 0.9;
}

/* CTA Section (Group B) */
.cta-section {
    background: #ed1c24;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #fff;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
}

/* Form Styles (Group B) */
.audit-form {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Khula', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    background: #ed1c24;
    color: #fff;
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.form-submit:hover {
    background: #d01820;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(237, 28, 36, 0.3);
}

.form-note {
    margin-top: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* FAQ Section (Group B) */
.faq-list {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
    color: #007bff;
}

.faq-answer {
    padding: 0 30px 25px;
    color: #666;
    line-height: 1.8;
}

/* Floating Button (Group B) */
.floating-btn {
    position: fixed;
    bottom: 150px;
    right: 30px;
    background: #ed1c24;
    color: #fff;
    padding: 18px 28px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(237, 28, 36, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    border: none;
    animation: pulse 2s infinite;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floating-btn:hover {
    background: #d01820;
    transform: scale(1.05);
    box-shadow: 0 8px 35px rgba(237, 28, 36, 0.6);
    text-decoration: none;
    color: white;
}

.full-data {
    grid-template-columns: unset !important;
}

.stat-item-new {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.stat-number {
    font-family: 'Maven Pro', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 10px;
}

.error-message {
    color: crimson;
}

/* ============================================================================
   END OF LANDING PAGES COMMON CSS
   ============================================================================
   For page-specific styles, see individual sections below
   ============================================================================ */