
/* Global Styles */
:root {
    --primary-color: #032f3e;
    --secondary-color: #10ac84;
    --accent-color: white;
    --text-color: #333;
    --light-color: #f8f9fa;
    --dark-color: #1a1a1a;
    --success-color: #28a745;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f4f7f9;
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
}

h1, h2, h3 {
    margin-bottom: 15px;
    line-height: 1.2;
}

section {
    padding: 60px 0;
}

/* Header */
header {
    background-color: #f9f9f9;
    color:blue;
    padding:0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-container {
    flex-shrink: 0;
}

.logo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 10px rgba(255, 153, 0, 0.5);
}

.header-text {
    flex-grow: 1;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 1000;
    margin-bottom: 5px;
}

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

/* Hero Section */
.hero {
    background: blue;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 0;
}

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

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    background-color: whitesmoke;
    color: blue;
    font-size: 1.2rem;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.6);
}

/* About Section */
.about {
    background-color: white;
    padding: 0;
}

.usd-brl-proof-bg {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('usdbrlproof/photo_6307812537294506950_y.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 0;
}

.about h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.dual-language {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.english, .hinglish {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.english {
    background-color: rgba(240, 248, 255, 0.9);
}

.hinglish {
    background-color: rgba(255, 248, 240, 0.9);
}

.dual-language h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.dual-language p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
    background-color: var(--primary-color);
    color: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

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

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profit {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

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

.name {
    text-align: right;
    font-weight: 600;
}

/* Features */
.features {
    background-color: #f9f9f9;
}

.features h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.feature {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* FAQ */
.faq {
    background-color: white;
}

.faq h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.faq-item {
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 1.1rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(to right, var(--primary-color), #0a4d6d);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.urgency {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.countdown {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.countdown-item {
    margin: 0 10px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    min-width: 80px;
}

.number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--accent-color);
}

.label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    padding: 30px 0;
}

.disclaimer {
    font-size: 0.9rem;
    margin-top: 10px;
    color: #aaa;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .dual-language {
        grid-template-columns: 1fr;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 15px;
    }
    
    .number {
        font-size: 1.8rem;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }
} 
