* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

body {
  font-family: 'Inter', sans-serif;
  background-color: #eef4fd;
  color: #000;
}

ul li {
    list-style: none;
}
:root {
            --primary: #0b0d30;
            --btn-clr:  #f72f20;
            --bg-color: #2a3f65;
            --primary-dark: #4D44DB;
            --primary-light: #A5A1FF;
            --secondary: #FF6584;
            --dark: #000000;
            --darker: #0F0F1B;
            --light: #F8F9FA;
            --lighter: #FFFFFF;
            --gray: #ADB5BD;
            --dark-gray: #495057;
            --success: #28A745;
            --warning: #FFC107;
            --danger: #DC3545;
            --info: #17A2B8;

            --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-heading: 'Playfair Display', Georgia, serif;

            --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
            --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

        






/* Header */
/*header {*/
/*  background-color: #eef4fd;*/
/*  padding: 20px 0;*/
/*}*/

/*.nav-container {*/
/*  display: flex;*/
/*  justify-content: space-between;*/
/*  align-items: center;*/
/*  position: relative;*/
/*}*/


/*.logo {*/
/*  font-weight: 700;*/
/*  font-size: 20px;*/
/*  color: #f56b00;*/
/*}*/

/*nav ul {*/
/*  display: flex;*/
/*  gap: 20px;*/
/*  list-style: none;*/
/*}*/

/*nav a {*/
/*  text-decoration: none;*/
/*  color: #000;*/
/*  font-weight: 500;*/
/*}*/

/*.login-btn {*/
/*  background-color: var(--btn-clr);*/
/*  color: #fff;*/
/*  padding: 10px 20px;*/
/*  border: none;*/
/*  border-radius: 20px;*/
/*  font-weight: 600;*/
/*  cursor: pointer;*/
/*}*/

header {
    background: #ffffff;
    color: #000000;
    width: 100%;
    /*position: fixed;*/
    /*top: 0;*/
    /*left: 0;*/
    z-index: 1000;
}

    .container.nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 1rem;
      max-width: 1200px;
      margin: auto;
    }

    .logo a {
      display: flex;
      align-items: center;
      text-decoration: none;
      color: #fff;
      font-size: 1.3rem;
      font-weight: bold;
    }

    .logo img {
        height: 50px;
        margin-right: 8px;
        width: 100%;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 1.5rem;
    }
    ul.nav-links {
        margin: 0;
    }

    nav ul li a {
        text-decoration: none;
        color: var(--primary);
        font-weight: 550;
        transition: 0.3s;
        font-size: 18px;
    }

    nav ul li a:hover {
      color: var(--btn-clr);
    }

    .login-btn {
        background: var(--btn-clr);
        color: white;
        border: none;
        padding: 0.3rem 1.5rem;
        border-radius: 4px;
        cursor: pointer;
        font-weight: 600;
        transition: 0.3s;
        border-radius: 10px;
    }

    .login-btn:hover {
      background: var(--primary);
    }

    .hamburger {
      display: none;
      font-size: 28px;
      cursor: pointer;
      color: var(--bg-color);
    }

    /* ===== MOBILE MENU ===== */
    .mobile-menu {
      position: fixed;
      top: 0;
      left: -100%;
      width: 80%;
      max-width: 360px;
      height: 100%;
      background: #111;
      color: white;
      transition: 0.4s ease;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      z-index: 2000;
      box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    }

    .mobile-menu.active {
      left: 0;
    }

    .menu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .menu-logo {
      height: 35px;
    }

    .close-btn {
      font-size: 28px;
      cursor: pointer;
      color: white;
      font-weight: bold;
    }

    .menu-links {
      list-style: none;
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .menu-links li a {
      text-decoration: none;
      color: #fff;
      padding: 0.8rem;
      background: #222;
      border-radius: 5px;
      display: block;
      transition: 0.3s;
    }

    .menu-links li a:hover {
      background: #e63946;
    }

    .menu-footer {
      border-top: 1px solid #333;
      padding-top: 1rem;
    }

    .menu-footer h4 {
      color: #e63946;
      margin-bottom: 0.5rem;
    }

    .menu-footer p {
      font-size: 0.9rem;
      margin-bottom: 0.3rem;
    }

    .menu-login-btn {
      display: inline-block;
      background: #e63946;
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 4px;
      text-decoration: none;
      margin-top: 0.8rem;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      nav ul,
      .login-btn {
        display: none;
      }

      .hamburger {
        display: block;
      }
    }


/* Hamburger Menu */
/*.hamburger {*/
/*  display: none;*/
/*  font-size: 28px;*/
/*  cursor: pointer;*/
/*}*/

/* Hero Section */
.hero {
  padding: 25px 0;
  border-radius: 40px;
  margin: 20px;
}

.hero-container {
  background-color: #fff;
  padding: 50px;
  border-radius: 50px;
}

.hero-text {
  flex: 1;

}

.hero-text h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #444;
}

