/* ================================
   GLOBAL / HERO SECTION
================================ */
.gr-wrapper{
	width:100%;
	height:100%;
	overflow:auto
}

.gr-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 20px 60px;
    text-align: center;
}

/* Background Layers */
.gr-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 40%, #f5f5f5 100%);
}

.gr-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(66,133,244,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(66,133,244,0.06) 0%, transparent 40%);
    pointer-events: none;
}

/* Content */
.gr-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

/* Badge */
.gr-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(66,133,244,0.4);
    color: #3c3f66;
    background: rgba(66,133,244,0.08);
}

/* Title */
.gr-hero-title {
    font-family: "Manrope", sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.gr-hero-title span {
    background: #3c3f66;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Description */
.gr-hero-desc {
    font-family: "Manrope", sans-serif;
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.7;
    color: #555;
    max-width: 700px;
    margin: 0 auto 36px;
}

/* CTA Buttons */
.gr-cta-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.gr-btn-primary,
.gr-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
}

/* Primary Button */
.gr-btn-primary {
    border: none;
    background: #407cf3;
    color: #fff;
    box-shadow: 0 4px 24px rgba(66,133,244,0.3);
}

.gr-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(66,133,244,0.45);
}

/* Secondary Button */
.gr-btn-secondary {
    background: transparent;
    border: 2px solid rgba(66,133,244,0.3);
    color: #4285f4;
}

.gr-btn-secondary:hover {
    border-color: rgba(66,133,244,0.6);
    color: #1967d2;
}


/* ================================
   STATS SECTION
================================ */

.gr-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    max-width: 700px;
    margin: 48px auto 0;
    position: relative;
    z-index: 2;
}

.gr-stat {
    text-align: center;
    padding: 20px 10px;
    border-radius: 16px;
    background: rgba(66,133,244,0.06);
    border: 1px solid rgba(66,133,244,0.12);
}

.gr-stat-num {
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #3c3f66;
    letter-spacing: 1px;
}

.gr-stat-label {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    color: #777;
    margin-top: 4px;
    letter-spacing: 1px;
}


/* ================================
   SECTION COMMON
================================ */

.gr-section {
    padding: 60px 0px;
}

.gr-section-dark {
    background: #ffffff;
}

.gr-section-title {
    font-family: "Manrope", sans-serif;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
}

.gr-section-title.gr-dark {
    color: #1a1a1a;
}

.gr-section-title span {
    background: #3c3f66;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gr-section-sub {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
    color: #555;
}


/* ================================
   WHY CHOOSE US
================================ */

.gr-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 24px;
}

.gr-why-card {
    padding: 20px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #e5e5e5;
    transition: 0.3s;
    text-align: center;
}

.gr-why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(234,179,8,0.3);
}

.gr-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: #f0f0f0;
    color: #3c3f66;
}

.gr-why-card h3{
	font-size: 20px;
	margin-bottom: 10px;
}

.gr-why-card p{
	font-size: 15px;
}

.gr-why-card ul{
	margin: 0 auto;
	display: inline-block;
	text-align: center;
}

.gr-why-card ul li{
	font-size: 15px;
	letter-spacing: 1px;
}

/* ================================
   CTA SECTION
================================ */

.gr-cta-section {
    padding: 60px 20px;
    text-align: center;
    background: #2f325c;
    position: relative;
    overflow: hidden;
}

.gr-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 60%);
}

.gr-cta-content {
    position: relative;
    z-index: 2;
}

.gr-cta-content h2{
	font-size: 45px;	
	color: #fff;	
	margin-bottom: 10px;
}

.gr-cta-content p{
	color: #fff;
	margin-bottom: 30px;
}

/* ================================
   SERVICES
================================ */

.gr-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.gr-service-item {
    padding: 24px 16px;
    border-radius: 16px;
    text-align: center;
    background: #fff;
    border: 2px solid #e5e5e5;
    transition: 0.3s;
}

.gr-service-item:hover {
    border-color: #4285f4;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(66,133,244,0.12);
}

.gr-service-item i{
    font-size:32px;
    display:block;
    margin-bottom:10px;
    color: #3c3f66;
}

.gr-service-item h4{	
	margin-top: 20px;
}

