/*
Theme Name: PTech Theme
Theme URI: https://padmatechnologies.com/
Author: Padma Technologies
Author URI: https://padmatechnologies.com/
Description: Modern IT Solutions and AI Technology WordPress Theme with dynamic PTech Options Panel.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: ptech-theme
*/

:root {
  --th-theme-color: #684DF4;
  --th-theme-dark: #5034E3;
  --th-title-color: #0F172A;
  --th-body-color: #475569;
  --th-smoke-color: #F8FAFC;
  --th-white-color: #ffffff;
  --th-dark-navy: #0B132B;
  --th-border-color: #E2E8F0;
  --th-primary-gradient: linear-gradient(135deg, #684DF4 0%, #3B82F6 100%);
  --th-title-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --th-body-font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  font-family: var(--th-body-font);
  color: var(--th-body-color);
  font-size: 15.5px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--th-title-font);
  color: var(--th-title-color);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.025em;
  margin-top: 0;
}

.ptech-main-logo-img {
  max-height: 42px;
  height: auto;
  width: auto;
  object-fit: contain;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.04));
  transition: transform 0.25s ease;
}

.ptech-main-logo-img:hover {
  transform: scale(1.02);
}

a {
  color: var(--th-theme-color);
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover {
  color: var(--th-theme-dark);
  text-decoration: none;
}

/* ========================================================
   1. RESET UNWANTED BULLETS & PSEUDO ARTIFACTS
   ======================================================== */
.main-menu ul,
.main-menu ol,
.ptech-nav-menu ul,
.ptech-menu-list,
.sub-menu,
.dropdown-menu {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0;
  padding: 0;
}

.main-menu li::before,
.main-menu li::after,
.main-menu a::before,
.main-menu a::after,
.ptech-nav-menu li::before,
.ptech-nav-menu li::after,
.ptech-nav-menu a::before,
.ptech-nav-menu a::after,
.sub-menu li::before,
.sub-menu li::after,
.sub-menu a::before,
.sub-menu a::after,
.th-mean-expand {
  display: none !important;
  content: none !important;
}

/* ========================================================
   2. SLEEK MODERN TOP BAR
   ======================================================== */
.ptech-topbar {
  background: var(--th-dark-navy);
  color: #94A3B8;
  font-size: 13.5px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ptech-topbar-info {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ptech-topbar-info .info-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #CBD5E1;
}

.ptech-topbar-info .info-item i {
  color: #818CF8;
  font-size: 13px;
}

.ptech-topbar-info .info-item a {
  color: #CBD5E1;
}

.ptech-topbar-info .info-item a:hover {
  color: #ffffff;
}

.ptech-topbar-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ptech-topbar-social .social-label {
  font-size: 12.5px;
  font-weight: 600;
  color: #64748B;
  margin-right: 4px;
}

.ptech-topbar-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #CBD5E1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.25s ease;
}

.ptech-topbar-social a:hover {
  background: var(--th-theme-color);
  color: #ffffff;
  border-color: var(--th-theme-color);
  transform: translateY(-2px);
}

/* ========================================================
   3. CLEAN MAIN NAVBAR & DROPDOWNS
   ======================================================== */
.ptech-navbar-wrap {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  padding: 14px 0;
  position: relative;
  z-index: 100;
  transition: all 0.3s ease;
}

.ptech-navbar-wrap.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  animation: slideDownNav 0.35s ease;
}

@keyframes slideDownNav {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.ptech-text-logo {
  font-family: var(--th-title-font);
  font-size: 26px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.5px;
}

.ptech-text-logo span {
  color: var(--th-theme-color);
}

.ptech-menu-list {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.ptech-menu-list > li {
  position: relative;
}

.ptech-menu-list > li > a {
  font-size: 15px;
  font-weight: 700;
  color: #1E293B;
  padding: 14px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.ptech-menu-list > li.menu-item-has-children > a::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
  margin-left: 2px;
  transition: transform 0.25s ease;
  display: inline-block;
}

.ptech-menu-list > li:hover > a,
.ptech-menu-list > li.current-menu-item > a {
  color: var(--th-theme-color);
}

.ptech-menu-list > li:hover.menu-item-has-children > a::after {
  transform: rotate(180deg);
}

/* Dropdown Menu Box */
.ptech-menu-list .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #ffffff;
  border: 1px solid #F1F5F9;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
}

.ptech-menu-list li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ptech-menu-list .sub-menu li {
  position: relative;
  padding: 0 8px;
}

.ptech-menu-list .sub-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 16px;
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.ptech-menu-list .sub-menu li a:hover {
  background: #F8FAFC;
  color: var(--th-theme-color);
  padding-left: 20px;
}

.ptech-menu-list .sub-menu li.current-menu-item a {
  color: var(--th-theme-color);
  background: #F5F3FF;
}

/* Secondary nested sub-menu */
.ptech-menu-list .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  margin-left: 6px;
}

