.elementor-kit-18{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-18 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */<style>
:root {
  --3d-primary: #4f46e5;       /* Indigo */
  --3d-primary-dark: #3730a3;
  --3d-bg: #f3f4f6;             /* Light Gray Background */
  --3d-text: #1f2937;
  --3d-text-light: #6b7280;
  
  /* The 3D Magic Shadows */
  --shadow-flat: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-float: 
    0 10px 15px -3px rgba(0,0,0,0.1), 
    0 4px 6px -2px rgba(0,0,0,0.05),
    0 20px 25px -5px rgba(0,0,0,0.1); /* Deep Shadow */
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  
  --card-radius: 20px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--3d-bg);
  color: var(--3d-text);
  line-height: 1.6;
}

.fin-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 3D Button Style */
.btn-3d {
  background: linear-gradient(145deg, #4f46e5, #4338ca);
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-block;

  /* Remove link behavior */
  text-decoration: none;
  outline: none;

  /* 3D effect */
  box-shadow:
    0 10px 20px rgba(79, 70, 229, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.2);
  border-bottom: 4px solid #312e81;

  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

/* 🔒 Lock text style everywhere */
.btn-3d:hover,
.btn-3d:focus,
.btn-3d:active,
.btn-3d:visited {
  color: #ffffff;
  text-decoration: none;
}
/* 🔥 Force remove underline from button link in ALL states */
a.btn-3d,
a.btn-3d:hover,
a.btn-3d:focus,
a.btn-3d:active,
a.btn-3d:visited {
  text-decoration: none !important;
  text-decoration-line: none !important;
  color: #ffffff !important;
}

/* ✅ Press effect without layout shift */
.btn-3d:active {
  transform: translateY(2px);
  box-shadow:
    0 4px 8px rgba(79, 70, 229, 0.25),
    inset 0 3px 6px rgba(0,0,0,0.25);
}


/* 3D Card Style */
.card-3d {
  background: white;
  border-radius: var(--card-radius);
  padding: 30px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid white;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05); /* Flat initially */
  top: 0;
}
.card-3d:hover {
  top: -10px; /* Physically moves up */
  box-shadow: var(--shadow-float);
  border-color: #e0e7ff;
}

/* Section Text Styling */
.intro-box {
  max-width: 800px;
  margin: 0 auto 10px;
  text-align: center;
}
.intro-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--3d-text);
  letter-spacing: -0.5px;
}
.intro-desc {
  font-size: 1.1rem;
  color: var(--3d-text-light);
}
</style>



<style>
/* --- TRENDING SECTION STYLES (Responsive Fixed) --- */

.trend-wrapper {
  padding: 40px 20px;
  background: #f8fafc;
}

/* The Special "Hot" Card */
.trend-card {
  background: linear-gradient(135deg, #ffffff 0%, #fefce8 100%); /* Subtle Gold Tint */
  border: 2px solid #fbbf24; /* Gold Border */
  border-radius: 20px;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 20px 40px -10px rgba(251, 191, 36, 0.2);
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: visible; /* Allows badge to pop out slightly */
  transition: transform 0.3s;
}

.trend-card:hover {
  transform: translateY(-5px);
}

/* Floating "Trending" Badge */
.trend-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ef4444; /* Red */
  color: white;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.4);
  animation: pulse 2s infinite;
  z-index: 2;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Content Layout */
.trend-content { flex: 1; }

.trend-visual { 
  flex: 0 0 auto; /* Don't shrink */
  display: flex; 
  justify-content: center; 
  align-items: center;
}

.trend-icon-big {
  font-size: 4.5rem;
  background: #fff;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border: 4px solid #fde047;
}

.trend-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #1f2937;
  margin-bottom: 10px;
  line-height: 1.2;
}

.trend-desc {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 25px;
  line-height: 1.6;
}

