/* CSS for both pages */
:root {
    --primary: #0a2540;
    --secondary: #0066cc;
    --accent: #00a8cc;
    --light: #f8f9fa;
    --dark: #212529;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #f0f4f8;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Navigation */
header {
    background-color: rgba(10, 37, 64, 0.95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.2);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-top {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: white;
    text-transform: uppercase;
    line-height: 1;
}

.logo-bottom {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 8px;
    color: var(--accent);
    text-transform: uppercase;
    margin-top: 5px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent);
    transition: var(--transition);
}

nav ul li a:hover:after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.hamburger-menu:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a5f 100%);
    color: white;
    padding: 160px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 span {
    color: var(--accent);
    display: block;
    font-size: 3rem;
    margin-top: 0.5rem;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0, 168, 204, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20px;
    height: 200%;
    background: rgba(255,255,255,0.3);
    transform: rotate(25deg);
    transition: all 0.6s ease;
}

.cta-button:hover:after {
    left: 120%;
}

.cta-button:hover {
    background-color: #008fb3;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 168, 204, 0.4);
}

/* Stats Section */
.stats {
    background-color: var(--light);
    padding: 30px 0;
    text-align: center;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    margin: 20px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    animation: fadeIn 0.8s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--primary);
}

/* Investment Section */
.investment {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 15px auto 30px;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 60px;
    color: #555;
}

.investment-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.investment-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid #eee;
    animation: fadeIn 0.8s ease;
}

.investment-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    padding: 25px;
    text-align: center;
}

.card-header h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.card-body {
    padding: 30px;
    position: relative;
}

.feature-list {
    list-style: none;
    margin: 25px 0;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.feature-list li:hover i {
    transform: scale(1.2);
}

.profit-badge {
    background-color: rgba(0, 168, 204, 0.1);
    color: var(--accent);
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 10px;
}

/* Plan Details Section */
.plan-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background: #f9fbfd;
    margin-top: 20px;
    border-radius: 10px;
    padding: 0 20px;
}

.plan-details-content {
    padding: 20px 0;
}

.plan-details h4 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.plan-details ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.plan-details ul li {
    margin-bottom: 10px;
}

.plan-button {
    display: block;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    text-align: center;
    margin-top: 20px;
    cursor: pointer;
    border: none;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.plan-button:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20px;
    height: 200%;
    background: rgba(255,255,255,0.3);
    transform: rotate(25deg);
    transition: all 0.6s ease;
}

.plan-button:hover:after {
    left: 120%;
}

.plan-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.toggle-details {
    color: var(--accent);
    text-align: center;
    display: block;
    margin-top: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
    width: 100%;
    padding: 10px;
}

.toggle-details:hover {
    color: var(--secondary);
}

.toggle-details i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.toggle-details.active i {
    transform: rotate(180deg);
}

/* Process Section */
.process {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f0f4f8, #e6eef8);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 60px auto 0;
    position: relative;
}

.process-steps:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: var(--accent);
    z-index: 1;
}

.step {
    width: 22%;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeIn 0.8s ease;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.step-icon:hover {
    transform: rotate(10deg) scale(1.1);
}

.step h4 {
    margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    padding: 100px 0;
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Privacy Policy Content */
.privacy-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a5f 100%);
    color: white;
    padding: 160px 0 60px;
    text-align: center;
}

.privacy-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: white;
}

.privacy-content {
    background: white;
    padding: 60px;
    margin: 60px auto;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.8rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f4f8;
}

.privacy-section h3 {
    color: var(--primary);
    margin: 25px 0 15px;
    font-size: 1.4rem;
}

.privacy-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.privacy-section ul {
    margin: 20px 0 20px 40px;
}

.privacy-section ul li {
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: white;
    padding: 70px 0 30px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent);
}

.footer-col p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.contact-info li {
    list-style: none;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info li i {
    margin-right: 15px;
    color: var(--accent);
    margin-top: 5px;
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.quick-links {
    list-style: none;
}

.quick-links li {
    margin-bottom: 15px;
}

.quick-links a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    opacity: 0.8;
}

.quick-links a:hover {
    opacity: 1;
    color: var(--accent);
    transform: translateX(5px);
}

.quick-links i {
    margin-right: 10px;
    font-size: 0.8rem;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero h1 span {
        font-size: 3.5rem;
    }
    
    .process-steps:before {
        display: none;
    }
    
    .step {
        width: 48%;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--primary);
        padding-top: 100px;
        animation: slideIn 0.3s forwards;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    nav ul li {
        margin: 0;
    }

    nav ul li a {
        font-size: 1.2rem;
        padding: 1rem 0;
    }

    .hamburger-menu {
        display: block;
    }

    body.menu-open nav {
        display: flex;
    }

    .hero {
        padding: 180px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero h1 span {
        font-size: 2.8rem;
    }
    
    .stat-item {
        min-width: 100%;
    }
    
    .step {
        width: 100%;
    }

    .privacy-hero {
        padding: 180px 0 40px;
    }
    
    .privacy-hero h1 {
        font-size: 2.2rem;
    }
    
    .privacy-content {
        padding: 30px;
    }

    @keyframes slideIn {
        from {
            transform: translateX(100%);
        }
        to {
            transform: translateX(0);
        }
    }
}


/* About Section */
.about {
    padding: 100px 0;
    background-color: white;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 15px;
    padding: 60px 30px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-placeholder i {
    font-size: 8rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.image-placeholder p {
    font-size: 1.5rem;
    font-weight: 500;
}

.expertise {
    margin: 40px 0;
}

.expertise-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background: #f8fbfe;
    padding: 20px;
    border-radius: 10px;
    transition: var(--transition);
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.expertise-icon i {
    color: white;
    font-size: 1.8rem;
}

.expertise-content h4 {
    margin-bottom: 10px;
    color: var(--secondary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
    }
    
    .image-placeholder {
        padding: 40px 20px;
    }
    
    .image-placeholder i {
        font-size: 5rem;
    }
}