/* Actions & Buttons */
.ptech-search-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
  color: #1E293B;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ptech-search-btn:hover {
  background: var(--th-theme-color);
  color: #ffffff;
  border-color: var(--th-theme-color);
}

.ptech-mobile-toggle {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
  color: #0F172A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ptech-mobile-toggle:hover {
  background: var(--th-theme-color);
  color: #ffffff;
  border-color: var(--th-theme-color);
  transform: scale(1.05);
}

.th-btn {
  background: var(--th-theme-color);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 13.5px;
  padding: 14px 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  box-shadow: 0 4px 15px rgba(104, 77, 244, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.th-btn:hover {
  background: #0F172A;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
}

.th-btn.style3 {
  background: #ffffff;
  color: var(--th-theme-color) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.th-btn.style3:hover {
  background: var(--th-theme-color);
  color: #ffffff !important;
}

/* ========================================================
   4. MOBILE DRAWER MENU (Modern Offcanvas)
   ======================================================== */
.ptech-mobile-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: #ffffff;
  z-index: 100000;
  box-shadow: -10px 0 40px rgba(15, 23, 42, 0.2);
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.ptech-mobile-drawer.open {
  right: 0;
}

.ptech-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.ptech-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.ptech-mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ptech-mobile-menu-list li {
  border-bottom: 1px solid #F1F5F9;
}

.ptech-mobile-menu-list li a {
  display: block;
  padding: 13px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #1E293B;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ptech-mobile-menu-list li a:hover,
.ptech-mobile-menu-list li.current-menu-item a {
  color: var(--th-theme-color);
  background: #F8FAFC;
  padding-left: 24px;
.ptech-mobile-menu-list .sub-menu {
  padding-left: 16px;
  background: #F8FAFC;
}

/* ========================================================
   5. SEARCH POPUP MODAL
   ======================================================== */
.popup-search-box {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}

.popup-search-box.show {
  display: flex;
}

.popup-search-box form {
  width: 90%;
  max-width: 600px;
  position: relative;
}

.popup-search-box form input {
  width: 100%;
  padding: 18px 60px 18px 24px;
  border-radius: 50px;
  border: 2px solid #818CF8;
  background: #ffffff;
  font-size: 18px;
  color: #0F172A;
  outline: none;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.popup-search-box form button {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--th-theme-color);
  color: #ffffff;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.popup-search-box .searchClose {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 32px;
  cursor: pointer;
}

/* ========================================================
   6. HOMEPAGE SECTIONS & UTILITIES
   ======================================================== */
.text-theme {
  color: var(--th-theme-color) !important;
}

.title-area {
  position: relative;
  margin-bottom: 40px;
  z-index: 2;
}

.title-area .shadow-title {
  position: absolute;
  top: -24px;
  left: 0;
  font-size: 72px;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.035);
  z-index: -1;
  line-height: 1;
  user-select: none;
  font-family: var(--th-title-font);
}

.title-area.text-center .shadow-title {
  left: 50%;
  transform: translateX(-50%);
}

.sub-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #684DF4;
  background: rgba(104, 77, 244, 0.08);
  border: 1px solid rgba(104, 77, 244, 0.18);
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 14px;
}

.sub-title img.icon {
  display: none !important;
}

.sub-title::before {
  content: '✦';
  color: #684DF4;
  font-size: 11px;
}

.sec-title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 0;
  color: #0F172A;
}

@media (max-width: 991px) {
  .sec-title {
    font-size: 28px;
  }
  .title-area .shadow-title {
    font-size: 44px;
    top: -12px;
  }
}

/* Hero Section */
.th-hero-wrapper.hero-4 {
  background: linear-gradient(135deg, #0B132B 0%, #172554 100%);
  padding: 100px 0 140px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-style4 .hero-subtitle {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #A5B4FC;
  margin-bottom: 16px;
  background: rgba(165, 180, 252, 0.12);
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid rgba(165, 180, 252, 0.2);
}

.hero-style4 .hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-style4 .hero-title span {
  background: linear-gradient(135deg, #93C5FD 0%, #C4B5FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-style4 .hero-text {
  font-size: 17px;
  line-height: 30px;
  color: #94A3B8;
  max-width: 580px;
  margin-bottom: 35px;
}

.hero-style4 .btn-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.play-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--th-theme-color);
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 0 0 6px rgba(104, 77, 244, 0.3);
  transition: all 0.25s ease;
}

.play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 0 10px rgba(104, 77, 244, 0.4);
}

.call-btn {
  display: flex;
  align-items: center;
  gap: 14px;
}

.call-btn .btn-title {
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
  display: block;
}

.call-btn .btn-text {
  font-size: 13px;
  color: #94A3B8;
  display: block;
}

/* Service Cards */
.service-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 34px 28px;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #C7D2FE;
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.12);
}

