@charset "utf-8";
/* CSS Document */

:root {
    --pink: #fe0152;
    --maroon: #9a0242;
    --blue: #00007c;
    --navy: #000131;
    --white: #ffffff;
    --light-bg: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.2);
    --border-dark: rgba(0, 1, 49, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5px;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #fc0052, var(--blue));
    z-index: 1000;
    width: 0%;
    transition: width 0.3s ease;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-dark);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--navy);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--navy);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #fc0052;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
	width: max-content;
}

.btn-outline {
    border: 1px solid var(--navy);
    color: var(--navy);
}

.btn-primary {
    background: white;
    color: var(--navy);
}

.btn-pink {
    background: #fc0052;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 55%, #fc0052 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(254, 1, 82, 0.2) 0%, transparent 70%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 30%;
    height: 30%;
    background: radial-gradient(circle, rgba(0, 0, 124, 0.2) 0%, transparent 70%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(to right, white, #ffd6e3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.trust-pills {
    display: flex;
/*    grid-template-columns: 1fr 1fr;*/
    gap: 10px;
    margin-bottom: 20px;
}

.pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 5px 5px;
    font-size: 0.85rem;
    text-align: center;
}

.example-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

/* Device Mockup */
.device-mockup {
    position: relative;
}

.laptop {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(11, 15, 42, 0.8);
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.laptop-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.dots {
    display: flex;
    gap: 5px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.laptop-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 15px;
}

.laptop-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: white;
    font-size: 0.9rem;
}

.panel-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.content-line {
    height: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.content-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.content-button {
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.table-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 0.8rem;
}

.table-tag {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    padding: 3px 8px;
    text-align: center;
}

.mobile-mockup {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(11, 15, 42, 0.8);
    padding: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: rotate(5deg);
}

.mobile-content {
    padding: 10px;
    color: white;
}

.mobile-line {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 5px;
}

.mobile-button {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 5px 10px;
    text-align: center;
    font-size: 0.7rem;
    margin-top: 10px;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: #FFFFFF;
}

.white-section {
    background: white;
}

.gradient-section {
    background: linear-gradient(135deg, var(--navy), var(--maroon));
    color: white;
}

.blue-section {
    background: linear-gradient(135deg, var(--blue), #fc0052);
    color: white;
}

.dark-section {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: white;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.card {
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-white {
    border: 1px solid var(--border-dark);
}

.card-dark {
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.card-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--maroon);
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-number {
    width: 35px;
    height: 35px;
    background: white;
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

/* Calculator */
.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.calculator-panel {
    border-radius: 15px;
    padding: 25px;
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    opacity: 0.85;
}

.slider {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

.input-number {
    width: 100px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.metric {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 15px;
}

.metric-title {
    font-size: 0.9rem;
    opacity: 0.85;
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 5px;
}

.feature-list {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-icon {
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Testimonials */
.testimonial {
    border-radius: 15px;
    padding: 25px;
    border: 1px solid var(--border-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial footer {
    color: var(--maroon);
    font-weight: 500;
}

/* FAQ */
/* FAQ Section - Same Old Style */
.dark-section {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: white;
}

.section-title {
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.section-title p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* FAQ Container - Same Style */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    border: 1px solid var(--border-light);
    background: var(--light-bg);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-item:last-child {
    border-bottom: none;
}

/* FAQ Question - Same Style */
.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: white;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* FAQ Answer - Improved Animation */
.faq-answer {
    padding: 0 20px;
    color: rgba(255, 255, 255, 0.9);
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 20px 20px 20px;
    max-height: 500px;
    opacity: 1;
}

/* Icon Animation */
.faq-question span {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.btn-primary {
    background: #fc0052;
    color: white;
    border: 1px solid #fc0052;
}

.btn-primary:hover {
    background: #e00148;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(254, 1, 82, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Wave */
/*
.wave {
    width: 100%;
    height: 80px;
    display: block;
}
*/


/* Accessibility */
.faq-question:focus {
    outline: 2px solid #fc0052;
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .faq-container {
        margin: 0 auto 40px;
        border-radius: 15px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer-content {
        padding: 0 20px 20px;
    }
    
    .faq-cta {
        padding: 30px 20px;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .faq-question {
        padding: 18px 15px;
    }
    
    .faq-text {
        font-size: 0.95rem;
    }
}
/* CTA Section */
.cta-section {
    border-radius: 25px;
    padding: 50px;
    border: 1px solid rgba(254, 1, 82, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: center;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* Footer */
/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    color: white;
    padding: 60px 0 0;
    margin-top: 40px;
}

.footer-content {
    display: grid;
     grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: #fc0052;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 1, 82, 0.3);
}

/* Links Sections */
.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #fc0052;
    border-radius: 2px;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link::before {
    content: '›';
    font-size: 1.2rem;
    color: #fc0052;
    transition: transform 0.3s ease;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.footer-link:hover::before {
    transform: translateX(3px);
}

/* Contact Section */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.contact-item i {
    width: 16px;
    color: #fc0052;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: white;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.footer-badges {
    display: flex;
    gap: 10px;
}

.badge {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .newsletter-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .newsletter-form {
        margin-left: 0;
        flex: 1;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-newsletter {
        padding: 20px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}
/* Mobile CTA */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-dark);
    padding: 15px;
    display: none;
    z-index: 90;
}

.mobile-cta-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    text-decoration: none;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: transform 0.3s;
}
.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    color: white;
    font-size: 1.8rem;
}

/* Waves */
.wave {
    width: 100%;
    height: 80px;
    display: block;
}

.wave-top {
    transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content, 
    .calculator-grid,
    .cta-content,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .trust-pills {
        grid-template-columns: 1fr;
    }

    nav ul {
        display: none;
    }

    .mobile-cta {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons, 
    .cta-buttons {
        flex-direction: column;
    }

    .mobile-mockup {
        display: none;
    }
}

.image-container {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50%; 
  animation: spin 6s linear infinite; 
  transform-origin: center;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


.wave-bottom {
    display: block;
    width: 100%;
    height: 100px;
    transform: rotate(180deg);
    position: inherit;
    bottom: -85px;
}

.wave-bottom-2 {
    display: block;
    width: 100%;
    height: 100px;
    position: relative;
    bottom: -85px;
	}

	
.header-logo {
  display: flex;
  align-items: center;
  justify-content: start;
}

.header-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.header-logo img:hover {
  transform: scale(1.05);
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.footer-logo img {
  height: 130px;
  width: auto;
  object-fit: contain;
  opacity: 0.9; 
  transition: opacity 0.3s ease;
}

.footer-logo img:hover {
  opacity: 1;
}


.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #ccc;
  font-size: 14px;
}

.contact-item i {
  color: #ef0052;
  font-size: 16px;
}

.contact-link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  word-break: break-word;
}

.contact-link:hover {
  color: #ef0052;
}


.footer-bottom-content .copyright p a {
    text-decoration: none;
    color: #fc0052;
}
