* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Universal section width fix */
section {
    width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-circle {
    background: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #ff6b35;
    font-size: 0.8rem;
}

.logo-text {
    font-size: 0.9rem;
    line-height: 1;
}

.logo-degrees {
    font-size: 0.7rem;
    line-height: 1;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f1e8, #e8dcc0);
    padding: 60px 0 25px;
    min-height: 40vh;
}

.hero-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.hero-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: #ff6b35;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    letter-spacing: -1px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    padding: 0 2rem;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    font-family: 'Jost', sans-serif;
    color: #666;
    margin-bottom: 2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-logo {
    width: 295px;
}

.investment-visual {
    position: relative;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.coins-container {
    position: relative;
    width: 200px;
    height: 200px;
}

.coin {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #f1c40f;
    border-radius: 50%;
    border: 3px solid #f39c12;
    animation: float 3s ease-in-out infinite;
}

.coin-1 {
    top: 20px;
    left: 50px;
    animation-delay: 0s;
}

.coin-2 {
    top: 80px;
    right: 30px;
    animation-delay: 1s;
}

.coin-3 {
    bottom: 40px;
    left: 80px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Video Section */
.video-section {
    background: linear-gradient(135deg, #FBBA07, #FFBD07);
    height: 690px;
    position: relative;
    display: flex;
    align-items: center;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.video-content {
    text-align: center;
    color: white;
}

.video-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-top: 2rem;
    color: #ff6b35;
}

.video-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-player {
    position: relative;
    max-width: 500px;
    height: 560px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: #000;
}

.video-player video {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.play-button svg {
    width: 70px;
    height: 70px;
}

.play-button {
    transition: all 0.3s ease;
    opacity: 0.9;
}

.play-button:hover {
    transform: scale(1.1);
    opacity: 1;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Celebrity Sections */
.celebrities {
    padding: 4rem 0;
}

.celebrity-card {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
    min-height: 400px;
}

.celebrity-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.celebrity-info p {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.image-placeholder {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Alia Bhatt Section */
.alia {
    background: linear-gradient(135deg, #fa709a, #fee140);
     color: white;
}

.alia .celebrity-info h2,
.alia .celebrity-info p {
    color: white;
}

.alia-img {
    background: url('images/alia_bhatt.jpg') center/cover, linear-gradient(45deg, #ff9a9e, #fecfef);
    position: relative;
}

/* MS Dhoni Section */
.dhoni {
    background: linear-gradient(135deg, #fee140, #fa709a);
    color: white;
}

.dhoni .celebrity-info h2,
.dhoni .celebrity-info p {
    color: white;
}

.dhoni-img {
    background: url('images/ms_dhoni.jpg') center/cover, linear-gradient(45deg, #ffd700, #ffed4e);
    position: relative;
}

.dhoni-brand {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    color: #ffd700;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.mahendra-singh {
    display: block;
    font-size: 0.8rem;
    font-weight: 300;
}

.dhoni-name {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Deepika Padukone Section */
.deepika {
    background: linear-gradient(135deg, #fa709a, #fee140);
    color: white;
}

.deepika .celebrity-info h2,
.deepika .celebrity-info p {
    color: white;
}

.deepika-img {
    background: url('images/deepika_padukone.jpg') center/cover, linear-gradient(45deg, #ff6b9d, #c44569);
}

/* Sachin Tendulkar Section */
.sachin {
    background: linear-gradient(135deg, #fee140, #fa709a);
    color: white;
}

.sachin .celebrity-info h2,
.sachin .celebrity-info p {
    color: white;
}

.sachin-img {
    background: url('images/sachin_tendulkar.jpg') center/cover, linear-gradient(45deg, #4facfe, #00f2fe);
    position: relative;
}

/* Suniel Shetty Section */
.suniel {
    background: linear-gradient(135deg, #fa709a, #fee140);
    color: white;
}

.suniel .celebrity-info h2,
.suniel .celebrity-info p {
    color: white;
}

.suniel-img {
    background: url('images/suniel_shetty.jpg') center/cover, linear-gradient(45deg, #43e97b, #38f9d7);
    position: relative;
}


/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f5f1e8, #e8dcc0);
    padding: 1rem 0;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.3;
}

.cta-icon {
    display: block;
    margin: 0 auto 1.5rem auto;
    max-width: 450px;
    height: auto;
    object-fit: contain;
}

/* Unicorn Section */
.unicorn-section {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.unicorn-content h2 {
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.3;
}

/* IPO Showcase Section */
.ipo-showcase-section {
    background: #ffffff;
    padding: 3rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ipo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.ipo-text {
    margin-bottom: 2rem;
}

.ipo-text h2 {
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.4;
    margin: 0 auto;
}

.ipo-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ipo-display-image {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ipo-display-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 0 2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

/* Captcha Styles */
.captcha-group {
    margin-bottom: 2rem;
}

.captcha-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: #555;
    font-weight: 500;
    font-size: 0.95rem;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    transition: border-color 0.3s ease;
}

.captcha-container:focus-within {
    border-color: #ff6b35;
}

.captcha-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    min-width: 80px;
}

.captcha-container input {
    flex: 1;
    border: none;
    background: white;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
    max-width: 135px;
}

.captcha-container input:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

.refresh-captcha {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 40px;
}

.refresh-captcha:hover {
    background: #e85a2b;
    transform: rotate(180deg);
}

.captcha-error {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: #ffeaea;
    border-radius: 5px;
    border-left: 4px solid #e74c3c;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* Footer Section */
.footer-section {
    background: #FBBA07;
    padding: 3rem 0 2rem 0;
    color: white;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    text-align: center;
    background-color: #f7931e;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    max-width: 900px;
}

.footer-text {
    font-size: 1.1rem;
    font-family: 'Jost', sans-serif;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: white;
}

.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-social-link span {
    font-size: 1.2rem;
}

.footer-motto {
    font-size: 1.3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.4;
}

/* Investment Strategy Section */
.investment-strategy {
    padding: 3rem 0 0 0;
    text-align: center;
}

.strategy-content {
    max-width: 945px;
    margin: 0 auto;
    padding: 0 2rem;
}

.investment-strategy h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .celebrity-card,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-social-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .footer-social-link {
        width: auto;
        min-width: 150px;
    }
    
    .hero-content {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    /* IPO Section Mobile Styles */
    .ipo-showcase-section {
        padding: 2rem 0;
    }
    
    .ipo-container {
        padding: 0 1rem;
    }
    
    .ipo-display-image {
        border-radius: 10px;
    }
    
    .ipo-text h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .video-content h2 {
        font-size: 1.5rem;
        margin-top: 0.5rem;
    }
    
    .video-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .video-section {
        height: auto !important;
        padding: 4rem 0 !important;
        display: block !important;
    }
    
    .video-container {
        padding: 0 1rem;
    }
    
    .video-player {
        max-width: 100% !important;
        width: 100% !important;
        height: 500px !important;
        margin: 0 auto;
    }
    
    .video-player video {
        height: 500px !important;
        width: 100% !important;
    }
    
    .play-button svg {
        width: 50px;
        height: 50px;
    }
    
    .hero-main-title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .celebrity-info h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-icon {
        max-width: 120px;
        margin-bottom: 1rem;
    }
    
    .header {
        position: relative;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .celebrity-info h2 {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.3rem;
    }
    
    .cta-icon {
        max-width: 100px;
        margin-bottom: 1rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    /* IPO Section for small screens */
    .ipo-showcase-section {
        padding: 1.5rem 0;
    }
    
    .ipo-container {
        padding: 0 0.5rem;
    }
    
    .ipo-display-image {
        border-radius: 8px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .ipo-text h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    /* Video section for very small screens */
    .video-content h2 {
        font-size: 1.2rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.3;
    }
    
    .video-content p {
        font-size: 0.8rem !important;
        margin-bottom: 1rem !important;
        padding: 0 0.5rem !important;
        line-height: 1.4;
    }
    
    .video-section {
        height: auto !important;
        padding: 3rem 0 !important;
    }
    
    .video-container {
        padding: 0 0.5rem !important;
    }
    
    .video-player {
        max-width: 100% !important;
        width: calc(100% - 1rem) !important;
        height: 400px !important;
        border-radius: 10px !important;
    }
    
    .video-player video {
        height: 400px !important;
        border-radius: 10px !important;
    }
    
    .play-button svg {
        width: 40px !important;
        height: 40px !important;
    }

    .main-logo {
        width: 180px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}