.service-card .service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-icon {
  transform: translateY(-3px) scale(1.06);
}

.service-card .service-icon i {
  color: #ffffff !important;
}

.service-card:hover .service-icon i {
  color: #ffffff;
}

.service-card .box-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card .box-title a {
  color: #0F172A;
}

.service-card:hover .box-title a {
  color: var(--th-theme-color);
}

.service-card .service-text {
  font-size: 14.5px;
  line-height: 25px;
  color: #64748B;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card .service-link {
  font-weight: 700;
  font-size: 13.5px;
  color: #0F172A;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card:hover .service-link {
  color: var(--th-theme-color);
}

/* Why Choose Us Progress Bars */
.feature-circle-wrap {
  display: flex;
  gap: 24px;
  margin-top: 25px;
}

.feature-circle {
  display: flex;
  align-items: center;
  gap: 14px;
}

.circle-badge {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 4px solid var(--th-theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  color: #0F172A;
  background: #F5F3FF;
  flex-shrink: 0;
}

.feature-circle_title {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 2px;
}

.feature-circle_text {
  font-size: 13px;
  color: #64748B;
  margin: 0;
}

/* Project Cards */
.project-grid {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border: 1px solid #E2E8F0;
  transition: all 0.3s ease;
  height: 100%;
}

.project-grid:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.project-grid_img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.project-grid_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-grid:hover .project-grid_img img {
  transform: scale(1.05);
}

.project-grid_content {
  padding: 22px;
}

.project-grid_content .box-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.project-grid_content .box-title a {
  color: #0F172A;
}

.project-grid_content .project-grid_text {
  font-size: 13.5px;
  color: #64748B;
  margin: 0;
}

/* Counter Area */
.counter-area {
  background: linear-gradient(135deg, #0B132B 0%, #0F172A 100%);
  border-radius: 16px;
  padding: 45px 35px;
  color: #fff;
}

.counter-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.counter-card_icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.counter-card_icon img,
.counter-card_icon i {
  width: 30px;
  height: 30px;
  color: #818CF8;
}

.counter-card_number {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.counter-card_text {
  font-size: 13.5px;
  color: #94A3B8;
  margin: 0;
}

/* Process Cards */
.process-card {
  background: #ffffff;
  border: 1px dashed #CBD5E1;
  border-radius: 14px;
  padding: 32px 22px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.process-card:hover {
  border-color: var(--th-theme-color);
  background: #F8FAFC;
  transform: translateY(-5px);
}

.process-card_number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--th-theme-color);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 14px;
  right: 14px;
}

.process-card_icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 18px;
}

.process-card_icon img {
  width: 100%;
  height: 100%;
}

.process-card .box-title {
  font-size: 17.5px;
  margin-bottom: 8px;
}

.process-card_text {
  font-size: 13.5px;
  color: #64748B;
  margin: 0;
}

/* Testimonial Cards */
.testi-grid {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 30px 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.testi-grid_img {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.testi-grid_img img.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-grid_review {
  color: #F59E0B;
  font-size: 13px;
  margin-bottom: 14px;
}

.testi-grid_text {
  font-size: 14px;
  line-height: 24px;
  color: #475569;
  font-style: italic;
  margin-bottom: 18px;
}

.testi-grid .box-title {
  font-size: 16.5px;
  margin-bottom: 2px;
}

.testi-grid_desig {
  font-size: 12.5px;
  color: var(--th-theme-color);
  font-weight: 600;
  margin: 0;
}

/* Blog Cards */
.blog-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  gap: 14px;
  font-size: 12.5px;
  color: #94A3B8;
  margin-bottom: 10px;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
}

.blog-content .box-title {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-content .box-title a {
  color: #0F172A;
}

.blog-content .box-title a:hover {
  color: var(--th-theme-color);
}

.blog-content .box-text {
  font-size: 14px;
  color: #64748B;
  margin-bottom: 18px;
  flex-grow: 1;
}

.blog-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #F1F5F9;
  padding-top: 14px;
}

.blog-bottom .author {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

.blog-bottom .line-btn {
  font-weight: 700;
  font-size: 13px;
  color: var(--th-theme-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Footer Section */
.footer-wrapper {
  background: var(--th-dark-navy);
  color: #94A3B8;
  padding-top: 70px;
}

.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 45px;
  margin-bottom: 45px;
}

.newsletter-title {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 4px;
}

.newsletter-text {
  font-size: 13.5px;
  color: #94A3B8;
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-grow: 1;
  max-width: 480px;
}

.newsletter-form input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 8px;
  width: 100%;
  font-size: 14px;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--th-theme-color);
}

.footer-widget .widget_title {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget .widget_title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--th-theme-color);
  border-radius: 2px;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget ul li {
  margin-bottom: 10px;
}

.footer-widget ul li a {
  color: #94A3B8;
  font-size: 14px;
  transition: all 0.2s;
}

.footer-widget ul li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-copyright {
  background: #060A17;
  padding: 20px 0;
  font-size: 13.5px;
  color: #64748B;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========================================================
   7. PREMIUM CONTACT US PAGE STYLES
   ======================================================== */
.ptech-page-hero {
  background: linear-gradient(135deg, #0B132B 0%, #1E1B4B 50%, #0F172A 100%);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ptech-page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(104, 77, 244, 0.25) 0%, rgba(104, 77, 244, 0) 70%);
  pointer-events: none;
}

.ptech-page-hero .badge-tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #A5B4FC;
  background: rgba(165, 180, 252, 0.12);
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid rgba(165, 180, 252, 0.25);
  margin-bottom: 16px;
}

.ptech-page-hero .page-title {
  font-size: 46px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 14px;
}

.ptech-page-hero .page-title span {
  background: linear-gradient(135deg, #93C5FD 0%, #C4B5FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ptech-page-hero .hero-desc {
  font-size: 16.5px;
  color: #94A3B8;
  max-width: 620px;
  margin: 0 auto 24px;
}

.ptech-page-hero .breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  padding: 8px 22px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13.5px;
}

.ptech-page-hero .breadcrumb-nav a {
  color: #CBD5E1;
}

.ptech-page-hero .breadcrumb-nav a:hover {
  color: #ffffff;
}

.ptech-page-hero .breadcrumb-nav .divider {
  color: #64748B;
}

.ptech-page-hero .breadcrumb-nav .current {
  color: #818CF8;
  font-weight: 600;
}

/* Contact Info Cards */
.contact-info-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.contact-info-card:hover {
  transform: translateY(-6px);
  border-color: var(--th-theme-color);
  box-shadow: 0 15px 35px rgba(104, 77, 244, 0.1);
}

.contact-info-card.highlight-card {
  background: linear-gradient(145deg, #F8FAFC 0%, #EEF2FF 100%);
  border-color: #C7D2FE;
}

.contact-info-card .card-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: #F5F3FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--th-theme-color);
  margin-bottom: 22px;
  transition: all 0.3s;
}

.contact-info-card:hover .card-icon-wrap {
  background: var(--th-theme-color);
  color: #ffffff;
}

.contact-info-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0F172A;
}

.contact-info-card .card-text {
  font-size: 14.5px;
  line-height: 25px;
  color: #64748B;
  margin-bottom: 20px;
  flex-grow: 1;
}

.contact-info-card .card-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--th-theme-color);
  display: inline-flex;
  align-items: center;
}

