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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  min-height: 100vh;
  background-color: #ffffff;
  color: #1a1a2e;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
}

.header-container, .footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container {
  max-width: 896px;
  margin: 0 auto;
  padding: 64px 16px;
      }

.container-pricing {
max-width: 1120px;
margin: 0 auto;
}

.container-pricing h1 {
  color: #222222;
}

/* HEADER */

header, .header {
  background: linear-gradient(135deg, skyblue,#5b5fe3);
  padding: 12px 24px;
}

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

/* Logo */
.logo img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

/* NAVIGATION */
nav, .nav {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

nav a, 
.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.2s ease;
}

nav a:hover,
.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

nav a.active,
.nav-link.active {
  background-color: #ffffff;
  color: #222222;
}


/* HERO SECTION (Home Page) */

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
}

.hero-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 32px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-brand {
  font-size: 36px;
  font-weight: 700;
  /* color: skyblue; */
  background: linear-gradient(135deg, skyblue, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 16px;
  color: #6b7280;
  max-width: 700px;
  line-height: 1.7;
}

/* PRICING PAGE */

main {
  padding: 60px 0 80px;
}

h1 {
  font-size: 48px; 
  text-align: center;
  font-weight: 700;
  margin-bottom: 32px;
  color: #111827;
  line-height: 1.2;
}

/* Controls */
.controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}

.toggle {
  display: flex;
  background-color: #e8e8ed;
  border-radius: 24px;
  padding: 4px;
}

.toggle-btn {
  padding: 8px 20px;
  border: none;
  background-color: transparent;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  color: #1d1d1f;
}

.toggle-btn.active {
  background-color: skyblue;
  color: white;
}

.country-select select {
  padding: 8px 32px 8px 16px;
  border: 1.5px solid #d2d2d7;
  border-radius: 8px;
  font-size: 14px;
  background-color: white;
  cursor: pointer;
  appearance: none;
  background-repeat: no-repeat;
  background-position: right 12px center;
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.pricing-card {
  background: linear-gradient(135deg, #f0f0f5, #e8e8f0);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: 0.2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pricing-card h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.description {
  font-size: 14px;
  color: #6e6e73;
  margin-bottom: 24px;
  min-height: 42px;
}

/* Price */
.price {
  display: flex;
  align-items: baseline;
  margin-bottom: 20px;
}

.custom-price {
  display: flex;
  align-items: baseline;
  margin-bottom: 40px;
  font-size: 25px;
  font-weight: 600;
}

.currency {
  font-size: 24px;
  font-weight: 600;
}

.amount {
  font-size: 40px;
  font-weight: 700;
}

.period {
  font-size: 14px;
  margin-left: 4px;
  color: #6e6e73;
}

/* CTA Buttons */
.cta-btn {
  width: 100%;
  padding: 12px 24px;
  background-color: skyblue;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  margin-bottom: 24px;
}

.cta-btn:hover {
  background-color: skyblue;
  transform: scale(1.02);
}

/* .cta-btn.disabled {
  background-color: #d2d2d7;
  color: #86868b;
  cursor: not-allowed;
} */

/* Features */
.features h3 {
  font-size: 15px;
  margin-bottom: 16px;
}

.features ul {
  list-style: none;
}

.features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
}

.features li.included::before,
.features li.excluded::before {
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-size: cover;
}

.features li.included::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%2334c759' d='M6.5 12L2 7.5l1.5-1.5L6.5 9l6-6L14 4.5z'/%3E%3C/svg%3E");
}

.features li.excluded::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23ff3b30' d='M12.5 4.5L11 3 8 6 5 3 3.5 4.5 6.5 7.5 3.5 10.5 5 12l3-3 3 3 1.5-1.5-3-3z'/%3E%3C/svg%3E");
}

.features li.excluded {
  color: #86868b;
}

/* FOOTER */
.footer, footer {
  background-color: #ffffff; /* solid white */
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
  padding: 16px 24px;
  border-top: 1px solid #e5e7eb;
  margin-top: 40px;
}

