@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(135deg, #ffffff, #ffffff);
  overflow-x: hidden;
}
.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  min-height: 100vh;
  gap:40px;
}

/* Blue Background Block */
.yellow-block {
  position: absolute;
  left: 0;
  top: 50%;
  width: 380px;
  height: 50%;
  background: #0057b8; /* Premium Blue */
  z-index: -1;
  border-radius: 0 40px 40px 0;
  transform: translateY(-100%);
  margin-top: -100px;
}

/* Floating Glow Blobs (Blue & Yellow) */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: float 6s infinite alternate ease-in-out;
}

/*.blob1 { width: 260px; height: 260px; background: #f8d40a; top: 10%; left: 60%; } /* Yellow */
/*.blob2 { width: 300px; height: 300px; background: #0071e3; bottom: 10%; left: 5%; } /* Light Blue */

@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-25px); }
}

/* Glass Info Card */
.content-card {
  max-width: 700px;
  padding: 40px;
  background: rgb(255, 255, 255);
  /*backdrop-filter: blur(16px);*/
  border-radius: 22px;
  border: 1px solid rgba(14, 13, 13, 0.52);
  box-shadow: 0 12px 45px rgba(0,0,0,0.12);
  transition: transform .2s ease, box-shadow .4s ease;
  margin-top: -150px;
  margin-right: -150px;
  margin-left: 100px;
}

.content-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.15);
}

.content-card h1 {
  font-size: 38px;
  margin-bottom: 12px;
  font-weight: 700;
  color: #003c96;
}

.content-card p {
  font-size: 14px;
  color: #0f0f0f;
  line-height: 1.6;
 
}

/* Yellow Button */
.primary-btn {
  margin-top: 18px;
  padding: 12px 28px;
  background: #CC0000;
  color: #f9fbfd;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 600;
}

.primary-btn:hover {
  background: #001696;
  color: #fff;
}

/* Laptop Image */
.image-box img {
  width: 600px;
  filter: drop-shadow(0 25px 35px rgba(0,0,0,0.25));
  transition: transform .5s ease;
  margin-top: -150px;
}

.image-box img:hover {
  transform: scale(1.05);
}

/* Entry Animations */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: 1.1s ease-out;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

.from-left { transform: translateX(-60px); }
.from-right { transform: translateX(60px); }
.show.from-left,
.show.from-right { transform: translateX(0); }
/* Section Title */
.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #003c96;
  margin-bottom: 60px;
}

/* Features Zig-Zag Section */
.features-section {
  padding: 80px 10%;
  justify-content: center;
  margin-top: -50px;
}

.feature-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  margin-bottom: 100px;
  margin-top: 70px;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-img img {
  width: 400px;
  height:auto;
  border-radius: 14px;
  filter: drop-shadow(0px 10px 35px rgba(0,0,0,0.2));
  bottom: auto;
}

.feature-text h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0057b8;
}

.feature-text p {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  text-align: justify;
}
/* --- Pricing Section (Updated to match image) --- */
.pricing-section {
  padding: 60px 8%;
  text-align: center;
  margin-top: -100px; 
  margin-bottom: 50px;
}

.pricing-cards {
  display: grid; 
  grid-template-columns: repeat(2, 1fr); /* This line creates 2 equal columns */
  gap: 30px; 
  justify-content: center;
  max-width: 750px; 
  margin: 0 auto;
  margin-top: 50px;
}

/* Base Price Card Style (Matching the image) */
.price-card {
  padding: 30px 20px;
  border-radius: 18px;
  background: #fff; /* Always white background by default */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Soft shadow */
  text-align: center;
  transition: 0.3s ease-in-out;
  border: 1px solid #eee;
  cursor: pointer;
}

.tally-logo {
  width: 150px; /* Size of the logo */
  height: auto;
  margin-bottom: 10px;
}

.price-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.price-card p {
  font-size: 15px;
  color: #0f0f0f;
  margin: 5px 0;
}

.price-card .description {
  font-size: 14px;
  color: #030303;
  margin-top: 5px;
}

.price-card .edition-name {
  /* Style for SILVER/GOLD/etc. text */
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #003c96; /* Default Blue color for the name */
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 5px;
  border-bottom: 2px solid #003c96; 
  width: fit-content;
  margin: 0 auto 15px;
}

/* Hover Effect: Card changes to Blue */
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  background: #91b8f1; /* Hover to Blue */
  color: #fff; 
}

/* Ensure text inside the card changes color on hover */
.price-card:hover h3,
.price-card:hover p,
.price-card:hover .description {
  color: #fff;
}

/* Hover Effect: Edition name changes to Yellow */
.price-card:hover .edition-name {
  color: #f8d40a; /* Name text becomes Yellow on blue hover */
  border-color: #f8d40a; /* Line becomes Yellow on blue hover */
}

/* Buy Now Button Style (Yellow button) */
.price-card .whatsapp-link {
  margin-top: 20px;
  padding: 12px 30px;
  background: #f8d40a; /* Yellow button */
  color: #003c96; /* Blue text on yellow button */
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(248, 212, 10, 0.4);
}

.price-card .whatsapp-link:hover {
  background: #f0c300; /* Darker yellow on button hover */
  color: #001696;
}
@media (max-width: 1200px) {
  .content-card {
      margin-right: 0;
      margin-left: 0;
  }
  .hero {
      padding: 50px 5%;
      min-height: auto;
  }
}

@media (max-width: 992px) {
  .hero {
      flex-direction: column;
      padding-top: 100px;
      text-align: center;
  }
  .content-card, .image-box {
      margin-top: 0;
      margin-left: auto;
      margin-right: auto;
  }
  .image-box img {
      width: 100%;
      max-width: 500px;
  }
  .feature-row, .feature-row.reverse {
      flex-direction: column;
      gap: 30px;
  }
  .feature-img img {
      width: 100%;
      max-width: 400px;
  }
}