/* =====================
   GLOBAL RESET & VARIABLES
   ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --primary: #a60ed9;
  --secondary: #3E92CC;
  --gold-primary: #FFD700;
  --gold-secondary: #171717;
  --accent: #FF7F11;
  --dark: #0858ae;
  --dark-secondary: #acbad3;
  --text: #08101c;
  --text-muted: #1c68e2;
  --glass-border: rgba(255, 215, 0, .25);
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, var(--dark) 0%, #2a5ca6 30%, var(--dark-secondary) 70%, #04327c 100%);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(240, 147, 251, .95), rgba(245, 87, 108, .95), rgba(102, 126, 234, .95));
  backdrop-filter: blur(24px);
  border-bottom: 3px solid rgba(240, 147, 251, .5);
  box-shadow: 0 4px 12px rgba(240, 147, 251, .3);
  z-index: 1000;
}

.nav-container {
  max-width: 1600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}


.nav-menu {
  display: flex;
  padding: 20px;
  list-style: none;
}

.nav-link {
  color: #E0E0E0;
  text-decoration: none;
  font-weight: 600;
  padding: .5rem 1rem;
  border-radius: 10px;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(240, 147, 251, .3);
}

.navbar.scrolled {
  background: linear-gradient(135deg, rgba(240, 147, 251, .98), rgba(245, 87, 108, .98), rgba(102, 126, 234, .98));
  box-shadow: 0 10px 40px rgba(240, 147, 251, .4);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #F5F5F5;
  font-size: 1.4rem;
}

/* =====================
   BUTTON SECTION
   ===================== */
.button-section {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, .2);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(255, 255, 255, .3);
  z-index: 999;
}

.action-btn {
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: all .3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.btn-rent {
  background: linear-gradient(135deg, #F4D03F, #D4AF37);
  color: #0A0E27;
}

.btn-rent:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, .6);
}

.btn-activation {
  background: linear-gradient(135deg, #6C5CE7, #5F4BDB);
  color: #fff;
}

.btn-activation:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(108, 92, 231, .6);
}

.btn-files {
  background: linear-gradient(135deg, #E8B4B8, #D4A5A5);
  color: #0A0E27;
}

.btn-files:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(232, 180, 184, .6);
}

/* =====================
   HERO / HEADER
   ===================== */

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 30px 0 35px;
}

/* COMMON BUTTON */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: .35s ease;
  cursor: pointer;
}

/* GOLD BUTTON */
.btn-primary {
  background: linear-gradient(135deg, #F4D03F, #D4AF37);
  color: #0A0E27;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(212, 175, 55, .4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, .6);
}

/* PURPLE BUTTON */
.btn-secondary {
  background: linear-gradient(135deg, #6C5CE7, #5F4BDB);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(108, 92, 231, .4);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(108, 92, 231, .6);
}

/* ROSE GOLD BUTTON */
.btn-tertiary {
  background: linear-gradient(135deg, #E8B4B8, #D4A5A5);
  color: #0A0E27;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(232, 180, 184, .4);
}

.btn-tertiary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(232, 180, 184, .6);
}

/* OUTLINE BUTTON */
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .8) !important;
}

.btn-outline:hover {
  background: #fff;
  color: #0f6b55;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
}

/* WHITE TILTED FRAME */
.hero-frame {

  border: 8px solid #fff;
  border-radius: 24px;
  padding: 22px;

  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}

/* IMAGE STRAIGHT INSIDE FRAME */
.hero-frame img {
  width: 100%;
  max-width: 520px;
  display: block;
  border-radius: 14px;

}


.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* =====================
   POPULAR TOOLS
   ===================== */
.popular-tools {
  padding: 5rem 2rem;
  max-width: 1500px;
  margin: auto;
}

.tools-header {
  text-align: center;
  margin-bottom: 3rem;
}

.tools-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
}

.underline {
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin: 12px auto;
  border-radius: 10px;
}

.tools-header p {
  color: var(--text-muted);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.tool-card {
  background: #fff;
  color: #111827;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .2);
  transition: .3s;
  display: flex;
  flex-direction: column;
}

.tool-card:hover {
  transform: translateY(-8px);
}

.tool-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: #f3f4f6;
  padding: 20px;
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #E11D48;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
}

