.why-choose-us {
  /*padding: 70px 0;*/
  /*background: #f8fbff;*/
}

.feature-card {
  background: #e5e2de;
  text-align: center;
  padding: 30px 18px;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e88e5, #00c6ff);
  opacity: 0;
  transition: 0.4s;
  z-index: 0;
}

.feature-card img {
  width: 60px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.feature-card h5 {
  font-size: 16px;
  font-weight: 600;
  color: #1e2a3a;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: 14px;
  color: #615f5f;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover h5,
.feature-card:hover p {
  color: #ffffff;
}

.feature-card:hover img {
  filter: brightness(0) invert(1);
}

.feature-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 15px;
  fill: none;
  stroke: #1e88e5;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  stroke: #ffffff;
  transform: scale(1.15) rotate(3deg);
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::*/

.bg-light-premium {
  background: linear-gradient(135deg, #f8fbff, #eef5ff);
}

.about-section {
  position: relative;
  overflow: hidden;
}

.about-image {
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
}

.about-graphic {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 220px;
  height: 220px;
  z-index: 1;
}

.about-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1e2a3a;
}

.about-list li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
}

.about-list i {
  color: #1e88e5;
  margin-right: 8px;
}

.about-cta .btn {
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  margin-right: 12px;
}

.btn-theme {
  background: linear-gradient(135deg, #1e88e5, #00c6ff);
  color: #fff;
  border: none;
}

.btn-theme:hover {
  background: linear-gradient(135deg, #1565c0, #0097d8);
  color: #fff;
}

.btn-outline-theme {
  border: 2px solid #1e88e5;
  color: #1e88e5;
  background: transparent;
}

.btn-outline-theme:hover {
  background: #1e88e5;
  color: #fff;
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.service-icon svg {
  width: 50px;
  height: 50px;
  stroke: #1e88e5;
  fill: none;
  stroke-width: 2.5;
  transition: all 0.4s ease;
}

.services-block:hover .service-icon svg {
  stroke: #fff;
  transform: scale(1.15) rotate(5deg);
}

.services-block:hover {
  background: linear-gradient(135deg,#1e88e5,#00c6ff);
  color: #fff;
  border-radius: 12px;
}


/* Service Card Base */
.services-block {
  background: #ffffff;
  border: 2px solid #e4ecf7;
  border-radius: 16px;
  transition: all 0.45s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* Subtle glow line effect */
.services-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e88e5, #00c6ff);
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 0;
}

/* Keep content above overlay */
.services-block > * {
  position: relative;
  z-index: 1;
}

/* Hover state */
.services-block:hover {
  transform: translateY(-10px);
  border-color: transparent;
  box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}

/* Background appears on hover */
.services-block:hover::before {
  opacity: 1;
}

/* Text color change */
.services-block:hover h4 a,
.services-block:hover p {
  color: #ffffff;
}

/* SVG icon transition */
.services-block .service-icon svg {
  stroke: #1e88e5;
  transition: all 0.45s ease;
}

.services-block:hover .service-icon svg {
  stroke: #ffffff;
  transform: scale(1.15) rotate(4deg);
}

/* CTA buttons on hover */
.services-block:hover .btn-light {
  background: #ffffff;
  color: #1e88e5;
}

.services-block:hover .btn-dark {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  border-color: #ffffff;
}

/* Smooth button transition */
.services-block .btn {
  transition: all 0.35s ease;
}
/*COMPARISON TABLE*/
.comparison-table th,
.comparison-table td {
  padding: 14px;
  border: 1px solid #e5eaf2;
}

.comparison-table thead th {
  background: #f4f8ff;
  font-weight: 600;
}

.comparison-table .highlight {
  background: linear-gradient(135deg,#1e88e5,#00c6ff);
  color: #fff;
}

.comparison-table tbody tr:hover {
  background: #f9fbff;
}
/*AMC PLANS SECTION*/
.amc-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  margin-bottom: 30px;
}

.amc-card h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.amc-card h3 {
  color: #1e88e5;
  margin-bottom: 20px;
}

.amc-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.amc-card ul li {
  margin-bottom: 10px;
}

.amc-card:hover {
  transform: translateY(-10px);
}

.amc-card.featured {
  background: linear-gradient(135deg,#1e88e5,#00c6ff);
  color: #fff;
}

.amc-card.featured h3 {
  color: #fff;
}

.amc-card.featured .btn {
  background: #fff;
  color: #1e88e5;
}
/*PREMIUM PRICING CARD CSS*/
/* ===== Pricing Card Base ===== */
.tm-sc-pricing-table {
  background: #a8d3e161;
  margin-top: 15px;
  border-radius: 18px;
  border: 1.8px solid #e6edf7;
  transition: all 0.45s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* Gradient overlay (hidden initially) */
.tm-sc-pricing-table::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e88e5, #00c6ff);
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 0;
}

/* Keep content above overlay */
.tm-sc-pricing-table * {
  position: relative;
  z-index: 2;
}

/* ===== Hover Effect ===== */
.tm-sc-pricing-table:hover {
  transform: translateY(-12px);
  border-color: transparent;
  box-shadow: 0 28px 55px rgba(30, 136, 229, 0.28);
}

.tm-sc-pricing-table:hover::before {
  opacity: 1;
}

/* ===== Title ===== */
.pricing-table-title {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.4px;
  color: #333;
  transition: color 0.4s ease;
}

.tm-sc-pricing-table:hover .pricing-table-title {
  color: #ffffff;
}

/* ===== Price Styling ===== */
.pricing-table-pricing {
  font-size: 34px;
  font-weight: 700;
  color: #1e88e5;
  margin: 12px 0 18px;
  transition: color 0.4s ease;
}

.tm-sc-pricing-table:hover .pricing-table-pricing {
  color: #ffffff;
}

/* ===== Service List ===== */
.pricing-table-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}

.pricing-table-content ul li {
  font-size: 14.5px;
  color: #555;
  transition: color 0.4s ease;
}

.tm-sc-pricing-table:hover .pricing-table-content ul li {
  color: #f1f6ff;
}

/* ===== CTA Buttons ===== */
.pricing-cta {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.pricing-cta .btn {
  padding: 7px 18px;
  border-radius: 22px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.35s ease;
}

/* Call Button */
.tm-sc-pricing-table .btn-theme {
  background: linear-gradient(135deg, #1e88e5, #00c6ff);
  color: #fff;
  border: none;
}

.tm-sc-pricing-table:hover .btn-theme {
  background: #ffffff;
  color: #1e88e5;
}

/* WhatsApp Button */
.tm-sc-pricing-table .btn-outline-theme {
  border: 1.8px solid #1e88e5;
  color: #1e88e5;
  background: transparent;
}

.tm-sc-pricing-table:hover .btn-outline-theme {
  border-color: #ffffff;
  color: #ffffff;
}

/* ===== Subtle Shine Effect ===== */
.tm-sc-pricing-table::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center,
    rgba(255,255,255,0.18),
    transparent 60%);
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 1;
}

.tm-sc-pricing-table:hover::after {
  opacity: 1;
}



/*::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/* PRICE BOX GRADIENT STYLE */
/* ===============================
   LIGHT WATER BACKGROUND
================================ */

.bg-img-no-repeat {
  background: linear-gradient(135deg, #f4fbff, #eaf6ff);
}

/* ===============================
   PRICING CARD BASE
================================ */

.pricing-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 0;
  margin-top: 15px;
  overflow: hidden;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid #e6f0f7;
  box-shadow: 0 10px 25px rgba(0, 80, 150, 0.08);
}

/* Hover lift */
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 120, 200, 0.18);
}

/* ===============================
   TITLE GOLD STRIP
================================ */

.pricing-card h6 {
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  color: #000;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 10px;
  margin: 0;
  letter-spacing: 0.5px;
}

/* ===============================
   PRICE GREEN STYLE
================================ */

.price {
  font-size: 28px;
  font-weight: 700;
  padding: 20px 0;
  color: #0a8f2f;
  background: linear-gradient(135deg, #e6f9ec, #d4f5de);
  transition: all 0.3s ease;
}

/* Hover price glow */
.pricing-card:hover .price {
  background: linear-gradient(135deg, #d2f3dc, #c2efcf);
  color: #067a25;
  letter-spacing: 1px;
}

/* ===============================
   CTA ICONS STYLE
================================ */

.cta-icons {
  padding: 15px 0 20px;
}

.cta-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  padding: -9px;
  height: 38px;
  border-radius: 50%;
  margin: 0 8px;
  font-size: 30px;
  color: #fff;
  transition: all 0.3s ease;
}

/* Call Icon - Royal Blue */
.cta-icons .fa-phone {
  padding: 5px;
  background: linear-gradient(135deg,#005bea,#00c6fb);
  box-shadow: 0 5px 15px rgba(0,91,234,0.3);
}

/* WhatsApp Icon - Premium Green */
.cta-icons .fa-whatsapp {
  padding: 5px;
  background: linear-gradient(135deg,#25D366,#128C7E);
  box-shadow: 0 5px 15px rgba(37,211,102,0.3);
}

/* Hover Effect */
.cta-icons a:hover {
  transform: scale(1.15);
}

/* ===============================
   EXTRA ATTRACTIVE HOVER EFFECT
================================ */

.pricing-card::after {
  content: "";
  /* position: absolute; */
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.3),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pricing-card:hover::after {
  opacity: 1;
}


/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/

.home-media-preview{/* padding:100px 0; */background:linear-gradient(135deg,#f8fbff,#ffffff);}

.home-media-title{text-align:center;font-size: 1.4rem;font-weight:700;/* margin-bottom:60px; */color:#0b3d91;}

.media-subtitle{
font-size:22px;
font-weight:600;
margin-bottom:25px;
border-left:4px solid #0b3d91;
padding-left:12px;
}

.mt-70{
margin-top:70px;
}

.media-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.media-card{
border-radius:16px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
transition:0.4s ease;
background:#fff;
}

.media-card img{
width:100%;
height:220px;
object-fit:cover;
transition:0.5s ease;
}

.video-card video{
width:100%;
height:220px;
object-fit:cover;
}

.media-card:hover{
transform:translateY(-8px);
box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

.media-card:hover img{
transform:scale(1.08);
}

.view-more-wrapper{
text-align:center;
margin-top:25px;
}

.view-more-btn{
display:inline-block;
padding:10px 25px;
background:#0b3d91;
color:#fff;
border-radius:40px;
font-weight:600;
text-decoration:none;
transition:0.3s ease;
}

.view-more-btn:hover{
background:#ff9800;
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}
