<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&amp;display=swap');

:root {
  --primary-color: #e74c3c;
  --secondary-color: #3498db;
  --dark-color: #2c3e50;
  --light-color: #ecf0f1;
  --gray-color: #95a5a6;
  --white-color: #ffffff;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
}

a {
  text-decoration: none;
  color: var(--dark-color);
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Header Styles */
header {
  background-color: var(--white-color);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 10px;
}

.logo-container h1 {
  font-size: 1.5rem;
  color: var(--primary-color);
}

nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
}

.nav-menu a {
  font-weight: 500;
  padding: 0.5rem;
}

.nav-menu a:hover, 
.nav-menu a.active {
  color: var(--primary-color);
}

.login-btn {
  background-color: var(--secondary-color);
  color: var(--white-color) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 4px;
}

.login-btn:hover {
  background-color: #2980b9;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.primary-btn {
  background-color: var(--primary-color);
  color: var(--white-color);
}

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

.secondary-btn {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.secondary-btn:hover {
  background-color: #2980b9;
}

/* Page Container */
.page {
  display: none;
  padding: 2rem 5%;
}

.page.active {
  display: block;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--dark-color);
  position: relative;
  padding-bottom: 10px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

/* Home Page Styles */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.hero-content {
  flex: 1;
  padding-right: 2rem;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--gray-color);
}

.hero-image {
  flex: 1;
}

.hero-image img {
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.recharge-form-container {
  margin-bottom: 3rem;
}

.recharge-form {
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.recharge-form h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}

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

.feature-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Services Page Styles */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

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

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  color: var(--primary-color);
  padding: 1rem 1rem 0.5rem;
}

.service-card p {
  padding: 0 1rem 1rem;
}

/* Operators Page Styles */
.operators-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.operator-card {
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}

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

.operator-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.operator-card h3 {
  color: var(--primary-color);
  padding: 1rem 1rem 0.5rem;
}

.operator-card p {
  padding: 0 1rem 1rem;
}

.operator-card .btn {
  margin: 0 1rem 1rem;
}

/* Blog Page Styles */
.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-post {
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

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

.blog-post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.blog-meta {
  color: var(--gray-color);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  color: var(--secondary-color);
  font-weight: 500;
}

.read-more:hover {
  color: var(--primary-color);
}

/* About Page Styles */
.about-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}

.about-image img {
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.about-content h3 {
  color: var(--primary-color);
  margin: 1.5rem 0 1rem;
}

.about-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.about-content ul li {
  margin-bottom: 0.5rem;
  list-style-type: disc;
}

/* Contact Page Styles */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}

.contact-info {
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 2rem;
}

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-right: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-color);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.contact-form {
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 2rem;
}

.contact-form h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* Login Page Styles */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
}

.login-form {
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 2rem;
  width: 100%;
  max-width: 400px;
}

.login-form h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}

.forgot-password {
  color: var(--gray-color);
}

.forgot-password:hover {
  color: var(--primary-color);
}

.register-link {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ddd;
}

.register-link a {
  color: var(--secondary-color);
  font-weight: 500;
}

.register-link a:hover {
  color: var(--primary-color);
}

/* Terms &amp; Privacy Pages Styles */
.terms-container,
.privacy-container {
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 2rem;
}

.terms-content,
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.terms-content h3,
.privacy-content h3 {
  color: var(--primary-color);
  margin: 1.5rem 0 1rem;
}

/* Footer Styles */
footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 3rem 5% 1rem;
}

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

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo .logo {
  margin-bottom: 1rem;
}

.footer-links h4 {
  margin-bottom: 1rem;
  color: var(--white-color);
}

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

.footer-links ul li a {
  color: var(--light-color);
}

.footer-links ul li a:hover {
  color: var(--secondary-color);
}

.footer-newsletter h4 {
  margin-bottom: 1rem;
  color: var(--white-color);
}

.footer-newsletter form {
  display: flex;
  margin-bottom: 1rem;
}

.footer-newsletter input {
  flex: 1;
  padding: 0.8rem;
  border: none;
  border-radius: 4px 0 0 4px;
}

.footer-newsletter button {
  border-radius: 0 4px 4px 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    flex-direction: column;
    background-color: var(--white-color);
    box-shadow: var(--shadow);
    padding: 1rem 0;
    transition: var(--transition);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo {
    align-items: center;
  }
  
  .social-links {
    justify-content: center;
  }
}
</pre></body></html>