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

body {
    font-family: 'Segoe UI', sans-serif;
    background: #f5f6fa;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff; /* or your preferred background */
  z-index: 9999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 5%;
}


.logo img {
    height: 95px;
    width: 220px;
    object-fit: contain;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    position: relative;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-weight: 500;
    color: #1a1a2e;
    text-decoration: none;
    padding: 8px 12px;
    display: block;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #fbc02d;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    z-index: 999;
    min-width: 180px;
}

.dropdown-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    padding: 10px 15px;
    color: #1a1a2e;
}

.dropdown-menu a:hover {
    background-color: #fbc02d;
    color: white;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-actions .login {
    color: #ffa500;
    font-weight: 500;
    text-decoration: none;
}

.btn-primary {
    background-color: #ffc107;
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    text-decoration: none;
}

/* Hero Section */
.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5% 40px;
    flex-wrap: wrap;
}

.hero {
    position: relative;
    background: url('black1.jpg') no-repeat center center/cover;
    background-color: #f5f6fa;
    min-height: 100vh;
    z-index: 1;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    /* 60% black overlay */
    z-index: 0;
}

.hero>* {
    position: relative;
    z-index: 1;
    /* bring text/buttons above the overlay */
}


.hero-text {
    max-width: 50%;
    color: white;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.05rem;
    color: #f0f0f0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    gap: 15px;
}

.download-buttons img {
    width: 180px;
    height: 55px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.download-buttons img:hover {
    transform: scale(1.05);
}

.hero-image {
    position: relative;
}

.hero-image .phone {
    max-width: 100%;
    height: auto;
    width: 320px;
    display: block;
    margin-left: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text,
    .hero-image {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .navbar {
        flex-direction: column;
        gap: 15px;
    }
}


.how-it-works {
    padding: 80px 5%;
    background-color: #f9fafd;
    text-align: center;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.how-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.feature {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 200px;
}

.feature-item {
    text-align: center;
}

.circle {
    width: 50px;
    height: 50px;
    background-color: #e0f2ff;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #1a1a2e;
    font-size: 1.2rem;
}

.feature-left .circle:nth-child(1),
.feature-left .circle:nth-child(3) {
    background-color: #e0f2ff;
}

.feature-right .circle:nth-child(1),
.feature-right .circle:nth-child(3) {
    background-color: #fceabb;
}

.phone-center img {
    width: 220px;
    max-width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .how-content {
        flex-direction: column;
        gap: 60px;
    }

    .feature {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        max-width: 100%;
        gap: 30px;
    }

    .feature-item {
        max-width: 160px;
    }
}

.our-process {
    padding: 80px 5%;
    background-color: #ffffff;
    text-align: center;
}

.our-process h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a2e;
}

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

.process-card {
    background-color: #fff9e8;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease;
}

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

.process-card .number {
    font-size: 2rem;
    font-weight: bold;
    color: #fbc02d;
    margin-bottom: 15px;
}

.process-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #222;
}

.process-card p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.pricing-section {
    padding: 80px 5%;
    background: #fff;
    text-align: center;
}

.pricing-header h4 {
    color: #fbc02d;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pricing-header h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.pricing-header p {
    max-width: 600px;
    margin: 0 auto 50px;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.pricing-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    padding: 30px 20px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #222;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    color: #333;
}

.features li {
    margin: 10px 0;
    font-size: 0.95rem;
    text-align: left;
}

.btn-buy {
    background-color: #fbc02d;
    color: #000;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s ease-in-out;
}

.btn-buy:hover {
    background-color: #e6a700;
}
@media (max-width: 768px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

}

.blog-section {
    padding: 80px 5%;
    background: #fff;
    text-align: center;
}

.blog-header h4 {
    color: #fbc02d;
    font-size: 1rem;
    margin-bottom: 5px;
}

.blog-header h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 40px;
}

.blog-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.blog-card {
    width: 280px;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.blog-content {
    position: absolute;
    bottom: 0;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    padding: 15px;
}

.blog-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.blog-content p {
    font-size: 0.85rem;
}

/* Newsletter */
.newsletter {
    background: #fbc02d;
    padding: 40px 5%;
    margin-top: 60px;
}

.newsletter-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
    gap: 20px;
}

