/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.site-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a3b5d;
    text-decoration: none;
}

.site-title span {
    color: #4CAF50;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #1a3b5d;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #4CAF50;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #3e8e41;
}

.btn-secondary {
    background-color: transparent;
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.btn-secondary:hover {
    background-color: rgba(76, 175, 80, 0.1);
}

/* Hero section */
.hero {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a3b5d;
}

h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a3b5d;
}

h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #1a3b5d;
}

p {
    margin-bottom: 20px;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Early Bird Banner */
.early-bird-banner {
    background-color: #ff6b6b;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.early-bird-banner h2 {
    color: white;
    margin-bottom: 15px;
}

.early-bird-banner p {
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Free Sample Banner */
.free-sample-banner {
    background-color: #f0f7f0;
    padding: 40px 0;
    text-align: center;
}

.free-sample-banner h2 {
    margin-bottom: 15px;
}

.free-sample-banner p {
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Services section */
.services {
    padding: 80px 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 20px 10px;
}

.service-card p {
    padding: 0 20px 20px;
}

.service-card .btn {
    margin: 0 20px 20px;
}

/* Enhanced Services Section */
.enhanced-services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.service-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 24px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 5px;
    margin: 0 10px 10px 0;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.tab-btn.active {
    background-color: #4CAF50;
    color: white;
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-pane.active {
    display: block;
}

.tab-flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.tab-text {
    flex: 1;
}

.tab-image {
    flex: 1;
}

.tab-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tab-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.tab-text li {
    margin-bottom: 10px;
}

.video-duration-highlight {
    margin-top: 60px;
    text-align: center;
    padding: 30px;
    background-color: #f0f7f0;
    border-radius: 10px;
}

/* India-specific section */
.india-specific {
    padding: 80px 0;
    background-color: #fff;
}

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

.feature-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    max-height: 100%;
}

.india-cta {
    margin-top: 50px;
    text-align: center;
}

/* Features section */
.features {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

/* Client requirements section */
.client-requirements {
    padding: 80px 0;
    background-color: #fff;
}

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

.requirement-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.requirement-card ul {
    margin: 15px 0;
    padding-left: 20px;
}

.requirement-card li {
    margin-bottom: 8px;
}

.delivery-times {
    margin-top: 40px;
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.delivery-times h3 {
    margin-bottom: 20px;
    text-align: center;
}

.delivery-times-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.delivery-time-item {
    text-align: center;
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
}

.delivery-time-item h4 {
    margin-bottom: 10px;
    color: #1a3b5d;
}

.delivery-time-item p {
    color: #4CAF50;
    font-weight: 500;
}

/* Benefits section */
.benefits {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #4CAF50;
}

/* Comparison section */
.comparison {
    padding: 80px 0;
    background-color: #fff;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th, .comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* How it works section */
.how-it-works {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    counter-reset: step;
    margin-top: 40px;
}

.step {
    flex: 0 0 calc(20% - 20px);
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    counter-increment: step;
}

.step::before {
    content: counter(step);
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

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

.accordion {
    margin-top: 40px;
}

.faq-item {
    background-color: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin-bottom: 0;
}

.toggle-icon {
    font-size: 24px;
    color: #4CAF50;
}

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

.faq-answer.active {
    padding: 0 20px 20px;
    max-height: 1000px;
}

/* Contact section */
.contact {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-form-container {
    max-width: 800px;
    margin: 40px auto 0;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    background-color: #1a3b5d;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 0 0 100%;
    max-width: 300px;
    margin-bottom: 30px;
}

.footer-logo a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
}

.footer-links {
    flex: 1;
    margin-right: 40px;
}

.footer-links h3, .footer-contact h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #4CAF50;
}

.footer-contact {
    flex: 1;
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    color: #ccc;
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #4CAF50;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom a {
    color: #4CAF50;
    text-decoration: none;
}

/* Thank you page */
.thank-you {
    padding: 100px 0;
    text-align: center;
    background-color: #f8f9fa;
}

.thank-you h1 {
    margin-bottom: 30px;
}

.thank-you p {
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Cookie consent */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3b5d;
    color: #fff;
    padding: 15px;
    z-index: 9999;
    text-align: center;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.cookie-content p {
    margin: 0 20px 0 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
}

.cookie-buttons button#cookie-accept {
    background-color: #4CAF50;
    color: white;
}

.cookie-buttons button#cookie-decline {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

/* ROI Calculator */
.roi-calculator-section {
    padding: 80px 0;
    background-color: #fff;
}

.roi-calculator {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 40px;
}

.calculator-inputs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.calculator-input {
    flex: 1;
    min-width: 200px;
}

.calculator-input label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.calculator-input input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.calculator-results {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
}

.calculator-result {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.calculator-result:last-child {
    border-bottom: none;
}

.result-label {
    font-weight: 500;
}

.result-value {
    font-weight: 700;
    color: #4CAF50;
}

/* Privacy policy page */
.privacy-policy {
    padding: 60px 0;
    background-color: #fff;
}

.policy-content {
    margin-top: 40px;
}

.policy-content h2 {
    font-size: 24px;
    margin-top: 40px;
}

.policy-content h3 {
    font-size: 20px;
    margin-top: 30px;
}

.policy-content ul, .policy-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .tab-flex {
        flex-direction: column;
    }
    
    .tab-image {
        order: -1;
        margin-bottom: 20px;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step {
        margin-bottom: 40px;
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 15px;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .services, .enhanced-services, .india-specific, .features, .client-requirements, .benefits, .how-it-works, .faq, .contact {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .contact-form-container {
        padding: 20px;
    }
}