.tool-card h3 {
  margin: 1rem 0 .5rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  min-height: 2.6rem;
}

.price {
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 800;
}

.price span {
  font-size: .9rem;
  color: #6B7280;
}

.status {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: .9rem;
  margin: .8rem 0;
}

.ok {
  color: var(--primary)
}

.out {
  color: #F97316
}

.rent-btn {
  display: inline-block;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  color: #fff;
  padding: 12px 26px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* =====================
   FOOTER (FINAL)
   ===================== */
.footer {
  background: linear-gradient(135deg, rgba(8, 9, 14, 0.95), rgba(13, 20, 36, 0.95), rgba(5, 15, 32, 0.95));
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 4rem 2rem 2rem;
  border-top: 3px solid rgba(96, 165, 250, .4);
  margin-top: 40px;
  box-shadow: 0 -10px 40px rgba(30, 58, 138, .3),
    inset 0 1px 0 rgba(255, 255, 255, .1);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, .5), transparent);
}

.footer-container {
  max-width: 1600px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-section p,
.footer-section a {
  color: var(--text-muted);
  text-decoration: none;
  line-height: 1.7;
}

.footer-section a:hover {
  color: var(--gold-primary);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .08);
  color: var(--gold-primary);
  transition: .3s;
}

.social-link:hover {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  color: #000;
}

.footer-bottom {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: var(--text-muted);
  font-size: .95rem;
}

/* =====================
   RESPONSIVE
   ===================== */
@media(max-width:1024px) {
  .hero-container {
    gap: 40px;
  }

  .tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .why-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media(max-width:768px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(240, 147, 251, .98), rgba(245, 87, 108, .98), rgba(102, 126, 234, .98));
    backdrop-filter: blur(30px);
    padding: 1.5rem 2rem;
    gap: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .3);
    z-index: 999;
  }

  .nav-menu.mobile-open {
    display: flex
  }

  .mobile-menu-btn {
    display: block;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .mobile-menu-btn:hover {
    background: rgba(255, 255, 255, .2);
  }

  .nav-link {
    padding: 1rem;
    width: 100%;
    text-align: center;
    border-radius: 12px;
  }

  .hero {
    padding: 120px 1.5rem 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-image {
    order: -1;
  }

  .hero-frame {
    border: 5px solid #fff;
    padding: 15px;
  }

  .hero-frame img {
    max-width: 100%;
  }

  .popular-tools {
    padding: 3rem 1.5rem;
  }

  .tools-header h2 {
    font-size: 2rem;
  }

  .tools-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tool-card {
    padding: 1.5rem;
  }

  .tool-card img {
    height: 150px;
  }

  .why-section {
    padding: 3rem 1.5rem;
  }

  .why-header h2 {
    font-size: 2rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-card {
    padding: 2rem 1.5rem;
  }

  .footer {
    padding: 3rem 1.5rem 2rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .button-section {
    top: 60px;
    flex-direction: column;
    gap: 12px;
    padding: 15px 10px;
  }

  .action-btn {
    width: 95%;
    padding: 14px 25px;
    font-size: 0.95rem;
  }
}

@media(max-width:480px) {
  .hero {
    padding: 100px 1rem 40px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .popular-tools,
  .why-section {
    padding: 2rem 1rem;
  }

  .tools-header h2,
  .why-header h2 {
    font-size: 1.8rem;
  }

  .tool-card {
    padding: 1.2rem;
  }

  .tool-card img {
    height: 120px;
  }

  .why-card {
    padding: 1.5rem 1rem;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .footer {
    padding: 2rem 1rem 1.5rem;
  }
}

/* =====================
   WHY CHOOSE US (CARDS)
   ===================== */
.why-section {

  padding: 5rem 2rem;
}

.why-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.why-header h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #19c37d;
}

.why-header p {
  color: #ffffff;
  font-size: 1.05rem;
  margin-top: 1rem;
}

.why-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.why-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  transition: .35s ease;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5e4d4;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s ease;
  z-index: 0;
}

.why-card:hover::before {
  transform: scaleY(1);
}

.why-card * {
  position: relative;
  z-index: 1;
}

.why-card:hover {
  border-top: 4px solid #ff7a18;
}


.why-card:hover {
  background: #f3e0ce;
  border-top: 4px solid #ff7a18;
}


.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #16c47f, #3e92cc);
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.why-card h3 {
  color: #16c47f;
  font-size: 1.3rem;
  margin-bottom: .8rem;
}

.why-card p {
  color: #4b5563;
  line-height: 1.6;
  font-size: .95rem;
}

.hero {
  min-height: 100vh;

  color: #fff;
  display: flex;
  align-items: center;
  padding: 152px 6%;
}


.hero-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}


.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, .15);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 20px;
}


