/* 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-color: #fff;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h2 {
    color: #2c5530;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo-tagline {
    font-size: 0.8rem;
    color: #f39c12;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2c5530;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #f39c12;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 160px 20px 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    text-align: center;
    margin-left: 2rem;
}

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #2c5530;
    color: white;
}

.btn-primary:hover {
    background: #1e3a21;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 85, 48, 0.3);
}

.btn-secondary {
    background: #f39c12;
    color: white;
}

.btn-secondary:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #fff;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.service-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-link {
    color: #f39c12;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #e67e22;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: #2c5530;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.choose-item {
    text-align: center;
    padding: 2rem;
}

.choose-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.choose-item h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.choose-item p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    text-align: center;
    padding: 150px 0 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Service Hero */
.service-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-hero-content h1 {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 1.5rem;
}

.service-hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

/* Service Details */
.service-details {
    padding: 80px 0;
}

.service-content h2 {
    color: #2c5530;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.service-content h3 {
    color: #2c5530;
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
}

.service-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Service Benefits */
.service-benefits,
.benefits-grid {
    margin: 2rem 0;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.benefit-item i {
    color: #2c5530;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.benefit-item h4 {
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Services Detailed */
.services-detailed {
    padding: 80px 0;
}

.service-card-detailed {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

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

.service-card-detailed .service-image {
    height: 250px;
}

.service-card-detailed .service-content {
    padding: 2rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5530;
    font-weight: bold;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.process-step h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Director Profile */
.director-profile {
    padding: 80px 0;
    background: #f8f9fa;
}

.director-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.director-image {
    text-align: center;
}

.director-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.director-info h2 {
    color: #2c5530;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.director-info h3 {
    color: #f39c12;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.director-title {
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.director-info p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* RBI Authorization */
.rbi-authorization {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.auth-content {
    max-width: 800px;
    margin: 0 auto;
}

.auth-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 3rem;
}

.auth-content h2 {
    color: #2c5530;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.auth-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.auth-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    border-radius: 25px;
}

.benefit-item i {
    color: #2c5530;
}

/* Values Section */
.values {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.value-card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Exchange Rates */
.exchange-rates {
    padding: 80px 0;
}

.rates-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.rates-disclaimer p {
    color: #856404;
    margin: 0;
}

.rates-table-container {
    overflow-x: auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
}

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

.rates-table th {
    background: #2c5530;
    color: white;
    font-weight: 600;
}

.rates-table tr:hover {
    background: #f8f9fa;
}

.currency-flag {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.currency-code {
    font-weight: 600;
    color: #2c5530;
}

.rates-note {
    margin-top: 2rem;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.rates-note h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.rates-note ul {
    color: #666;
    padding-left: 1.5rem;
}

.rates-note li {
    margin-bottom: 0.5rem;
}

/* Currency Calculator */
.currency-calculator {
    padding: 80px 0;
    background: #f8f9fa;
}

.calculator-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.calculator-container h2 {
    color: #2c5530;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.calculator-container p {
    color: #666;
    margin-bottom: 2rem;
}

.calculator {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.calc-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.calc-input,
.calc-select {
    text-align: left;
}

.calc-input label,
.calc-select label {
    display: block;
    color: #2c5530;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.calc-input input,
.calc-select select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.calc-input input:focus,
.calc-select select:focus {
    outline: none;
    border-color: #2c5530;
}

.calc-result {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.result-display {
    font-size: 2rem;
    font-weight: bold;
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.result-note {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    color: #2c5530;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-text a {
    color: #2c5530;
    text-decoration: none;
}

.contact-text a:hover {
    color: #f39c12;
}

.quick-actions h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: #2c5530;
    font-weight: 600;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #2c5530;
    color: white;
    border-color: #2c5530;
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.contact-form h3 {
    color: #2c5530;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #2c5530;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5530;
}

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

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

.map-section h2 {
    color: #2c5530;
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.map-info {
    text-align: center;
    color: #666;
}

.map-info i {
    color: #2c5530;
    margin-right: 0.5rem;
}

/* Service CTA */
.service-cta,
.rates-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    text-align: center;
}

.service-cta .cta-content h2,
.rates-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-cta .cta-content p,
.rates-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #f39c12;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f39c12;
}

.footer-section i {
    color: #f39c12;
    margin-right: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.whatsapp-btn,
.call-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
}

.call-btn {
    background: #007bff;
    color: white;
}

.whatsapp-btn:hover,
.call-btn:hover {
    transform: scale(1.1);
}

.mobile-only {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 161px 20px 60px;
    }

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

    .hero-image {
        margin-left: 0;
        margin-top: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content,
    .service-hero-content,
    .contact-content,
    .director-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .director-content {
        text-align: center;
    }

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

    .calc-row {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .service-hero-content h1 {
        font-size: 2.5rem;
    }

    .cta-buttons,
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .mobile-only {
        display: flex;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn,
    .call-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .service-hero-content h1 {
        font-size: 2rem;
    }

    .features-grid,
    .services-grid,
    .choose-grid,
    .values-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .auth-benefits {
        flex-direction: column;
        align-items: center;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-btn {
        justify-content: center;
    }
}

/* Additional Service-Specific Styles */
.currencies-available,
.card-types,
.how-it-works,
.required-documents,
.booking-services,
.why-book-with-us,
.popular-destinations,
.booking-process,
.package-types,
.package-inclusions,
.popular-packages,
.why-choose-packages,
.service-features,
.transfer-options,
.transfer-process,
.popular-corridors,
.student-services,
.rbi-guidelines,
.why-choose-us {
    margin: 3rem 0;
}

.currencies-grid,
.cards-grid,
.steps-grid,
.documents-categories,
.services-grid,
.options-grid,
.destinations-grid,
.packages-grid,
.inclusions-grid,
.popular-grid,
.features-grid,
.corridors-grid,
.guidelines-points {
    display: grid;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.currencies-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.currency-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-weight: 500;
}

.currency-flag {
    font-size: 1.5rem;
}

.currencies-note {
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

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

.card-type {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
}

.card-type:hover {
    border-color: #2c5530;
}

.card-type h4 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.card-type ul {
    list-style: none;
    padding: 0;
}

.card-type li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.card-type li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #f39c12;
    font-weight: bold;
}

.steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.step {
    text-align: center;
    padding: 1.5rem;
}

.documents-categories {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.document-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.document-category h4 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.documents-list {
    list-style: none;
    padding: 0;
}

.documents-list li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.documents-list i {
    color: #2c5530;
}

.booking-service,
.transfer-option {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.booking-service h4,
.transfer-option h4 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.booking-service ul,
.transfer-option ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.booking-service li,
.transfer-option li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.booking-service li::before,
.transfer-option li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5530;
    font-weight: bold;
}

.destinations-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.destination {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.destination h4 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.destination ul {
    list-style: none;
    padding: 0;
}

.destination li {
    padding: 0.3rem 0;
    color: #666;
}

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

.package-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.package-category:hover {
    transform: translateY(-5px);
}

.package-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.package-category h4 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.package-category ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.package-category li {
    padding: 0.3rem 0;
    color: #666;
}

.inclusions-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.inclusion-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    text-align: center;
}

.inclusion-item i {
    color: #2c5530;
    font-size: 2rem;
}

.inclusion-item span {
    color: #666;
    font-weight: 500;
}

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

.popular-package {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.popular-package:hover {
    transform: translateY(-5px);
}

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

.package-info {
    padding: 1.5rem;
}

.package-info h4 {
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.package-info p {
    color: #666;
    margin-bottom: 1rem;
}

.package-price {
    color: #f39c12;
    font-weight: bold;
    font-size: 1.2rem;
}

.corridors-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.corridor {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #2c5530;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.corridor:hover {
    background: #2c5530;
    color: white;
    border-color: #2c5530;
}

.guidelines-content {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 1.5rem 0;
}

.guidelines-points {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.guideline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.guideline-item i {
    color: #2c5530;
    font-size: 1.5rem;
}

.guideline-item span {
    color: #666;
    font-weight: 500;
}

.destination-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.destination-card h4 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.destination-card p {
    color: #666;
    margin: 0;
}

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

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #2c5530;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .floating-buttons,
    .nav-toggle {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

.marquee-container {
    background-color: #004080;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    color: white;
    font-weight: bold;
    font-size: 15px;
}

.marquee {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: marquee-scroll 15s linear infinite;
}

.marquee span {
    display: inline-block;
    padding-right: 100px; /* adjust for spacing between repeats */
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline; /* Optional: shows underline on hover */
}