.contact-info-card .card-link:hover {
  color: #0F172A;
  padding-left: 4px;
}

.contact-direct-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-direct-items .direct-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-direct-items .direct-item i {
  font-size: 18px;
  color: var(--th-theme-color);
  width: 24px;
}

.contact-direct-items .direct-item .label {
  display: block;
  font-size: 12px;
  color: #64748B;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-direct-items .direct-item .val {
  font-size: 14.5px;
  font-weight: 700;
  color: #0F172A;
}

/* Contact Form Container */
.ptech-form-container {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 42px 36px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
}

.form-header .form-title {
  font-size: 32px;
  font-weight: 800;
  margin-top: 4px;
  margin-bottom: 8px;
}

.form-header .form-title span {
  color: var(--th-theme-color);
}

.form-header .form-subtitle {
  font-size: 15px;
  color: #64748B;
  margin: 0;
}

.form-floating-custom {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-floating-custom label {
  font-size: 13.5px;
  font-weight: 700;
  color: #334155;
}

.form-control-custom {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  background: #F8FAFC;
  font-size: 14.5px;
  color: #0F172A;
  outline: none;
  transition: all 0.25s ease;
}

.form-control-custom:focus {
  border-color: var(--th-theme-color);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(104, 77, 244, 0.12);
}

/* Sidebar Info */
.ptech-contact-sidebar .sidebar-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 30px 26px;
}

