@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
  font-family: 'Poppins', sans-serif;
}

.manage-section {
  background: linear-gradient(145deg, #0f0f23 0%, #1a1a3e 50%, #2d1b69 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.manage-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
  z-index: 1;
  animation: gradientShift 20s ease infinite;
}

/* Section Header */
.section-header {
  position: relative;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(45deg, #ff6b6b, #ffd93d);
  color: white;
  padding: 8px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
  animation: badgeGlow 2s ease-in-out infinite alternate;
}

.section-title {
  color: white;
  font-size: 42px;
  font-weight: 800;
  margin: 20px 0 15px;
  background: linear-gradient(45deg, #fff, #a8b4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 400;
  max-width: 500px;
  margin: 0 auto;
}

/* Feature Cards */
.manage_1i {
  height: 100%;
  margin-bottom: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 45px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.feature-card:hover {
  transform: translateY(-20px) scale(1.02);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before {
  left: 100%;
}

/* Icon Wrappers */
.icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  border-radius: 20px;
  transition: all 0.4s ease;
  overflow: hidden;
}

.icon-wrapper i {
  font-size: 28px;
  z-index: 2;
  position: relative;
  color: white;
}

.icon-wrapper.wifi {
  background: linear-gradient(135deg, #667eea, #764ba2);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.icon-wrapper.price {
  background: linear-gradient(135deg, #f093fb, #f5576c);
  box-shadow: 0 15px 35px rgba(240, 147, 251, 0.4);
}

.icon-wrapper.bill {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  box-shadow: 0 15px 35px rgba(79, 172, 254, 0.4);
}

.icon-wrapper.tech {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
  box-shadow: 0 15px 35px rgba(67, 233, 123, 0.4);
}

/* Pulse Animation */
.pulse-ring {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: pulse 2s infinite;
}

.pulse-ring-2 {
  animation-delay: 1s;
}

/* Special Effects */
.secure-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #00ff88;
  color: #000;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 255, 136, 0.4);
}

.sparkle::before,
.sparkle::after {
  content: '✨';
  position: absolute;
  font-size: 12px;
  animation: sparkle 1.5s infinite;
}

.sparkle::after {
  animation-delay: 0.75s;
}

.tech-lines span {
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  animation: techLine 2s infinite;
}

.tech-lines span:nth-child(1) { width: 60%; height: 2px; top: 20%; left: 20%; animation-delay: 0s; }
.tech-lines span:nth-child(2) { width: 2px; height: 60%; top: 20%; right: 20%; animation-delay: 0.5s; }
.tech-lines span:nth-child(3) { width: 40%; height: 1px; bottom: 20%; left: 30%; animation-delay: 1s; }

/* Stats */
.stats {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat.green { color: #43e97b; }
.stat.blue { color: #4facfe; }
.stat.purple { color: #a8b4ff; }

/* Titles & Text */
.title {
  color: white;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.float-el {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: float 6s ease-in-out infinite;
}

.float-1 { width: 80px; height: 80px; top: 20%; left: 10%; animation-delay: 0s; }
.float-2 { width: 120px; height: 120px; top: 60%; right: 15%; animation-delay: 2s; }
.float-3 { width: 60px; height: 60px; bottom: 20%; left: 20%; animation-delay: 4s; }

/* Animations */
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

@keyframes gradientShift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

@keyframes badgeGlow {
  0% { box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4); }
  100% { box-shadow: 0 5px 25px rgba(255, 107, 107, 0.6); }
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0; }
  50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
}

@keyframes techLine {
  0%, 100% { transform: scaleX(0); }
  50% { transform: scaleX(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Responsive */
@media (max-width: 768px) {
  .manage-section { padding: 80px 0; }
  .section-title { font-size: 32px; }
  .feature-card { padding: 30px 20px; margin-bottom: 25px; }
  .stats { flex-direction: column; gap: 5px; }
}



/* PAPER ORIGAMI - Copy & Paste */
#about_h {
  padding: 9rem 0 !important;
  background: linear-gradient(135deg, #fefce8 0%, #fef3c7 50%, #fde68a 100%);
}

.about_h_1l {
  background: white;
  border-radius: 0;
  padding: 6rem 5rem;
  box-shadow: 
    40px 40px 80px rgba(0,0,0,0.1),
    -20px -20px 40px rgba(255,255,255,0.8);
  transform: rotate(-1deg);
  position: relative;
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 10% 100%);
}

.about_h_1l::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, #fefce8, #fef3c7);
  z-index: -1;
  clip-path: polygon(5% 0, 100% 10%, 95% 100%, 0 90%);
  box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
}

.col_oran.font_14.hline {
  color: #92400e !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  letter-spacing: 3px;
  line-height: 1.4;
  padding: 1.5rem 3rem;
  background: rgba(254,252,232,0.8);
  border: 3px solid #f59e0b;
  border-radius: 0;
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
  box-shadow: 10px 10px 20px rgba(245,158,11,0.3);
  transform: rotate(1deg);
}

.font_52 {
  font-size: clamp(4.2rem, 8.5vw, 6.5rem) !important;
  font-weight: 200 !important;
  color: #1f2937 !important;
  line-height: 1.05;
  letter-spacing: -0.02em;
  transform: rotate(0.5deg);
  margin-bottom: 1.5rem;
}

.font_52 span {
  color: #d97706 !important;
  font-weight: 500 !important;
  text-shadow: 0 2px 4px rgba(217, 119, 6, 0.2);
}

.about_h_1li {
  background: rgba(254,252,232,0.7);
  border: 2px dashed #f59e0b;
  border-radius: 24px;
  clip-path: polygon(5% 0, 95% 0, 100% 20%, 100% 80%, 95% 100%, 5% 100%, 0 80%, 0 20%);
  transform: rotate(-0.5deg);
  padding: 2rem;
}

.effect-jazz {
  border-radius: 24px !important;
  height: 500px !important;
  transform: rotate(1deg);
  box-shadow: 30px 30px 60px rgba(0,0,0,0.15);
  border: 4px solid #fefce8;
}

/* Headings - IMPROVED */
section[id$="-price"] h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  background: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(26, 115, 232, 0.2);
}

section[id$="-price"] h6 {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ff7f50;
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(255, 127, 80, 0.3);
}

/* Price cards - ENHANCED TEXT */
.price-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 2.5rem 2rem;
  margin: 0 15px;
  text-align: center;
  transition:
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s ease;
  min-width: 260px;
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a73e8, #4285f4, #34a853);
}

.price-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.price-card h1 {
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, #1a73e8 0%, #4285f4 50%, #34a853 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 1rem 0 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.price-card p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.price-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 14px 32px;
  background: linear-gradient(135deg, #e83c1a 0%, #ff6b35 100%);
  color: #fff !important;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(232, 60, 26, 0.3);
  position: relative;
  overflow: hidden;
}

.price-card a::before {
  content: '→';
  transition: transform 0.3s ease;
}

.price-card a:hover {
  background: linear-gradient(135deg, #c8231a 0%, #e83c1a 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 60, 26, 0.4);
}

.price-card a:hover::before {
  transform: translateX(5px);
}

/* Hover effect */
.price-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .price-card {
    flex: 0 0 auto;
    margin: 0 10px 2rem;
    padding: 2rem 1.5rem;
  }
  
  .price-card h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  
  .col_oran.font_14.hline {
    font-size: 1rem !important;
    padding: 1.2rem 2rem;
    letter-spacing: 2px;
  }
}

/*********************price_end****************/

/*********************cust***********/
#cust {
  background-color: #161528;
}
.cust_2i {
  padding: 35px 35px 35px 35px;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 4px 4px 4px 4px;
}
.cust_2i:hover {
  background: #ff6a3f;
}

/*********************consult_o_end****************/

@media screen and (max-width: 767px) {
  .center_1 h1 {
    font-size: 50px;
  }
  .center_h {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .manage_1i {
    margin-top: 10px;
  }
  .manage_1i {
    text-align: center;
  }
  .manage_1i p {
    text-align: left;
  }
  .about_h_1l h6 {
    text-align: center;
  }
  .about_h_1l h1 {
    text-align: center;
  }
  .about_h_1r {
    margin-top: 10px;
  }
  .main_o2 {
    position: static !important;
  }
  .skill_1r h6 {
    text-align: center;
    margin-top: 15px;
  }
  .skill_1r h1 {
    text-align: center;
  }
  .skill_m {
    padding-bottom: 40px;
  }
  .consult_1i {
    padding: 50px 30px 50px 30px;
    text-align: center;
  }
  .consult_1i p {
    text-align: left;
  }
  .consult_1i ul {
    text-align: left;
  }
  .consult_1m {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .about_h_1l {
    margin-top: 10px;
  }
  .about_h_1li1i h6 {
    text-align: left;
  }
  .about_h_1li1i h1 {
    text-align: left;
  }
  .main_oth2 {
    position: static !important;
  }
  .spec_1 p {
    text-align: left;
  }
  .spec_m {
    padding-bottom: 40px;
  }
  #price {
    padding-top: 40px;
  }
  .price_1i {
    margin-top: 20px;
  }
  .cust_1l h1 {
    text-align: center;
  }
  .cust_2i {
    margin-top: 10px;
  }
  .about_h_1li1io {
    padding: 35px 15px 35px 15px;
  }
  .about_h_1li1io h4 {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .about_h_1r img {
    min-height: 460px;
  }
  .main_o2 {
    position: static !important;
  }
  .main_oth2 {
    position: static !important;
  }
  .spec_m {
    padding-bottom: 50px;
  }
  #price {
    padding-top: 40px;
  }
  .cust_1r p br {
    display: none;
  }
  .cust_2i {
    margin-bottom: 10px;
  }
  .main_oth3 {
    position: static !important;
  }
  .about_h_1li1io {
    margin-bottom: 10px;
  }
  .consult_1i {
    padding: 30px 20px 30px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .about_h_1r img {
    min-height: 460px;
  }
  .main_o2 {
    position: static !important;
  }
  .consult_1i {
    padding: 30px 20px 30px 20px;
  }
  .main_oth2 {
    position: static !important;
  }
  .spec_m {
    padding-bottom: 50px;
  }
  #price {
    padding-top: 40px;
  }
  .main_oth3 {
    position: static !important;
  }
  .about_h_1li1io {
    margin-bottom: 10px;
  }
}