/* ================================
   ANIMATIONS
================================ */

@keyframes gr-float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(20px); }
}

@keyframes gr-fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.gr-animate {
    animation: gr-fadeUp .6s ease forwards;
    opacity: 0;
}


/* ================================
   RESPONSIVE DESIGN
================================ */

/* Tablet Devices (768px and below) */
@media (max-width: 768px) {
    .gr-hero {
        padding: 60px 15px 45px;
    }

    .gr-hero-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .gr-hero-desc {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .gr-cta-row {
        gap: 12px;
    }

    .gr-btn-primary,
    .gr-btn-secondary {
        padding: 12px 28px;
        font-size: 15px;
    }

    .gr-stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 16px;
        margin-top: 36px;
    }

    .gr-stat {
        padding: 16px 8px;
    }

    .gr-stat-num {
        font-size: 24px;
    }

    .gr-stat-label {
        font-size: 13px;
    }

    .gr-section {
        padding: 45px 0;
    }

    .gr-section-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .gr-section-sub {
        font-size: 15px;
        margin-bottom: 36px;
    }

    .gr-why-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .gr-why-card {
        padding: 24px;
    }

    .gr-why-icon {
        width: 44px;
        height: 44px;
    }

    .gr-why-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .gr-why-card p {
        font-size: 14px;
    }

    .gr-why-card ul li {
        font-size: 14px;
    }

    .gr-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px;
    }

    .gr-service-item {
        padding: 20px 12px;
    }

    .gr-service-item i {
        font-size: 28px;
    }

    .gr-cta-section {
        padding: 45px 15px;
    }

    .gr-cta-content h2 {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .gr-cta-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }
}


/* Mobile Devices - Large (576px and below) */
@media (max-width: 576px) {
    .gr-wrapper {
        overflow-x: hidden;
    }

    .gr-hero {
        padding: 50px 12px 35px;
    }

    .gr-hero-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .gr-hero-desc {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .gr-cta-row {
        flex-direction: column;
        gap: 10px;
    }

    .gr-btn-primary,
    .gr-btn-secondary {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
        justify-content: center;
    }

    .gr-badge {
        font-size: 12px;
        padding: 5px 14px;
        margin-bottom: 16px;
    }

    .gr-stats {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 12px;
        margin-top: 24px;
    }

    .gr-stat {
        padding: 12px 6px;
    }

    .gr-stat-num {
        font-size: 20px;
    }

    .gr-stat-label {
        font-size: 12px;
    }

    .gr-section {
        padding: 35px 0;
    }

    .gr-section-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .gr-section-sub {
        font-size: 14px;
        margin-bottom: 24px;
        padding: 0 10px;
    }

    .gr-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gr-why-card {
        padding: 20px;
    }

    .gr-why-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .gr-why-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .gr-why-card p {
        font-size: 13px;
    }

    .gr-why-card ul {
        margin-left: 12px;
    }

    .gr-why-card ul li {
        font-size: 13px;
    }

    .gr-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: 10px;
    }

    .gr-service-item {
        padding: 16px 10px;
    }

    .gr-service-item i {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .gr-service-item h4 {
        font-size: 13px;
        margin-top: 8px;
    }

    .gr-cta-section {
        padding: 35px 12px;
    }

    .gr-cta-content h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .gr-cta-content p {
        font-size: 14px;
        margin-bottom: 16px;
    }
}


/* Mobile Devices - Extra Small (480px and below) */
@media (max-width: 480px) {
    .gr-hero {
        padding: 40px 10px 25px;
    }

    .gr-hero-title {
        font-size: 20px;
        letter-spacing: 0.5px;
    }

    .gr-hero-desc {
        font-size: 13px;
    }

    .gr-badge {
        font-size: 11px;
        padding: 4px 12px;
    }

    .gr-section {
        padding: 25px 0;
    }

    .gr-section-title {
        font-size: 20px;
    }

    .gr-why-card {
        padding: 16px;
    }

    .gr-cta-section {
        padding: 25px 10px;
    }

    .gr-cta-content h2 {
        font-size: 18px;
    }

    .gr-btn-primary,
    .gr-btn-secondary {
        padding: 10px 16px;
        font-size: 13px;
    }

    .gr-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gr-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 16px;
    }
}