/* 
  GetIPLIndia Custom Styles
  Theme: Deep Dark, Premium, High Conversion
*/

:root {
  /* Colors */
  --bg-primary: #050505;
  --bg-secondary: #0d0f12;
  --bg-card: #15181e;
  
  --accent-primary: #ffc95c;
  --accent-secondary: #ff4d4d;
  --accent-glow: rgba(255, 201, 92, 0.4);
  --accent-red-glow: rgba(255, 77, 77, 0.4);
  
  --text-primary: #ffffff;
  --text-secondary: #a3a8b8;
  --border-color: rgba(255, 255, 255, 0.08);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--accent-primary) 0%, #ff9800 100%);
  --gradient-secondary: linear-gradient(135deg, var(--accent-secondary) 0%, #e63946 100%);
  --gradient-text: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
  --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ================== Global ================== */
body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ================== Typography & Utilities ================== */
.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.text-accent {
  color: var(--accent-primary);
}

.text-secondary-light {
  color: var(--text-secondary);
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 700px;
}

.max-w-800 {
  max-width: 800px;
}

/* ================== Header ================== */
.top-header {
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.brand-logo {
  max-width: 250px;
  width: 100%;
}

.brand-logo img{
  width: 100%;
  height: 100%;
}

.menu-link {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.menu-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--gradient-text);
  transition: width 0.3s ease;
}

.menu-link:hover {
  color: var(--accent-primary);
}

.menu-link:hover::after {
  width: 100%;
}

/* ================== Buttons ================== */
.btn-glow {
  background: var(--gradient-primary);
  color: #000 !important;
  font-weight: 700;
  font-family: var(--font-heading);
  border: none;
  border-radius: 50px;
  padding: 0.8rem 2.5rem;
  box-shadow: 0 0 20px var(--accent-glow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff9800 0%, var(--accent-primary) 100%);
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px var(--accent-glow);
}

.btn-glow:hover::before {
  opacity: 1;
}

.btn-outline-glow {
  background: transparent;
  color: var(--text-primary) !important;
  font-weight: 600;
  font-family: var(--font-heading);
  border: 2px solid var(--accent-primary);
  border-radius: 50px;
  padding: 0.75rem 2.5rem;
  box-shadow: inset 0 0 10px rgba(255, 201, 92, 0.1), 0 0 10px rgba(255, 201, 92, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-outline-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-primary);
  z-index: -1;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scaleX(0);
  transform-origin: right;
}

.btn-outline-glow:hover {
  color: #000 !important;
  box-shadow: 0 10px 25px var(--accent-glow);
  transform: translateY(-3px);
  border-color: transparent;
}

.btn-outline-glow:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* ================== UI Components ================== */
.premium-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-card);
  z-index: -1;
  pointer-events: none;
}

.premium-card:hover {
  border-color: rgba(255, 201, 92, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 201, 92, 0.05);
}

.glass-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* ================== Sections ================== */

/* Hero Section */
.hero-section {
  min-height: 700px;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, rgba(5,5,5,0) 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-primary);
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin-bottom: 2rem;
}

/* About Section */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  display: inline-block;
}

.feature-list li a{
  color: var(--accent-primary);
  margin-left: 3px;
}

.feature-list i {
  color: var(--accent-primary);
  font-size: 1.25rem;
  margin-right: 15px;
  border-radius: 50%;
}

.image-card-placeholder {
  min-height: 400px;
  background: linear-gradient(145deg, #12141a 0%, #0d0f12 100%);
}

.glow-orb {
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--accent-red-glow);
  filter: blur(60px);
  border-radius: 50%;
}

/* Steps Section */
.steps-bg-glow {
  position: absolute;
  top: 50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-red-glow) 0%, rgba(5,5,5,0) 70%);
  z-index: 0;
  pointer-events: none;
}

.step-card {
  padding-top: 3rem;
}

.step-number {
  position: absolute;
  top: -15px;
  right: 20px;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  font-family: var(--font-heading);
  line-height: 1;
  transition: color 0.3s ease;
}

.step-card:hover .step-number {
  color: rgba(255, 201, 92, 0.1);
}

.step-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.step-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.step-card p a{
  color: var(--accent-primary);
}

/* Why Choose */
.feature-box {
  transition: all 0.3s ease;
}

.cta-card {
  background: linear-gradient(145deg, var(--bg-card) 0%, #1a1515 100%);
  border-color: rgba(255, 77, 77, 0.2);
}

/* Join Section */
.join-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.join-bg-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(130 0 0 / 0%) 0%, rgb(80 0 0 / 30%) 100%);
  z-index: 0;
  pointer-events: none;
}

