/* ===================================
   Header Navigation Enhancements
   =================================== */
.main-nav .nav li a i {
 margin-right: 6px;
 font-size: 0.85rem;
 opacity: 0.8;
}
.main-nav .dropdown-menu .dropdown-item i {
 margin-right: 10px;
 font-size: 0.9rem;
 color: #565656;
 width: 20px;
 text-align: center;
}
.main-nav .dropdown-menu .dropdown-item:hover i {
 color: #fff;
}
.nav-cta {
 margin-left: 15px;
}
.btn-apply-now {
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
 color: #fff !important;
 padding: 10px 25px !important;
 border-radius: 25px !important;
 font-weight: 700 !important;
 font-size: 0.9rem !important;
 transition: all 0.3s ease !important;
 box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3) !important;
 display: inline-flex !important;
 align-items: center !important;
 gap: 8px !important;
}
.btn-apply-now:hover {
 transform: translateY(-2px) !important;
 box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4) !important;
 background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
}
@media (max-width: 991px) {
 .nav-cta {
  margin-left: 0;
  margin-top: 10px;
 }
 .btn-apply-now {
  display: block !important;
  text-align: center !important;
  width: 100% !important;
 }
}

/* ===================================
   Hero Carousel Styles
   =================================== */
.carousel-indicators li {
 width: 12px;
 height: 12px;
 border-radius: 50%;
 background: rgba(255, 255, 255, 0.5);
 margin: 0 6px;
}
.carousel-indicators li.active {
 background: #ffd700;
 width: 14px;
 height: 14px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
 width: 50px;
 height: 50px;
 background-color: rgba(0, 0, 0, 0.3);
 border-radius: 50%;
}
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
 background-color: rgba(255, 215, 0, 0.5);
}
@media (max-width: 767px) {
 .carousel-item {
  height: 400px !important;
 }
}
@media (max-width: 575px) {
 .carousel-item {
  height: 300px !important;
 }
}

/* ===================================
   Features Section Styles
   =================================== */
.features-bg-pattern {
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background-image:
  radial-gradient(
   circle at 20% 30%,
   rgba(102, 126, 234, 0.05) 0%,
   transparent 50%
  ),
  radial-gradient(
   circle at 80% 70%,
   rgba(240, 147, 251, 0.05) 0%,
   transparent 50%
  ),
  radial-gradient(
   circle at 50% 50%,
   rgba(79, 172, 254, 0.03) 0%,
   transparent 50%
  );
 z-index: 1;
}
.section-badge {
 display: inline-block;
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 color: #fff;
 padding: 8px 20px;
 border-radius: 20px;
 font-size: 0.75rem;
 font-weight: 700;
 letter-spacing: 1.5px;
 margin-bottom: 20px;
 text-transform: uppercase;
}
.section-main-title {
 font-size: 2.2rem;
 font-weight: 600;
 color: #2b2a2a;
 margin-bottom: 5px;
 line-height: 1.3;
}
.section-main-subtitle {
 font-size: 1.15rem;
 color: #666;
 margin-bottom: 0;
 max-width: 700px;
 margin: 0 auto;
}
.premium-feature-card {
 position: relative;
 background: #fff;
 padding: 20px 15px;
 border-radius: 25px;
 text-align: center;
 min-height: 520px;
 display: flex;
 flex-direction: column;
 box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
 transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
 overflow: hidden;
 border: 2px solid transparent;
}
.premium-feature-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 5px;
 background: linear-gradient(90deg, transparent, currentColor, transparent);
 opacity: 0;
 transition: opacity 0.5s ease;
}
.card-purple::before {
 color: #565656;
}
.card-pink::before {
 color: #f093fb;
}
.card-cyan::before {
 color: #4facfe;
}
.card-orange::before {
 color: #fa709a;
}