.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #F4D03F, #FF6B9D, #6C5CE7, #4FACFE, #F4D03F);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 5s ease infinite;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 20px rgba(244, 208, 63, .3));
}


.hero p {
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .95);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .2);
}


.hero-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
}


.btn {
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
}


.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 42px;
  /* yahin size control hota hai */
  width: auto;
  transition: .3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.app-download {
  margin-top: 2rem;
}

.app-download p {
  color: #9CA3AF;
  margin-bottom: .8rem;
  font-size: .95rem;
}

/* GOOGLE PLAY BUTTON */
.play-btn {
  display: inline-block;
  transition: .3s ease;
}

.play-btn img {
  height: 52px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
}

/* HOVER EFFECT */
.play-btn:hover {
  transform: translateY(-3px);
}

.play-btn:hover img {
  box-shadow: 0 15px 35px rgba(0, 0, 0, .35);
}

/* =====================
   TOOLS RENT PAGE - UNIQUE COLORS
   ===================== */
body.tools-rent-page {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
  background-size: 400% 400%;
  animation: gradientShift 20s ease infinite;
}

body.tools-rent-page .hero {
  background: linear-gradient(135deg, rgba(4, 7, 20, 0.95), rgba(116, 7, 225, 0.95));
  border-bottom: 3px solid rgba(240, 147, 251, 0.5);
}

body.tools-rent-page .hero h1 {
  background: linear-gradient(135deg, #b493fb, #f5576c, #4facfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.tools-rent-page .popular-tools {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(240, 147, 251, 0.3);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

body.tools-rent-page .tools-header h2 {
  background: linear-gradient(135deg, #ad93fb, #f5576c, #4facfe, #667eea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.tools-rent-page .underline {
  background: linear-gradient(90deg, #c993fb, #f5576c, #4facfe);
  height: 5px;
  box-shadow: 0 2px 10px rgba(240, 147, 251, 0.5);
}

body.tools-rent-page .tool-card {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.95), rgba(240, 147, 251, 0.9));
  border: 2px solid rgba(240, 147, 251, 0.5);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4),
    0 0 0 1px rgba(240, 147, 251, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

body.tools-rent-page .tool-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(2, 20, 35, 0.8);
  box-shadow: 0 25px 60px rgba(102, 126, 234, 0.5),
    0 0 0 2px rgba(25, 145, 197, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 0 50px rgba(240, 147, 251, 0.4);
  background: linear-gradient(135deg, rgba(80, 7, 153, 0.95), rgba(240, 147, 251, 1), rgba(245, 87, 108, 0.95));
}

body.tools-rent-page .tool-card img {
  background: rgba(102, 126, 234, 0.2);
  border-radius: 10px;
}

body.tools-rent-page .badge {
  background: linear-gradient(135deg, #f5576c, #f093fb);
  box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

body.tools-rent-page .rent-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f093fb, #f5576c, #4facfe);
  border: none;
  color: #fff;
  box-shadow: 0 8px 25px rgba(240, 147, 251, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

body.tools-rent-page .rent-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(240, 147, 251, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #f5576c, #4facfe, #667eea);
}

body.tools-rent-page .price {
  color: #fff;
  text-shadow: 0 2px 10px rgba(240, 147, 251, 0.5);
}

body.tools-rent-page .ok {
  color: #4facfe;
  font-weight: 700;
}