/* FAQ Section */
.custom-accordion .accordion-item {
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 12px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.custom-accordion .accordion-button {
  background: var(--bg-card);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: none !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: rgba(255, 201, 92, 0.05);
  color: var(--accent-primary);
  border-bottom: 1px solid var(--border-color);
}

.custom-accordion .accordion-button::after {
  filter: invert(1);
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  filter: invert(75%) sepia(26%) saturate(1478%) hue-rotate(338deg) brightness(101%) contrast(105%);
}

.custom-accordion .accordion-body {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 1.5rem;
  line-height: 1.7;
}

/* Footer */
.footer-title {
  font-size: 2rem;
}

.footer-links a {
  color: var(--text-secondary);
  margin: 0 10px;
}

.footer-links a:hover {
  color: var(--accent-primary);
}

/* ================== Animations (Intersection Observer targets) ================== */
.fade-in-up, .slide-in-left, .slide-in-right, .zoom-in {
  opacity: 0;
}

/* Defaults before js kicks in if js is disabled */
noscript .fade-in-up,
noscript .slide-in-left,
noscript .slide-in-right,
noscript .zoom-in {
  opacity: 1;
}

.fade-in-up.visible {
  animation: fadeInUp 0.8s ease forwards;
}

.slide-in-left.visible {
  animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right.visible {
  animation: slideInRight 0.8s ease forwards;
}

.zoom-in.visible {
  animation: zoomIn 0.6s ease forwards;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 10px var(--accent-glow);
  }
  50% {
    box-shadow: 0 0 25px var(--accent-glow), 0 0 10px var(--accent-primary);
  }
  100% {
    box-shadow: 0 0 10px var(--accent-glow);
  }
}

/* ================== New Additions ================== */
.section-gradient {
  background: linear-gradient(135deg, #820000 0%, #500000 100%);
}

.floating-icons {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1050;
}

.float-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.float-icon:hover {
  transform: scale(1.1);
  color: #fff;
}

.whatsapp-float {
  background-color: #25d366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.telegram-float {
  background-color: #0088cc;
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}

.img-glow-container {
  position: relative;
}

.img-glow-container::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, var(--accent-glow) 0%, rgba(5,5,5,0) 70%);
  z-index: -1;
  pointer-events: none;
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(130 0 0 / 0%) 0%, rgb(80 0 0 / 30%) 100%);
  z-index: 0;
}

.page-header {
  padding: 150px 0 50px;
  background: linear-gradient(135deg, rgba(130, 0, 0, 0.4) 0%, rgba(80, 0, 0, 0.1) 100%);
  border-bottom: 1px solid var(--border-color);
}
.content-section {
  padding: 60px 0;
  color: var(--text-secondary);
}
.content-section h1, .content-section h2, .content-section h3, 
.content-section h4, .content-section h5, .content-section h6 {
  color: var(--text-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.content-section h1 { font-size: 2.5rem; }
.content-section h2 { font-size: 2rem; border-bottom: 1px solid var(--border-color); padding-bottom: 0.5rem; }
.content-section h3 { font-size: 1.75rem; color: var(--accent-primary); }
.content-section h4 { font-size: 1.5rem; }
.content-section h5 { font-size: 1.25rem; }
.content-section h6 { font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; color: var(--accent-secondary); }

.content-section p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-section ul, .content-section ol {
  margin-bottom: 2rem;
  padding-left: 20px;
}

.content-section li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}


/* ================== Responsive Adjustments ================== */
/* Tablet & Small Desktop */
@media (max-width: 1199.98px) {
  .section-title { font-size: 2.25rem; }
  .hero-title { font-size: 2.5rem; }
}

@media (max-width: 991.98px) {
  .section-title { font-size: 2rem; }
  .hero-title { font-size: 2.25rem; }
  .premium-card { padding: 1rem; }
  .btn-glow {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }

  .brand-logo {
    max-width: 220px;
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .hero-section {
    padding-top: 100px;
    padding-bottom: 50px;
    min-height: auto;
  }
  .section-title { font-size: 1.75rem; }
  .hero-title { font-size: 1.8rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .section-desc, p { font-size: 0.95rem; }
  
  .step-card { padding-top: 2rem; }
  .step-number { font-size: 3rem; }
  
  .btn-glow, .btn-outline-glow {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    width: auto;
    margin-bottom: 0.5rem;
  }
  
  .floating-icons {
    right: 15px;
    gap: 10px;
  }
  .float-icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
  
  .feature-list li {
    font-size: 0.95rem;
    align-items: flex-start;
  }
  /* .feature-list svg {
    margin-top: 4px;
  } */
  
  .blog-image-wrapper { height: 180px !important; }
}

/* Small Mobile */
@media (max-width: 575.98px) {
  .section-title { font-size: 1.5rem; }
  .hero-title { font-size: 1.6rem; }
  .join-section .glass-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .brand-logo {
    max-width: 180px;
    width: 100%;
  }

  .footer{
    font-size: 12px;
  }
}