.newsletter-text h3 {
    font-size: 1.5rem;
    margin: 10px 0;
    color: #000;
}

.newsletter-text p {
    color: #333;
    font-size: 0.95rem;
}

.tag-btn {
    background: #fff;
    color: #fbc02d;
    border: none;
    font-weight: bold;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
}

.newsletter-form {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 30px;
    padding: 5px;
    max-width: 450px;
    width: 100%;
}

.newsletter-form input {
    border: none;
    padding: 12px 16px;
    flex-grow: 1;
    border-radius: 30px 0 0 30px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    background: #fbc02d;
    border: none;
    padding: 12px 20px;
    font-size: 1.3rem;
    color: white;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .blog-cards {
        flex-direction: column;
        align-items: center;
    }
}

.site-footer {
    background-color: #ffffff;
    padding: 60px 5% 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #1a1a2e;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-left {
    flex: 1;
    min-width: 220px;
}

.footer-left p {
    margin-bottom: 15px;
    color: #444;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.social-icons img {
    width: 22px;
    height: 22px;
    filter: brightness(0) saturate(100%) invert(64%) sepia(89%) saturate(749%) hue-rotate(357deg) brightness(98%) contrast(97%);
}

.footer-column {
    flex: 1;
    min-width: 180px;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #444;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #e5f3ff;
    background-color: #e5f3ff;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-column,
    .footer-left {
        text-align: center;
    }

    .social-icons a {
        margin: 0 8px;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.3s ease-in-out;
}

.modal-content h2 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.modal-content p {
    font-size: 1rem;
    color: #444;
}

.modal .close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #888;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.auth-slide-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.2);
    z-index: 99999;
    transition: right 0.4s ease-in-out;
    padding: 30px 25px;
    overflow-y: auto;
}

.auth-slide-panel.active {
    right: 0;
}

.auth-panel-header h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.auth-panel-header p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #888;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-form .form-group label {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #333;
}

.auth-form .form-group input,
.auth-form .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.btn-primary.full {
    width: 100%;
    background-color: #fbc02d;
    color: #000;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary.full:hover {
    background-color: #e6a700;
}

.auth-panel-footer {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #666;
}

/* Tabs */
.auth-tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.auth-tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    background: none;
    border: none;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    font-size: 1rem;
}

.auth-tab.active {
    color: #1a1a2e;
    border-bottom: 3px solid #fbc02d;
}

/* Hide/show form */
.hidden {
    display: none;
}

.bill-checker-group {
    margin-bottom: 15px;
}

.bill-checker-group label {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 6px;
}

.bill-checker-group input {
    padding: 10px;
    width: 100%;
    max-width: 350px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.bill-checker-result {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 15px;
    font-size: 1rem;
    color: #333;
}

.bill-checker-result div {
    background: #f9f9f9;
    padding: 10px 15px;
    border-radius: 6px;
    border-left: 4px solid #fbc02d;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.billpay-group {
    margin-bottom: 15px;
}

.billpay-group label {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 6px;
}

.billpay-group input {
    padding: 10px;
    width: 100%;
    max-width: 350px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.billpay-result {
    display: grid;
    gap: 10px;
    margin-top: 15px;
    font-size: 1rem;
    color: #333;
}

.billpay-result div {
    background: #f9f9f9;
    padding: 10px 15px;
    border-radius: 6px;
    border-left: 4px solid #fbc02d;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.accordion {
    margin-top: 20px;
    border-top: 1px solid #ddd;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-toggle {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 15px;
    font-weight: bold;
    font-size: 1rem;
    color: #1a1a2e;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.accordion-toggle.active {
    color: #FBBC05;
}

.accordion-toggle:hover {
    background-color: #f9f9f9;
}

.accordion-content {
    display: none;
    padding: 12px 15px;
    font-size: 0.95rem;
    color: #333;
    background-color: #fff8e5;
    /* faded FBBC05 */
    line-height: 1.6;
    border-left: 4px solid #FBBC05;
}

.callback-group {
    margin-bottom: 15px;
}

.callback-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 6px;
    color: #1a1a2e;
}

.callback-group input,
.callback-group textarea {
    width: 100%;
    max-width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    resize: vertical;
}