.features li {
  margin-bottom: 10px;
}

.download {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.qr-code {
  width: 120px;
  margin-right: 20px;
}
.qr-code-wrapper {
    height: 177px;
    width: 177px;
}

.qr-code-wrapper img {
    height: 100%;
    width: 100%;
}

.app-buttons img {
  width: 120px;
  margin-right: 10px;
}

.hero-image img {
  /*max-width: 350px;*/
  width: 100%;
}
.image-div {
    width: 75%;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
}
.btn-section {
    margin-bottom: 50px;
}
.btn-section .download-icons.qrcode {
    align-items: center;
    display: flex;
    margin-top: 15px;
    justify-content: space-between;
}


.merchant-section {
      padding: 60px 0;
      background: #fff;
    }
    .merchant-logo img {
      width: 160px;
      margin-bottom: 10px;
    }
    .merchant-heading h2 {
      font-weight: 700;
      font-size: 1.8rem;
    }
    .merchant-text {
      color: #555;
      font-size: 1rem;
      margin-bottom: 20px;
    }
    .merchant-features li {
      list-style: none;
      margin-bottom: 8px;
      font-size: 1rem;
      color: #222;
      position: relative;
      padding-left: 25px;
    }
    .merchant-features li::before {
      content: "✔";
      color: #00b37d;
      position: absolute;
      left: 0;
      font-weight: bold;
    }
    .download-btn {
      background-color: var(--btn-clr);
      color: #fff;
      border: none;
      padding: 12px 20px;
      border-radius: 6px;
      display: inline-flex;
      align-items: center;
      font-weight: 600;
      transition: all 0.3s;
    }
    .download-btn:hover {
      background-color: var(--primary);
    }
    .download-btn img {
      width: 22px;
      margin-left: 10px;
    }
    .know-more-btn {
      border: 2px solid var(--btn-clr);
      color: var(--btn-clr);
      padding: 10px 20px;
      border-radius: 6px;
      background: #fff;
      font-weight: 600;
      transition: all 0.3s;
      margin-left: 10px;
    }
    .know-more-btn:hover {
      background-color: var(--primary);
      border-color: var(--primary);
      color: #fff;
    }
    .merchant-img img {
      width: 100%;
      max-width: 500px;
    }


    
/* Recharges & Bill Payments */
 .seo-grid-section {
      background: rgb(235, 242, 251);
      padding: 60px 0;
    }
    .service-item {
      text-align: center;
      background: #fff;
      border-radius: 10px;
      padding: 20px 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      height: 100%;
      transition: all 0.3s ease;
      min-height: 200px;
    }
    .service-item img {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin-bottom: 10px;
    }
    .service-item label {
      font-size: 14px;
      font-weight: 500;
      display: block;
    }
    .btn-toggle {
      margin-top: 30px;
      background-color: var(--btn-clr);
      border-color: var(--btn-clr);
      color: white;
      padding:  10px 20px;
    }
    .btn-toggle:hover{
      background-color: var(--primary);
      border-color: var(--primary);
     
    }
    .btn-toggle:active{
      background-color: var(--dark) !important;
      border-color: var(--dark) !important;
    }
    


    .credit-section {
      background-color: #fff;
      padding: 80px 0;
    }
    .credit-icon {
      background: #f6f6f6;
      border-radius: 10px;
      padding: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: #ff6600;
      margin-bottom: 15px;
    }
    .credit-image {
      max-width: 280px;
      width: 100%;
      display: block;
      margin: auto;
    }
    
    .credit-feature i {
      color: #22c55e;
      margin-right: 8px;
    }

    .lottie-section.image-credit {
        width: 60%;
    }


    .section-wrapper {
        padding: 70px 70px 70px 100px;
        background: #ebf2fb;
        border-radius: 50px;
    }

    .app-heading {
      font-weight: 700;
      font-size: 3.5rem;
    }

    .text-muted {
        color: #555 !important;
        font-size: 1.2em;
    }
    .phone-mockup img {
      max-width: 100%;
      height: auto;
       width: 80%;
    }



    .payment-section {
      background-color: #fff;
      border-radius: 20px;
      padding: 60px 30px;
      margin: 40px auto;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    .service-logo img {
      height: 40px;
      margin-right: 10px;
    }

    .service-logo p {
      display: inline-block;
      font-weight: 600;
      margin: 0;
    }

    .section-title {
      font-size: 2rem;
      font-weight: 700;
    }

    .sub-text {
      font-size: 1rem;
      color: #555;
      margin-bottom: 1.5rem;
    }

    .feature-list {
      list-style: none;
      padding-left: 0;
      margin-bottom: 2rem;
    }

    .feature-list li {
      margin-bottom: 0.75rem;
      font-size: 1rem;
    }

    .feature-list li::before {
      content: '✔';
      color: green;
      margin-right: 10px;
    }

    .btn-download {
      background-color: #ff5722;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 8px;
      font-weight: 600;
      margin-right: 15px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .btn-know-more {
      border: 2px solid #ff5722;
      color: #ff5722;
      background: white;
      padding: 10px 20px;
      border-radius: 8px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .btn-know-more:hover {
      background-color: #ff5722;
      color: white;
    }

    .section-img img {
      width: 100%;
      max-width: 600px;
      margin: auto;
      display: block;
    }

    .security-section {
      background: url("https://fcpress.freecharge.in/api/mediamanager/media/hbUN7XeOk.svg") center center / cover no-repeat;
      color: white;
      padding: 60px 20px;
    }

    .security-box {
      background: white;
      color: black;
      border-radius: 12px;
      padding: 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      width: 75%;
    }

    .security-box img {
      max-height: 40px;
    }

    .security-heading {
      font-size: 2rem;
      font-weight: 700;
    }

    .security-subheading {
      font-size: 1rem;
      margin-top: 10px;
    }


    section.video-carousel {
      padding: 60px 0;
    }

    .section-heading {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-heading h2 {
      font-weight: bold;
    }

    .hashtag {
      font-size: 2rem;
      font-weight: bold;
      color: #ff6b6b;
      font-style: italic;
    }

    .video-card {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      background-color: #000;
      transition: transform 0.3s;
    }

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

    .video-card img {
      width: 100%;
      height: auto;
      display: block;
    }

    .play-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(255, 255, 255, 0.9);
      border-radius: 50%;
      padding: 10px;
    }

    .video-title {
      margin-top: 10px;
      text-align: center;
      font-weight: 500;
      font-size: 1rem;
    }

    .carousel {
      max-width: 1300px;
      margin: auto;
      padding-bottom: 20px;
    }

    /* Custom arrows below the carousel */
    .custom-arrows {
      text-align: center;
      margin-top: -10px;
    }

    .custom-arrow {
      background: none;
      border: none;
      font-size: 24px;
      margin: 0 20px;
      color: #666;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .custom-arrow:hover {
      color: #000;
    }

    .download-app-container {
      min-height: 600px;
      background: url('https://fcpress.freecharge.in/api/mediamanager/media/zBG9u6dce.svg') center center / cover no-repeat;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 1rem;
      color: white;
      font-family: 'Roboto', sans-serif;
      text-align: center;
    }

    .content-wrapper {
      max-width: 400px;
      width: 100%;
    }

    .qr-section {
      position: relative;
      margin-bottom: 1.5rem;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .qr-code {
      background: white;
      border-radius: 20px;
      padding: 1.25rem;
      width: 210px;
      height: 210px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    /* Using an actual QR code image instead of canvas */
    .qr-code img {
      width: 180px;
      height: 180px;
      border-radius: 12px;
    }

    .qr-section img[alt="pointer"] {
      position: absolute;
      right: 100%;
      top: 50%;
      width: 32px;
      height: 32px;
      transform: translate(10px, -50%);
      opacity: 0.7;
      pointer-events: none;
      z-index: 1;
    }

    .qr-section::before {
      content: '';
      position: absolute;
      right: 100%;
      top: 50%;
      width: 150px;
      height: 80px;
      border-top: 2px dashed rgba(255 255 255 / 0.5);
      border-left: 2px dashed rgba(255 255 255 / 0.5);
      border-radius: 80px 0 0 0;
      transform: translate(10px, -50%);
      z-index: 0;
    }

    .heading-1 {
      font-weight: 400;
      font-size: 1rem;
      margin-bottom: 0.5rem;
      color: white;
    }

    .heading-2 {
      font-weight: 700;
      font-size: 1.8rem;
      color: white;
    }


        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--darker), var(--dark));
            color: var(--lighter);
            padding: 5rem 0 2rem;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-column {
            position: relative;
            z-index: 1;
        }

        .footer-column h3 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 50px;
            height: 3px;
            background: var(--btn-clr);
            border-radius: 3px;
        }

        .footer-column p {
            color: var(--gray);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            display: inline-block;
            transition: var(--transition);
            position: relative;
            padding-left: 1rem;
        }

        .footer-links a::before {
            content: '→';
            position: absolute;
            left: -5px;
            opacity: 0;
            transition: var(--transition);
            color: var(--btn-clr);
        }

        .footer-links a:hover {
            color: var(--lighter);
            padding-left: 1.5rem;
        }

        .footer-links a:hover::before {
            left: 0;
            opacity: 1;
        }

        /* Contact Info */
        .contact-info {
            margin-top: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            color: var(--gray);
        }

        .contact-item i {
            margin-right: 0.75rem;
            color: var(--light);
            font-size: 1.1rem;
            margin-top: 3px;
        }

        .contact-item span {
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* Social Links */
        .social-links {
            display: flex;
            gap: 0.8rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .social-link {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--lighter);
            transition: var(--transition);
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }

        .social-link::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--primary), var(--primary-dark));
            opacity: 0;
            transition: var(--transition);
        }

        .social-link:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .social-link:hover::after {
            opacity: 1;
        }

        .social-link i {
            position: relative;
            z-index: 1;
        }

        /* Newsletter */
        .newsletter {
            margin-top: 1.5rem;
        }

        .newsletter p {
            margin-bottom: 1rem;
        }

        .newsletter-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .newsletter-input {
            flex: 1;
            min-width: 200px;
            padding: 0.85rem 1.25rem;
            border-radius: 50px;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            color: var(--lighter);
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .newsletter-input::placeholder {
            color: var(--gray);
        }

        .newsletter-input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 0 2px var(--primary-light);
        }

        .newsletter-btn {
            padding: 0.85rem 1.75rem;
            border-radius: 50px;
            border: none;
            background: var(--btn-clr);
            color: var(--lighter);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.95rem;
            flex-shrink: 0;
        }

        .newsletter-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }

        /* Copyright */
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray);
            font-size: 0.85rem;
        }

        .copyright a {
            color: var(--primary-light);
            text-decoration: none;
            transition: var(--transition);
        }

        .copyright a:hover {
            color: var(--btn-clr);
            text-decoration: underline;
        }

        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--btn-clr);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            box-shadow: var(--shadow-md);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-5px);
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

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

        .footer-column {
            animation: fadeIn 0.6s ease forwards;
        }

        .footer-column:nth-child(1) {
            animation-delay: 0.1s;
        }

        .footer-column:nth-child(2) {
            animation-delay: 0.2s;
        }

        .footer-column:nth-child(3) {
            animation-delay: 0.3s;
        }

        .footer-column:nth-child(4) {
            animation-delay: 0.4s;
        }


