body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #fff;
}

/* Navbar Styles */
.navbar {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Remove font styles if not needed */
    font-weight: normal;
    font-size: unset;
    letter-spacing: unset;
}
.navbar-logo-img {
    max-width: 120px;
    max-height: 54px;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    display: block;
}
.navbar-logo-img + .navbar-logo-img {
    margin-left: 8px;
    margin-right: 0;
}
.navbar-logo-horizontal {
    height: 44px;
    margin-left: 18px;
}
.navbar-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
.navbar-links li a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
    transition: color 0.2s;
}
.navbar-links li a:hover {
    color: #e74c3c;
}
.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: #222;
    border-radius: 2px;
    display: block;
}

@media (max-width: 900px) {
    .navbar-logo-img {
        max-height: 38px;
        height: 38px;
    }
    .navbar-logo-horizontal {
        height: 30px;
        margin-left: 8px;
    }
}
@media (max-width: 700px) {
    .navbar-logo-horizontal {
        display: none;
    }
}

/* Hero Section Styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    background: linear-gradient(to right, #ca1c08 0%, #9208cd 100%) ;
}
.hero-img {
    position: absolute;
    /* top: 150; */
  
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5; /* Make image transparent */
    mix-blend-mode: lighten; /* Linear effect with background */
}
.hero-slider {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s;
    pointer-events: none;
}
.hero-slide.active {
    opacity: 0.5; /* match previous hero-img style */
    pointer-events: auto;
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.15);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}
.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}
.hero-btn {
    display: inline-block;
    background: #fff;
    color: #3498db;
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.2s, color 0.2s;
}
.hero-btn:hover {
    background: #3498db;
    color: #fff;
}

.floating-buttons {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    z-index: 1002;
}
.call-btn, .whatsapp-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: transform 0.2s;
}
.call-btn:hover { background: #ff4d4d; }
.whatsapp-btn:hover { background: #25d366; }
.call-btn img, .whatsapp-btn img {
    width: 28px;
    height: 28px;
}

@media (max-width: 600px) {
    .floating-buttons {
        right: 10px;
        bottom: 10px;
        gap: 50px;
    }
}

/* UPI Problem Assistance Section Styles */
.upi-assist {
    width: 100%;
    background: #fff;
    padding: 60px 0 40px 0;
    display: flex;
    justify-content: center;
}
.upi-assist-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    gap: 60px;
    padding: 0 30px;
}
.upi-assist-img {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.upi-assist-img img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    background: #f7f7f7;
}
.upi-assist-content {
    flex: 1 1 400px;
   
    padding: 0 10px;
}
.upi-assist-content h2 {
    font-size: 2.7rem;
    color: #2186d4;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.1;
}
.upi-assist-content p {
    font-size: 1.15rem;
    margin-bottom: 18px;
    
}
.upi-number {
    color: #cacaca;
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 10px;
     border: 2px solid #0a39f3;
    display: inline;
    padding: 10px;
    margin-top: 10px;
    cursor: pointer;
    transition: border 0.3s ease;
    border-radius: 10px;
    background-color: #028bf4;

}
.upi-number:hover{
    background-color: rgb(47, 72, 135);
}


.info-wrapper p {
    margin: 10px 0;
    color: #555;
}


/* UPI Stats Section Styles */
.upi-stats {
    background: #1e88d9;
    padding: 60px 0 80px 0;
    text-align: center;
}
.upi-stats-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: 1px;
}
.upi-stats-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}
.upi-stats-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px 0 rgba(30,136,217,0.15);
    padding: 48px 32px 36px 32px;
    min-width: 260px;
    max-width: 350px;
    min-height: 260px;
    height: 320px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 18px 10px;
    justify-content: center;
}
.upi-stats-number {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
}
.upi-stats-label {
    font-size: 1.15rem;
    color: #222;
}

/* Services Section Styles */
.services {
    background: #bca7a7;
    padding: 60px 0 80px 0;
    text-align: center;
}
.services-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #181818;
    font-family: 'Montserrat', serif;
}
.services-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}
.service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 32px 0 rgba(30,136,217,0.10);
    width: 370px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 18px 10px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 40px 0 rgba(30,136,217,0.18);
}
.service-img img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    display: block;
}
.service-content {
    padding: 32px 0 32px 0;
}
.service-content h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: #181818;
    font-family: 'Montserrat', serif;
}
.service-btn {
    display: inline-block;
    background: #2196f3;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 36px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: 10px;
}
.service-btn:hover {
    background: #1769aa;
}

/* Complaint Banner Styles */
.complaint-banner {
    background: #1e88d9;
    border-radius: 50px;
    margin: 40px 0 60px 0; /* Added margin-bottom for spacing above footer */
    padding: 70px 0 90px 0;
    box-shadow: 0 8px 40px 0 rgba(30,136,217,0.10);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 96%;
    margin-left: 2%;
    margin-right: 2%;
}
.complaint-banner-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.complaint-banner-content h2 {
    color: #fff;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 1px;
}
.complaint-banner-btn {
    display: inline-block;
    padding: 16px 48px;
    border: 2px solid #fff;
    border-radius: 40px;
    background: transparent;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
    text-decoration: underline;
    transition: background 0.2s, color 0.2s;
    margin-top: 10px;
}
.complaint-banner-btn:hover {
    background: #fff;
    color: #1e88d9;
    text-decoration: none;
}
@media (max-width: 900px) {
    .complaint-banner {
        border-radius: 30px;
        padding: 40px 0 50px 0;
    }
    .complaint-banner-content h2 {
        font-size: 2.2rem;
    }
    .complaint-banner-btn {
        font-size: 1.1rem;
        padding: 12px 32px;
    }
}
@media (max-width: 600px) {
    .complaint-banner {
        border-radius: 16px;
        padding: 24px 0 30px 0;
        width: 99%;
        margin-left: 0.5%;
        margin-right: 0.5%;
    }
    .complaint-banner-content h2 {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }
    .complaint-banner-btn {
        font-size: 1rem;
        padding: 8px 18px;
    }
}

