/*
Theme Name: SS Enterprises B2B
Author: SS Enterprises B2B
Author URI: https://ssenterprisesb2b.com/
Description: Empowering Business Connections
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ss-enterprises-b2b
Template: astra
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Global Styles
	1.1 Variables
	1.2 Base Styles
	1.3 Typography
	1.4 Buttons
	1.5 Forms
2.0 Header
3.0 Homepage Sections
	3.1 Hero Section
	3.2 Why Choose Us Section
	3.3 Plans Section
	3.4 What We Offer Section
	3.5 DIA Section
	3.6 SS Advantage Section
	3.7 Testimonials Section
	3.8 FAQ Section
	3.9 Final CTA Section
	3.10 Services Section
4.0 Footer
5.0 Responsive Design
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Global Styles
--------------------------------------------------------------*/

/* 1.1 Variables */
:root {
    --primary-color: #0d47a1; /* Deep Blue */
    --secondary-color: #1565c0; /* Lighter Blue */
    --accent-color: #ffc107; /* Amber */
    --text-color: #212121; /* Almost Black */
    --light-text-color: #ffffff;
    --background-color: #ffffff;
    --light-gray-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Roboto', sans-serif;
}

/* 1.2 Base Styles */
body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

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

section {
    padding: 80px 0;
}

/* 1.3 Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--primary-color);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 60px; }
h3 { font-size: 1.75rem; }

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* 1.4 Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-color);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background-color: #ffb300; /* Darker Amber */
    color: var(--text-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    transform: translateY(-2px);
}

/*--------------------------------------------------------------
3.0 Homepage Sections
--------------------------------------------------------------*/

/* 3.1 Hero Section */
.hero-section {
    background: linear-gradient(rgba(13, 71, 161, 0.8), rgba(13, 71, 161, 0.8)), url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text-color);
    padding: 120px 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--light-text-color);
}