.trend-stats {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.t-stat-item {
  background: rgba(255,255,255,0.8);
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid #fde68a;
  font-size: 0.9rem;
  font-weight: 700;
  color: #92400e;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* --- MOBILE RESPONSIVE FIXES --- */
@media (max-width: 768px) {
  .trend-card {
    flex-direction: column; /* Stack vertically */
    text-align: center;
    padding: 30px 20px; /* Less padding */
    gap: 20px;
  }

  .trend-visual { 
    margin-top: 10px; 
    order: -1; /* Move Icon to TOP */
  }

  .trend-icon-big {
    width: 90px;
    height: 90px;
    font-size: 3rem; /* Smaller icon */
  }

  .trend-title {
    font-size: 1.8rem; /* Smaller title */
  }

  .trend-desc {
    font-size: 1rem;
  }

  .trend-stats {
    justify-content: center; /* Center align tags */
    gap: 10px;
  }

  .trend-badge {
    position: static; /* No longer floating absolute */
    display: inline-block;
    margin-bottom: 15px;
    transform: none !important; /* Stop pulse to save battery/distraction */
    animation: none;
  }
}
</style>






<style>
/* --- CONTACT SPECIFIC STYLES --- */

/* The Grid Layout */
.cnt-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr; /* Info takes less space, Form takes more */
  gap: 40px;
  padding-bottom: 20px;
}

/* Info Item Styling */
.cnt-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}
.cnt-icon {
  width: 50px;
  height: 50px;
  background: #e0e7ff; /* Light Indigo */
  color: var(--3d-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-flat);
}
.cnt-text h4 {
  margin: 0 0 5px;
  color: var(--3d-text);
  font-size: 1.1rem;
  font-weight: 700;
}
.cnt-text p, .cnt-text a {
  margin: 0;
  color: var(--3d-text-light);
  font-size: 0.95rem;
  text-decoration: none;
}
.cnt-text a:hover {
  color: var(--3d-primary);
}

/* Form Inputs (Matching the 3D Theme) */
.cnt-group {
  margin-bottom: 20px;
}
.cnt-label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--3d-text);
  margin-bottom: 8px;
}
.cnt-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  background: #f9fafb;
  color: var(--3d-text);
  outline: none;
  transition: all 0.2s;
  font-family: inherit;
}
.cnt-input:focus {
  border-color: var(--3d-primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}
textarea.cnt-input {
  resize: vertical;
  min-height: 120px;
}

/* Responsive */
@media (max-width: 768px) {
  .cnt-grid { grid-template-columns: 1fr; }
}
</style>

<style>
/* --- NEW FIX FOR SIDE-BY-SIDE --- */

.force-row {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Always 2 columns */
  gap: 20px;
  margin-bottom: 20px;
}

/* Specific adjustments for Mobile to make side-by-side fit */
@media (max-width: 600px) {
  .force-row {
    gap: 10px; /* Smaller gap on mobile */
  }
  
  /* Make the cards inside this row more compact on mobile */
  .force-row .card-3d {
    padding: 15px !important; /* Reduce padding */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center align content */
    text-align: center;
  }
  
  .force-row .cnt-info-item {
    flex-direction: column; /* Stack icon above text inside the small card */
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
  }
  
  /* Adjust font sizes for tight spaces */
  .force-row h4 { font-size: 0.9rem !important; }
  .force-row p { font-size: 0.8rem !important; display: none; /* Hide description on very small screens to save space */ }
  .force-row a { font-size: 0.8rem !important; word-break: break-all; }
}
</style>


<style>
/* --- 8th CPC Specific Styles --- */

/* Reusing your Global Variables for consistency */
:root {
  --cpc-primary: #4f46e5;
  --cpc-bg: #f3f4f6;
  --cpc-card: #ffffff;
  --cpc-text: #1f2937;
  --cpc-green: #059669;
}

.cpc-wrapper {
  font-family: 'Inter', sans-serif;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  color: var(--cpc-text);
}

/* Header */
.cpc-header {
  text-align: center;
  padding: 40px 0;
}
.cpc-badge {
  background: #dbeafe;
  color: #1e40af;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
}

/* Grid */
.cpc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* 3D Card (Matches your theme) */
.cpc-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid #ffffff;
  transition: transform 0.2s;
}
.cpc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-color: #e0e7ff;
}

/* Inputs */
.cpc-input-group { margin-bottom: 25px; }
.cpc-label { font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; display: block; color: #374151; }
.cpc-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  outline: none;
  background: #f9fafb;
}
.cpc-input:focus { border-color: var(--cpc-primary); background: #fff; }

/* Fitment Factor Toggles */
.factor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.factor-btn {
  padding: 10px;
  border: 2px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  color: #6b7280;
  transition: 0.2s;
}
.factor-btn.active {
  border-color: var(--cpc-primary);
  background: #e0e7ff;
  color: var(--cpc-primary);
}

/* Results */
.cpc-result-box {
  background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
  color: white;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}
.res-val { font-size: 2.2rem; font-weight: 800; margin: 5px 0; }
.res-sub { font-size: 0.9rem; opacity: 0.9; }

/* Table */
.cpc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.cpc-table td { padding: 10px 0; border-bottom: 1px solid #f3f4f6; }
.cpc-table td:last-child { text-align: right; font-weight: 700; }

/* Responsive */
@media (max-width: 768px) {
  .cpc-grid { grid-template-columns: 1fr; }
  .factor-grid { font-size: 0.8rem; }
}
</style>/* End custom CSS */