.sidebar-box .box-heading {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 22px;
  color: #0F172A;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.features-list li i {
  color: var(--th-theme-color);
  font-size: 18px;
  margin-top: 4px;
}

.features-list li strong {
  display: block;
  font-size: 15px;
  color: #0F172A;
  margin-bottom: 2px;
}

.features-list li p {
  font-size: 13px;
  color: #64748B;
  margin: 0;
  line-height: 20px;
}

.hours-box .timing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #E2E8F0;
  font-size: 14px;
}

.hours-box .timing-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Map Card Wrapper */
.map-card-wrapper {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border: 1px solid #E2E8F0;
}

/* ========================================================
   FOOTER (Original Deep Dark Navy & Glowing Brand Look)
   ======================================================== */
.footer-wrapper,
footer.footer-wrapper,
footer#contact {
  background: #0B132B !important;
  color: #94A3B8 !important;
  padding: 70px 0 0 !important;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-widget .widget_title {
  color: #FFFFFF !important;
  font-size: 19px !important;
  font-weight: 800 !important;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
  position: relative;
  padding-bottom: 12px;
}

.footer-widget .widget_title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, #684DF4, #38BDF8);
  border-radius: 2px;
}

.footer-widget p {
  color: #94A3B8 !important;
  font-size: 14.5px !important;
  line-height: 1.7;
}

.footer-widget ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-widget ul li {
  margin-bottom: 12px !important;
}

.footer-widget ul li a {
  color: #CBD5E1 !important;
  font-size: 14.5px !important;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.footer-widget ul li a:hover {
  color: #38BDF8 !important;
  transform: translateX(4px);
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 24px 0 !important;
  margin-top: 50px !important;
  background: rgba(7, 10, 19, 0.6) !important;
}

.footer-copyright p {
  color: #64748B !important;
  font-size: 13.5px !important;
  margin: 0 !important;
}

/* ========================================================
   GLOBAL MOBILE RESPONSIVE POLISH (< 991px, < 768px, < 576px)
   ======================================================== */
html, body {
  overflow-x: hidden !important;
  width: 100%;
}

@media (max-width: 991px) {
  .ptech-topbar {
    padding: 6px 0;
    font-size: 12.5px;
  }
  .ptech-topbar-info {
    gap: 14px;
  }
  .ptech-navbar-wrap {
    padding: 10px 0;
  }
  .ptech-main-logo-img {
    max-height: 38px !important;
  }
  .footer-widget {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .ptech-topbar {
    padding: 6px 0;
  }
  .ptech-topbar-info .info-item i {
    font-size: 12px;
  }
  .ptech-quote-btn {
    display: none !important;
  }
  .ptech-srv-hero {
    padding: 40px 20px;
  }
  .ptech-srv-hero h1 {
    font-size: 28px !important;
  }
  .ptech-cards-grid,
  .ptech-tech-grid,
  .ptech-process-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .footer-wrapper {
    padding: 50px 0 0 !important;
  }
  .footer-copyright {
    margin-top: 30px !important;
    padding: 18px 0 !important;
  }
}

@media (max-width: 576px) {
  .ptech-topbar-info {
    justify-content: center;
    width: 100%;
  }
  .ptech-topbar-social {
    display: none !important;
  }
  .ptech-navbar-wrap {
    padding: 8px 0;
  }
  .ptech-main-logo-img {
    max-height: 35px !important;
  }
  .footer-widget .widget_title {
    font-size: 17px !important;
    margin-bottom: 18px;
  }
  .footer-widget p,
  .footer-widget ul li a {
    font-size: 13.5px !important;
  }
}