.hero-text .hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons .btn {
    margin-right: 15px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* 3.2 Why Choose Us Section */
.why-choose-us-section {
    background-color: var(--light-gray-bg);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.comparison-card {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    transition: all 0.3s ease;
}

.comparison-card.enterprise {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(13, 71, 161, 0.1);
    transform: scale(1.05);
}

.comparison-header {
    text-align: center;
    margin-bottom: 30px;
}

.comparison-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.comparison-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-features li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 15px;
}

.comparison-features .icon-good,
.comparison-features .icon-bad {
    margin-right: 10px;
    font-size: 1.2rem;
}

.comparison-features .icon-good {
    color: #4caf50; /* Green */
}

.comparison-features .icon-bad {
    color: #f44336; /* Red */
}

/* 3.3 Plans Section */
.plans-section {
    background-color: var(--background-color);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.plan-card {
    background-color: var(--light-gray-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.plan-card.popular {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(13, 71, 161, 0.2);
}

.plan-card.popular:hover {
    transform: scale(1.1) translateY(-5px);
}

.plan-card.popular .plan-header h3,
.plan-card.popular .plan-header p {
    color: var(--light-text-color);
}

.plan-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.plan-header p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 30px;
}

.plan-card.popular .btn-primary {
    background-color: var(--accent-color);
    color: var(--text-color);
}

.plan-card.popular .btn-primary:hover {
    background-color: #ffb300;
}

/* 3.7 Testimonials Section */
.testimonials-section {
    background-color: var(--light-gray-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--background-color);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 20px;
}

.author-name {
    font-weight: 700;
    margin: 0;
}

.author-company {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

/* 3.4 What We Offer Section */
.what-we-offer-section {
    background-color: var(--light-gray-bg);
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* 3.6 SS Advantage Section */
.ishan-advantage-section {
    background-color: var(--background-color);
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* 3.8 FAQ Section */
.faq-section {
    background-color: var(--background-color);
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* 3.9 Final CTA Section */
.final-cta-section {
    background: var(--primary-color);
    color: var(--light-text-color);
    text-align: center;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-color);
}

.faq-icon {
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(-135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 0 20px;
    margin: 0;
    font-size: 1rem;
    color: #495057;
}

/* 1.5 Forms */
.lead-form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 0;
}

.lead-form {
    background-color: var(--background-color);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(13, 71, 161, 0.2);
}

.lead-form-submit {
    justify-self: start;
}

.lead-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 6px;
    border: 1px solid #e1e1e1;
}

/* Form Sections */
.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section-title {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
    display: inline-block;
}

.form-section-note {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 20px;
    font-style: italic;
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 4px;
    border-left: 4px solid #3498db;
}

.lead-form .form-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 20px;
}

.lead-form .form-group {
    flex: 1;
    min-width: 250px;
}

.lead-form .form-group.half-width {
    flex: 0 0 calc(50% - 10px);
}

.lead-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"],
.lead-form input[type="url"],
.lead-form textarea,
.lead-form select {
    width: 100%;
    /*   */
    border: 2px solid #e1e1e1;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background-color: #ffffff;
}

.lead-form input[type="text"]:focus,
.lead-form input[type="email"]:focus,
.lead-form input[type="tel"]:focus,
.lead-form input[type="url"]:focus,
.lead-form textarea:focus,
.lead-form select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    transform: translateY(-1px);
}

.lead-form textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.lead-form select {
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%23667eea' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.lead-form input[type="checkbox"] {
    margin-right: 12px;
    transform: scale(1.3);
    cursor: pointer;
}

.lead-form .form-group label[for="lead_consent"],
.lead-form .form-group label[for="lead_marketing_consent"] {
    display: inline;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.6;
    cursor: pointer;
    color: #34495e;
}

.lead-form-submit {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 250px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.lead-form-submit:hover {
    background: linear-gradient(135deg, #2980b9, #1f5f8b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.lead-form-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
}

/* Success and Error Messages */
.lead-form-success {
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: 500;
}

.lead-form-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px 20px;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .lead-form-container {
        margin: 20px 15px;
        padding: 20px;
    }

    .lead-form {
        padding: 25px;
    }

    .form-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .form-section-title {
        font-size: 18px;
    }

    .lead-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .lead-form .form-group.half-width {
        flex: 1;
        margin-bottom: 20px;
    }

    .lead-form-submit {
        width: 100%;
        max-width: none;
        padding: 18px 40px;
    }
}

@media (max-width: 480px) {
    .lead-form-container {
        margin: 15px 10px;
        padding: 15px;
    }

    .lead-form {
        padding: 20px;
    }

    .form-section-title {
        font-size: 16px;
    }

    .form-section-note {
        font-size: 13px;
        padding: 8px 12px;
    }

    .lead-form .form-group {
        min-width: auto;
    }

    .lead-form input[type="text"],
    .lead-form input[type="email"],
    .lead-form input[type="tel"],
    .lead-form input[type="url"],
    .lead-form textarea,
    .lead-form select {
        padding: 14px 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* JavaScript Enhanced Features */
.character-counter {
    text-align: right;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.field-error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
}

.lead-form input.error,
.lead-form textarea.error,
.lead-form select.error {
    border-color: #dc3545 !important;
}

.lead-form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Loading Animation */
.lead-form-submit.loading::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.site-below-footer-wrap[data-section="section-below-footer-builder"] {
    padding: 0;
    background: var(--ast-global-color-2);
}
.ast-footer-copyright {
  color: var(--ast-global-color-4);
}

.ast-footer-copyright {
  text-align: right;
  font-size: 14px;
}


/* Homepage Template Styles */

/* Remove default spacing for homepage */
.homepage-template {
    margin: 0;
    padding: 0;
    width: 100%;
}

.homepage-template .entry-content {
    margin: 0;
    padding: 0;
}

#primary.content-area {
    margin: 0;
    padding: 0;
    width: 100%;
}

.site-main.homepage-template {
    margin: 0;
    padding: 0;
    width: 100%;
}

.homepage-template .hero-section {
    margin-top: 0;
}

/*.new-hero {
   // background: url('assets/images/banner.jpg') no-repeat center center;
    //background-size: cover;
}*/

.hero-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-form h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.hero-form .form-group {
    margin-bottom: 15px;
}

.hero-form input,
.hero-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.hero-form textarea {
    resize: vertical;
    min-height: 100px;
}

.hero-form .btn-secondary {
    width: 100%;
    background: #007bff;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.hero-form .btn-secondary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    margin-top: 30px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: white;
    color: rgb(6,0,151);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: white;
    color: rgb(130,4,255);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* Services Section */
.services-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #f8f9fa;
    padding: 80px 0;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 80px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Client Experiences Section */
.client-experiences-section {
    padding: 80px 0;
    background: #fff;
}

.client-experiences-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.client-experiences-grid {
    margin-top: 40px;
}

.client-experience-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.client-info {
    margin-top: 20px;
    text-align: right;
}

.client-name {
    font-weight: 600;
    color: #2c3e50;
}

.client-company {
    color: #6c757d;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-accordion {
    margin-top: 40px;
}

.faq-item {
    background: #fff;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.faq-question {
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 20px 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: #007bff;
    color: #fff;
    text-align: center;
}

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.final-cta-section .section-title {
    color: #fff;
}

.final-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.final-cta-section .btn-primary {
    background: white;
    color: #007bff;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.final-cta-section .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.service-description {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-us-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 120px 0;
    background: white;
}

.why-choose-us-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    position: relative;
}

.why-choose-us-section .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 80px;
}

.why-choose-us-section .feature-card {
    border: 1px solid #e9ecef;
    padding: 40px;
    border-radius: 12px;
    background: #f8f9fa;
}

.why-choose-us-section .feature-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.why-choose-us-section .feature-description {
    color: #6c757d;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

/* Plans Section */
.plans-section {
    padding: 80px 0;
    background: #fff;
}

.plans-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-top: 40px;
}

.plan-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.plan-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* What We Offer Section */
.what-we-offer-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.what-we-offer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.what-we-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-top: 40px;
}

.what-we-offer-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.what-we-offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.what-we-offer-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

/* DIA Section */
.dia-section {
    padding: 80px 0;
    background: #fff;
}

.dia-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.dia-text .section-title {
    text-align: left;
}

.dia-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Ishan Advantage Section */
.ishan-advantage-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.ishan-advantage-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ishan-advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 80px;
    margin-top: 40px;
}

.ishan-advantage-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.ishan-advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.ishan-advantage-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(135deg, rgb(130,4,255), rgb(193,15,255));
    border-radius: 2.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    margin-top: 80px;
}

.feature-card {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.feature-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.feature-description {
    color: #6c757d;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

/* Call to Action Section */
.cta-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: linear-gradient(35deg, rgb(6,0,151) 0%, rgb(130,4,255) 64%, rgb(193,15,255) 98%);
    padding: 100px 0;
    text-align: center;
    color: white;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
    color: white;
}

.cta-buttons {
    margin-top: 50px;
}

/* Additional Content */
.additional-content {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 60px 0;
    background: #f8f9fa;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 600px;
        padding: 40px 0;
    }

    .hero-container {
        padding: 40px 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .services-section,
.why-choose-us-section,
.plans-section,
.what-we-offer-section,
.dia-section,
.ishan-advantage-section,
.client-experiences-section,
.faq-section,
.final-cta-section {
    padding: 100px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .feature-title {
        font-size: 1.5rem;
    }

    .service-title {
        font-size: 1.25rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .service-card,
    .feature-card {
        padding: 25px 15px;
    }
}

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

.service-card,
.feature-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.btn:focus,
.btn:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Override Astra theme constraints for full-width layout */
.homepage-template .ast-container {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.homepage-template .site-content {
    padding: 0;
    margin: 0;
}

body.page .homepage-template {
    margin: 0;
    padding: 0;
}

.homepage-template .ast-single-post {
    margin: 0;
    padding: 0;
}

.homepage-template .entry-header {
    display: none;
}