footer p,
.footer p {
  font-size: 14px;
  color: #6e6e73;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  nav, .nav {
    display: none;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-brand {
    font-size: 28px;
  }

  .hero-description {
    font-size: 14px;
  }

  h1 {
    font-size: 28px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .controls {
    flex-direction: column;
  }
}


/* Contact Us css */

/* Main Content */
.main-content {
  flex: 1;
  padding: 60px 20px;
}

.contact-container {
  max-width: 700px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
}


.main-heading {
  text-align: center;
  color: #222222;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.sub-heading {
  text-align: center;
  color: #4a4a4a;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
  width: 100%;
}

.form-group label {
  display: block;
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.required {
  color: #ff3b30;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d1d6;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background-color: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: skyblue;
  box-shadow: 0 0 0 3px rgba(91, 108, 247, 0.1);
  background-color: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Phone Input */
.phone-input {
  display: flex;
  gap: 8px;
}

.country-code {
  width: 140px;
  padding: 12px;
  border: 1px solid #d1d1d6;
  border-radius: 8px;
  font-size: 15px;
  background-color: #fafafa;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.country-code:focus {
  outline: none;
  border-color: skyblue;
  box-shadow: 0 0 0 3px rgba(91, 108, 247, 0.1);
}

.phone-input input[type="tel"] {
  flex: 1;
}

/* Simple Radio Group */
.radio-group {
  display: flex;
  gap: 20px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
}

/* Slightly bigger default radio */
.radio-label input[type="radio"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}


/* Submit Button */
.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, skyblue 0%, skyblue 100%);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(91, 108, 247, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.privacy-link {
  text-align: center;
  margin-top: 16px;
}

.privacy-link a {
  color: #4a4a4a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.privacy-link a:hover {
  text-decoration: underline;
}


/* Responsive Design */
@media (max-width: 480px) {
  .main-content {
    padding: 30px 16px;
  }

  .phone-input {
    flex-direction: column;
  }

  .country-code {
    width: 100%;
  }
}


/* FAQ Page CSS */

@media (max-width: 640px) {
  .container {
    padding: 32px 16px; 
  }
}

.header2 {
  text-align: center;
  margin-bottom: 64px;
}

.header2 h1 {
  color: #222222;
}


@media (max-width: 640px) {
  h1 {
    font-size: 32px; 
  }
}

.subtitle {
  font-size: 20px; 
  color: #1c1e1f;
  max-width: 672px; 
  margin: 0 auto;
}

.faq-list {
  margin-bottom: 64px; 
  display: flex;
  flex-direction: column;
  gap: 16px; 
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px; 
  background-color: white;
  overflow: hidden;
  transition: all 0.2s ease-out;
}

.faq-item:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.faq-button {
  width: 100%;
  padding: 20px 24px; 
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 18px; 
  font-weight: 500;
  color: #111827;
  transition: background-color 0.15s ease-out;
}

.faq-button:hover {
  background-color: #f9fafb;
}

.faq-question {
  flex: 1;
  padding-right: 16px; 
}

.chevron {
  width: 20px;  
  height: 20px; 
  color: #6b7280;
  flex-shrink: 0;
  transition: transform 0.3s ease-out;
}

.faq-item.open .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-out;
  opacity: 0;
}

.faq-item.open .faq-answer {
  max-height: 384px; 
  opacity: 1;
}

.faq-answer-content {
  padding: 0 24px 20px 24px; 
  color: #4b5563;
  line-height: 1.625;
}

.support-card {
  background-color: skyblue;
  border-radius: 16px; 
  padding: 48px 32px; 
  text-align: center;
}

@media (max-width: 640px) {
  .support-card {
    padding: 32px 24px; 
  }
}

.support-card h2 {
  font-size: 30px; 
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  .support-card h2 {
    font-size: 24px; 
  }
}

.support-card p {
  color: #f1f4f7;
  margin-bottom: 24px; 
  font-size: 18px; 
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 8px; 
  background-color: white;
  color: #4a4a4a;
  padding: 12px 32px; 
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.support-link:hover {
  background-color: #f3f4f6;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.mail-icon {
  width: 20px;  
  height: 20px; 
  fill: currentColor;
}


/* about page css */
     
.about-header {
  background: white;
  border-radius: 20px;
  padding: 60px 40px;
  margin-bottom: 40px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-header h1 {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, skyblue, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.about-header p {
  font-size: 1.3rem;
  color: #585858;
  max-width: 800px;
  margin: 0 auto;
}

.content-section {
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  margin-bottom: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 30px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, skyblue, #764ba2);
  border-radius: 2px;
}

.challenges-text {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  text-align: justify;
}

.challenges-list {
  list-style: none;
  margin-left: 20px;
}

.challenges-list li {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
}

.challenges-list li::before {
  content: '•';
  color: #667eea;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -5px;
}

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

.benefit-card {
  background: linear-gradient(135deg, #f8f9ff, #e8ebff);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
}

.benefit-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, skyblue, #764ba2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto 20px;
}

.benefit-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.benefit-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .container {
      padding: 20px 15px;
  }

  .about-header {
      padding: 40px 25px;
  }

  .about-header h1 {
      font-size: 2.2rem;
  }

  .about-header p {
      font-size: 1.1rem;
  }

  .content-section {
      padding: 30px 25px;
  }

  .section-title {
      font-size: 1.8rem;
  }

  .benefits-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }
}


/* FIXED HEADER & FOOTER */

/* Fixed Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Fixed Footer */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Prevent content overlap */
main,
.hero,
.main-content,
.container {
  padding-top: 120px;   /* header height */
  padding-bottom: 80px; /* footer height */
}
