/* :root {
    --dark: #121A2F;
    --primary: #FF6B6B;
    --secondary: #4ECDC4;
    --accent: #FFCE54;
    --light: #F4F4F4;
    --text: #333333;
    --textLight: #666666;
    --transition: all 0.4s ease-in-out;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --borderRadius: 12px;
    --sectionPadding: 6rem 2rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--light);
    background-color: var(--primary-light);
    overflow-x: hidden;
}

h1, h2, h3 {
    color: var(--light);
    line-height: 1.2;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--dark);
    transition: var(--transition);
}

.grc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.grc-hero-section {
    background: linear-gradient(135deg, var(--dark) 0%, #1a233e 100%);
    color: var(--light);
    padding: 10rem 2rem 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}

.grc-hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--light), var(--accent));
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.grc-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 900px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.grc-hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
}

.grc-stat-item {
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 2rem;
}

.grc-stat-item:first-child {
    border-left: none;
    padding-left: 0;
}

.grc-stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary);
}

.grc-stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Main Section Styling */
.grc-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.grc-section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    position: relative;
    color: var(--dark);
}

.grc-section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.grc-section-subtitle {
    color: var(--textLight);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Service Cards (Vertically Stacked) */
.grc-features-section {
    padding: var(--sectionPadding);
}

.grc-features-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.grc-feature-card {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: var(--borderRadius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.grc-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.grc-feature-icon-wrapper {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.grc-feature-content {
    flex-grow: 1;
}

.grc-feature-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.grc-feature-description {
    color: var(--textLight);
    margin-bottom: 1rem;
}

/* Testimonial Section */
.grc-testimonial-section {
    background-color: #E8F4F8;
    padding: var(--sectionPadding);
}

.grc-testimonial-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: var(--borderRadius);
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.grc-testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
}

.grc-testimonial-quote::before,
.grc-testimonial-quote::after {
    font-size: 4rem;
    color: rgba(255, 107, 107, 0.2);
    position: absolute;
    font-family: serif;
}

.grc-testimonial-quote::before {
    content: '“';
    top: -20px;
    left: -30px;
}

.grc-testimonial-quote::after {
    content: '”';
    bottom: -50px;
    right: -30px;
}

.grc-testimonial-author {
    font-weight: 600;
    color: var(--dark);
}

.grc-testimonial-role {
    color: var(--textLight);
    font-size: 0.9rem;
}

/* CTA Section */
.grc-cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--light);
    padding: 5rem 2rem;
    text-align: center;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
    margin-top: -5rem;
}

.grc-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 5rem;
}

.grc-cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--light);
}

.grc-cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.grc-cta-button {
    background-color: var(--dark);
    color: var(--light);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.grc-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .grc-features-list .grc-feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .grc-hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .grc-stat-item {
        border-left: none;
        padding-left: 0;
    }

    .grc-cta-container {
        padding-top: 2rem;
    }

    .grc-cta-section {
        margin-top: 0;
        clip-path: none;
    }
}

.grc-explore-cta-btn {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: var(--primary);
            color: var(--light);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.2rem;
            transition: var(--transition);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
        }

        .grc-explore-cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
        }