* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #ffffff;
    color: #103254;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
    pointer-events: none;
    visibility: visible;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounceArrow 1.5s infinite;
}

@keyframes bounce {
    0%, 100% {
        opacity: 0.7;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* Top Banner - Full Height with Blue Gradient */
.top-banner {
    background: linear-gradient(135deg, #01A7DF 0%, #0188b8 30%, #005A8B 70%, #003D5C 100%);
    min-height: 100vh;
    padding: 60px 20px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.top-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.logo-container {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.logo-image {
    max-width: 280px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Trust Badge */
.trust-badge {
    position: absolute;
    top: 100px;
    right: 40px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-text {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Urgency Badge */
.urgency-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 120px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-text {
    padding-right: 20px;
}

.banner-title {
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #ffffff;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.banner-subtitle-main {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.banner-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 30px;
}

.banner-subtitle strong {
    color: #ffffff;
    font-weight: 600;
}

/* Social Proof Banner */
.social-proof-banner {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.proof-item {
    text-align: center;
}

.proof-number {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.proof-label {
    font-size: 0.75rem;
    opacity: 0.9;
    color: #ffffff;
}

.calculator-banner {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    padding: 40px;
    border: 2px solid rgba(1, 167, 223, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* .calculator-banner:hover {
    transform: translateY(-5px);
    border-color: #01A7DF;
} */

.calculator-header {
    text-align: center;
    margin-bottom: 25px;
}

.calculator-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #103254;
    margin-bottom: 8px;
}

.calculator-header p {
    font-size: 0.95rem;
    color: #6b7280;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Modern Input Styles */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-group label {
    font-weight: 600;
    color: #103254;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #103254;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.form-group input::placeholder {
    color: #9ca3af;
    transition: opacity 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #01A7DF;
    background: #ffffff;
    transform: translateY(-2px);
}

.form-group input:focus::placeholder {
    opacity: 0.5;
}

.form-group input:hover:not(:focus) {
    border-color: #d1d5db;
    transform: translateY(-1px);
}

.form-group input:valid {
    border-color: #10b981;
}

.calculate-btn {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #01A7DF 0%, #0188b8 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    margin-top: 8px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calculate-btn::before {
    /* content: ''; */
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.calculate-btn:hover::before {
    width: 300px;
    height: 300px;
}

.calculate-btn:hover {
    /* background: linear-gradient(135deg, #0188b8 0%, #01A7DF 100%); */
    transform: translateY(-3px);
    text-decoration: none!important;
    color:#fff!important;
    /* border: 2px solid #01A7DF; */
}

.calculate-btn:active {
    transform: translateY(0);
}

.calculate-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Results in Banner */
.results {
    margin-top: 25px;
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-card {
    background: linear-gradient(135deg, #01A7DF 0%, #0188b8 100%);
    color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: scaleIn 0.5s ease-out;
    text-align: center;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.result-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.result-text {
    font-size: 1.1rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.result-details {
    font-size: 0.95rem;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 24px;
}

.highlight {
    font-weight: 600;
    font-size: 1.3em;
    background: rgba(255, 255, 255, 0.25);
    padding: 4px 12px;
    border-radius: 4px;
}

.result-cta {
    display: inline-block;
    background: #ffffff;
    color: #01A7DF;
    padding: 14px 28px;
    border-radius: 6px;
    border: 2px solid #01A7DF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.result-cta:hover {
    transform: translateY(-2px);
    border: 2px solid rgba(1, 167, 223, 0.3);
}

/* Value Proposition Section */
.value-prop-section {
    padding: 100px 20px;
    background: #ffffff;
}

.value-prop-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.value-prop-heading {
    font-size: 2.8rem;
    font-weight: 600;
    color: #103254;
    margin-bottom: 60px;
    line-height: 1.2;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.value-item {
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: #01A7DF;
    transform: translateY(-5px);
    background: #ffffff;
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #103254;
    margin-bottom: 16px;
}

.value-item p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
}

.value-cta {
    margin-top: 50px;
}

.primary-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #01A7DF 0%, #0188b8 100%);
    color: #ffffff;
    padding: 20px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #01A7DF;
}

.primary-cta-button:hover {
    transform: translateY(-3px);
    /* border: 2px solid #0188b8; */
    color: #fff!important;
    text-decoration: none!important;
    background: linear-gradient(135deg, #0188b8 0%, #01A7DF 100%);
}

.cta-note {
    margin-top: 16px;
    font-size: 0.9rem;
    color: #6b7280;
}

/* Platform Cards Section */
.platform-section {
    padding: 100px 20px;
    background: #f8f9fa;
    position: relative;
}

.platform-container {
    max-width: 1200px;
    margin: 0 auto;
}

.platform-heading {
    font-size: 2.8rem;
    font-weight: 600;
    color: #103254;
    text-align: center;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.platform-heading.animate {
    opacity: 1;
    transform: translateY(0);
}

.platform-subheading {
    font-size: 1.2rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.platform-subheading.animate {
    opacity: 1;
    transform: translateY(0);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 50px;
}

.platform-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
}

.platform-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.platform-card:hover {
    border-color: #01A7DF;
    transform: translateY(-8px) scale(1.02);
    border: 2px solid #01A7DF;
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    display: block;
    transition: transform 0.4s ease;
}

.platform-card:hover .card-icon {
    transform: scale(1.2) rotate(5deg);
}

.platform-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #103254;
    margin-bottom: 16px;
}

.platform-card p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 20px;
    background: #ffffff;
    position: relative;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-heading {
    font-size: 2.8rem;
    font-weight: 600;
    color: #103254;
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.benefits-heading.animate {
    opacity: 1;
    transform: translateY(0);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
}

.benefit-item {
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px) scale(0.95);
}

.benefit-item.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.benefit-item:hover {
    border-color: #01A7DF;
    transform: translateY(-8px) scale(1.02);
    background: #ffffff;
    border: 2px solid #01A7DF;
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    display: block;
    transition: transform 0.4s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.2) rotate(10deg);
}

.benefit-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #103254;
    margin-bottom: 16px;
}

.benefit-item p {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #01A7DF 0%, #0188b8 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stats-heading {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    text-align: center;
}

.stat-item {
    color: #ffffff;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
    background: #fff;
    display: flex;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    min-height: 170px;
    padding: 15px;
    width: 100%;
}
.stat-item > img{
    width: 100%;
    max-width: 200px;
}

.stat-item.animate {
    opacity: 1;
    transform: scale(1);
}

.stat-number {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 20px;
    background: #f8f9fa;
    position: relative;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-heading {
    font-size: 2.8rem;
    font-weight: 600;
    color: #103254;
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.testimonials-heading.animate {
    opacity: 1;
    transform: translateY(0);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
}

.testimonial-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    border-color: #01A7DF;
    transform: translateY(-8px);
}

.testimonial-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #01A7DF;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-placeholder {
    font-size: 3rem;
    color: #01A7DF;
}

.testimonial-stars {
    color: #01A7DF;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #103254;
    line-height: 1.7;
    margin-bottom: 24px;
    text-align: center;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 600;
}

/* Lead Form Section */
.lead-form-section {
    width: 100%;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calculator-section {
    width: 100%;
}

/* Final CTA Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #01A7DF 0%, #0188b8 100%);
    position: relative;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-heading {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subheading {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-button-large {
    display: inline-block;
    background: #ffffff;
    color: #01A7DF;
    padding: 24px 60px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.cta-button-large:hover {
    text-decoration: none!important;
    color: #01A7DF!important;
    transform: translateY(-4px) scale(1.05);
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: #f8f9fa;
}

.cta-button-large:active {
    transform: translateY(-2px) scale(1.02);
}

/* Utility Classes */
.hidden {
    display: none;
}

/* Loading Spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .banner-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .banner-text {
        padding-right: 0;
        text-align: center;
    }
    
    .banner-title {
        font-size: 2.2rem;
    }
    
    .banner-subtitle-main {
        font-size: 1.2rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
    
    .social-proof-banner {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .trust-badge {
        position: static;
        margin: 20px auto;
        display: inline-block;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .value-prop-heading,
    .platform-heading,
    .benefits-heading,
    .testimonials-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .top-banner {
        min-height: auto;
        padding: 60px 20px;
    }
    
    .logo-container {
        top: 30px;
        padding: 0 15px;
    }
    
    .logo-image {
        max-width: 200px;
    }
    
    .banner-content {
        margin-top: 100px;
    }
    
    .banner-title {
        font-size: 1.8rem;
    }
    
    .banner-subtitle-main {
        font-size: 1.1rem;
    }
    
    .banner-subtitle {
        font-size: 0.95rem;
    }
    
    .calculator-banner {
        padding: 32px 24px;
    }
    
    .platform-section,
    .value-prop-section,
    .benefits-section,
    .testimonials-section,
    .cta-section {
        padding: 60px 20px;
    }
    
    .value-prop-heading,
    .platform-heading,
    .benefits-heading,
    .testimonials-heading {
        font-size: 1.8rem;
    }
    
    .cards-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .platform-card {
        padding: 32px 24px;
    }
    
    .value-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-heading {
        font-size: 2rem;
    }
    
    .cta-subheading {
        font-size: 1.1rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .cta-button-large {
        padding: 20px 40px;
        font-size: 1.1rem;
    }
}
