//new 12 dec

  .service-card,
.service-item-card {
    border: 1px solid #e2e2e2;   /* Clean light border */
    border-radius: 10px;         /* Smooth rounded corners */
    padding: 25px;
    background: #fff;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

.service-card:hover,
.service-item-card:hover {
    border-color: #4CAF50;       /* Highlight border on hover */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card strong,
.service-item-card strong {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.service-card p,
.service-item-card p {
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.service-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #4CAF50;
    transition: 0.3s;
}
.page-id-1411 .service-arrow
{
display: none !important;
}
.page-id-1411 .process-section
{
   display: none !important; 
}


.service-card:hover .service-arrow,
.service-item-card:hover .service-arrow {
    right: 15px;
}


   
  /* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-choose-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-item {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    /*text-align: center;*/
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.check-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.why-choose-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.why-choose-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.why-choose-item p a {
    color: #0066ff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.why-choose-item p a:hover {
    color: #0044cc;
}

/* Responsive Design */
@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }
    
    .why-choose-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-choose-item {
        padding: 30px 25px;
    }
    
    .why-choose-item h3 {
        font-size: 20px;
    }
    
    .why-choose-item p {
        font-size: 14px;
    }
}
/* Additional Services Section */
 .additional-services-section {
            padding: 80px 0;
            background: white;
        }

        .additional-services-section h2 {
            font-size: 42px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .section-intro {
            text-align: center;
            font-size: 20px;
            color: var(--text-primary);
            margin-bottom: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

       .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto;
        }

       .service-card {
            background: white;
            border: 2px solid #e0e0e0;
            padding: 25px;
            border-radius: 8px;
            text-decoration: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            border-color: var(--primary-color);
            transform: translateX(5px);
            box-shadow: 0 3px 15px rgba(0,51,204,0.15);
        }

    .service-card h3 {
            font-size: 18px;
            color: ffffffvar(--text-dark);
            margin: 0;
            font-weight: 600;
        }

        .service-arrow {
            color: var(--primary-color);
            font-size: 24px;
            font-weight: bold;
        }

    
        /* Hide global header and footer for landing page */
        body.landing-page header:not(.landing-header),
        body.landing-page footer,
        body.landing-page .site-header,
        body.landing-page .site-footer,
        body.landing-page nav,
        body.landing-page .navigation,
        body.landing-page .menu {
            display: none !important;
        }
        
        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #fff;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        
        /* Custom Landing Header */
        .landing-header {
            background: #fff;
            padding: 15px 0;
            border-bottom: 1px solid #e5e5e5;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        .landing-header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .landing-logo img {
            height: 50px;
            width: auto;
            pointer-events: none;
            cursor: default;
        }
        
        .custom-header-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .custom-phone {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            text-decoration: none;
        }
        
        .custom-phone:hover {
            color: #0033CC;
        }
        
        .landing-cta-button {
            background: #0033CC;
            color: white;
            padding: 12px 24px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .landing-cta-button:hover {
            background: #0044dd;
            color: white;
            transform: translateY(-1px);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.95)),
                        url('/wp-content/uploads/2025/09/Paver-Patio-2.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: white;
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-container {
            display: grid;
            grid-template-columns: 1fr 500px;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            opacity: 0.95;
        }

        .hero-intro {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .cta-button, .cta-button-outline {
            padding: 15px 30px;
            font-size: 1.1rem;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .cta-button {
            background-color: #FFA500;
            color: white;
            border: 2px solid #FFA500;
        }

        .cta-button:hover {
            background-color: #d9940d;
            transform: translateY(-2px);
        }

        .cta-button-outline {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-button-outline:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
        }
        
        .hero-content p {
            font-size: 1.25rem;
            margin-bottom: 20px;
            opacity: 0.95;
        }
        
        .hero-content .hero-intro {
            margin-bottom: 32px;
        }
        
        .hero-cta-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .hero-cta-primary {
            background: #f0b90b;
            color: #1a1a1a;
            padding: 15px 30px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .hero-cta-primary:hover {
            background: #d9940d;
            transform: translateY(-2px);
        }
        
        .hero-cta-secondary {
            background: transparent;
            border: 2px solid white;
            color: white;
            padding: 13px 28px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .hero-cta-secondary:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-2px);
        }
        
        /* Form Container */
        #lp-form {
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.15);
            padding: 24px;
            color: #333;
            max-width: 100%;
        }

        #lp-form h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 4px;
            color: #1a1a1a;
        }

        #lp-form p {
            color: #666;
            margin-bottom: 16px;
            opacity: 1;
            font-size: 13px;
            line-height: 1.3;
        }

        /* Gravity Forms Customization */
        #lp-form .gform_wrapper {
            margin: 0 !important;
            max-width: 100% !important;
        }

        #lp-form .gfield {
            margin-bottom: 12px !important;
            padding: 0 !important;
        }

        #lp-form .gfield_label {
            font-size: 12px !important;
            font-weight: 600 !important;
            color: #333 !important;
            margin-bottom: 4px !important;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: block !important;
        }

        #lp-form input[type="text"],
        #lp-form input[type="email"],
        #lp-form input[type="tel"],
        #lp-form textarea,
        #lp-form select {
            width: 100% !important;
            padding: 8px 10px !important;
            border: 1px solid #ddd !important;
            border-radius: 4px !important;
            font-size: 13px !important;
            transition: border-color 0.3s ease !important;
            margin: 0 !important;
            box-sizing: border-box !important;
            line-height: 1.2 !important;
        }

        #lp-form input[type="text"]:focus,
        #lp-form input[type="email"]:focus,
        #lp-form input[type="tel"]:focus,
        #lp-form textarea:focus,
        #lp-form select:focus {
            border-color: #0033CC !important;
            outline: none !important;
            box-shadow: 0 0 0 2px rgba(0, 51, 204, 0.1) !important;
        }

        #lp-form textarea {
            resize: vertical !important;
            min-height: 60px !important;
            font-family: inherit !important;
        }

        #lp-form .gform_button,
        #lp-form input[type="submit"] {
            background: #0033CC !important;
            color: white !important;
            border: none !important;
            padding: 10px 20px !important;
            border-radius: 4px !important;
            font-size: 13px !important;
            font-weight: 600 !important;
            cursor: pointer !important;
            transition: all 0.3s ease !important;
            width: 100% !important;
            margin-top: 6px !important;
        }

        #lp-form .gform_button:hover,
        #lp-form input[type="submit"]:hover {
            background: #0044dd !important;
            transform: translateY(-1px) !important;
        }

        #lp-form .gfield_required {
            color: #e74c3c !important;
        }

        #lp-form .validation_error {
            color: #e74c3c !important;
            font-size: 11px !important;
            margin-top: 2px !important;
        }

        #lp-form .gform_confirmation_message {
            background: #d4edda !important;
            color: #155724 !important;
            padding: 10px !important;
            border-radius: 4px !important;
            border: 1px solid #c3e6cb !important;
            font-size: 13px !important;
        }

        /* Multi-column fields for compact layout */
        #lp-form .gfield--width-half {
            width: 48% !important;
            display: inline-block !important;
            margin-right: 4% !important;
            vertical-align: top !important;
        }

        #lp-form .gfield--width-half:nth-child(even) {
            margin-right: 0 !important;
        }

        /* Remove extra spacing */
        #lp-form .gform_fields {
            margin: 0 !important;
            padding: 0 !important;
        }

        #lp-form .gform_footer {
            margin: 8px 0 0 0 !important;
            padding: 0 !important;
        }

        #lp-form .gform_heading {
            display: none !important;
        }

        /* Additional spacing reductions */
        #lp-form .gfield_description {
            font-size: 11px !important;
            margin-top: 2px !important;
            margin-bottom: 0 !important;
        }

        #lp-form ul.gfield_radio,
        #lp-form ul.gfield_checkbox {
            margin: 0 !important;
            padding: 0 !important;
        }

        #lp-form ul.gfield_radio li,
        #lp-form ul.gfield_checkbox li {
            margin-bottom: 4px !important;
        }
        
        /* Content Sections */
        .content-section {
            padding: 80px 0;
        }
        
        .content-section:nth-child(even) {
            background: #f8f9fa;
        }
        
        .content-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: #1a1a1a;
            text-align: center;
        }
        
        .content-section h3 {
            font-size: 1.8rem;
            font-weight: 600;
            margin: 40px 0 16px 0;
            color: #0033CC;
        }
        
        .content-section p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: #444;
            text-align: center;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .text-left {
            text-align: left !important;
        }
        
        /* Features List */
        .features-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        
        .feature-item {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            text-align: left;
        }
        
        .feature-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .feature-item::before {
            content: "✓";
            color: #0033CC;
            font-weight: bold;
            font-size: 18px;
            margin-right: 10px;
        }
        
        /* Process Section */
        .process-section {
            padding: 80px 0;
            background: white;
        }
        
        .process-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .process-section h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #1a1a1a;
        }
        
        .process-subtitle {
            font-size: 18px;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* Horizontal Timeline */
        .process-timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Connecting Line */
        .process-timeline::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 10%;
            right: 10%;
            height: 3px;
            background: linear-gradient(90deg, 
                #0033CC 0%, #0033CC 20%, 
                #e0e6ed 20%, #e0e6ed 40%, 
                #0033CC 40%, #0033CC 60%, 
                #e0e6ed 60%, #e0e6ed 80%, 
                #0033CC 80%, #0033CC 100%);
            z-index: 1;
        }
        
        .process-steps-horizontal {
            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }
        
        .process-step-horizontal {
            flex: 1;
            text-align: center;
            max-width: 220px;
            position: relative;
        }
        
        .step-circle {
            width: 100px;
            height: 100px;
            background: white;
            border: 4px solid #0033CC;
            border-radius: 50%;
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 3;
            box-shadow: 0 4px 20px rgba(0, 51, 204, 0.15);
            transition: all 0.3s ease;
        }
        
        .step-number-horizontal {
            font-size: 32px;
            font-weight: 700;
            color: #0033CC;
        }
        
        .step-title-horizontal {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        
        .step-description-horizontal {
            font-size: 15px;
            color: #666;
            line-height: 1.5;
            margin-bottom: 16px;
        }
        
        .step-duration-horizontal {
            display: inline-block;
            padding: 6px 16px;
            background: #0033CC;
            color: white;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
        }
        
        /* Hover Effects */
        .process-step-horizontal:hover .step-circle {
            transform: scale(1.05);
            box-shadow: 0 8px 30px rgba(0, 51, 204, 0.25);
            border-color: #0044dd;
        }
        
        /* Services List */
        .services-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
            text-align: left;
        }
        
        .service-item {
            background: white;
            padding: 20px;
            border: 2px solid #f0f0f0;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .service-item:hover {
            border-color: #0033CC;
            transform: translateY(-2px);
        }

        /* Service Boxes Section */
        .service-boxes-section {
            background: #f8f9fa;
            padding: 80px 0;
        }

        .service-boxes-section h2 {
            text-align: center;
            font-size: 42px;
            color: #1a1a1a;
            margin-bottom: 16px;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .service-box {
            background: white;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .service-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            border-color: #0033CC;
        }

        .service-box-title {
            font-size: 22px;
            color: #1a1a1a;
            margin-bottom: 12px;
            font-weight: 600;
            text-align: center;
        }

        .service-box-description {
            color: #666;
            line-height: 1.6;
            font-size: 15px;
            text-align: center;
        }

        /* Why Choose Grid */
        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .why-choose-item {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            /*text-align: center;*/
            transition: all 0.3s ease;
            /*border: 2px solid transparent !important;*/
        }
        
        .why-choose-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            border-color: #0033CC;
        }
        
        .check-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #4CAF50, #45a049);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: bold;
            margin: 0 auto 20px;
        }
        
        .why-choose-item h4 {
            font-size: 20px;
            margin-bottom: 12px;
            color: #1a1a1a;
        }
        
        /* Gallery Section */
        .project-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 25px rgba(0,0,0,0.2);
        }
        
        .image-placeholder {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .image-placeholder span {
            font-size: 18px;
            color: #999;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 20px;
            font-size: 16px;
            font-weight: 500;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #0033CC 0%, #0044dd 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            color: white;
            margin-bottom: 24px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: rgba(255,255,255,0.95);
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .cta-button-primary {
            background: #f0b90b;
            color: #1a1a1a;
            padding: 18px 36px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .cta-button-primary:hover {
            background: #d9940d;
            transform: translateY(-2px);
        }
        
        .cta-button-secondary {
            background: transparent;
            border: 2px solid white;
            color: white;
            padding: 16px 34px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .cta-button-secondary:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-2px);
        }
        
        /* Responsive Design */
        @media (max-width: 968px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            #lp-form {
                /*order: -1;*/
                margin-bottom: 40px;
            }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .process-timeline::before {
                display: none;
            }
            
            .process-steps-horizontal {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
            
            .process-step-horizontal {
                max-width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-cta {
                flex-direction: column;
            }

            .cta-button, .cta-button-outline {
                width: 100%;
                text-align: center;
            }
            
            #lp-form {
                padding: 24px;
            }
            
            .custom-header-container {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .custom-header-right {
                flex-direction: column;
                gap: 10px;
            }
            
            .hero-cta-buttons,
            .cta-buttons {
                justify-content: center;
            }
            
            .process-section {
                padding: 60px 0;
            }
            
            .process-header {
                margin-bottom: 60px;
            }
            
            .process-section h2 {
                font-size: 32px;
            }
            
            .process-timeline::before {
                display: none;
            }
            
            .process-steps-horizontal {
                display: grid;
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .process-step-horizontal {
                max-width: 100%;
            }
            
            .step-circle {
                width: 70px;
                height: 70px;
                margin-bottom: 15px;
            }
            
            .step-number-horizontal {
                font-size: 24px;
            }
            
            .step-title-horizontal {
                font-size: 16px;
                margin-bottom: 8px;
            }
            
            .step-description-horizontal {
                font-size: 14px;
                margin-bottom: 12px;
            }
            
            .content-section h2 {
                font-size: 2rem;
            }

            .service-boxes-section {
                padding: 60px 0;
            }

            .service-boxes-section h2 {
                font-size: 32px;
            }

            .service-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .service-box {
                padding: 20px;
            }

            .service-box-title {
                font-size: 20px;
            }
        }
        
        /* Remove all internal link styling */
        .content-section a {
            color: inherit;
            text-decoration: none;
            pointer-events: none;
        }
}
   .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-item-card {
    display: block;
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    padding: 20px;
    text-decoration: none;
    color: #333;
    position: relative;
    transition: all .3s ease;
}

.service-item-card:hover {
    border-color:#0033CC;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-item-card h3 {
    margin-top: 0;
    font-size: 20px;
    font-weight: 600;
}

.service-desc {
    margin: 10px 0 20px;
    line-height: 1.5;
}

.service-arrow {
    font-size: 22px;
    color: #1b8f3a;
    position: absolute;
    bottom: 20px;
    right: 20px;
    transition: transform .3s ease;
}

.service-item-card:hover .service-arrow {
    transform: translateX(5px);
}

@media(min-width: 1151px){
    /*--Header css*/
.header-container .global-header-content{
    justify-content: center;
}
}
/* Closing Paragraph Section */
        .closing-paragraph-section {
            padding: 60px 0;
            background:  ffa500 !important;
            color: #000000 !important;
            text-align: center;
        }

        .closing-paragraph-section h2 {
            font-size: 42px;
           font-weight: 700;
           margin-bottom: 30px;
          color: #000000 !important;
        }
        .closing-paragraph-section p {
            font-size: 18px;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto;
            color: color: #000000 !important;
        }

        .closing-paragraph-section a {
            color: #FFA500;
            font-weight: 600;
            text-decoration: underline;
        }

        .closing-paragraph-section a:hover {
            text-decoration: underline;
        }
          .closing-paragraph-section .cta-button{
            background-color: #D4AF37;
        }

        /*--Pricing List Block--*/
        .pricing-section.price-list-block .container{
            max-width: var(--container-max);
        }
        .pricing-section.price-list-block .cost-section-content p{
            margin-bottom: 30px;
        }

        /*--Pricing Tiers--*/
            .pricing-tiers{
               display: grid;
               gap: 20px;
              justify-content: center;
              grid-template-columns: repeat(3, 1fr);
            }

     /*--Responsive Design--*/
      @media (max-width: 1024px) {
         .pricing-tiers{
             grid-template-columns: repeat(2, 1fr);
         }
      }

      @media (max-width: 768px) {
        .pricing-tiers{
             grid-template-columns: repeat(1, 1fr);
         }
      }


 /*--Landing-Card-Css--*/
   .page-template-page-default-landing .services-grid .service-card {box-shadow: none; transform: none; border: 0;}
   .page-template-page-default-landing .services-grid .service-card:hover:before {background: rgb(0 0 0 / 60%);}
   .page-template-page-default-landing .tab-wrapper{padding: 60px 0 !important;width: 100%; border-radius: 0; margin: 0; background: var(--primary-color) !important ;}
   .page-template-page-default-landing .header-nav{display: flex !important;}