@media (max-width: 900px) {
    .navbar-container {
        padding: 1rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .upi-assist-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 10px;
    }
    .upi-assist-content h2 {
        font-size: 2rem;
    }
    .upi-assist-img img {
        max-width: 350px;
    }
    .upi-stats-title {
        font-size: 1.6rem;
    }
    .upi-stats-cards {
        gap: 20px;
    }
    .upi-stats-card {
        padding: 32px 16px 24px 16px;
        min-width: 180px;
        min-height: 180px;
        height: 220px;
    }
    .services-title {
        font-size: 2rem;
    }
    .services-cards {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .service-card {
        width: 90vw;
        max-width: 400px;
    }
}
@media (max-width: 700px) {
    .navbar-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: #fff;
        flex-direction: column;
        width: 180px;
        gap: 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        display: none;
    }
    .navbar-links.active {
        display: flex;
    }
    .navbar-links li {
        border-bottom: 1px solid #eee;
        text-align: right;
        padding: 1rem 1.5rem;
    }
    .navbar-toggle {
        display: flex;
    }
}
@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 1.3rem;
    }
    .hero-btn {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
    .floating-buttons {
        right: 10px;
        bottom: 10px;
    }
    .call-btn, .whatsapp-btn {
        width: 40px;
        height: 40px;
    }
    .call-btn img, .whatsapp-btn img {
        width: 60px;
        margin-bottom: 20px;
        height: 60px;
    }
    .upi-assist {
        padding: 30px 0 20px 0;
    }
    .upi-assist-content h2 {
        font-size: 1.3rem;
    }
    .upi-assist-content p {
        font-size: 1rem;
    }
    .upi-assist-img img {
        max-width: 100%;
    }
    .upi-stats {
        padding: 30px 0 40px 0;
    }
    .upi-stats-title {
        font-size: 1.1rem;
        margin-bottom: 24px;
    }
    .upi-stats-cards {
        flex-direction: column;
        gap: 16px;
    }
    .upi-stats-card {
        max-width: 95vw;
        min-width: unset;
        padding: 20px 8px 16px 8px;
        min-height: 120px;
        height: 160px;
    }
    .upi-stats-number {
        font-size: 1.3rem;
    }
    .upi-stats-label {
        font-size: 1rem;
    }
    .services {
        padding: 30px 0 40px 0;
    }
    .services-title {
        font-size: 1.3rem;
        margin-bottom: 24px;
    }
    .service-content h3 {
        font-size: 1.1rem;
        margin-bottom: 14px;
    }
    .service-btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
    .service-card {
        width: 98vw;
        max-width: 99vw;
    }
}

.upi-stats-card,
.service-card {
    margin: 18px 10px;
    width: 320px;
    max-width: 92vw;
    min-width: 220px;
}
@media (max-width: 1100px) {
    .upi-stats-card,
    .service-card {
        width: 260px;
        max-width: 98vw;
        min-width: 160px;
    }
}
@media (max-width: 900px) {
    .upi-stats-cards,
    .services-cards {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .upi-stats-card,
    .service-card {
        width: 70vw;
        max-width: 80vw;
        min-width: 180px;
    }
}
@media (max-width: 600px) {
    .upi-stats-card,
    .service-card {
        width: 80vw;
        max-width: 95vw;
        min-width: 60vw;
        margin: 10px 0;
    }
}

/* Footer Styles */
.footer {
    background: #181818;
    color: #fff;
    width: 100%;
    margin-top: 0;
}
.footer-ph{
    color: #fff;
    text-decoration: none;
}
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10vw;
    padding: 70px 0 40px 0;
    max-width: 1400px;
    margin: 0 auto;
}
.footer-menu {
    flex: 2;
    text-align: left;
}

.footer-menu h3,
.footer-contact h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: 'Montserrat', serif;
}
.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-menu ul li {
    margin-bottom: 18px;
}
.footer-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-menu ul li a:hover {
    color: #2196f3;
}
.footer-contact {
    flex: 1;
    text-align: right;
    margin-right: 40px;
}
.footer-contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    margin-top: 18px;
}
.footer-phone-icon {
    font-size: 1.5rem;
}
.footer-contact-btn {
    display: inline-block;
    margin-left: 18px;
    padding: 8px 22px;
    background: #00bcd4;
    color: #fff;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none !important;
    border: none;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0,188,212,0.10);
}
.footer-contact-btn:hover {
    background: #1769aa;
    color: #fff;
    text-decoration: none !important;
}
.footer-bottom {
    background: #000;
    color: #fff;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 0 8px 0;
    letter-spacing: 0.5px;
}
@media (max-width: 900px) {
    .footer-main {
        flex-direction: column;
        align-items: stretch;
        gap: 40px;
        padding: 40px 30px 20px 30px;
    }
    .footer-menu, .footer-contact {
        text-align: left;
    }
    .footer-contact {
        margin-right: 0;
        text-align: left;
    }
}
@media (max-width: 600px) {
    .footer-main {
        padding: 24px 10px 10px 10px;
        gap: 24px;
    }
    .footer-menu, .footer-contact {
        text-align: left;
    }
    .footer-bottom {
        font-size: 0.85rem;
        padding: 8px 0 6px 0;
    }
}