.premium-feature-card:hover::before {
 opacity: 1;
}
.premium-feature-card:hover {
 transform: translateY(-15px) scale(1.02);
 box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.card-purple:hover {
 border-color: rgba(102, 126, 234, 0.3);
}
.card-pink:hover {
 border-color: rgba(240, 147, 251, 0.3);
}
.card-cyan:hover {
 border-color: rgba(79, 172, 254, 0.3);
}
.card-orange:hover {
 border-color: rgba(250, 112, 154, 0.3);
}

.card-glow {
 position: absolute;
 top: -50%;
 left: -50%;
 width: 200%;
 height: 200%;
 background: radial-gradient(
  circle,
  rgba(255, 255, 255, 0.8) 0%,
  transparent 70%
 );
 opacity: 0;
 transition: opacity 0.5s ease;
 pointer-events: none;
}
.premium-feature-card:hover .card-glow {
 opacity: 0.15;
}
.feature-icon-box {
 margin-bottom: 25px;
}
.icon-circle {
 width: 100px;
 height: 100px;
 margin: 0 auto;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 position: relative;
 transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.card-purple .icon-circle {
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}
.card-pink .icon-circle {
 background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
 box-shadow: 0 10px 30px rgba(240, 147, 251, 0.3);
}
.card-cyan .icon-circle {
 background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
 box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
}
.card-orange .icon-circle {
 background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
 box-shadow: 0 10px 30px rgba(250, 112, 154, 0.3);
}
.premium-feature-card:hover .icon-circle {
 transform: scale(1.1) rotate(10deg);
}
.icon-circle i {
 font-size: 44px;
 color: #fff;
 z-index: 2;
}
.feature-title {
 font-size: 1.2rem;
 font-weight: 700;
 color: #1e1e1e;
 margin-bottom: 10px;
 text-transform: uppercase;
 letter-spacing: 0.5px;
}
.feature-amount {
 font-size: 1rem;
 font-weight: 800;
 margin-bottom: 15px;
 padding: 4px 10px;
 border-radius: 8px;
 display: inline-block;
}
.card-purple .feature-amount {
 background: linear-gradient(
  135deg,
  rgba(102, 126, 234, 0.1) 0%,
  rgba(118, 75, 162, 0.1) 100%
 );
 color: #565656;
}
.card-pink .feature-amount {
 background: linear-gradient(
  135deg,
  rgba(240, 147, 251, 0.1) 0%,
  rgba(245, 87, 108, 0.1) 100%
 );
 color: #f5576c;
}
.card-cyan .feature-amount {
 background: linear-gradient(
  135deg,
  rgba(79, 172, 254, 0.1) 0%,
  rgba(0, 242, 254, 0.1) 100%
 );
 color: #4facfe;
}
.card-orange .feature-amount {
 background: linear-gradient(
  135deg,
  rgba(250, 112, 154, 0.1) 0%,
  rgba(254, 225, 64, 0.1) 100%
 );
 color: #fa709a;
}
.feature-desc {
 font-size: 0.95rem;
 line-height: 1.7;
 color: #666;
 margin-bottom: 20px;
 flex: 1;
}
.feature-benefits {
 list-style: none;
 padding: 0;
 margin: 0 0 30px 0;
 text-align: left;
}
.feature-benefits li {
 padding: 10px 0;
 font-size: 0.9rem;
 color: #555;
 display: flex;
 align-items: center;
 gap: 10px;
 border-bottom: 1px solid #f0f0f0;
}
.feature-benefits li:last-child {
 border-bottom: none;
}
.feature-benefits i {
 font-size: 13px;
 flex-shrink: 0;
}
.card-purple .feature-benefits i {
 color: #565656;
}
.card-pink .feature-benefits i {
 color: #f5576c;
}
.card-cyan .feature-benefits i {
 color: #4facfe;
}
.card-orange .feature-benefits i {
 color: #fa709a;
}

.premium-btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 10px;
 padding: 10px 24px;
 border-radius: 10px;
 font-size: 0.95rem;
 font-weight: 700;
 text-decoration: none;
 transition: all 0.4s ease;
 position: relative;
 overflow: hidden;
 margin-top: auto;
}
.card-purple .premium-btn {
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 color: #fff;
 box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}
.card-pink .premium-btn {
 background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
 color: #fff;
 box-shadow: 0 5px 20px rgba(240, 147, 251, 0.3);
}
.card-cyan .premium-btn {
 background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
 color: #fff;
 box-shadow: 0 5px 20px rgba(79, 172, 254, 0.3);
}
.card-orange .premium-btn {
 background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
 color: #fff;
 box-shadow: 0 5px 20px rgba(250, 112, 154, 0.3);
}
.premium-btn:hover {
 transform: translateY(-3px);
 text-decoration: none;
 color: #fff;
}
.card-purple .premium-btn:hover {
 box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
}
.card-pink .premium-btn:hover {
 box-shadow: 0 8px 30px rgba(240, 147, 251, 0.5);
}
.card-cyan .premium-btn:hover {
 box-shadow: 0 8px 30px rgba(79, 172, 254, 0.5);
}
.card-orange .premium-btn:hover {
 box-shadow: 0 8px 30px rgba(250, 112, 154, 0.5);
}

.premium-btn i {
 transition: transform 0.3s ease;
}
.premium-btn:hover i {
 transform: translateX(5px);
}
.card-corner-badge {
 position: absolute;
 top: 15px;
 right: 15px;
 width: 40px;
 height: 40px;
 border-radius: 8px;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 1rem;
 font-weight: 800;
 color: #fff;
 transition: all 0.3s ease;
}
.card-purple .card-corner-badge {
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.card-pink .card-corner-badge {
 background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.card-cyan .card-corner-badge {
 background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.card-orange .card-corner-badge {
 background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}
.premium-feature-card:hover .card-corner-badge {
 transform: scale(1.1) rotate(10deg);
}
@media (max-width: 991px) {
 .section-main-title {
  font-size: 2.2rem;
 }
 .premium-feature-card {
  min-height: 480px;
 }
}
@media (max-width: 767px) {
 .section-main-title {
  font-size: 1.85rem;
 }
 .section-main-subtitle {
  font-size: 1rem;
 }
 .premium-feature-card {
  min-height: auto;
  margin-bottom: 20px;
 }
 .icon-circle {
  width: 85px;
  height: 85px;
 }
 .icon-circle i {
  font-size: 36px;
 }
}

/* ===================================
   About Section Styles
   =================================== */
.about-img-wrapper {
 position: relative;
 display: block;
 width: 100%;
 height: 100%;
 min-height: 400px;
}
.about-img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 border-radius: 0.25rem;
 box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.about-img-badge {
 position: absolute;
 bottom: 16px;
 left: 16px;
 background: #008fff;
 color: #fff;
 padding: 8px 18px;
 border-radius: 20px;
 font-weight: 600;
 font-size: 1.1rem;
 box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.about-content ul li i {
 color: #008fff;
}
@media (max-width: 991px) {
 .about-img-wrapper {
  min-height: 300px;
 }
}

/* ===================================
   Why Choose Us Section Styles
   =================================== */
.why-choose-box {
 position: relative;
 padding: 30px 20px;
 border-radius: 15px;
 text-align: center;
 color: #fff;
 min-height: 280px;
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
 transition: all 0.3s ease;
 overflow: hidden;
}
.why-choose-box:hover {
 transform: translateY(-10px);
 box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.why-icon-wrapper {
 width: 80px;
 height: 80px;
 background: rgba(255, 255, 255, 0.2);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 20px;
 backdrop-filter: blur(10px);
}
.why-icon-wrapper i {
 font-size: 36px;
 color: #fff;
}
.why-choose-box h4 {
 font-size: 1.3rem;
 font-weight: 700;
 margin-bottom: 15px;
 color: #fff;
 letter-spacing: 1px;
}
.why-choose-box p {
 font-size: 0.95rem;
 line-height: 1.6;
 color: rgba(255, 255, 255, 0.95);
 margin-bottom: 0;
}
.why-box-number {
 position: absolute;
 top: 15px;
 right: 15px;
 width: 40px;
 height: 40px;
 background: rgba(255, 255, 255, 0.2);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 1.1rem;
 font-weight: 700;
 color: #fff;
 backdrop-filter: blur(10px);
}
@media (max-width: 991px) {
 .why-choose-box {
  min-height: 260px;
 }
}

/* ===================================
   Counter Section Styles
   =================================== */
.counter-section {
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 padding: 80px 0;
 position: relative;
 overflow: hidden;
}
.counter-section::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
 background-size: cover;
 background-position: bottom;
}
.counter-section .content {
 position: relative;
 z-index: 2;
}
.stats-title {
 color: #fff;
 font-size: 2.5rem;
 font-weight: 700;
 margin-bottom: 10px;
}
.stats-subtitle {
 color: rgba(255, 255, 255, 0.9);
 font-size: 1.1rem;
 margin-bottom: 0;
}
.modern-count-item {
 background: rgba(255, 255, 255, 0.15);
 backdrop-filter: blur(10px);
 border-radius: 20px;
 padding: 40px 20px;
 text-align: center;
 position: relative;
 transition: all 0.4s ease;
 border: 1px solid rgba(255, 255, 255, 0.2);
 height: 100%;
}
.modern-count-item:hover {
 transform: translateY(-10px);
 background: rgba(255, 255, 255, 0.25);
 box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.count-icon {
 width: 70px;
 height: 70px;
 background: rgba(255, 255, 255, 0.2);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 20px;
 transition: all 0.3s ease;
}
.modern-count-item:hover .count-icon {
 background: rgba(255, 255, 255, 0.3);
 transform: scale(1.1);
}
.count-icon i {
 font-size: 32px;
 color: #fff;
}
.counter-number {
 display: block;
 font-size: 2.8rem;
 font-weight: 700;
 color: #fff;
 margin-bottom: 10px;
 letter-spacing: -1px;
}
.modern-count-item span {
 display: block;
 font-size: 1rem;
 color: rgba(255, 255, 255, 0.95);
 font-weight: 500;
 text-transform: uppercase;
 letter-spacing: 1px;
}
.count-border {
 width: 60px;
 height: 4px;
 background: rgba(255, 255, 255, 0.4);
 margin: 15px auto 0;
 border-radius: 2px;
 transition: all 0.3s ease;
}
.modern-count-item:hover .count-border {
 width: 80px;
 background: rgba(255, 255, 255, 0.7);
}
@media (max-width: 991px) {
 .stats-title {
  font-size: 2rem;
 }
 .counter-number {
  font-size: 2.2rem;
 }
 .counter-section {
  padding: 60px 0;
 }
}

/* ===================================
   Blog Section Styles
   =================================== */
.modern-blog-card {
 background: #fff;
 border-radius: 15px;
 overflow: hidden;
 box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
 transition: all 0.3s ease;
 height: 100%;
 display: flex;
 flex-direction: column;
}
.modern-blog-card:hover {
 transform: translateY(-8px);
 box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}
.blog-img-wrapper {
 position: relative;
 overflow: hidden;
 height: 220px;
}
.blog-img-wrapper img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.4s ease;
}
.modern-blog-card:hover .blog-img-wrapper img {
 transform: scale(1.1);
}
.blog-date-badge {
 position: absolute;
 top: 15px;
 right: 15px;
 background: #008fff;
 color: #fff;
 padding: 10px;
 border-radius: 10px;
 text-align: center;
 min-width: 60px;
 box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.badge-day {
 display: block;
 font-size: 1.5rem;
 font-weight: 700;
 line-height: 1;
}
.badge-month {
 display: block;
 font-size: 0.85rem;
 text-transform: uppercase;
 margin-top: 2px;
}
.modern-blog-content {
 padding: 25px;
 flex: 1;
 display: flex;
 flex-direction: column;
}
.blog-category {
 color: #008fff;
 font-size: 0.85rem;
 font-weight: 600;
 text-transform: uppercase;
 margin-bottom: 12px;
 letter-spacing: 0.5px;
}
.modern-blog-content h3 {
 margin-bottom: 15px;
 font-size: 1.25rem;
 line-height: 1.4;
}
.modern-blog-content h3 a {
 color: #1e1e1e;
 text-decoration: none;
 font-weight: 600;
 transition: color 0.3s ease;
}
.modern-blog-content h3 a:hover {
 color: #008fff;
}
.blog-excerpt {
 color: #777;
 font-size: 0.95rem;
 line-height: 1.7;
 margin-bottom: 20px;
 flex: 1;
}
.read-more-link {
 color: #008fff;
 font-weight: 600;
 font-size: 0.9rem;
 text-decoration: none;
 display: inline-flex;
 align-items: center;
 transition: all 0.3s ease;
}
.read-more-link:hover {
 color: #000070;
 transform: translateX(5px);
}
.read-more-link i {
 transition: transform 0.3s ease;
}
.read-more-link:hover i {
 transform: translateX(3px);
}
@media (max-width: 991px) {
 .blog-img-wrapper {
  height: 200px;
 }
}

/* ===================================
   Testimonial Section Styles
   =================================== */
.testimonial-section {
 padding: 100px 0;
 background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
 position: relative;
 overflow: hidden;
}
.testimonial-section::before {
 content: '';
 position: absolute;
 top: -50%;
 left: -50%;
 width: 200%;
 height: 200%;
 background: radial-gradient(
  circle,
  rgba(255, 255, 255, 0.1) 1px,
  transparent 1px
 );
 background-size: 50px 50px;
 opacity: 0.5;
 animation: patternMove 60s linear infinite;
}
@keyframes patternMove {
 0% {
  transform: translate(0, 0);
 }
 100% {
  transform: translate(50px, 50px);
 }
}
.testimonial-section .container {
 position: relative;
 z-index: 2;
}
.modern-testimonial-card {
 background: #fff;
 border-radius: 20px;
 padding: 35px 30px;
 position: relative;
 box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
 transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
 height: 100%;
 display: flex;
 flex-direction: column;
 border: 2px solid transparent;
}
.modern-testimonial-card:hover {
 transform: translateY(-10px);
 box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
 border-color: rgba(102, 126, 234, 0.2);
}
.testimonial-quote-icon {
 position: absolute;
 top: -20px;
 left: 30px;
 width: 50px;
 height: 50px;
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}
.testimonial-quote-icon i {
 color: #fff;
 font-size: 20px;
}
.testimonial-rating {
 margin-top: 10px;
 margin-bottom: 20px;
}
.testimonial-rating i {
 color: #ffd700;
 font-size: 16px;
 margin-right: 3px;
}
.testimonial-text {
 font-size: 1rem;
 line-height: 1.8;
 color: #555;
 margin-bottom: 25px;
 flex: 1;
 font-style: italic;
}
.testimonial-author {
 display: flex;
 align-items: center;
 gap: 15px;
 padding-top: 20px;
 border-top: 2px solid #f0f0f0;
}
.author-avatar {
 width: 60px;
 height: 60px;
 border-radius: 50%;
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 display: flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
 font-size: 1.3rem;
 font-weight: 700;
 color: #fff;
 box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}
.author-info {
 flex: 1;
}
.author-name {
 font-size: 1.1rem;
 font-weight: 700;
 color: #1e1e1e;
 margin-bottom: 5px;
}
.author-title {
 display: block;
 font-size: 0.9rem;
 color: #565656;
 font-weight: 600;
 margin-bottom: 3px;
}
.author-location {
 display: block;
 font-size: 0.85rem;
 color: #999;
}
.author-location i {
 font-size: 0.75rem;
 margin-right: 3px;
}
.trust-indicators {
 display: flex;
 justify-content: center;
 align-items: center;
 flex-wrap: wrap;
 gap: 40px;
 background: rgba(255, 255, 255, 0.9);
 backdrop-filter: blur(10px);
 border-radius: 15px;
 padding: 30px 20px;
 box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.trust-item {
 display: flex;
 align-items: center;
 gap: 10px;
 font-size: 0.95rem;
 color: #555;
 font-weight: 600;
}
.trust-item i {
 font-size: 24px;
 color: #565656;
}
@media (max-width: 991px) {
 .testimonial-section {
  padding: 80px 0;
 }
 .modern-testimonial-card {
  margin-bottom: 20px;
 }
 .trust-indicators {
  gap: 30px;
 }
}
@media (max-width: 767px) {
 .testimonial-section {
  padding: 60px 0;
 }
 .modern-testimonial-card {
  padding: 30px 20px;
 }
 .trust-indicators {
  gap: 20px;
 }
 .trust-item {
  font-size: 0.85rem;
  flex: 0 0 calc(50% - 10px);
  justify-content: center;
 }
 .trust-item i {
  font-size: 20px;
 }
}

/* ===================================
   About Page Styles
   =================================== */

/* Page Header */
.about-page-header {
 padding: 120px 0 80px;
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 position: relative;
 overflow: hidden;
}
.about-page-header::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
 background-size: cover;
 background-position: bottom;
 opacity: 0.3;
}
.about-page-header .container {
 position: relative;
 z-index: 2;
}
.page-main-title {
 font-size: 3.5rem;
 font-weight: 800;
 color: #fff;
 margin: 20px 0 15px;
 line-height: 1.2;
}
.page-subtitle {
 font-size: 1.3rem;
 color: rgba(255, 255, 255, 0.95);
 margin-bottom: 25px;
}
.header-breadcrumb {
 display: inline-flex;
 align-items: center;
 gap: 10px;
 background: rgba(255, 255, 255, 0.15);
 backdrop-filter: blur(10px);
 padding: 10px 20px;
 border-radius: 25px;
 font-size: 0.95rem;
 color: #fff;
}
.header-breadcrumb a {
 color: #fff;
 text-decoration: none;
 transition: opacity 0.3s ease;
}
.header-breadcrumb a:hover {
 opacity: 0.8;
}
.header-breadcrumb i {
 font-size: 0.9rem;
}

/* Company Story Section */
.about-story-section {
 padding: 100px 0;
 background: #fff;
}
.story-image-wrapper {
 position: relative;
 border-radius: 20px;
 overflow: hidden;
 box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}
.story-main-image {
 width: 100%;
 height: auto;
 display: block;
 transition: transform 0.5s ease;
}
.story-image-wrapper:hover .story-main-image {
 transform: scale(1.05);
}
.story-badge {
 position: absolute;
 bottom: 30px;
 left: 30px;
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 padding: 20px 25px;
 border-radius: 15px;
 box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}
.badge-content {
 text-align: center;
}
.badge-number {
 display: block;
 font-size: 2.5rem;
 font-weight: 800;
 color: #fff;
 line-height: 1;
}
.badge-text {
 display: block;
 font-size: 0.9rem;
 color: rgba(255, 255, 255, 0.95);
 margin-top: 5px;
}
.story-content {
 padding-left: 30px;
}
.story-tagline {
 font-size: 1.15rem;
 font-weight: 600;
 color: #565656;
 font-style: italic;
 margin-bottom: 20px;
 padding-left: 20px;
 border-left: 4px solid #565656;
}
.story-content p {
 font-size: 1rem;
 line-height: 1.8;
 color: #555;
 margin-bottom: 20px;
}
.story-highlights {
 margin-top: 30px;
 background: linear-gradient(
  135deg,
  rgba(102, 126, 234, 0.05) 0%,
  rgba(118, 75, 162, 0.05) 100%
 );
 padding: 25px;
 border-radius: 15px;
 border-left: 4px solid #565656;
}
.highlight-item {
 display: flex;
 align-items: center;
 gap: 12px;
 margin-bottom: 12px;
 font-size: 1rem;
 color: #555;
}
.highlight-item:last-child {
 margin-bottom: 0;
}
.highlight-item i {
 color: #565656;
 font-size: 1.2rem;
}

/* Mission Vision Values Section */
.mvv-section {
 padding: 100px 0;
 background: #f8f9fa;
}
.mvv-card {
 background: #fff;
 padding: 40px 35px;
 border-radius: 20px;
 box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
 transition: all 0.4s ease;
 height: 100%;
 position: relative;
 overflow: hidden;
}
.mvv-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 5px;
 height: 100%;
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 transition: width 0.4s ease;
}
.mvv-card:hover {
 transform: translateY(-10px);
 box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.mvv-card:hover::before {
 width: 100%;
 opacity: 0.05;
}
.mvv-icon {
 width: 80px;
 height: 80px;
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 25px;
 box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}
.mvv-icon i {
 font-size: 36px;
 color: #fff;
}
.mvv-title {
 font-size: 1.8rem;
 font-weight: 700;
 color: #1e1e1e;
 margin-bottom: 20px;
}
.mvv-text {
 font-size: 1.05rem;
 line-height: 1.8;
 color: #555;
 margin-bottom: 0;
}
.values-container {
 background: #fff;
 padding: 50px 40px;
 border-radius: 20px;
 box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.values-main-title {
 font-size: 2rem;
 font-weight: 700;
 color: #1e1e1e;
 margin-bottom: 40px;
 text-align: center;
}
.value-item {
 text-align: center;
 padding: 25px 15px;
 transition: all 0.3s ease;
}
.value-item:hover {
 transform: translateY(-5px);
}
.value-icon {
 width: 70px;
 height: 70px;
 background: linear-gradient(
  135deg,
  rgba(102, 126, 234, 0.1) 0%,
  rgba(118, 75, 162, 0.1) 100%
 );
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 20px;
 transition: all 0.3s ease;
}
.value-item:hover .value-icon {
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 transform: scale(1.1);
}
.value-icon i {
 font-size: 28px;
 color: #565656;
 transition: color 0.3s ease;
}
.value-item:hover .value-icon i {
 color: #fff;
}
.value-name {
 font-size: 1.1rem;
 font-weight: 700;
 color: #1e1e1e;
 margin-bottom: 10px;
}
.value-desc {
 font-size: 0.95rem;
 line-height: 1.6;
 color: #666;
 margin-bottom: 0;
}

/* Services Overview Section */
.services-overview-section {
 padding: 100px 0;
 background: #fff;
}
.service-overview-card {
 background: #fff;
 padding: 35px 25px;
 border-radius: 20px;
 box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
 transition: all 0.4s ease;
 height: 100%;
 text-align: center;
 border: 2px solid transparent;
}
.service-overview-card:hover {
 transform: translateY(-10px);
 box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
 border-color: rgba(102, 126, 234, 0.2);
}
.service-overview-icon {
 width: 90px;
 height: 90px;
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 25px;
 box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
 transition: all 0.3s ease;
}
.service-overview-card:hover .service-overview-icon {
 transform: scale(1.1) rotate(10deg);
}
.service-overview-icon i {
 font-size: 40px;
 color: #fff;
}
.service-overview-title {
 font-size: 1.3rem;
 font-weight: 700;
 color: #1e1e1e;
 margin-bottom: 15px;
}
.service-overview-desc {
 font-size: 0.95rem;
 line-height: 1.7;
 color: #666;
 margin-bottom: 20px;
}
.service-link {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 color: #565656;
 font-weight: 600;
 font-size: 0.95rem;
 text-decoration: none;
 transition: all 0.3s ease;
}
.service-link:hover {
 color: #764ba2;
 gap: 12px;
}
.service-link i {
 font-size: 0.85rem;
 transition: transform 0.3s ease;
}
.service-link:hover i {
 transform: translateX(3px);
}

/* Why Us Section */
.why-us-section {
 padding: 100px 0;
 background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
 position: relative;
}
.why-us-card {
 background: #fff;
 padding: 40px 30px;
 border-radius: 20px;
 box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
 transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
 height: 100%;
 text-align: center;
 position: relative;
 overflow: hidden;
}
.why-us-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 5px;
 background: linear-gradient(90deg, #667eea, #764ba2);
 transform: scaleX(0);
 transition: transform 0.4s ease;
}
.why-us-card:hover::before {
 transform: scaleX(1);
}
.why-us-card:hover {
 transform: translateY(-15px);
 box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.why-us-number {
 position: absolute;
 top: 20px;
 right: 20px;
 width: 45px;
 height: 45px;
 background: linear-gradient(
  135deg,
  rgba(102, 126, 234, 0.1) 0%,
  rgba(118, 75, 162, 0.1) 100%
 );
 border-radius: 10px;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 1.2rem;
 font-weight: 800;
 color: #565656;
 transition: all 0.3s ease;
}
.why-us-card:hover .why-us-number {
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 color: #fff;
 transform: scale(1.1) rotate(10deg);
}
.why-us-icon {
 width: 85px;
 height: 85px;
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 25px;
 box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
 transition: all 0.3s ease;
}
.why-us-card:hover .why-us-icon {
 transform: scale(1.1);
}
.why-us-icon i {
 font-size: 38px;
 color: #fff;
}
.why-us-title {
 font-size: 1.25rem;
 font-weight: 700;
 color: #1e1e1e;
 margin-bottom: 15px;
}
.why-us-desc {
 font-size: 0.95rem;
 line-height: 1.7;
 color: #666;
 margin-bottom: 0;
}

/* Compliance Section */
.compliance-section {
 padding: 100px 0;
 background: #fff;
}
.compliance-card {
 background: linear-gradient(
  135deg,
  rgba(102, 126, 234, 0.05) 0%,
  rgba(118, 75, 162, 0.05) 100%
 );
 padding: 60px 50px;
 border-radius: 25px;
 border: 2px solid rgba(102, 126, 234, 0.1);
}
.compliance-intro {
 font-size: 1.1rem;
 line-height: 1.8;
 color: #555;
 margin-top: 20px;
}
.compliance-details {
 display: flex;
 flex-direction: column;
 gap: 25px;
}
.compliance-item {
 display: flex;
 align-items: flex-start;
 gap: 20px;
 background: #fff;
 padding: 25px;
 border-radius: 15px;
 box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
 transition: all 0.3s ease;
}
.compliance-item:hover {
 transform: translateX(10px);
 box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.compliance-icon {
 width: 60px;
 height: 60px;
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
}
.compliance-icon i {
 font-size: 26px;
 color: #fff;
}
.compliance-info h5 {
 font-size: 1.2rem;
 font-weight: 700;
 color: #1e1e1e;
 margin-bottom: 8px;
}
.compliance-info p {
 font-size: 0.95rem;
 color: #666;
 margin-bottom: 0;
}

/* About CTA Section */
.about-cta-section {
 padding: 100px 0;
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 position: relative;
 overflow: hidden;
}
.about-cta-section::before {
 content: '';
 position: absolute;
 top: -50%;
 left: -50%;
 width: 200%;
 height: 200%;
 background: radial-gradient(
  circle,
  rgba(255, 255, 255, 0.1) 2px,
  transparent 2px
 );
 background-size: 40px 40px;
 animation: patternMove 60s linear infinite;
}
.about-cta-content {
 position: relative;
 z-index: 2;
}
.cta-title {
 font-size: 2.8rem;
 font-weight: 800;
 color: #fff;
 margin-bottom: 15px;
}
.cta-subtitle {
 font-size: 1.2rem;
 color: rgba(255, 255, 255, 0.95);
 margin-bottom: 40px;
}

.cta-btn {
 display: inline-flex;
 align-items: center;
 gap: 12px;
 padding: 16px 35px;
 border-radius: 50px;
 font-size: 1.05rem;
 font-weight: 700;
 text-decoration: none;
 transition: all 0.4s ease;
 box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.primary-btn {
 background: #fff;
 color: #565656;
}
.primary-btn:hover {
 background: #f8f9fa;
 transform: translateY(-5px);
 box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
 color: #565656;
}
.secondary-btn {
 background: rgba(255, 255, 255, 0.15);
 color: #fff;
 border: 2px solid #fff;
 backdrop-filter: blur(10px);
}
.secondary-btn:hover {
 background: rgba(255, 255, 255, 0.25);
 transform: translateY(-5px);
 box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
 color: #fff;
}

/* Responsive Styles for About Page */
@media (max-width: 991px) {
 .page-main-title {
  font-size: 2.8rem;
 }
 .page-subtitle {
  font-size: 1.1rem;
 }
 .about-page-header {
  padding: 100px 0 60px;
 }
 .about-story-section,
 .mvv-section,
 .services-overview-section,
 .why-us-section,
 .compliance-section,
 .about-cta-section {
  padding: 80px 0;
 }
 .story-content {
  padding-left: 0;
  margin-top: 30px;
 }
 .compliance-card {
  padding: 40px 30px;
 }
}
@media (max-width: 767px) {
 .page-main-title {
  font-size: 2.2rem;
 }
 .page-subtitle {
  font-size: 1rem;
 }
 .about-page-header {
  padding: 80px 0 50px;
 }
 .about-story-section,
 .mvv-section,
 .services-overview-section,
 .why-us-section,
 .compliance-section,
 .about-cta-section {
  padding: 60px 0;
 }
 .cta-title {
  font-size: 2rem;
 }
 .cta-subtitle {
  font-size: 1rem;
 }

 .cta-btn {
  width: 100%;
  max-width: 300px;
  justify-content: center;
 }
 .values-container {
  padding: 40px 25px;
 }
 .compliance-card {
  padding: 30px 20px;
 }
}

/* ===================================
   Contact Page Styles
   =================================== */

/* Contact Page Header */
.contact-page-header {
 padding: 130px 0 100px;
 background: linear-gradient(
  135deg,
  #0f2027 0%,
  #1a237e 40%,
  #4a148c 70%,
  #667eea 100%
 );
 position: relative;
 overflow: hidden;
}
/* Animated floating shapes */
.cph-shape {
 position: absolute;
 border-radius: 50%;
 opacity: 0.12;
 pointer-events: none;
 animation: cphFloat 7s ease-in-out infinite;
}
.cph-shape-1 {
 width: 450px;
 height: 450px;
 top: -120px;
 left: -100px;
 background: radial-gradient(circle, #ffd700, transparent 70%);
 animation-duration: 8s;
}
.cph-shape-2 {
 width: 320px;
 height: 320px;
 top: 10%;
 right: 5%;
 background: radial-gradient(circle, #667eea, transparent 70%);
 animation-duration: 10s;
 animation-delay: 1s;
}
.cph-shape-3 {
 width: 200px;
 height: 200px;
 bottom: 0;
 left: 30%;
 background: radial-gradient(circle, #ff6f61, transparent 70%);
 animation-duration: 6s;
 animation-delay: 2s;
}
.cph-shape-4 {
 width: 150px;
 height: 150px;
 bottom: 20%;
 right: 20%;
 background: radial-gradient(circle, #38ef7d, transparent 70%);
 animation-duration: 9s;
 animation-delay: 0.5s;
}
@keyframes cphFloat {
 0%,
 100% {
  transform: translate(0, 0) scale(1);
 }
 33% {
  transform: translate(20px, -20px) scale(1.08);
 }
 66% {
  transform: translate(-15px, 15px) scale(0.93);
 }
}
/* Header text overrides */
.contact-page-header .page-main-title {
 font-size: 3rem;
 font-weight: 800;
 color: #fff;
 margin: 12px 0;
}
.contact-page-header .page-subtitle {
 color: rgba(255, 255, 255, 0.88);
 font-size: 1.05rem;
 max-width: 680px;
 margin: 0 auto 30px;
 line-height: 1.8;
}
/* CTA buttons in header */
.cph-cta-row {
 display: flex;
 gap: 16px;
 justify-content: center;
 flex-wrap: wrap;
 margin-bottom: 28px;
}
.cph-cta-btn {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 padding: 13px 30px;
 border-radius: 50px;
 font-size: 0.95rem;
 font-weight: 700;
 text-decoration: none;
 transition: all 0.3s;
}
.cph-cta-primary {
 background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
 color: #0b1520;
 box-shadow: 0 8px 25px rgba(255, 215, 0, 0.35);
}
.cph-cta-primary:hover {
 transform: translateY(-3px);
 box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
 color: #0b1520;
}
.cph-cta-outline {
 background: transparent;
 border: 2px solid rgba(255, 255, 255, 0.7);
 color: #fff;
}
.cph-cta-outline:hover {
 background: rgba(255, 255, 255, 0.12);
 color: #fff;
 transform: translateY(-3px);
}

/* Stats Strip */
.contact-stats-strip {
 background: linear-gradient(135deg, #0f2027 0%, #1a237e 60%, #4a148c 100%);
 padding: 28px 0;
 position: relative;
 z-index: 3;
}
.contact-stats-row {
 display: flex;
 justify-content: space-around;
 flex-wrap: wrap;
 gap: 10px 0;
}
.contact-stat-item {
 text-align: center;
 padding: 10px 15px;
 position: relative;
}
.contact-stat-item + .contact-stat-item::before {
 content: '';
 position: absolute;
 left: 0;
 top: 50%;
 transform: translateY(-50%);
 height: 50px;
 width: 1px;
 background: rgba(255, 255, 255, 0.15);
}
.cstat-icon {
 font-size: 1.5rem;
 color: #ffd700;
 margin-bottom: 6px;
}
.cstat-num {
 font-size: 1.8rem;
 font-weight: 800;
 color: #fff;
 line-height: 1;
 margin-bottom: 4px;
}
.cstat-label {
 font-size: 0.78rem;
 color: rgba(255, 255, 255, 0.7);
 font-weight: 500;
 letter-spacing: 0.5px;
 text-transform: uppercase;
}
@media (max-width: 575px) {
 .cstat-num {
  font-size: 1.5rem;
 }
 .contact-stat-item + .contact-stat-item::before {
  display: none;
 }
}

/* Contact Info Section */
.contact-info-section {
 padding: 80px 0 60px;
 background: #f8f9fa;
 position: relative;
 z-index: 2;
}
.contact-info-card {
 background: #fff;
 padding: 40px 30px;
 border-radius: 20px;
 box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
 transition: all 0.4s ease;
 height: 100%;
 text-align: center;
}
.contact-info-card:hover {
 transform: translateY(-10px);
 box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.contact-card-icon {
 width: 80px;
 height: 80px;
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 25px;
 box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
 transition: all 0.3s ease;
}
.contact-info-card:hover .contact-card-icon {
 transform: scale(1.1) rotate(10deg);
}
.contact-card-icon i {
 font-size: 36px;
 color: #fff;
}
.contact-card-title {
 font-size: 1.4rem;
 font-weight: 700;
 color: #1e1e1e;
 margin-bottom: 20px;
}
.contact-card-details {
 text-align: left;
}
.contact-card-details p {
 font-size: 0.95rem;
 line-height: 1.8;
 color: #555;
 margin-bottom: 12px;
 display: flex;
 align-items: flex-start;
 gap: 10px;
}
.contact-card-details p:last-child {
 margin-bottom: 0;
}
.contact-card-details i {
 color: #565656;
 font-size: 0.9rem;
 margin-top: 4px;
 flex-shrink: 0;
}
.contact-card-details a {
 color: #565656;
 text-decoration: none;
 font-weight: 600;
 transition: color 0.3s ease;
}
.contact-card-details a:hover {
 color: #764ba2;
}

/* Contact Form Section */
.contact-form-section {
 padding: 100px 0;
 background: #fff;
}
.contact-form-wrapper {
 background: #fff;
 padding: 0;
}
.form-intro {
 font-size: 1.05rem;
 color: #666;
 margin-bottom: 40px;
}
.modern-contact-form .form-group {
 margin-bottom: 0;
}
.modern-contact-form label {
 font-size: 0.95rem;
 font-weight: 600;
 color: #1e1e1e;
 margin-bottom: 10px;
 display: flex;
 align-items: center;
 gap: 8px;
}
.modern-contact-form label i {
 color: #1f1f23;
 font-size: 0.85rem;
}
.modern-contact-form .form-control {
 border: 2px solid #e0e0e0;
 border-radius: 10px;
 font-size: 0.95rem;
 transition: all 0.3s ease;
}
.modern-contact-form .form-control:focus {
 border-color: #565656;
 box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
 outline: none;
}
.modern-contact-form select.form-control {
 cursor: pointer;
}
.modern-contact-form textarea.form-control {
 resize: vertical;
 min-height: 120px;
}
.submit-btn {
 display: inline-flex;
 align-items: center;
 gap: 12px;
 padding: 16px 40px;
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 color: #fff;
 border: none;
 border-radius: 50px;
 font-size: 1.05rem;
 font-weight: 700;
 cursor: pointer;
 transition: all 0.4s ease;
 box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
 width: 100%;
}
.submit-btn:hover {
 transform: translateY(-3px);
 box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}
.submit-btn i {
 font-size: 0.95rem;
}
/* Submit button states */
.submit-btn .btn-text,
.submit-btn .btn-loading {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 8px;
}
.submit-btn:disabled {
 opacity: 0.8;
 cursor: not-allowed;
 transform: none !important;
}

/* Field required marker */
.field-required {
 color: #e53935;
 font-size: 0.8rem;
 margin-left: 2px;
}

/* Inline field error */
.field-error {
 color: #e53935;
 font-size: 0.82rem;
 margin-top: 5px;
 min-height: 18px;
 font-weight: 500;
}
.modern-contact-form .form-control.is-invalid {
 border-color: #e53935;
 box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

/* Form privacy note */
.form-privacy-note {
 margin-top: 14px;
 font-size: 0.82rem;
 color: #999;
 text-align: center;
}

/* Character counter */
.char-counter {
 text-align: right;
 font-size: 0.78rem;
 color: #aaa;
 margin-top: 5px;
}

/* Form Success Panel */
.form-success-panel {
 background: linear-gradient(
  135deg,
  rgba(17, 153, 142, 0.06) 0%,
  rgba(56, 239, 125, 0.06) 100%
 );
 border: 2px solid rgba(17, 153, 142, 0.25);
 border-radius: 20px;
 padding: 48px 40px;
 text-align: center;
 animation: fspReveal 0.5s ease;
}
@keyframes fspReveal {
 from {
  opacity: 0;
  transform: translateY(20px);
 }
 to {
  opacity: 1;
  transform: translateY(0);
 }
}
.fsp-icon {
 font-size: 3.5rem;
 color: #11998e;
 margin-bottom: 18px;
}
.form-success-panel h4 {
 font-size: 1.6rem;
 font-weight: 800;
 color: #1e1e1e;
 margin-bottom: 12px;
}
.form-success-panel p {
 font-size: 0.98rem;
 color: #555;
 line-height: 1.8;
 max-width: 420px;
 margin: 0 auto 10px;
}
.fsp-ref {
 color: #888;
 font-size: 0.88rem !important;
}
.fsp-reset-btn {
 margin-top: 22px;
 display: inline-flex;
 align-items: center;
 gap: 8px;
 padding: 11px 28px;
 background: #fff;
 border: 2px solid #565656;
 border-radius: 30px;
 color: #565656;
 font-weight: 700;
 font-size: 0.9rem;
 cursor: pointer;
 transition: all 0.25s;
}
.fsp-reset-btn:hover {
 background: #565656;
 color: #fff;
}

/* Documents Checklist */
.doc-checklist {
 list-style: none;
 padding: 0;
 margin: 0;
}
.doc-checklist li {
 display: flex;
 align-items: center;
 gap: 10px;
 padding: 9px 0;
 font-size: 0.9rem;
 color: #444;
 border-bottom: 1px dashed #e5e5e5;
}
.doc-checklist li:last-child {
 border-bottom: none;
}
.doc-checklist li i {
 width: 28px;
 height: 28px;
 background: linear-gradient(135deg, #667eea, #764ba2);
 color: #fff;
 border-radius: 8px;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 0.75rem;
 flex-shrink: 0;
}

/* ── "What Happens Next" Process Section ── */
.contact-process-section {
 padding: 100px 0;
 background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
 position: relative;
 overflow: hidden;
}
.contact-process-section::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 4px;
 background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #ffd700);
}
.cprocess-step {
 text-align: center;
 padding: 35px 25px;
 background: #fff;
 border-radius: 20px;
 position: relative;
 box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
 transition:
  transform 0.3s,
  box-shadow 0.3s;
 height: 100%;
 border: 1px solid rgba(102, 126, 234, 0.08);
}
.cprocess-step:hover {
 transform: translateY(-8px);
 box-shadow: 0 15px 45px rgba(102, 126, 234, 0.15);
}
.cprocess-num {
 position: absolute;
 top: -16px;
 left: 50%;
 transform: translateX(-50%);
 width: 32px;
 height: 32px;
 background: linear-gradient(135deg, #667eea, #764ba2);
 color: #fff;
 font-size: 0.72rem;
 font-weight: 800;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 letter-spacing: 0.5px;
 box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}
.cprocess-icon {
 width: 80px;
 height: 80px;
 background: linear-gradient(
  135deg,
  rgba(102, 126, 234, 0.1),
  rgba(118, 75, 162, 0.1)
 );
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 12px auto 20px;
 transition: background 0.3s;
}
.cprocess-step:hover .cprocess-icon {
 background: linear-gradient(135deg, #667eea, #764ba2);
}
.cprocess-icon i {
 font-size: 2rem;
 color: #565656;
 transition: color 0.3s;
}
.cprocess-step:hover .cprocess-icon i {
 color: #fff;
}
.cprocess-step h5 {
 font-size: 1.1rem;
 font-weight: 700;
 color: #1e1e1e;
 margin-bottom: 10px;
}
.cprocess-step p {
 font-size: 0.88rem;
 color: #666;
 line-height: 1.75;
 margin-bottom: 0;
}
.cprocess-connector {
 display: none;
}
@media (min-width: 992px) {
 .cprocess-connector {
  display: block;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  z-index: 1;
 }
 .cprocess-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -4px;
  border: 5px solid transparent;
  border-left: 8px solid #764ba2;
 }
 .col-lg-3 {
  position: relative;
 }
}

/* ── FAQ "Still have questions" CTA ── */
.faq-still-questions {
 margin-top: 50px;
}
.fsq-inner {
 background: linear-gradient(135deg, #0f2027 0%, #1a237e 50%, #4a148c 100%);
 border-radius: 20px;
 padding: 36px 40px;
 display: flex;
 align-items: center;
 gap: 28px;
 flex-wrap: wrap;
}
.fsq-icon {
 font-size: 2.8rem;
 color: #ffd700;
 flex-shrink: 0;
}
.fsq-text {
 flex: 1;
 min-width: 200px;
}
.fsq-text h5 {
 font-size: 1.25rem;
 font-weight: 700;
 color: #fff;
 margin-bottom: 6px;
}
.fsq-text p {
 font-size: 0.9rem;
 color: rgba(255, 255, 255, 0.75);
 margin-bottom: 0;
}
.fsq-actions {
 display: flex;
 gap: 12px;
 flex-wrap: wrap;
 flex-shrink: 0;
}
.fsq-btn {
 display: inline-flex;
 align-items: center;
 gap: 6px;
 padding: 11px 24px;
 border-radius: 30px;
 font-size: 0.88rem;
 font-weight: 700;
 text-decoration: none;
 transition: all 0.25s;
 white-space: nowrap;
}
.fsq-btn-primary {
 background: linear-gradient(135deg, #ffd700, #ffb300);
 color: #0b1520;
 box-shadow: 0 6px 18px rgba(255, 215, 0, 0.35);
}
.fsq-btn-primary:hover {
 transform: translateY(-2px);
 box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
 color: #0b1520;
}
.fsq-btn-outline {
 background: transparent;
 border: 2px solid rgba(255, 255, 255, 0.5);
 color: #fff;
}
.fsq-btn-outline:hover {
 background: rgba(255, 255, 255, 0.1);
 color: #fff;
 transform: translateY(-2px);
}
@media (max-width: 767px) {
 .fsq-inner {
  flex-direction: column;
  text-align: center;
  padding: 28px 24px;
 }
 .fsq-actions {
  justify-content: center;
 }
 .contact-process-section {
  padding: 70px 0;
 }
}
.quick-contact-sidebar {
 position: sticky;
 top: 100px;
}
.sidebar-section {
 background: linear-gradient(
  135deg,
  rgba(102, 126, 234, 0.05) 0%,
  rgba(118, 75, 162, 0.05) 100%
 );
 padding: 35px 30px;
 border-radius: 20px;
 margin-bottom: 25px;
 border: 2px solid rgba(102, 126, 234, 0.1);
}
.sidebar-title {
 font-size: 1.4rem;
 font-weight: 700;
 color: #1e1e1e;
 margin-bottom: 15px;
}
.sidebar-text {
 font-size: 0.95rem;
 color: #666;
 margin-bottom: 25px;
}
.quick-contact-item {
 display: flex;
 align-items: flex-start;
 gap: 15px;
 padding: 20px;
 background: #fff;
 border-radius: 15px;
 margin-bottom: 15px;
 transition: all 0.3s ease;
 box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}
.quick-contact-item:last-child {
 margin-bottom: 0;
}
.quick-contact-item:hover {
 transform: translateX(5px);
 box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.qc-icon {
 width: 50px;
 height: 50px;
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
}
.qc-icon i {
 font-size: 22px;
 color: #fff;
}
.qc-content {
 flex: 1;
}
.qc-content h5 {
 font-size: 1.1rem;
 font-weight: 700;
 color: #1e1e1e;
 margin-bottom: 5px;
}
.qc-content p {
 font-size: 0.9rem;
 color: #666;
 margin-bottom: 8px;
 line-height: 1.5;
}
.qc-content p:last-child {
 margin-bottom: 0;
}
.qc-link {
 color: #565656;
 font-weight: 600;
 font-size: 0.95rem;
 text-decoration: none;
 transition: color 0.3s ease;
}
.qc-link:hover {
 color: #764ba2;
}
.social-connect {
 text-align: center;
}
.social-links {
 display: flex;
 justify-content: center;
 gap: 15px;
 flex-wrap: wrap;
}
.social-link {
 width: 50px;
 height: 50px;
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #fff;
 font-size: 20px;
 text-decoration: none;
 transition: all 0.3s ease;
 box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}
.social-link:hover {
 transform: translateY(-5px) scale(1.1);
 box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
 color: #fff;
}
.social-link.facebook:hover {
 background: #1877f2;
 box-shadow: 0 8px 25px rgba(24, 119, 242, 0.45);
}
.social-link.linkedin:hover {
 background: #0a66c2;
 box-shadow: 0 8px 25px rgba(10, 102, 194, 0.45);
}
.social-link.instagram:hover {
 background: linear-gradient(
  135deg,
  #f09433,
  #e6683c,
  #dc2743,
  #cc2366,
  #bc1888
 );
 box-shadow: 0 8px 25px rgba(204, 35, 102, 0.45);
}
.social-link.youtube:hover {
 background: #ff0000;
 box-shadow: 0 8px 25px rgba(255, 0, 0, 0.45);
}
.social-link.whatsapp:hover {
 background: #25d366;
 box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

/* Priority card highlight */
.contact-info-card-highlight {
 border: 2px solid rgba(255, 215, 0, 0.4);
 background: linear-gradient(
  135deg,
  rgba(255, 215, 0, 0.04) 0%,
  rgba(255, 179, 0, 0.06) 100%
 );
}
.contact-priority-link {
 display: inline-flex;
 align-items: center;
 gap: 6px;
 margin-top: 14px;
 font-size: 0.88rem;
 font-weight: 700;
 color: #b8860b;
 text-decoration: none;
 transition: gap 0.2s;
}
.contact-priority-link:hover {
 gap: 10px;
 color: #ffb300;
}

/* Branches Section */
.branches-section {
 padding: 100px 0;
 background: #f8f9fa;
}
.branch-card {
 background: #fff;
 padding: 30px 25px;
 border-radius: 20px;
 box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
 transition: all 0.4s ease;
 height: 100%;
 position: relative;
 border-top: 4px solid transparent;
}
.branch-card:hover {
 transform: translateY(-10px);
 box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}
.branch-card-dhaka {
 border-top-color: #565656;
}
.branch-card-ctg {
 border-top-color: #11998e;
}
.branch-card-sylhet {
 border-top-color: #f5576c;
}
.branch-card-other {
 border-top-color: #ffd700;
}
/* Branch HQ badge */
.branch-badge {
 display: inline-block;
 background: linear-gradient(135deg, #667eea, #764ba2);
 color: #fff;
 font-size: 0.65rem;
 font-weight: 700;
 padding: 2px 7px;
 border-radius: 10px;
 margin-left: 4px;
 vertical-align: middle;
 letter-spacing: 0.5px;
}
.branch-header {
 display: flex;
 align-items: center;
 gap: 12px;
 margin-bottom: 20px;
 padding-bottom: 15px;
 border-bottom: 2px solid #f0f0f0;
}
.branch-header i {
 font-size: 24px;
 color: #565656;
}
.branch-header h5 {
 font-size: 1.2rem;
 font-weight: 700;
 color: #1e1e1e;
 margin-bottom: 0;
}
.branch-list {
 list-style: none;
 padding: 0;
 margin: 0 0 20px 0;
}
.branch-list li {
 padding: 8px 0;
 font-size: 0.95rem;
 color: #555;
 display: flex;
 align-items: center;
 gap: 10px;
 border-bottom: 1px solid #f5f5f5;
}
.branch-list li:last-child {
 border-bottom: none;
}
.branch-list i {
 color: #565656;
 font-size: 0.85rem;
}
.branch-count {
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 color: #fff;
 padding: 10px 20px;
 border-radius: 25px;
 text-align: center;
 font-weight: 700;
 font-size: 0.95rem;
 box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* FAQ Section */
.contact-faq-section {
 padding: 100px 0;
 background: #fff;
}
.faq-accordion {
 display: flex;
 flex-direction: column;
 gap: 15px;
}
.faq-item {
 background: #fff;
 border: 2px solid #e0e0e0;
 border-radius: 15px;
 overflow: hidden;
 transition: all 0.3s ease;
}
.faq-item:hover {
 border-color: #565656;
 box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
}
.faq-question {
 padding: 20px 25px;
 display: flex;
 align-items: center;
 gap: 15px;
 cursor: pointer;
 user-select: none;
 transition: all 0.3s ease;
}
.faq-question:hover {
 background: rgba(102, 126, 234, 0.05);
}
.faq-question > i:first-child {
 color: #565656;
 font-size: 22px;
 flex-shrink: 0;
}
.faq-question span {
 flex: 1;
 font-size: 1.1rem;
 font-weight: 600;
 color: #1e1e1e;
}
.toggle-icon {
 color: #565656;
 font-size: 16px;
 flex-shrink: 0;
 transition: transform 0.3s ease;
}
.faq-item.active .toggle-icon {
 transform: rotate(180deg);
}
.faq-answer {
 padding: 0 25px 0 62px;
 max-height: 0;
 overflow: hidden;
 transition: all 0.4s ease;
}
.faq-item.active .faq-answer {
 max-height: 500px;
 padding: 0 25px 20px 62px;
}
.faq-answer p {
 font-size: 0.95rem;
 line-height: 1.8;
 color: #666;
 margin-bottom: 0;
}

/* Map Section */
.map-section {
 background: #f8f9fa;
}
.map-header-strip {
 background: linear-gradient(135deg, #0f2027 0%, #1a237e 60%, #4a148c 100%);
 padding: 22px 0;
}
.map-strip-title {
 color: #fff;
 font-size: 1.1rem;
 font-weight: 700;
 margin-bottom: 4px;
}
.map-strip-address {
 color: rgba(255, 255, 255, 0.75);
 font-size: 0.88rem;
}
.map-directions-btn {
 display: inline-flex;
 align-items: center;
 gap: 6px;
 padding: 10px 22px;
 border-radius: 30px;
 background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
 color: #0b1520;
 font-size: 0.88rem;
 font-weight: 700;
 text-decoration: none;
 transition:
  transform 0.25s,
  box-shadow 0.25s;
 box-shadow: 0 5px 18px rgba(255, 215, 0, 0.35);
}
.map-directions-btn:hover {
 transform: translateY(-2px);
 box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
 color: #0b1520;
}
.map-wrapper {
 position: relative;
 overflow: hidden;
}
.map-wrapper iframe {
 width: 100%;
 height: 480px;
 display: block;
}

/* Responsive Styles for Contact Page */
@media (max-width: 991px) {
 .contact-page-header {
  padding: 110px 0 80px;
 }
 .contact-page-header .page-main-title {
  font-size: 2.2rem;
 }
 .contact-info-section {
  padding: 60px 0 40px;
 }
 .contact-form-section,
 .branches-section,
 .contact-faq-section {
  padding: 80px 0;
 }
 .quick-contact-sidebar {
  position: relative;
  top: 0;
  margin-top: 30px;
 }
 .map-strip-title {
  font-size: 1rem;
 }
 .map-directions-btn {
  margin-top: 10px;
 }
}
@media (max-width: 767px) {
 .contact-page-header {
  padding: 100px 0 70px;
 }
 .contact-page-header .page-main-title {
  font-size: 1.8rem;
 }
 .cph-cta-row {
  flex-direction: column;
  align-items: center;
 }
 .contact-info-section {
  padding: 50px 0 30px;
 }
 .contact-form-section,
 .branches-section,
 .contact-faq-section {
  padding: 60px 0;
 }
 .sidebar-section {
  padding: 25px 20px;
 }
 .quick-contact-item {
  padding: 15px;
 }
 .map-wrapper iframe {
  height: 350px;
 }
 .map-header-strip {
  padding: 18px 0;
 }
}
/* ========================================
   AUTO LOAN / CAR LOAN PAGE STYLES
   ======================================== */

/* Product Page Header */
.product-page-header {
 background: linear-gradient(135deg, #0f2027 0%, #1a237e 60%, #4a148c 100%);
 padding: 140px 0 80px;
 position: relative;
 overflow: hidden;
}
.product-page-header::before {
 content: '';
 position: absolute;
 top: -50%;
 right: -10%;
 width: 600px;
 height: 600px;
 background: rgba(255, 255, 255, 0.05);
 border-radius: 50%;
}
.product-page-header::after {
 content: '';
 position: absolute;
 bottom: -30%;
 left: -5%;
 width: 400px;
 height: 400px;
 background: rgba(255, 255, 255, 0.03);
 border-radius: 50%;
}
.header-content {
 position: relative;
 z-index: 2;
}
.product-icon-large {
 width: 100px;
 height: 100px;
 background: rgba(255, 255, 255, 0.2);
 backdrop-filter: blur(10px);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 25px;
 border: 3px solid rgba(255, 255, 255, 0.3);
}
.product-icon-large i {
 font-size: 48px;
 color: #fff;
}
.product-page-header h1 {
 color: #fff;
 font-size: 3rem;
 font-weight: 700;
 margin-bottom: 15px;
 text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.product-page-header .lead {
 color: rgba(255, 255, 255, 0.95);
 font-size: 1.3rem;
 margin-bottom: 25px;
}
.breadcrumb-custom {
 display: inline-flex;
 align-items: center;
 background: rgba(255, 255, 255, 0.15);
 backdrop-filter: blur(10px);
 padding: 12px 25px;
 border-radius: 30px;
 color: #fff;
 border: 1px solid rgba(255, 255, 255, 0.2);
}
.breadcrumb-custom a {
 color: #fff;
 text-decoration: none;
 transition: all 0.3s ease;
}
.breadcrumb-custom a:hover {
 color: #ffd700;
}
.breadcrumb-custom span {
 margin: 0 10px;
 color: rgba(255, 255, 255, 0.6);
}

/* Product Highlights */
.product-highlights {
 background: #fff;
 padding: 80px 0 60px;
 margin-top: -50px;
 position: relative;
 z-index: 10;
}
.highlight-card {
 background: #fff;
 border-radius: 15px;
 padding: 35px 25px;
 text-align: center;
 box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
 transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
 border: 2px solid transparent;
 height: 100%;
}
.highlight-card:hover {
 transform: translateY(-8px);
 box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
 border-color: #565656;
}
.highlight-icon {
 width: 70px;
 height: 70px;
 background: #f1f2f7;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 20px;
 transition: all 0.4s ease;
}
.highlight-card:hover .highlight-icon {
 transform: scale(1.1) rotate(5deg);
 background: #565656;
}
.highlight-card:hover .highlight-icon i {
 color: #fff;
}
.highlight-icon i {
 font-size: 32px;
 color: #565656;
}
.highlight-card h4 {
 color: #333;
 font-size: 1.5rem;
 font-weight: 600;
 margin-bottom: 8px;
}
.highlight-card p {
 color: #666;
 font-size: 1rem;
 margin-bottom: 0;
}

/* Product Overview */
.product-overview {
 padding: 100px 0;
 background: #f8f9fa;
}
.overview-image-wrapper {
 position: relative;
 border-radius: 20px;
 overflow: hidden;
 box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}
.overview-image-wrapper img {
 width: 100%;
 transition: transform 0.6s ease;
}
.overview-image-wrapper:hover img {
 transform: scale(1.05);
}
.overview-image-placeholder {
 position: relative;
 border-radius: 20px;
 overflow: hidden;
 box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
 background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
 height: 100%;
 min-height: 450px;
 display: flex;
 align-items: center;
 justify-content: center;
 transition: all 0.6s ease;
}
.overview-image-placeholder:hover {
 transform: scale(1.02);
 box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
}
.placeholder-content {
 text-align: center;
 color: #fff;
 z-index: 1;
}
.placeholder-content i {
 font-size: 120px;
 margin-bottom: 25px;
 opacity: 0.95;
 animation: float 3s ease-in-out infinite;
}
.placeholder-content h3 {
 font-size: 2.5rem;
 font-weight: 700;
 margin-bottom: 15px;
 text-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
 color:#fff;
}
.placeholder-content p {
 font-size: 1.2rem;
 opacity: 0.95;
 margin-bottom: 0;
}
@keyframes float {
 0%,
 100% {
  transform: translateY(0px);
 }
 50% {
  transform: translateY(-20px);
 }
}
.image-badge {
 position: absolute;
 top: 30px;
 left: 30px;
 background: #fff;
 padding: 15px 25px;
 border-radius: 50px;
 box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
 display: flex;
 align-items: center;
 gap: 10px;
}
.image-badge i {
 color: #28a745;
 font-size: 24px;
}
.image-badge span {
 color: #333;
 font-weight: 600;
 font-size: 1rem;
}
.overview-content {
 padding-left: 40px;
}
.section-title-gradient {
 color: #1f2430;
 font-size: 2.2rem;
 font-weight: 600;
 margin-bottom: 15px;
}
.overview-content .lead {
 color: #555;
 font-size: 1.2rem;
 margin-bottom: 20px;
}
.overview-content p {
 color: #666;
 line-height: 1.8;
 margin-bottom: 25px;
}
.overview-benefits {
 margin: 30px 0;
}
.benefit-item {
 display: flex;
 align-items: center;
 gap: 15px;
 margin-bottom: 15px;
}
.benefit-item i {
 color: #28a745;
 font-size: 20px;
 flex-shrink: 0;
}
.benefit-item span {
 color: #333;
 font-size: 1rem;
 line-height: 1.6;
}

.btn-primary-gradient {
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 color: #fff;
 padding: 14px 35px;
 border-radius: 30px;
 text-decoration: none;
 font-weight: 600;
 transition: all 0.3s ease;
 display: inline-flex;
 align-items: center;
 gap: 8px;
 box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}
.btn-primary-gradient:hover {
 transform: translateY(-3px);
 box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
 color: #fff;
 text-decoration: none;
}
.btn-outline-gradient {
 background: transparent;
 color: #565656;
 padding: 14px 35px;
 border-radius: 30px;
 text-decoration: none;
 font-weight: 600;
 transition: all 0.3s ease;
 display: inline-flex;
 align-items: center;
 gap: 8px;
 border: 2px solid #565656;
}
.btn-outline-gradient:hover {
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 color: #fff;
 text-decoration: none;
 transform: translateY(-3px);
 box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

/* Product Features Section */
.product-features {
 padding: 100px 0;
 background: #fff;
}
.section-subtitle {
 color: #666;
 font-size: 1.1rem;
 margin-top: 10px;
}
.feature-detail-card {
 background: #fff;
 border-radius: 15px;
 padding: 35px 30px;
 height: 100%;
 box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
 transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
 border: 1px solid #f0f0f0;
}
.feature-detail-card:hover {
 transform: translateY(-10px);
 box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
 border-color: #ededed;
}
.feature-detail-icon {
 width: 60px;
 height: 60px;
 background: #f1f2f7;
 border-radius: 15px;
 display: flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 20px;
 transition: all 0.4s ease;
}
.feature-detail-card:hover .feature-detail-icon {
 transform: scale(1.1) rotate(5deg);
 background: #565656;
}
.feature-detail-card:hover .feature-detail-icon i {
 color: #fff;
}
.feature-detail-icon i {
 font-size: 24px;
 color: #565656;
}
.feature-detail-card h4 {
 color: #333;
 font-size: 1.2rem;
 font-weight: 600;
 margin-bottom: 15px;
}
.feature-detail-card p {
 color: #666;
 line-height: 1.7;
 margin-bottom: 10px;
}
.feature-detail-card p strong {
 color: #333;
 font-weight: 600;
}

/* Popular Models Section */
.popular-models {
 padding: 100px 0;
 background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.model-card {
 background: #fff;
 border-radius: 15px;
 padding: 30px 20px;
 text-align: center;
 box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
 transition: all 0.4s ease;
 border: 2px solid transparent;
 position: relative;
 height: 100%;
}
.model-card:hover {
 transform: translateY(-8px);
 box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
 border-color: #565656;
}
.model-icon {
 width: 70px;
 height: 70px;
 background: #f1f2f7;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 20px;
 transition: all 0.4s ease;
}
.model-card:hover .model-icon {
 transform: scale(1.15) rotate(10deg);
 background: #565656;
}
.model-icon i {
 font-size: 32px;
 color: #565656;
 transition: all 0.4s ease;
}
.model-card:hover .model-icon i {
 color: #fff;
}
.model-brand {
 display: inline-block;
 background: #f1f2f7;
 color: #565656;
 padding: 8px 20px;
 border-radius: 20px;
 font-size: 0.85rem;
 font-weight: 600;
 margin-bottom: 15px;
 text-transform: uppercase;
}
.model-card h5 {
 color: #333;
 font-size: 1.3rem;
 font-weight: 700;
 margin-bottom: 8px;
}
.model-card p {
 color: #333;
 font-size: 1.1rem;
 font-weight: 600;
 margin-bottom: 0;
}
.badge-popular,
.badge-trending {
 position: absolute;
 top: 15px;
 right: 15px;
 padding: 6px 15px;
 border-radius: 20px;
 font-size: 0.75rem;
 font-weight: 600;
}
.badge-popular {
 background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
 color: #333;
}
.badge-trending {
 background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
 color: #fff;
}
.popular-models .text-muted {
 background: #fff;
 padding: 20px 30px;
 border-radius: 10px;
 display: inline-block;
 box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

/* Eligibility Section */
.eligibility-section {
 padding: 100px 0;
 background: #fff;
}
.eligibility-card {
 background: #fff;
 border-radius: 20px;
 padding: 40px 35px;
 box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
 height: 100%;
 border: 2px solid #f0f0f0;
 transition: all 0.4s ease;
}
.eligibility-card:hover {
 transform: translateY(-5px);
 box-shadow: 0 15px 50px rgba(102, 126, 234, 0.12);
 border-color: #565656;
}
.eligibility-header {
 display: flex;
 align-items: center;
 gap: 15px;
 margin-bottom: 25px;
 padding-bottom: 20px;
 border-bottom: 2px solid #f0f0f0;
}
.eligibility-header i {
 font-size: 36px;
 color: #565656;
}
.eligibility-header h4 {
 color: #333;
 font-size: 1.4rem;
 font-weight: 700;
 margin-bottom: 0;
}
.eligibility-list {
 list-style: none;
 padding: 0;
 margin: 0;
}
.eligibility-list li {
 display: flex;
 align-items: flex-start;
 gap: 15px;
 margin-bottom: 20px;
}
.eligibility-list li:last-child {
 margin-bottom: 0;
}
.eligibility-list i {
 color: #28a745;
 font-size: 20px;
 margin-top: 3px;
 flex-shrink: 0;
}
.eligibility-list li div {
 flex: 1;
}
.eligibility-list strong {
 color: #333;
 display: block;
 margin-bottom: 3px;
}
.additional-requirements {
 background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
 border-radius: 15px;
 padding: 35px 40px;
 border-left: 4px solid #565656;
}
.additional-requirements h5 {
 color: #333;
 font-size: 1.3rem;
 font-weight: 700;
 margin-bottom: 25px;
 display: flex;
 align-items: center;
 gap: 12px;
}
.additional-requirements h5 i {
 color: #565656;
 font-size: 28px;
}
.additional-requirements ul {
 list-style: none;
 padding: 0;
 margin: 0;
}
.additional-requirements li {
 color: #555;
 margin-bottom: 12px;
 display: flex;
 align-items: flex-start;
 gap: 12px;
}
.additional-requirements li:last-child {
 margin-bottom: 0;
}
.additional-requirements i {
 color: #565656;
 margin-top: 3px;
 flex-shrink: 0;
}

/* Documents Section */
.documents-section {
 padding: 100px 0;
 background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.document-card {
 background: #fff;
 border-radius: 15px;
 padding: 30px 25px;
 height: 100%;
 box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
 transition: all 0.4s ease;
 border: 2px solid transparent;
}
.document-card:hover {
 transform: translateY(-8px);
 box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
 border-color: #565656;
}
.document-icon {
 width: 70px;
 height: 70px;
 background: #f1f2f7;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 20px;
 transition: all 0.4s ease;
}
.document-card:hover .document-icon {
 transform: scale(1.1) rotate(10deg);
 background: #565656;
}
.document-card:hover .document-icon i {
 color: #fff;
}
.document-icon i {
 font-size: 32px;
 color: #565656;
}
.document-card h5 {
 color: #333;
 font-size: 1.2rem;
 font-weight: 700;
 margin-bottom: 20px;
 text-align: center;
}
.document-card ul {
 list-style: none;
 padding: 0;
 margin: 0;
}
.document-card li {
 color: #666;
 padding: 10px 0;
 border-bottom: 1px solid #f0f0f0;
 line-height: 1.6;
}
.document-card li:last-child {
 border-bottom: none;
}
.document-note {
 background: #fff;
 border-radius: 15px;
 padding: 25px 30px;
 margin-top: 40px;
 border-left: 4px solid #565656;
 box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
 display: flex;
 align-items: flex-start;
 gap: 15px;
}
.document-note i {
 color: #565656;
 font-size: 24px;
 margin-top: 3px;
 flex-shrink: 0;
}
.document-note p {
 color: #555;
 margin-bottom: 0;
 line-height: 1.7;
}

/* Calculator Section */
.calculator-section {
 padding: 100px 0;
 background: #fff;
}
.calculator-wrapper {
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 border-radius: 20px;
 padding: 40px 35px;
 box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}
.calculator-wrapper h3 {
 color: #fff;
 font-size: 1.8rem;
 font-weight: 700;
 margin-bottom: 10px;
 display: flex;
 align-items: center;
 gap: 12px;
}
.calculator-wrapper h3 i {
 font-size: 32px;
}
.calculator-wrapper > p {
 color: rgba(255, 255, 255, 0.9);
 margin-bottom: 0;
}
.calculator-form {
 margin-top: 30px;
}
.calculator-form .form-group {
 margin-bottom: 25px;
}
.calculator-form label {
 color: #fff;
 font-weight: 600;
 margin-bottom: 10px;
 display: block;
}
.calculator-form .form-control {
 background: rgba(255, 255, 255, 0.2);
 backdrop-filter: blur(10px);
 border: 2px solid rgba(255, 255, 255, 0.3);
 color: #fff;
 padding: 12px 18px;
 border-radius: 10px;
 font-size: 1rem;
 transition: all 0.3s ease;
}
.calculator-form .form-control:focus {
 background: rgba(255, 255, 255, 0.25);
 border-color: #fff;
 color: #fff;
 outline: none;
 box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}
.calculator-form .form-control::placeholder {
 color: rgba(255, 255, 255, 0.6);
}
.calculator-form small {
 color: rgba(255, 255, 255, 0.8);
 font-size: 0.85rem;
 margin-top: 5px;
 display: block;
}
.btn-calculate {
 width: 100%;
 background: #fff;
 color: #565656;
 padding: 15px 30px;
 border: none;
 border-radius: 10px;
 font-size: 1.1rem;
 font-weight: 700;
 cursor: pointer;
 transition: all 0.3s ease;
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 10px;
 margin-top: 10px;
}
.btn-calculate:hover {
 transform: translateY(-3px);
 box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
 background: #f8f9fa;
}
.calculator-result {
 background: #fff;
 border-radius: 20px;
 padding: 40px 35px;
 box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
 border: 2px solid #f0f0f0;
 height: 100%;
}
.calculator-result h4 {
 color: #333;
 font-size: 1.5rem;
 font-weight: 700;
 margin-bottom: 30px;
 padding-bottom: 20px;
 border-bottom: 2px solid #f0f0f0;
}
.result-item {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 15px 0;
 border-bottom: 1px solid #f0f0f0;
}
.result-item:last-of-type {
 border-bottom: 2px solid #f0f0f0;
}
.result-item span {
 color: #666;
 font-size: 1rem;
}
.result-item strong {
 color: #333;
 font-size: 1.1rem;
 font-weight: 700;
}
.result-item.highlight {
 background: linear-gradient(
  135deg,
  rgba(102, 126, 234, 0.1) 0%,
  rgba(118, 75, 162, 0.1) 100%
 );
 padding: 15px 20px;
 border-radius: 10px;
 margin: 10px 0;
 border: none;
}
.result-item.highlight strong {
 color: #565656;
}
.result-item-large {
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 padding: 25px 20px;
 border-radius: 15px;
 margin: 20px 0;
 text-align: center;
}
.result-item-large span {
 display: block;
 color: rgba(255, 255, 255, 0.9);
 font-size: 0.95rem;
 margin-bottom: 8px;
}
.result-item-large strong {
 display: block;
 color: #fff;
 font-size: 2rem;
 font-weight: 700;
}
.result-note {
 background: #f8f9fa;
 padding: 20px;
 border-radius: 10px;
 margin: 20px 0;
 display: flex;
 align-items: flex-start;
 gap: 12px;
}
.result-note i {
 color: #565656;
 font-size: 18px;
 margin-top: 2px;
 flex-shrink: 0;
}
.result-note p {
 color: #666;
 font-size: 0.9rem;
 margin-bottom: 0;
 line-height: 1.6;
}
.btn-apply-result {
 width: 100%;
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 color: #fff;
 padding: 15px 30px;
 border-radius: 10px;
 text-decoration: none;
 font-weight: 700;
 font-size: 1.1rem;
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 10px;
 transition: all 0.3s ease;
 margin-top: 10px;
}
.btn-apply-result:hover {
 transform: translateY(-3px);
 box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
 color: #fff;
 text-decoration: none;
}

/* Process Section */
.process-section {
 padding: 100px 0;
 background: #fff;
}
.process-step {
 background: #fff;
 border-radius: 20px;
 padding: 40px 30px;
 text-align: center;
 box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
 position: relative;
 height: 100%;
 border: 2px solid #f0f0f0;
 transition: all 0.4s ease;
}
.process-step:hover {
 transform: translateY(-10px);
 box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
 border-color: #565656;
}
.step-icon {
 width: 80px;
 height: 80px;
 background: linear-gradient(
  135deg,
  rgba(102, 126, 234, 0.1) 0%,
  rgba(118, 75, 162, 0.1) 100%
 );
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 20px auto 25px;
 transition: all 0.4s ease;
}
.process-step:hover .step-icon {
 transform: scale(1.1) rotate(10deg);
}
.step-icon i {
 font-size: 36px;
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}
.process-step h5 {
 color: #333;
 font-size: 1.2rem;
 font-weight: 700;
 margin-bottom: 15px;
}
.process-step p {
 color: #666;
 line-height: 1.7;
 margin-bottom: 0;
}

/* FAQ Section for Product Pages */
.faq-section {
 padding: 100px 0;
 background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.faq-accordion .faq-item {
 background: #fff;
 border-radius: 15px;
 margin-bottom: 15px;
 box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
 border: 2px solid transparent;
 transition: all 0.3s ease;
}
.faq-accordion .faq-item:hover {
 border-color: #565656;
}
.faq-accordion .faq-item.active {
 border-color: #565656;
 box-shadow: 0 8px 30px rgba(102, 126, 234, 0.12);
}

.cta-box {
 position: relative;
 z-index: 2;
}
.cta-box h3 {
 color: #fff;
 font-size: 2rem;
 font-weight: 700;
 margin-bottom: 15px;
 display: flex;
 align-items: center;
 gap: 15px;
}
.cta-box h3 i {
 font-size: 40px;
}
.cta-box p {
 color: rgba(255, 255, 255, 0.95);
 font-size: 1.1rem;
 margin-bottom: 0;
}
.btn-cta-white {
 background: #fff;
 color: #1a237e;
 padding: 15px 40px;
 border-radius: 30px;
 text-decoration: none;
 font-weight: 700;
 font-size: 1.1rem;
 transition: all 0.3s ease;
 display: inline-block;
 box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}
.btn-cta-white:hover {
 transform: translateY(-3px);
 box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
 color: #1a237e;
 text-decoration: none;
 background: #f8f9fa;
}
.cta-contact {
 color: #fff;
 margin-bottom: 0;
 font-size: 1rem;
}
.cta-contact i {
 margin-right: 8px;
}

/* Responsive Styles for Product Pages */
@media (max-width: 991px) {
 .product-page-header {
  padding: 120px 0 60px;
 }
 .product-page-header h1 {
  font-size: 2.5rem;
 }
 .product-highlights,
 .product-overview,
 .product-features,
 .popular-models,
 .eligibility-section,
 .documents-section,
 .calculator-section,
 .process-section,
 .faq-section {
  padding: 80px 0;
 }
 .overview-content {
  padding-left: 15px;
  margin-top: 40px;
 }
 .section-title-gradient {
  font-size: 2rem;
 }
 .calculator-wrapper,
 .calculator-result {
  margin-bottom: 30px;
 }
}
@media (max-width: 767px) {
 .product-page-header {
  padding: 100px 0 50px;
 }
 .product-page-header h1 {
  font-size: 2rem;
 }
 .product-icon-large {
  width: 80px;
  height: 80px;
 }
 .product-icon-large i {
  font-size: 36px;
 }
 .product-highlights {
  padding: 60px 0 40px;
  margin-top: -30px;
 }
 .product-overview,
 .product-features,
 .popular-models,
 .eligibility-section,
 .documents-section,
 .calculator-section,
 .process-section,
 .faq-section {
  padding: 60px 0;
 }
 
 .section-title-gradient {
  font-size: 1.8rem;
 }
 .overview-content {
  margin-top: 30px;
 }

 .btn-primary-gradient,
 .btn-outline-gradient {
  width: 100%;
  justify-content: center;
 }
 .cta-box h3 {
  font-size: 1.5rem;
  flex-direction: column;
  gap: 10px;
  text-align: center;
 }
 .cta-box .text-lg-right {
  margin-top: 25px;
 }
}

/* Wider Global Container */
@media (min-width: 1200px) {
 .container {
  max-width: 1280px;
 }
}