/* --------------------------contact us page css--------------------------------- */

.sec-title {
  position: relative;
  padding-bottom: 40px;
}
.sec-title .title {
  position: relative;
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  padding-right: 50px;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: capitalize;
}
.sec-title .title:before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 7px;
  width: 40px;
  height: 1px;
  background-color: #bbb;
}
.sec-title h2 {
  position: relative;
  color: #252525;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5em;
  display: block;
}
.sec-title.light h2 {
  color: #fff;
}
.contact-page-section {
  position: relative;
  padding-top: 110px;
  padding-bottom: 110px;
}
.contact-page-section .inner-container {
  position: relative;
  z-index: 1;
  background-color: var(--primary);
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.1);
}
.contact-page-section .form-column {
  position: relative;
  padding: 0 0 0 15px;
}
.contact-page-section .form-column .inner-column {
  position: relative;
  padding: 60px 45px 30px;
  background-color: #fff;
}
.contact-page-section .info-column {
  position: relative;
}
.contact-page-section .info-column .inner-column {
  position: relative;
  padding: 60px 35px;
}
.contact-page-section .info-column h2 {
  position: relative;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4em;
  margin-bottom: 45px;
}
.contact-page-section .info-column .list-info {
  position: relative;
  margin-bottom: 60px;
}
.contact-page-section .info-column .list-info li {
  position: relative;
  margin-bottom: 25px;
  font-size: 18px;
  color: #fff;
  line-height: 1.8em;
  padding-left: 45px;
}
.contact-page-section .info-column .list-info li:last-child {
  margin-bottom: 0;
}
.contact-page-section .info-column .list-info li i {
  position: absolute;
  left: 0;
  top: 8px;
  color: #fff;
  font-size: 30px;
}
.contact-form {
  position: relative;
}
.contact-form .form-group {
  position: relative;
  margin-bottom: 20px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  color: #222;
  font-size: 14px;
  line-height: 38px;
  padding: 10px 30px;
  border: 1px solid #ddd;
  background-color: #fff;
  transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  border-color: #00b8ca;
}
.contact-form textarea {
  height: 250px;
  resize: none;
}
.contact-form .theme-btn {
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
  text-transform: capitalize;
  padding: 16px 39px;
  border: 2px solid var(--btn-clr);
  font-family: Arimo, sans-serif;
  background: var(--btn-clr);
  display: inline-block;
  position: relative;
  line-height: 24px;
  cursor: pointer;
  color: #fff;
  border-radius: 10px;
}
.contact-form .theme-btn:hover {
    color: white;
    border-color: var(--primary);
    background: var(--primary);
}
.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
  border-color: red !important;
}
.contact-form label.error {
  display: block;
  line-height: 24px;
  padding: 5px 0 0;
  margin: 0;
  text-transform: uppercase;
  font-size: 12px;
  color: red;
  font-weight: 500;
}
.social-icon-four {
  position: relative;
}
.social-icon-four li {
  position: relative;
  margin-right: 18px;
  display: inline-block;
}
.social-icon-four li.follow {
  color: #fff;
  font-weight: 600;
  font-size: 24px;
  display: block;
  margin-bottom: 20px;
}
.social-icon-four li a {
  position: relative;
  font-size: 20px;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.social-icon-four li a:hover {
  color: var(--btn-clr);
}

.custom-service-section {

    background: rgb(235, 242, 251);
    padding: 60px 0;

  }

  .section-title {
    font-weight: 700;
    color: #343a40;
  }

  .section-description {
    font-size: 1.1rem;
    color: #6c757d;
  }

  .service-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.05);
    transition: transform 0.3s ease;
  }

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

  .service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }

  .service-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
  }

 
  .custom-service-section {
    background-color: rgb(235, 242, 251);
    padding: 40px 0;
  }

  .section-title {
    font-weight: 700;
    color: #343a40;
  }

  .section-description {
    font-size: 1.1rem;
    color: #6c757d;
  }

  .service-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.05);
    transition: transform 0.3s ease;
    height: 100%;
  }

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

  .service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }

  .service-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
  }



  /* Scrollable top services */
    .services-nav-wrapper {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      background-color: var(--primary);
      margin-top:80px;
      padding: 80px 0px;
    }

    .scrollable-tabs {
      display: flex;
      flex-wrap: nowrap;
      gap: 10px;
      padding: 20px 10px;
      min-width: 100%;
      width: max-content;
      justify-content: center;
    }

    .ser-bx {
      background: #f0f0f0;
      padding: 15px 20px;
      border-radius: 12px;
      text-align: center;
      transition: all 0.3s ease;
      border: 2px solid transparent;
      cursor: pointer;
      min-width: 120px;
      flex-shrink: 0;
    }

    .ser-bx.active {
      background: #fff;
      border: 2px solid var(--btn-clr);
      box-shadow: 0 4px 8px rgba(255, 102, 0, 0.1);
    }

    .ser-bx img {
      height: 40px;
      margin-bottom: 5px;
    }

    .ser-bx h6 {
      font-size: 14px;
      color: #333;
      font-weight: 600;
    }

    .services-main-form {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      margin-top: -40px;
      padding: 30px;
      margin-bottom: 50px;
    }

    .form-control, .form-select {
      border-radius: 10px;
      padding: 12px;
      border: 1px solid #ccc;
      font-size: 15px;
    }

    .amount-plans {
      display: flex;
      gap: 10px;
    }

    .amount-plans button {
    background: #0c1d67;
    color: #fff;
    border: none;
    padding: 7px 7px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    font-size: 15px;
    line-height: 20px;
    display: flex;
    justify-content: center;
}

    .default-btn {
      background: var(--btn-clr) !important;
      color: #fff;
      padding: 12px;
      border-radius: 10px;
      font-weight: 600;
      border: none;
      font-size: 16px;
      width: 100%;
    }

    .operator-main {
      background: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 10px;
      padding: 10px 15px;
      display: flex;
      align-items: center;
      cursor: pointer;
      transition: 0.3s;
      margin-bottom: 20px;
    }

    .operator-main:hover,
    .operator-main.active {
      border-color: var(--btn-clr);
      background-color: #fff2e6;
    }

    .operator_logo img {
      width: 35px;
      margin-right: 12px;
    }

    .operator_content p {
      font-weight: 600;
      margin: 0;
    }

    @media (max-width: 768px) {
      .services-main-form .row {
        flex-direction: column;
      }
    }



 .topbar-area-web {
  background-color:  var(--bg-color);
  padding: 5px 0;
  font-size: 14px;
  color: #fff;
}

.topbar-information,
.topbar-action {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 15px;
}

.topbar-information li a,
.topbar-action li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.topbar-information li a:hover,
.topbar-action li a:hover {
  color: #f5a623;
}

.topbar-information li:not(:last-child)::after {
  content: "|";
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.topbar-action li:not(:last-child)::after {
  content: "|";
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.topbar-action {
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .topbar-area-web {
    font-size: 13px;
    text-align: center;
  }

  .topbar-information,
  .topbar-action {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .topbar-information li:not(:last-child)::after,
  .topbar-action li:not(:last-child)::after {
    display: none;
  }
}

#header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
 marquee {
    display: flex;
    align-items: center;
    z-index: 0;
    position: relative;
}
.scroll-text {
    padding: 10px 15px;
    background: var(--bg-color);
    color: #ffffff;
}
 marquee h2 {
    color: #fff;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}


.service-item:hover {
    box-shadow: 0 19px 25px 0 rgba(0, 0, 0, .19);
}

/*OTP MODAL*/
.modal-dialog
  {
    max-width: 950px;
  }
  .modal-content {
    border: none; border-radius: 20px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  }
  .modal-body 
  { 
    padding: 0; 
  }
  .login-image {
    background-color: #fff6ef;
    display: flex; align-items: center; justify-content: center;
    padding: 50px;
  }
  .login-image img 
  {
   width: 100%; 
   max-width: 380px; 
 }
  .login-form
   {
    background: #fff; padding: 60px 50px; position: relative;
  }
  .close-login 
  {
    position: absolute; top: 20px; right: 25px;
    font-size: 24px; color: #999; cursor: pointer;
  }
  .login-form h2
   { 
    font-weight: 700;
     font-size: 26px; 
     margin-bottom: 10px;
      color: #222; 
    }
  .login-form p 
  { 
    font-size: 15px; 
    color: #777;
     }
  .form-control 
  { 
    height: 48px; 
    border-radius: 8px; 
    border: 1px solid #ddd;
     }
  .default-btn 
  {
    /*background: #ff6a00; */
    border: none; color: #fff; 
    font-weight: 600;
    border-radius: 8px; 
    padding: 12px 35px; 
    width: 100%;
  }
  /*.default-btn:hover */
  /*{ */
  /*  background: #e55d00; */
  /*}*/
  .app-scanner 
  {
    margin-top: 40px;
    background: #fffaf6; border-radius: 12px;
    padding: 15px 20px;
  }
  .app-scanner h6 
  { 
    font-weight: 600; 
    font-size: 15px;
     color: #222;
      margin-bottom: 2px; 
    }
  .app-scanner p 
  { 
    margin: 0; 
    color: #777;
     font-size: 13px;
      }
  .app-scanner img 
  {
   width: 70px;
    height: 70px;
     border-radius: 10px;
      }

  /* OTP Inputs */
  .otp-input {
    width: 55px; 
    height: 55px; 
    border: 1px solid #ddd; 
    border-radius: 8px;
    text-align: center; 
    font-size: 20px; 
    margin-right: 10px;
  }
  .otp-input:last-child 
  { 
    margin-right: 0; 
  }

  @media (max-width: 767px) 
  {
    .login-image 
    {
     display: none; 
   }
    .login-form 
    {
     padding: 40px 25px;
      }
  }
  
  /*profile button*/
  .profile-dropdown {
  position: relative;
  display: inline-block;
}

.profile-btn {
  background: #fff;
  border: 1px solid var(--btn-clr);
  color: #000;
  padding: 12px 16px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.profile-btn img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.profile-btn:hover {
  background: var(--btn-clr);
  color: #fff;
}

/* --- Hidden Box --- */
.profile-box {
  position: absolute;
  top: 55px;
  right: 0;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: 240px;
  display: none;
  z-index: 999;
  animation: fadeIn 0.2s ease-in-out;
}

/* ✅ Show on hover */
.profile-dropdown:hover .profile-box {
  display: block;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.profile-header img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.profile-header h4 {
  margin: 0;
  font-size: 16px;
  color: #0c1d72;
}

.profile-header p {
  font-size: 13px;
  margin: 0;
  color: #777;
}

.profile-header .wallet {
  color: var(--btn-clr);
  font-weight: 600;
}

.profile-links {
  display: flex;
  flex-direction: column;
}

.profile-links a {
  padding: 10px 15px;
  text-decoration: none;
  color: #0c1d72;
  font-weight: 500;
  border-top: 1px solid #f0f0f0;
  transition: 0.3s;
}

.profile-links a:hover {
  background: #ebf2fb;
  color: var(--bg-color);
}

/* Simple fade animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


    .profile-wrapper {
      margin-top: 50px;
    }

    .sidebar {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
      padding: 20px 0;
    }

    .sidebar a {
      display: block;
      padding: 12px 25px;
      color: #333;
      font-weight: 500;
      text-decoration: none;
      transition: 0.3s;
      border-left: 4px solid transparent;
    }

    .sidebar a:hover,
    .sidebar a.active {
      background: #fff6ef;
      color: #ff6600;
      border-left: 4px solid #ff6600;
    }

    .submenu {
      display: none;
      padding-left: 20px;
    }

    .submenu a {
      font-size: 14px;
      padding: 8px 25px;
      border: none;
      color: #555;
    }

    .submenu a:hover {
      color: #ff6600;
    }

    .content-area {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
      padding: 40px 30px;
    }

    .content-area h3 {
      color: #1b2e5a;
      font-weight: 700;
      border-bottom: 2px solid #ff6600;
      display: inline-block;
      padding-bottom: 5px;
      margin-bottom: 25px;
    }

    .profile-pic-container {
      position: relative;
      text-align: center;
      margin-bottom: 25px;
    }

    .profile-pic-container img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #ff6600;
    }

    .edit-icon {
      position: absolute;
      bottom: 5px;
      left: 55%;
      transform: translateX(-50%);
      background: #1b2e5a;
      color: #fff;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 2px solid #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 14px;
    }

    .btn-save {
      background-color: #ff6600;
      color: #fff;
      border: none;
      font-weight: 600;
    }

    .btn-save:hover {
      background-color: #e85b00;
    }

    .table thead {
      background-color: #1b2e5a;
      color: #fff;
    }
    table#bbpsTable {
    overflow-y: scroll;
}

    @media (max-width: 991px) {
      .sidebar {
        margin-bottom: 20px;
      }
    }