* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  
}
html {
  scroll-behavior: smooth !important;
}
body {
  font-family: "Source Sans 3", sans-serif;
  background: #ffffff;
  min-height: 100vh;
}
p{
  font-size: 17px;
}
/* Top Bar */
.topbar {
  background: linear-gradient(135deg, #df851a 0%, #ef930c 100%);
  color: white;
  padding: 2px 0;
  font-size: 16px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-info {
  display: flex;
  gap: 30px;
}
.topbar-info a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s;
}
.topbar-info a:hover {
  opacity: 0.8;
}
.topbar-social {
  display: flex;
  gap: 12px;
}
.topbar-social a {
  color: white;
  width: 32px;
      padding: 10px;
  height: 32px;
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.1);
}
.topbar-social a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
@media (max-width: 767.98px) {
   .topbar {          
      display: none !important;
   }
}
/* Header */
header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}
header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}
.container {
  max-width: 1400px;
  margin: 0 auto;
    width: 100%;
    height: 100%;
  padding: 0 40px;
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Logo left, nav+button right */
  height: 60px;
}
.logo img {
  width: 150px;
}
.logo:hover {
  transform: scale(1.05);
}
/* New wrapper for centering menu + button */
.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 60px; /* Space between menu and button */
}
.main-nav-menu {
  display: flex;
  list-style: none;
  gap: 45px;
  align-items: center;
  margin: 0;
}
.main-nav-menu > li {
  position: relative;
}
.main-nav-menu > li > a {
  color: #21558d;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
  position: relative;
}
.main-nav-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #ff5e14 0%, #ff8a3d 100%);
  transition: width 0.3s;
}
.main-nav-menu > li > a:hover {
  color: #ff5e14;
}
.main-nav-menu > li > a:hover::after {
  width: 100%;
}
.main-nav-menu > li > a i {
  font-size: 10px;
  transition: transform 0.3s;
}
.menu-has-mega-menu {
  position: static !important;  /* Ye add karo - sirf mega menu ke liye */
}
.menu-has-mega-menu:hover > a i {
  transform: rotate(180deg);
}
.menu-has-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  list-style: none;
  padding: 10px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 999;
}
/* Call to Action Button */
.cta-button {
  background: linear-gradient(135deg, #2b91c7 0%, #235096 100%);
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 1px 11px rgb(35 82 151);
  text-decoration: none;
  white-space: nowrap;
}
.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgb(35 82 151);
}
/* Mega Menu Styles (unchanged) */
.mega-menu-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding-top: 0px;
}
.mega-menu {
  background: white;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-radius: 0px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  max-height: 0;
  overflow: hidden;
}
.menu-has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: 800px;
}
/* Rest of mega menu styles remain exactly the same */
.mega-menu-container {
  display: flex;
  padding: 40px;
  gap: 40px;
}
.mega-menu-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #1269a7 0%, #225599 100%);
  border-radius: 8px;
  padding: 0px 0 !important;
  border: 1px solid #e9ecef;
}
.mega-menu-category {
  padding: 14px 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 16px;
  color: white;
  transition: all 0.3s;
  border-left: 3px solid transparent;
  margin: 4px 0;
}
.mega-menu-category:hover {
  background: white;
  color: #ff5e14;
  border-left-color: #21488e;
  padding-left: 30px;
}
.mega-menu-category.active {
  background: linear-gradient(90deg, rgb(223 136 23) 0%, rgb(235 144 16) 100%);
    color: #ffffff;
    border-left: 3px solid #ff5e14;
    font-weight: 600;
}
.mega-menu-category i {
  font-size: 11px;
  opacity: 0.6;
  transition: all 0.3s;
}
.mega-menu-category:hover i,
.mega-menu-category.active i {
  opacity: 1;
  transform: translateX(3px);
}
.mega-menu-content {
  flex: 1;
  display: none;
  animation: fadeIn 0.4s ease;
}
.mega-menu-content.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 45px;
}
.mega-menu-column h4 {
    font-size: 23px;
    font-weight: 600;
    color: #de8419;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ff5e14;
    display: inline-block;
    position: relative;
}
.mega-menu-column h4::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30%;
  height: 2px;
  background: #ff8a3d;
}
.mega-menu-column ul {
  list-style: none;
}
.mega-menu-column ul li {
  margin-bottom: 12px;
}
.mega-menu-column ul li a {
      color: #1f1f1f;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight:700;
    padding: 4px 0;
    position: relative;
}
.mega-menu-column ul li a::before {
  content: "→";
  opacity: 0;
  position: absolute;
  left: -15px;
  transition: all 0.3s;
  color: #ff5e14;
}
.mega-menu-column ul li a:hover {
  color: #ff5e14;
  padding-left: 15px;
}
.mega-menu-column ul li a:hover::before {
  opacity: 1;
  left: 0;
}
/* Demo Content */
.demo-content {
  margin-top: 100px;
  padding: 60px 0;
  text-align: center;
}
.demo-content h1 {
  font-size: 48px;
  color: #2d3436;
  margin-bottom: 20px;
  font-weight: 700;
}
.demo-content p {
  font-size: 18px;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}
/* Responsive */
@media (max-width: 1200px) {
  .mega-menu-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }
  .nav-wrapper {
    gap: 40px;
  }
}
@media (max-width: 992px) {
  .main-nav-menu,
  .cta-button {
    display: none;
  }
  .mega-menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .mega-menu-container {
    flex-direction: column;
    padding: 30px 20px;
  }
  .mega-menu-sidebar {
    width: 100%;
    margin-bottom: 25px;
  }
  .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .topbar-info {
    flex-direction: column;
    gap: 10px;
  }
}
/* Dropdown Menu Styles */
.menu-has-dropdown {
  position: relative !important;
}

.menu-has-dropdown > a i {
  transition: transform 0.3s;
}

.menu-has-dropdown:hover > a i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  background: white !important;
  min-width: 220px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  padding: 15px 0;
  margin-top: 10px;
  list-style: none;
  z-index: 9999 !important;
  display: block !important;
}

.menu-has-dropdown:hover .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
} 

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 25px;
  color:  #1f1f1f;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s;
  position: relative;
}

.dropdown-menu li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 70%;
  background: linear-gradient(135deg, #ff5e14 0%, #ff8a3d 100%);
  transition: width 0.3s;
  border-radius: 0 4px 4px 0;
}

.dropdown-menu li a:hover {
  color: #ff5e14;
  padding-left: 35px;
  background: #fff5f0;
}

.dropdown-menu li a:hover::before {
  width: 4px;
}
/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100%;
  padding-top: 31px;
  padding-bottom: 32px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(0 0 0 / 84%) 0%, rgb(23 76 108) 100%);
    z-index: -1;  
}
.hero-container {
  position: relative;
  z-index: 1;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-text {
  color: white;
}
.hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}
.gradient-text {
  background: linear-gradient(135deg, #ff8a3d, #ff5e14);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text {
  background: linear-gradient(135deg, #e0861a, #ff9d0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 0px;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-primary {
  background: linear-gradient(135deg, #df8519, #ec900f);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(255, 94, 20, 0.4);
}
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255, 94, 20, 0.5);
}
.btn-secondary {
  background: transparent;
  color: white;
  padding: 16px 32px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ff5e14;
  transform: translateY(-4px);
}
/* Glassmorphic Form */
.hero-form-wrapper {
  display: flex;
  justify-content: center;
}
.glass-form {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.form-title {
  color: #f29312;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}
.form-subtitle {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 30px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  font-size: 15px;
  transition: all 0.3s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff8a3d;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(255, 142, 61, 0.3);
}
.contact-form select {
  cursor: pointer;
}
.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #e0861a, #eb900f);
  color: white;
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 94, 20, 0.4);
}
/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-form-wrapper {
    justify-content: center;
  }
  
  .hero-title {
    font-size: 44px;
  }
  
  .trusted-partners {
    justify-content: center;
  }
  
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .glass-form {
    padding: 30px 20px;
  }
  
  .hero-content {
    gap: 40px;
  }
  
  .form-title {
    font-size: 24px;
  }
  
  .trusted-partners {
    gap: 15px;
  }
  
  .partner-box {
    padding: 10px 16px;
  }
  
  .partner-box img {
    height: 28px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 42px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .glass-form {
    padding: 25px 15px;
  }
  
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .trusted-partners {
    gap: 10px;
  }
  
  .partner-box {
    padding: 8px 12px;
  }
  
  .partner-box img {
    height: 24px;
  }
}
.side-balloon2 {
    position: absolute;
    right: -106px !important;
    top: 60% !important;
    transform: translateY(-50%);
    width: 240px !important;
    pointer-events: none;
    z-index: 10;
    animation: float 12s ease-in-out infinite;
}
/* Trusted Partners / Badges - Boxed Style */
.trusted-partners {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}
.partner-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  padding: 16px 24px;
  width: 173px;
  height: 76px; /* Sab ka fixed height */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.partner-box:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ff8a3d;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 142, 61, 0.2);
}
.partner-box img {
  max-width: 130px; /* Image ko box ke andar fit rakhega */
  max-height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Dark background pe white effect */
}
/* Responsive */
@media (max-width: 992px) {
  .trusted-partners {
    justify-content: center;
    gap: 20px;
  }
  .partner-box {
    width: 160px;
    height: 85px;
    padding: 14px 20px;
  }
  .partner-box img {
    max-width: 120px;
    max-height: 45px;
  }
}
@media (max-width: 576px) {
  .trusted-partners {
    flex-direction: column;
    gap: 16px;
  }
  .partner-box {
    width: 200px;
    height: 80px;
  }
}
.rating-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 60px;
  font-size: 16px;
  color: #333;
  flex-wrap: wrap;
}
.star {
  color: #df851a;
  font-size: 28px;
  margin-right: 5px;
}
.rating-row strong {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}
.rating-row .text-muted {
  color: #666;
}
.review-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}
.review-icons img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}
/* Stats Row */
.stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  gap: 0;
}
.stat-item {
  text-align: center;
  flex: 1;
  max-width: 350px;
  padding: 0 40px;
}
.stat-item.divider {
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
}
.stat-item h2 {
  font-size: 72px;
  font-weight: 700;
  color: #ea8f0f;
  margin-bottom: 10px;
  line-height: 1;
}
.stat-item p {
  font-size: 18px;
  color: #666;
  font-weight: 400;
}
/* Trusted Text */
.trusted-text {
  font-size: 22px;
  font-weight: 600;
  color: #21558d;
  text-align: center;
  margin: 50px 0 40px;
}
.trusted-text .highlight {
  color: #e38815;
}
/* Logo Slider */
.partner-logo-slider {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 30px;
}
.partner-logo-slider:before {
  content: "";
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  z-index: 9;
}
.partner-logo-slider:after {
  content: "";
  background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  z-index: 9;
}
.partner-logo-slide {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  animation: logo-scroll 30s linear infinite;
}
.partner-logo-slide:hover {
  animation-play-state: paused;
}
.partner-logo-slide img {
  width: 150px;
  height: auto;
  border: 1px solid #b2b2b2;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.partner-logo-slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .stats-row {
    flex-direction: column;
    gap: 40px;
  }
  .stat-item.divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 40px 0;
  }
  .stat-item h2 {
    font-size: 56px;
  }
  .partner-logo-slide {
    gap: 15px;
  }
  .partner-logo-slide img {
    width: 120px;
    padding: 15px;
  }
}

.trust-badge {
  background-color: #161b22;
  border-radius: 12px;
  padding: 12px 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.trust-badge i {
  font-size: 1.8rem;
  width: 50px;
}
.trust-badge .text {
  flex: 1;
}
.trust-badge .check {
  color: #39d353;
  font-size: 1.5rem;
}
.ssl-badge i {
  color: #39d353;
}
.money-badge i {
  color: #58a6ff;
}
.support-badge i {
  color: #a371f7;
}
.stats-section {
  text-align: center;
  padding-top: 10px;
}
.stats-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
}
.stats-label {
  font-size: 1rem;
  color: #8b949e;
}
.chat-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #00d4aa;
  color: white;
  border-radius: 50px;
  padding: 15px 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}
.social-icons a {
  margin-right: 15px;
  font-size: 1.4rem;
  color: #8b949e;
}
.social-icons a:hover {
  color: #ffffff;
}
.contact-us-btn {
  background-color: #1f6feb;
  color: white;
  border-radius: 50px;
  padding: 12px 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.new_footer_area {
  background: #fbfbfd;
}
.new_footer_top {
  padding: 36px 0px 277px;
  position: relative;
  overflow-x: hidden;
}
.new_footer_area .footer_bottom {
  padding-top: 5px;
  padding-bottom: 50px;
}
.footer_bottom {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: #7f88a6;
  padding: 27px 0px;
}
.new_footer_top .company_widget p {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  color: #6a7695;
  margin-bottom: 20px;
}
.new_footer_top .company_widget .f_subscribe_two .btn_get {
  border-width: 1px;
  margin-top: 20px;
}
.btn_get_two:hover {
  background: transparent;
  color: #5e2ced;
}
.btn_get:hover {
  color: #fff;
  background: #6754e2;
  border-color: #6754e2;
  -webkit-box-shadow: none;
  box-shadow: none;
}
a:hover,
a:focus,
.btn:hover,
.btn:focus,
button:hover,
button:focus {
  text-decoration: none;
  outline: none;
}
.new_footer_top .f_widget.about-widget .f_list li a:hover {
  color: #5e2ced;
}
.new_footer_top .f_widget.about-widget .f_list li {
  margin-bottom: 11px;
}
.f_widget.about-widget .f_list li:last-child {
  margin-bottom: 0px;
}
.f_widget.about-widget .f_list li {
  margin-bottom: 15px;
}
.f_widget.about-widget .f_list {
  margin-bottom: 0px;
}
.new_footer_top .f_social_icon a {
  width: 44px;
  height: 44px;
  line-height: 43px;
  background: transparent;
  border: 1px solid #e2e2eb;
  font-size: 24px;
}
.f_social_icon a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 14px;
  line-height: 45px;
  color: #858da8;
  display: inline-block;
  background: #ebeef5;
  text-align: center;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.ti-facebook:before {
  content: "\e741";
}
.ti-twitter-alt:before {
  content: "\e74b";
}
.ti-vimeo-alt:before {
  content: "\e74a";
}
.ti-pinterest:before {
  content: "\e731";
}
.btn_get_two {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #5e2ced;
  border-color: #5e2ced;
  color: #fff;
}
.btn_get_two:hover {
  background: transparent;
  color: #5e2ced;
}
.new_footer_top .f_social_icon a:hover {
  background: #5e2ced;
  border-color: #5e2ced;
  color: white;
}
.new_footer_top .f_social_icon a + a {
  margin-left: 4px;
}
.new_footer_top .f-title {
  margin-bottom: 30px;
  color: #263b5e;
}
.f_600 {
  font-weight: 600;
}
.f_size_18 {
  font-size: 18px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #4b505e;
}
.new_footer_top .f_widget.about-widget .f_list li a {
  color: #6a7695;
}
.new_footer_top .footer_bg {
  position: absolute;
  bottom: 0;
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigB8iI5tb8WSVBuVUGc9UjjB8O0708X7Fdic_4O1LT4CmLHoiwhanLXiRhe82yw0R7LgACQ2IhZaTY0hhmGi0gYp_Ynb49CVzfmXtYHUVKgXXpWvJ_oYT8cB4vzsnJLe3iCwuzj-w6PeYq_JaHmy_CoGoa6nw0FBo-2xLdOPvsLTh_fmYH2xhkaZ-OGQ/s16000/footer_bg.png")
    no-repeat scroll center 0;
  width: 100%;
  height: 266px;
}
.new_footer_top .footer_bg .footer_bg_one {
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEia0PYPxwT5ifToyP3SNZeQWfJEWrUENYA5IXM6sN5vLwAKvaJS1pQVu8mOFFUa_ET4JuHNTFAxKURFerJYHDUWXLXl1vDofYXuij45JZelYOjEFoCOn7E6Vxu0fwV7ACPzArcno1rYuVxGB7JY6G7__e4_KZW4lTYIaHSLVaVLzklZBLZnQw047oq5-Q/s16000/volks.gif")
    no-repeat center center;
  width: 330px;
  height: 105px;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  left: 30%;
  -webkit-animation: myfirst 22s linear infinite;
  animation: myfirst 22s linear infinite;
}
.new_footer_top .footer_bg .footer_bg_two {
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhyLGwEUVwPK6Vi8xXMymsc-ZXVwLWyXhogZxbcXQYSY55REw_0D4VTQnsVzCrL7nsyjd0P7RVOI5NKJbQ75koZIalD8mqbMquP20fL3DxsWngKkOLOzoOf9sMuxlbyfkIBTsDw5WFUj-YJiI50yzgVjF8cZPHhEjkOP_PRTQXDHEq8AyWpBiJdN9SfQA/s16000/cyclist.gif")
    no-repeat center center;
  width: 88px;
  height: 100px;
  background-size: 100%;
  bottom: 0;
  left: 38%;
  position: absolute; 
  -webkit-animation: myfirst 30s linear infinite;
  animation: myfirst 30s linear infinite;
}
@-moz-keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}
@-webkit-keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}
@keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}
html {
  scroll-behavior: smooth;
}
::-webkit-scrollbar {
  width: 5px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #0a0f1a;
}
/* Thumb */
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #df851a 0%, #ef930c 100%);
  border-radius: 10px;
}
/* Hover */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #df851a 0%, #ef930c 100%);
}
.industry-section {
  background-color: #f8f9fa; /* Light background similar to the site */
  padding: 80px 0;
}
.industry-heading {
  color: #ff6600; /* Orange color matching the brand */
  font-weight: bold;
}
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-10px);
}
.card-icon {
  font-size: 40px;
  color: #333;
  margin-bottom: 15px;
}
.highlight-badge {
  background-color: #ffe5d9; /* Light peach/orange */
  color: #ff6600;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 15px;
}
.impact-box {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.impact-item {
  text-align: center;
  background-color: #f8f9fa;
  padding: 10px;
  border-radius: 10px;
  flex: 1;
  margin: 0 5px;
}
.impact-value {
  font-weight: bold;
  color: #ff6600;
  font-size: 18px;
}
.btn-explore {
  background-color: #ff6600;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 10px 25px;
  margin-top: 20px;
}
.btn-explore:hover {
  background-color: #e65c00;
}
  /* Stats Section - Relative for absolute child */
  .stats-section {
    position: relative;
    margin-top: 50px;
    overflow: hidden;
  }

  /* Side Balloon - Floating animation like real hot air balloon */
.side-balloon {
    position: absolute;
    left: 20px;
    top: 5%;
    transform: translateY(-50%);
    width: 380px;
    pointer-events: none;
    z-index: 10;
    animation: float 12s ease-in-out infinite;
}

  .side-balloon img {
    width: 160px;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3)); /* Real depth feel */
  }
  .side-balloon2 {
       position: absolute;
    right: -76px;
    top: 60%;
    transform: translateY(-50%);
    width: 250px;
    pointer-events: none;
    z-index: 10;
    animation: float 12s ease-in-out infinite;
}

  .side-balloon2 img {
    width: 130px;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3)); /* Real depth feel */
  }

  /* Real hot air balloon jaisa gentle floating animation */
  @keyframes float {
    0% {
      transform: translateY(-50%) translateY(0px) rotate(-2deg);
    }
    50% {
      transform: translateY(-50%) translateY(-40px) rotate(2deg);
    }
    100% {
      transform: translateY(-50%) translateY(0px) rotate(-2deg);
    }
  }

  /* Thoda side sway (left-right) add kiya for more realistic feel */
  @keyframes sway {
    0% { transform: translateX(0) rotate(0deg); }
    50% { transform: translateX(20px) rotate(3deg); }
    100% { transform: translateX(0) rotate(0deg); }
  }

  .side-balloon {
    animation: 
      float 12s ease-in-out infinite,
      sway 18s ease-in-out infinite;
  }

  /* Hover par thoda aur andar aaye (premium feel) */
  @media (min-width: 1200px) {
    .stats-section:hover .side-balloon {
      right: -40px;
      transition: right 0.8s ease;
    }
  }

  /* Mobile par hide - design safe rahega */
  @media (max-width: 1199px) {
    .side-balloon {
      display: none;
    }
  }

  .industry-section {
  background-color: #074064; /* Light background similar to the site */
  padding: 80px 0;
}
.industry-heading {
  color: #ff6600; /* Orange color matching the brand */
  font-weight: bold;
}
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-10px);
}
.card-icon {
  font-size: 40px;
  color: #333;
  margin-bottom: 15px;
}
.highlight-badge {
  background-color: #ffe5d9; /* Light peach/orange */
  color: #ff6600;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 15px;
}
.impact-box {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.impact-item {
  text-align: center;
  background-color: #f8f9fa;
  padding: 10px;
  border-radius: 10px;
  flex: 1;
  margin: 0 5px;
}
.impact-value {
  font-weight: bold;
  color: #ff6600;
  font-size: 18px;
}
.btn-explore {
  background-color: #ff6600;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 10px 25px;
  margin-top: 20px;
}
.btn-explore:hover {
  background-color: #e65c00;
}
#tech-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #074064 0%, #0a5a8a 50%, #074064 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  font-family: "Segoe UI", Arial, sans-serif;
  color: white;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}


@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes floatBubbles {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

#tech-section h2 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  font-weight: 700 !important;
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
  0%,
  100% {
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3),
      0 0 20px rgba(255, 255, 255, 0.2);
  }
  50% {
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4),
      0 0 30px rgba(255, 255, 255, 0.4);
  }
}

/* Chips Container */
.tech-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 70px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Individual Chip */
.tech-chip {
  display: flex;
  color: black;
  align-items: center;
  background: rgb(255 255 255);
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  min-width: 140px;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.tech-chip::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(7, 64, 100, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.tech-chip:hover::before {
  width: 300px;
  height: 300px;
}

.tech-chip:hover {
  transform: translateY(-10px) scale(1.08);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.3);
}

.tech-chip.active {
  background: white;
  color: #333;
  transform: scale(1.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 255, 255, 0.5);
  
}
/* 
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4),
      0 0 25px rgba(255, 255, 255, 0.5);
  }
  50% {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5),
      0 0 35px rgba(255, 255, 255, 0.7);
  }
} */

.tech-chip i {
  font-size: 32px;
  margin-right: 12px;
  transition: transform 0.5s ease;
  position: relative;
  z-index: 1;
}

.tech-chip.active i {
  transform: rotate(360deg) scale(1.3);
}

.tech-chip span {
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

/* Card Reveal */
#tech-card {
  max-width: 400px;
  margin: 0 auto;
  background: white;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  opacity: 0;
  transform: translateY(60px) scale(0.85);
  transition: all 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 50px 30px;
  color: #333;
  position: relative;
  z-index: 1;
}

#tech-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

#tech-card i {
  font-size: 140px;
  margin-bottom: 30px;
  display: block;
  transition: all 0.7s ease;
}

#tech-card .tech-name {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

#tech-card .tech-desc {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

@media (max-width: 768px) {
  #tech-section h2 {
    font-size: 2rem;
  }

  .tech-chip {
    min-width: 120px;
    padding: 10px 20px;
  }

  .tech-chip i {
    font-size: 28px;
  }

  .tech-chip span {
    font-size: 1rem;
  }
}
.ul{
  padding-left:0px !important;
}
.card-bg-blue-1 {
      background-color: #0a5a8a;
    }

    .rounded-2xl {  
      border-radius: 7px !important; /* 16px */
    }

    /* Optional hover lift effect */
    .service-card {
      transition: all 0.35s ease;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    }

    /* Gradient button */
    .view-more-btn {
      background: linear-gradient(to right, #0a5a8a);
    } 

    .faq-section {
    max-width: 100%;
    margin: 0 auto;
  }


  .faq-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .question {
    font-size: 1.15rem;
    font-weight: 600;
    padding-right: 2.5rem;
  }

  .icon {
    width: 24px;
    height: 24px;
    transition: transform 0.4s ease;
    color: #64748b;
  }

  .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #21558d;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
  background: #ff5e14;
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -9px);
  background: #ff5e14;
}
@media (max-width: 992px) {
  .header-main {
    height: 70px;
    padding: 0 20px;
  }
  
  .logo img {
    width: 120px;
  }
  
  .mobile-menu-toggle {
    display: flex !important;
    order: 3;
  }
  
  .nav-wrapper {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    padding: 0;
    transition: left 0.4s ease;
    overflow-y: auto;
    z-index: 999;
    gap: 0;
    display: flex !important;
  }
  
  .nav-wrapper.active {
    left: 0 !important;
  }
  
  .main-nav-menu {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    gap: 0;
    align-items: stretch;
    padding: 0;
  }
  
  .main-nav-menu > li {
    width: 100%;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
  }
  
  .main-nav-menu > li > a {
    padding: 18px 20px;
    width: 100%;
    justify-content: space-between;
    font-size: 16px;
    display: flex;
  }
  
  .main-nav-menu > li > a::after {
    display: none;
  }
  
  .main-nav-menu > li > a i {
    font-size: 12px;
  }
  
  /* Services Mega Menu Mobile */
  .mega-menu-wrapper {
    position: static;
    width: 100%;
    padding: 0;
  }
  
  .mega-menu {
    position: static;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    transition: max-height 0.4s ease;
  }
  
  .menu-has-mega-menu.active .mega-menu {
    max-height: 3000px;
  }
  
  .mega-menu-container {
    flex-direction: column;
    padding: 15px;
    gap: 15px;
  }
  
  .mega-menu-sidebar {
    width: 100%;
    margin-bottom: 0;
    border-radius: 6px;
    padding: 0px 0;
  }
  
  .mega-menu-category {
    padding: 12px 20px;
    font-size: 14px;
    margin: 2px 0;
  }
  
  .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .mega-menu-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  
  .mega-menu-column ul li {
    margin-bottom: 8px;
  }
  
  .mega-menu-column ul li a {
    font-size: 15px;
    font-weight: 600;
    padding: 8px 0;
  }
  
  /* Dropdown Mobile Style */
  .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: #f8f9fa;
  }
  
  .menu-has-dropdown.active .dropdown-menu {
    max-height: 600px;
    padding: 10px 0;
  }
  
  .dropdown-menu li {
    border-bottom: 1px solid #e0e0e0;
  }
  
  .dropdown-menu li:last-child {
    border-bottom: none;
  }
  
  .dropdown-menu li a {
    padding: 14px 30px;
    font-size: 15px;
    background: transparent;
  }
  
  .dropdown-menu li a:hover {
    background: white;
    padding-left: 35px;
  }
  
  .dropdown-menu li a::before {
    display: none;
  }
  
  /* CTA Button Mobile */
  .cta-button {
    display: block !important;
    width: calc(100% - 40px);
    text-align: center;
    margin: 20px 20px 30px 20px;
    padding: 15px 28px;
    font-size: 16px;
  }
  
  /* Active state styling */
  .menu-has-mega-menu.active > a,
  .menu-has-dropdown.active > a {
    color: #ff5e14;
    background: #fff5f0;
  }
  
  .menu-has-mega-menu.active > a i,
  .menu-has-dropdown.active > a i {
    transform: rotate(180deg);
  }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
  .header-main {
    padding: 0 15px;
  }
  
  .logo img {
    width: 100px;
  }
  
  .mobile-menu-toggle span {
    width: 24px;
  }
  
  .main-nav-menu > li > a {
    font-size: 15px;
    padding: 16px 15px;
  }
  
  .dropdown-menu li a {
    padding: 12px 25px;
    font-size: 14px;
  }
  
  .mega-menu-category {
    font-size: 13px;
    padding: 10px 15px;
  }
  
  .mega-menu-column ul li a {
    font-size: 14px;
  }
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-col {
  width: 100%;
}

.form-col input,
.form-col select {
  margin-bottom: 0;
}

.project-showcase {
      padding: 80px 0;
      background: white;
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }
    
    .project-showcase::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(10,90,138,0.03)"/></svg>');
      opacity: 1;
    }
    
    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px;
      position: relative;
      z-index: 1;
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 20px;
    }
    
    .section-subtitle {
      color: #ff8a3d;
      font-size: 16px;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 15px;
    }
    
    .section-title {
      color: #1a1a1a;
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 10px;
      line-height: 1.2;
    }
    
    .gradient-text {
      background: linear-gradient(135deg, #df851a, #ec910f);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .section-description {
      color: #666;
      font-size: 18px;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }
    
    /* Project Tabs */
    .project-tabs {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 50px;
      flex-wrap: wrap;
    }
    
    .tab-btn {
      background: white;
      color: #21558d;
      border: 2px solid #e0e0e0;
      padding: 12px 30px;
      border-radius: 50px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }
    
    .tab-btn:hover {
      background: #fff5f0;
      border-color: #ff8a3d;
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(255, 138, 61, 0.2);
    }
    
    .tab-btn.active {
      background: linear-gradient(135deg, #e0861a, #eb900f);
      border-color: #ff5e14;
      color:white;
      box-shadow: 0 8px 25px rgba(255, 94, 20, 0.4);
    }
    
    /* Projects Grid */
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-bottom: 50px;
    }
    
    .project-card {
      background: #0a5a8a;
      border-radius: 7px;
      border: none;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      position: relative;
      box-shadow: 0 5px 20px rgba(10, 90, 138, 0.15);
    }
    
    .project-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(10, 90, 138, 0.25);
    }
    
    .project-image {
      position: relative;
      overflow: hidden;
      height: 280px;
      border-bottom: 3px solid #ff8a3d;
    }
    
    .project-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s;
    }
    
    .project-card:hover .project-image img {
      transform: scale(1.1);
    }
    
    .project-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, rgba(10, 90, 138, 0.7) 0%, rgba(10, 90, 138, 0.95) 100%);
      opacity: 0;
      transition: opacity 0.4s;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .project-card:hover .project-overlay {
      opacity: 1;
    }
    
    .view-project-btn {
      background: linear-gradient(135deg, #e08519, #ec9010);
      color: white;
      padding: 12px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 10px;
      transform: translateY(20px);
      transition: transform 0.4s;
    }
    
    .project-card:hover .view-project-btn {
      transform: translateY(0);
    }
    
    .project-info {
      padding: 25px;
    }
    
    .project-category {
      display: inline-block;
      background: #df8d14;
      color: white;
      padding: 6px 15px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .project-title {
      color: white;
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 10px;
      line-height: 1.3;
    }
    
    .project-description {
      color: rgba(255, 255, 255, 0.85);
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 15px;
    }
    
    .project-tech {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    
    .tech-tag {
      background: rgba(255, 255, 255, 0.15);
      color: white;
      padding: 5px 12px;
      border-radius: 6px;
      font-size: 12px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      font-weight: 500;
    }
    
    /* View All Button */
    .view-all-wrapper {
      text-align: center;
    }
    
    .view-all-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: #0a5a8a;
      color: white;
      border: 2px solid #0a5a8a;
      padding: 16px 40px;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s;
    }
    
    .view-all-btn:hover {
      background: linear-gradient(135deg, #ff8a3d, #ff5e14);
      border-color: #ff5e14;
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(255, 94, 20, 0.4);
    }
    
    /* Responsive */
    @media (max-width: 1200px) {
      .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
      }
    }
    
    @media (max-width: 768px) {
      .project-showcase {
        padding: 60px 0;
      }
      
      .container {
        padding: 0 20px;
      }
      
      .section-title {
        font-size: 36px;
      }
      
      .section-description {
        font-size: 16px;
      }
      
      .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .project-tabs {
        gap: 10px;
      }
      
      .tab-btn {
        padding: 10px 20px;
        font-size: 14px;
      }
      
      .project-image {
        height: 220px;
      }
    }
    
    @media (max-width: 576px) {
      .section-title {
        font-size: 32px;
      }
      
      .project-info {
        padding: 20px;
      }
      
      .project-title {
        font-size: 20px;
      }
    }
    
    
    .service-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border-radius:7px;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
        }

        .card-bg-blue-1 {
            background: linear-gradient(135deg, #0a5a8a 0%, #074064 100%);
            border: none;
        }

        .service-card img {
            height: 100%;
            object-fit: contain;
        }

        .badge-custom {
            font-size: 0.75rem;
            font-weight: 500;
            padding: 0.375rem 0.75rem;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
            display: inline-block;
        }

        .line-clamp-2 {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .cta-button {
            background: linear-gradient(135deg, #0a5a8a 0%, #074064 100%);
            color: white;
            border: none;
            padding: 12px 32px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(10, 90, 138, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(10, 90, 138, 0.4);
        }

        .learn-more-btn {
            background: white;
            color: #074064;
            font-size: 0.875rem;
            font-weight: 500;
            padding: 0.5rem 1.25rem;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .learn-more-btn:hover {
            background: rgba(255, 255, 255, 0.9);
            color: #074064;
        }

        .card-body-custom {
            padding: 1rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .card-footer-custom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            padding-top: 1rem;
        }

        @media (max-width: 768px) {
            h2 {
                font-size: 2rem !important;
            }
        }

        .testimonial-section {
            background-image: url('https://img.freepik.com/free-vector/digital-technology-background-with-abstract-wave-border_53876-117508.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            padding: 4rem 0;
            margin-top: 3rem;
        }

        .testimonial-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 0;
        }

        .testimonial-section .content-wrapper {
            position: relative;
            z-index: 10;
        }

        .star-rating {
            color: #fbbf24;
            font-size: 1.5rem;
        }

        .review-card {
            background: white;
            border-radius:7px;
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .review-card:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            transform: translateY(-5px);
        }

        .google-logo {
            height: 28px;
        }

        .slider-btn {
            width: 2.9rem;
            height: 2.9rem;
            top: 42%;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #374151;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .slider-btn:hover {
            color: #2563eb;
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .carousel-control-prev {
            left: -1.5rem;
        }

        .carousel-control-next {
            right: -1.5rem;
        }

        .carousel-indicators {
            margin-bottom: -2rem;
        }

        .carousel-indicators [data-bs-target] {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            border: none;
            margin: 0 4px;
        }

        .carousel-indicators .active {
            background-color: white;
        }

        .review-text {
            color: #374151;
            line-height: 1.6;
        }

        .card-footer-custom {
            border-top: 1px solid #f9fafb;
            background: transparent;
        }

        @media (max-width: 768px) {
            .testimonial-section h2 {
                font-size: 2rem !important;
            }
            
            .carousel-control-prev {
                left: -0.5rem;
            }
            
            .carousel-control-next {
                right: -0.5rem;
            }
        }

        .faq-section {
            padding: 1rem 1.5rem;
        }

        .accordion-item {
            border: 1px solid #e5e7eb;
            border-radius: 0.75rem !important;
            background: white;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .accordion-item:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .accordion-button {
            background: white;
            color: #1f2937;
            font-weight: 600;
            font-size: 1.125rem;
            padding: 1.25rem 1.5rem;
            border-radius: 0.75rem !important;
            transition: all 0.2s ease;
            position: relative;
        }

        .accordion-button:hover {
            background: #f9fafb;
        }

        .accordion-button:not(.collapsed) {
            background: white;
            color: #1f2937;
            box-shadow: none;
        }

        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(7, 64, 100, 0.5);
            border-color: #074064;
        }

        .accordion-button::after {
            content: '';
            background-image: none;
            width: auto;
            height: auto;
            font-size: 2rem;
            font-weight: bold;
            color: #074064;
            transition: transform 0.3s ease;
        }

        .accordion-button:not(.collapsed)::after {
            content: '';
            transform: rotate(0deg);
        }

        .accordion-body {
            padding: 1rem 1.5rem 1.25rem;
            color: #4b5563;
            line-height: 1.7;
            font-size: 1rem;
        }

        .accordion-collapse {
            border-top: none;
        }

        @media (max-width: 768px) {
            .faq-section h2 {
                font-size: 2rem !important;
            }
            
            .accordion-button {
                font-size: 1rem;
                padding: 1rem 1.25rem;
            }
        }

        .footer-section {
            background: linear-gradient(135deg, #074064 0%, #0a5a8a 50%, #074064 100%);
            color: #c7e2ff;
            padding-top: 4rem;
            padding-bottom: 3rem;
            position: relative;
            overflow: hidden;
        }

        .footer-section::before {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0.05;
            background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .footer-content {
            position: relative;
            z-index: 10;
        }

        .footer-logo {
            width: 200px;
        }

        .footer-description {
            color: rgba(199, 226, 255, 0.85);
            line-height: 1.7;
        }

        .social-icon {
            width: 28px;
            height: 28px;
            color: #93c5fd;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .social-icon:hover {
            color: white;
            transform: scale(1.1);
        }

        .footer-heading {
            font-size: 1.25rem;
            font-weight: 600;
            color: white;
            margin-bottom: 1.5rem;
            letter-spacing: 0.5px;
        }

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

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            opacity: 0.9;
        }

        .footer-links a:hover {
            color: #c7e2ff;
            transform: translateX(8px);
            opacity: 1;
        }

        .footer-bottom {
            margin-top: 0rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(147, 197, 253, 0.3);
            color: rgba(147, 197, 253, 0.8);
            font-size: 0.875rem;
        }

        .footer-bottom a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: #c7e2ff;
        }

        @media (max-width: 768px) {
            .footer-section {
                padding-top: 3rem;
            }
            
            .footer-bottom {
                text-align: center !important;
            }
            
            .footer-bottom-links {
                margin-top: 1rem;
                justify-content: center !important;
            }
        }

        .video-testimonial-section {
            background: linear-gradient(135deg, #0a5a8a 0%, #0a5a8a 100%);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }



        .video-card {
            background: white;
            border-radius: 7px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .video-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            background: #000;
        }

        .video-wrapper iframe,
        .video-wrapper video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

    

        .play-button {
            width: 55px;
            height: 55px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #0a5a8a;
            transition: all 0.3s ease;
        }

        .play-button:hover {
            transform: scale(1.1);
            background: white;
        }

        .video-info {
            padding: 1.5rem;
        }

        .client-name {
            font-weight: 700;
            font-size: 1.125rem;
            color: #1f2937;
            margin-bottom: 0.25rem;
        }

        .client-position {
            color: #6b7280;
            font-size: 0.875rem;
            margin-bottom: 0.75rem;
        }

        .video-description {
            color: #4b5563;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .star-rating {
            color: #fbbf24;
            font-size: 1rem;
            margin-top: 0.75rem;
        }

        .slider-btn {
            width: 3rem;
            height: 3rem;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border: 2px solid #e5e7eb;
            color: #0a5a8a;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            z-index: 10;
        }

        .slider-btn:hover {
            background: #0a5a8a;
            color: white;
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(10, 90, 138, 0.3);
        }

        .carousel-control-prev {
            left: -1.5rem;
        }

        .carousel-control-next {
            right: -1.5rem;
        }

        .carousel-indicators {
            margin-bottom: -3rem;
        }

        .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #cbd5e1;
            border: none;
            margin: 0 5px;
            opacity: 1;
        }

        .carousel-indicators .active {
            background-color: #0a5a8a;
            transform: scale(1.2);
        }

        @media (max-width: 768px) {
          .trusted-partners {
            display: grid !important;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 30px 0;
            max-width: 380px;
          }

          /* Logo Box equal size */
          .partner-box {
            width: 100% !important;
            height: 80px;
            padding: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
          }
            .video-testimonial-section h2 {
                font-size: 2rem !important;
            }

            .carousel-control-prev {
                left: -0.5rem;
            }

            .carousel-control-next {
                right: -0.5rem;
            }

            .slider-btn {
                width: 2.5rem;
                height: 2.5rem;
                font-size: 1rem;
            }
        }
        .row{
          justify-content: space-between;
        }

    .carousel-inner {
      padding: 20px 0;
    }

    .carousel-item {
      transition: transform 0.6s ease-in-out;
    }

    .blog-card {
      background: #0a5582;
      border-radius: 7px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 3px 11px rgba(0, 0, 0, 0.1);
      height: 100%;
    }

    .blog-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .card-img-wrapper {
      position: relative;
      height: 200px;
      overflow: hidden;
    }

    .card-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

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

    .card-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
    }

    .card-body {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
    }

    .badge {
      font-weight: 500;
      font-size: 0.85rem;
    }

    .card-title {
      color: #0a5a8a;
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
    }

    .card-text {
      color: #6c757d;
      font-size: 0.95rem;
      line-height: 1.6;
      flex-grow: 1;
    }

    .btn-outline-dark {
      border: 2px solid #0a5a8a;
      color: #0a5a8a;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .btn-outline-dark:hover {
      background-color: #0a5a8a;
      color: white;
      border-color: #0a5a8a;
      transform: translateX(5px);
    }

    /* Custom Carousel Controls */
    .carousel-control-prev,
    .carousel-control-next {
      width: 50px;
      height: 50px;
      top: 50%;
      transform: translateY(-50%);
      background-color: white;
      border-radius: 50%;
      border: 2px solid #0a5a8a;
      opacity: 1;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .carousel-control-prev {
      left: -25px;
    }

    .carousel-control-next {
      right: -25px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      width: 20px;
      height: 20px;
      background-size: 100%;
      filter: invert(26%) sepia(89%) saturate(1583%) hue-rotate(183deg) brightness(94%) contrast(95%);
    }

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
      background-color: #0a5a8a;
    }

    .carousel-control-prev:hover .carousel-control-prev-icon,
    .carousel-control-next:hover .carousel-control-next-icon {
      filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
    }

    /* Custom Indicators */
    .carousel-indicators {
      position: relative;
      margin-top: 30px;
      margin-bottom: 0;
    }

    .carousel-indicators [data-bs-target] {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: #d1d5db;
      border: none;
      opacity: 1;
      transition: all 0.3s ease;
    }

    .carousel-indicators .active {
      background-color: #0a5a8a;
      width: 32px;
      border-radius: 6px;
    }

    @media (max-width: 992px) {
      .carousel-control-prev {
        left: 10px;
      }
      .carousel-control-next {
        right: 10px;
      }
    }

    @media (max-width: 768px) {
      .section-title {
        font-size: 2rem;
      }
    }

          .footer {
            width: 100%;
            background: linear-gradient(135deg, #145c95 0%, #1a4662 100%);
            color: #fff;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #00d4ff, transparent);
        }

        .footer-glow {
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 140px 40px 5px;
            position: relative;
            z-index: 1;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
            gap: 60px;
            margin-bottom: 0px;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-brand h2 {
            font-size: 32px;
            font-weight: 700;
            background: linear-gradient(135deg, #00d4ff, #7b2ff7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 25px;
            font-size: 15px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-links a:hover {
            background: linear-gradient(135deg, #e98e12, #e98e12);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
        }

        .footer-column h3 {
          font-size: 20px;
          font-weight: 600;
          margin-bottom: 25px;
          text-transform: uppercase;
          letter-spacing: 1px;
          color: #ffffff;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 14px;
        }

        .footer-column ul li a {
            color: rgb(255, 255, 255);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 16px;
            display: inline-block;
        }

        .footer-column ul li a:hover {
            color: white;
            transform: translateX(5px);
        }

        .newsletter {
            background: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .newsletter h3 {
            font-size: 18px;
            margin-bottom: 12px;
            color: #fff;
        }

        .newsletter p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 13px;
            margin-bottom: 20px;
        }

        .newsletter-form {
            display: flex;
            gap: 8px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            color: #fff;
            font-size: 14px;
            outline: none;
            transition: all 0.3s ease;
        }

        .newsletter-form input:focus {
            border-color: #00d4ff;
            background: rgba(255, 255, 255, 0.08);
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .newsletter-form button {
            padding: 12px 24px;
            background: linear-gradient(135deg, #00d4ff, #7b2ff7);
            border: none;
            border-radius: 10px;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 10px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom p {
          color: rgb(255 255 255);
          font-size: 16px;
        }

        .footer-links {
            display: flex;
            gap: 30px;
        }

        .footer-links a {
            color: rgb(255 255 255);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        @media (max-width: 1200px) {
            .footer-top {
                grid-template-columns: 1fr 1fr 1fr;
                gap: 40px;
            }
            
            .footer-brand {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            .footer-container {
                padding: 120px 20px 30px;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        .contact-column h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #fff;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    
    color: #cfcfcf;
}

.contact-item svg {
    min-width: 18px;
    fill: white;
    margin-top: 3px;
}

.contact-item a {
    color: #cfcfcf;
    text-decoration: none;
        transition: all 0.3s ease;
    transition: color 0.3s ease;
}



.partner-footer-1 {
    padding: 20px 0;
}

.partner-card {
    height: 70px;
    border-radius: 2px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 0 6px rgba(0,0,0,0.08);
}

.partner-card img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

 #preloader {
         position: fixed;
         inset: 0;
         width: 100%;
         height: 100%;
         background: #074064;
         z-index: 999999;
         display: flex;
         align-items: center;
         justify-content: center;
         transition: opacity 0.9s ease-in-out, visibility 0s 0.9s;
         }

         #preloader.hidden {
         opacity: 0;
         visibility: hidden;
         pointer-events: none;
         }

         .preloader-content {
         text-align: center;
         }

         .loader {
         position: relative;
         color: #ffffff;
         font-family: 'Consolas', 'Menlo', 'Monaco', 'Courier New', monospace;
         font-weight: 700;
         font-size: 3.5rem;
         }
        /* IMPORTANT: Bootstrap Accordion Fix - Override Tailwind conflicts */
        .accordion-collapse {
            max-height: none !important;
            overflow: visible !important;
            transition: height 0.35s ease !important;
        }
        
        .accordion-collapse.show {
            display: block !important;
        }
        
        .accordion-collapse.collapsing {
            height: 0;
            overflow: hidden;
            transition: height 0.35s ease;
        }
        
        /* Accordion Button Styling */
        .accordion-button {
            background: #f8f9fa !important;
            font-weight: 600;
            padding: 20px;
            border: none;
            display: flex !important;
            width: 100%;
            text-align: left;
        }
        
        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, #df851a, #ec910f) !important;
            color: white !important;
            box-shadow: none;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: #df851a;
        }
        
        .accordion-button::after {
            transition: transform 0.3s ease;
            flex-shrink: 0;
            width: 1.25rem;
            height: 1.25rem;
            margin-left: auto;
            content: "";
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-size: 1.25rem;
        }
        
        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            transform: rotate(-180deg);
        }
        
        /* Accordion Item Styling */
        .accordion-item {
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            background: white;
        }
        
        .accordion-body {
            padding: 20px;
            text-align: left;
            line-height: 1.8;
            display: block !important;
        }
        
        /* Force visibility for accordion content */
        .accordion-collapse.collapse:not(.show) {
            display: none;
        }
        
        .accordion-collapse.collapse.show {
            display: block !important;
        }

 /* Hero Section */
        .hero-section-2 {
            background: linear-gradient(135deg, #074064 0%, #0a5a8a 100%);
            padding: 80px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section-2::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #df851a, transparent);
        }

        .hero-badge {
            display: inline-block;
            padding: 8px 24px;
            background: rgba(223, 133, 26, 0.15);
            border: 1px solid rgba(223, 133, 26, 0.4);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            color: #f29312;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

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

        .gradient-text {
            background: linear-gradient(135deg, #df851a, #f29312);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.85);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Main Content Section */
        .content-section {
            padding: 60px 0;
        }

        /* Sidebar */
        .sidebar {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 30px 25px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            position: sticky;
            top: 20px;
            height: fit-content;
        }

        .sidebar-title {
            font-size: 24px;
            font-weight: 700;
            color: #074064;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #df851a;
        }

        .filter-category {
            display: block;
            width: 100%;
            padding: 14px 20px;
            margin-bottom: 10px;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            color: #21558d;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: left;
            position: relative;
            overflow: hidden;
        }

        .filter-category::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0;
            background: white;
            color:black;
            transition: width 0.3s ease;
            z-index: 0;
        }

        .filter-category span {
            position: relative;
            z-index: 1;
            display: flex;
            color: #09507a;
            align-items: center;
            gap: 12px;
        }

        .filter-category i {
            font-size: 18px;
        }

        .filter-category:hover {
            border-color: #df851a;
            transform: translateX(5px);
            box-shadow: 0 4px 15px rgba(223, 133, 26, 0.2);
        }

        .filter-category.active {
            background: linear-gradient(135deg, #df851a, #f29312);
            border-color: #09507a;
            color: white;
            transform: translateX(8px);
            box-shadow: 0 6px 20px rgba(223, 133, 26, 0.3);
        }

        .filter-category.active::before {
            width: 100%;
        }

        .filter-count {
            background: rgba(255, 255, 255, 0.25);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 700;
            margin-left: auto;
        }

        .filter-category.active .filter-count {
            background: rgba(255, 255, 255, 0.35);
        }

        /* Case Cards */
        .case-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            margin-bottom: 30px;
            border: 1px solid #e8e8e8;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .case-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(7, 64, 100, 0.15);
            border-color: #df851a;
        }

        .case-image {
            width: 100%;
            height: 280px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(135deg, #074064, #0a5a8a);
        }

        .case-image::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(223, 133, 26, 0.3) 0%, transparent 70%);
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
            50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
        }

        .case-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .case-card:hover .case-image img {
            transform: scale(1.1);
        }

        .case-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(7, 64, 100, 0.6) 0%, rgba(7, 64, 100, 0.9) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .case-card:hover .case-overlay {
            opacity: 1;
        }

        .view-btn {
            background: linear-gradient(135deg, #df851a, #f29312);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transform: translateY(20px);
            transition: all 0.4s ease;
            border: none;
        }

        .case-card:hover .view-btn {
            transform: translateY(0);
        }

        .view-btn:hover {
            background: linear-gradient(135deg, #f29312, #df851a);
            box-shadow: 0 8px 25px rgba(223, 133, 26, 0.4);
        }

        .case-content {
            padding: 28px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .case-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 16px;
        }

        .case-tag {
            padding: 6px 14px;
            background: rgba(223, 133, 26, 0.1);
            border: 1px solid rgba(223, 133, 26, 0.3);
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            color: #df851a;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .case-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #074064;
            line-height: 1.4;
        }

        .case-description {
            font-size: 15px;
            line-height: 1.7;
            color: #666;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .case-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #e8e8e8;
            margin-top: auto;
        }

        .case-client {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .client-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, #df851a, #f29312);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
            color: white;
        }

        .client-info h4 {
            font-size: 14px;
            font-weight: 700;
            color: #074064;
            margin-bottom: 3px;
        }

        .client-info p {
            font-size: 13px;
            color: #888;
            margin: 0;
        }

        .case-arrow {
            width: 42px;
            height: 42px;
            background: #f8f9fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: #074064;
        }

        .case-card:hover .case-arrow {
            background: linear-gradient(135deg, #df851a, #f29312);
            color: white;
            transform: rotate(45deg);
        }

        /* Mobile Responsive */
        @media (max-width: 991px) {
            .sidebar {
                position: static;
                margin-bottom: 40px;
            }

            .hero-title {
                font-size: 42px;
            }
        }

        @media (max-width: 767px) {
            .hero-title {
                font-size: 36px;
            }

            .hero-description {
                font-size: 16px;
            }

            .case-image {
                height: 220px;
            }

            .filter-category {
                padding: 12px 16px;
                font-size: 15px;
            }
        }

        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 80px 20px;
        }

        .empty-state i {
            font-size: 80px;
            color: #df851a;
            margin-bottom: 20px;
        }

        .empty-state h3 {
            font-size: 28px;
            font-weight: 700;
            color: #074064;
            margin-bottom: 12px;
        }

        .empty-state p {
            font-size: 16px;
            color: #666;
        }

        .job-card.premium {
            background: linear-gradient(180deg, #ffffff, #f8f9ff);
            border-radius: 16px;
            padding: 22px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.35s ease;
            position: relative;
            overflow: hidden;
        }

.job-card.premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #095684, #084368);
}

.job-card.premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(13, 110, 253, 0.18);
}

/* Header */
.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-header h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #1f2937;
}

/* Job Type */
.job-type.fulltime {
    background: #e7f0ff;
    color: #0d6efd;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    gap: 6px;
    align-items: center;
}

/* Location */
.job-location {
    margin: 10px 0;
    color: #6b7280;
    font-size: 14px;
}

/* Tags */
.job-tags span {
    display: inline-block;
    background: #f1f5ff;
    color: #095684;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin: 5px 6px 0 0;
}

/* Description */
.job-desc {
    margin: 14px 0 18px;
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
}

/* Footer */
.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.salary {
    font-weight: 700;
    color: #111827;
    font-size: 15px;
}

/* Button */
.apply-btn {
    background: linear-gradient(135deg, #0a5a89, #074369);
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.apply-btn i {
    margin-left: 6px;
}

.apply-btn:hover {
    color:white;
    transform: translateX(3px);
    box-shadow: 0 10px 25px rgba(7, 99, 173, 0.4);
}

/* Awards Page Specific Styles - extend your main.css */
        .awards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .award-card {
            background: #074369;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border: 1px solid 074369  ;
            position: relative;
        }
        .award-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px -12px rgba(139, 92, 246, 0.25);
            border-color: #a855f7;
        }
        .award-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(45deg, #074369, #074268);
            color: white;
            font-size: 0.9rem;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 50px;
            box-shadow: 0 4px 15px 074369;
            z-index: 2;
        }
        .award-image {
            height: 151px;
            background: linear-gradient(135deg, #d27e16, #d37e16);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .award-image i {
            font-size: 6rem;
            color: rgba(255,255,255,0.25);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        .award-trophy {
            font-size: 8rem;
            color: #fbbf24;
            filter: drop-shadow(0 10px 25px rgba(251, 191, 36, 0.5));
            z-index: 1;
        }
        .award-content {
            padding: 30px;
        }
        .award-year {
          color: white;
          font-weight: 300;
          font-size: 0.9rem;
          margin-bottom: 8px;
        }
        .award-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: white;
        }
        .award-org {
            color: #94a3b8;
            font-size: 1rem;
            margin-bottom: 16px;
        }
        .award-desc {
            color: #cbd5e1;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        .award-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .award-tag {
            background: rgb(211 126 22);
            color: #ffffff;
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 0.85rem;
            border: 1px solid rgba(139, 92, 246, 0.3);
        }
        .filter-section {
            margin: 60px 0 40px;
            text-align: center;
        }
        .filter-btn {
            background: #d37e16;
            border: 1px solid #334155;
            color: white;
            padding: 12px 24px;
            margin: 0 8px 12px;
            border-radius: 50px;
            transition: all 0.3s;
        }
        .filter-btn.active, .filter-btn:hover {
            background: linear-gradient(90deg, #0a5785, #07456b);
            color: white;
            border-color: transparent;
            transform: translateY(-2px);
        }
        @media (max-width: 768px) {
            .hero-title { font-size: 2.8rem; }
            .awards-grid { grid-template-columns: 1fr; }
        }
        .award-item{
          margin-bottom: 20px;
        }
        /* ============================================================
   WEBBRAIN INFOTECH — MAIN STYLESHEET
   Extracted from index.php | Duplicates removed
   ============================================================ */

/* ── SERVICE CARD ─────────────────────────────────────────── */
.service-card img {
    height: 100% !important;
    object-fit: contain !important;
}

p {
    font-size: 18px !important;
}

.service-card {
    background: white;
}

/* ── HERO SECTION ─────────────────────────────────────────── */
h1.hero-title {
    letter-spacing: -0.02em;
    text-align: center;
    font-size: 50px;
}

.webbrain_slider_wrapper_2026 {
    display: inline-block;
    position: relative;
    height: 1.2em;
    line-height: 1.2em;
    vertical-align: middle;
    overflow: hidden;
    transition: width 0.3s ease;
    margin-right: 0.22em;
}

.webbrain_slider_wrapper_2026 span {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(100%);
}

#measurer {
    position: absolute;
    visibility: hidden;
    white-space: nowrap;
    font-weight: 800;
    pointer-events: none;
    top: -9999px;
}

/* ── HERO VIDEO & OVERLAY ─────────────────────────────────── */
.hero-section {
    position: relative;
    background: url('images/webbrain-homepage-video_000.webp') center/cover no-repeat;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    will-change: auto;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 22 36 / 82%);
    z-index: 0;
}

.video-overlay1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 22 36 / 38%);
    z-index: 0;
}

/* ── GLASS FORM SELECT ────────────────────────────────────── */
.glass-form select {
    background: rgb(69 87 98);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-form select:focus,
.glass-form select:active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.05);
}

.glass-form select option {
    color: #000;
}

/* ── BADGE CUSTOM ─────────────────────────────────────────── */
.badge-custom {
    font-size: 0.65rem !important;
    font-weight: 500 !important;
    padding: 0.075rem 0.35rem !important;
    border-radius: 50px !important;
    background: #074064 !important;
    backdrop-filter: blur(10px) !important;
    color: white !important;
    border: 1px solid #074064 !important;
    display: inline-block !important;
}

/* ── PORTFOLIO SECTION ────────────────────────────────────── */
.portfolio-section {
    padding: 80px 0;
    background: #f8f9fa;
    transition: opacity 0.3s ease;
}

/* Tabs */
.portfolio-tabs {
    margin-bottom: 50px;
}

.portfolio-tabs .nav-tabs {
    border: none;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.portfolio-tabs .nav-tabs .nav-link {
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    padding: 10px 28px;
    color: #666;
    font-weight: 600;
    background: #fff;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.portfolio-tabs .nav-tabs .nav-link:hover {
    border-color: #074064;
    color: #074064;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(7, 64, 100, 0.15);
}

.portfolio-tabs .nav-tabs .nav-link.active {
    background: linear-gradient(135deg, #e08516 0%, #e18c17 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 5px 20px rgba(224, 133, 22, 0.4);
    transform: translateY(-2px);
}

/* Portfolio Cards */
.portfolio-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    margin-bottom: 30px;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image-container {
    height: 450px;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

.portfolio-image {
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 3s ease;
    display: block;
}

.portfolio-card:hover .portfolio-image {
    transform: translateY(calc(-100% + 450px));
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.82) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 4px 14px;
    border-radius: 20px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
    width: fit-content;
}

.portfolio-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.portfolio-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.portfolio-actions {
    display: flex;
    gap: 10px;
}

.btn-view-full {
    background: #fff;
    color: #333;
    border: none;
    padding: 9px 22px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
}

.btn-view-full:hover {
    background: #e08516;
    color: #fff;
    transform: scale(1.05);
}

/* Empty State */
.empty-portfolio {
    padding: 80px 0;
    text-align: center;
    color: #999;
}

.empty-portfolio i {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
    color: #ddd;
}

.empty-portfolio p {
    font-size: 16px;
}

/* Loading Overlay */
.portfolio-loading {
    position: absolute;
    inset: 0;
    background: rgba(248, 249, 250, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 10px;
}

.portfolio-loading .spinner {
    width: 44px;
    height: 44px;
    border: 4px solid #e0e0e0;
    border-top-color: #e08516;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Pagination */
.pagination-section {
    padding: 10px 0 80px;
    background: #f8f9fa;
}

.pagination-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.pagination-info {
    font-size: 14px;
    color: #999;
    font-weight: 500;
}

.pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination .page-item {
    list-style: none;
}

.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 8px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: #666;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #fff;
    cursor: pointer;
}

.pagination .page-link:hover {
    border-color: #074064;
    color: #074064;
    background: #f0f6fb;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(7, 64, 100, 0.12);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #e08516 0%, #e18c17 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 5px 20px rgba(224, 133, 22, 0.4);
    transform: translateY(-2px);
}

.pagination .page-item.disabled .page-link {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* Fullscreen Modal */
.fullscreen-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    padding: 20px;
    overflow-y: auto;
}

.fullscreen-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.fullscreen-content {
    background: #fff;
    border-radius: 12px;
    max-width: 1400px;
    width: 100%;
    position: relative;
    margin: 50px auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.fullscreen-header {
    padding: 18px 28px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #074064 0%, #0a5a8a 100%);
}

.fullscreen-header h3 {
    color: #fff;
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.btn-close-modal {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    flex-shrink: 0;
}

.btn-close-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.fullscreen-image {
    width: 100%;
    display: block;
}

/* ── SMART SOLUTIONS (S4) ─────────────────────────────────── */
.s4-wrap {
    margin: auto;
    background: #074064;
    padding: 70px 20px;
    color: #fff;
    box-sizing: border-box;
}

.s4-wrap * {
    box-sizing: border-box;
}

.s4-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    margin-bottom: 20px;
    font-size: 13px;
    letter-spacing: 2px;
    color: #b7c3d1;
}

.s4-heading {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.1;
    color: #fff;
}

.s4-sub {
    max-width: 760px;
    color: #b7c3d1;
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 70px;
}

.s4-stage-wrap {
    position: relative;
    padding: 0;
}

.s4-line {
    position: absolute;
    top: 95px;
    left: calc(8% + 9px);
    right: calc(8% + 9px);
    height: 2px;
    background: linear-gradient(90deg, #df851a, #f5a83c, #df851a);
}

.s4-stages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    align-items: stretch;
}

.s4-stage {
    position: relative;
    padding-top: 0;
    display: flex;
    flex-direction: column;
}

.s4-node {
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #df851a;
    box-shadow: 0 0 0 8px rgba(223, 133, 26, .18), 0 0 30px rgba(223, 133, 26, .28);
    z-index: 2;
}

.s4-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 32px 26px 28px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .13);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
    transition: .35s ease;
}

.s4-card:hover {
    transform: translateY(-8px);
    border-color: rgba(223, 133, 26, .45);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
}

.s4-stage-label {
    font-size: 12px;
    letter-spacing: 2.5px;
    color: #df851a;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 700;
}

.s4-card-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
    color: #fff;
}

.s4-card-desc {
    color: #c6d0da;
    line-height: 1.75;
    margin-bottom: 20px;
    font-size: 15px;
    flex: 1;
}

.s4-features {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 24px;
}

.s4-features span {
    color: #e7edf5;
    opacity: .9;
    font-size: 14.5px;
}

.s4-btn {
    display: inline-flex;
    align-self: flex-start;
    padding: 13px 22px;
    border-radius: 12px;
    background: #df851a;
    color: #08111e;
    text-decoration: none;
    font-weight: 700;
    font-size: 14.5px;
    transition: .25s;
    white-space: nowrap;
    align-items: center;
}

.s4-btn:hover {
    background: #f5a83c;
    transform: scale(1.03);
}

.s4-highlight {
    margin-top: 60px;
    padding: 32px 36px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    background: rgba(255, 255, 255, .05);
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.s4-highlight-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.25;
    color: #fff;
}

.s4-highlight-desc {
    color: #c5cfda;
    font-size: 15px;
    line-height: 1.65;
    max-width: 540px;
}

/* ── WHY CHOOSE (WC) ──────────────────────────────────────── */
.wc-wrap {
    margin: auto;
    background: #074064;
    padding: 70px 20px;
    color: #fff;
    box-sizing: border-box;
}

.wc-wrap * {
    box-sizing: border-box;
}

.wc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.wc-badge {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    font-size: 12px;
    letter-spacing: 2px;
    color: #b7c3d1;
    margin-bottom: 18px;
}

.wc-heading {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 10px;
    color: #fff;
}

.wc-subtext {
    color: #b7c3d1;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.wc-points {
    display: grid;
    flex-direction: column;
    gap: 16px;
    grid-template-columns: 1fr 1fr;
}

.wc-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    transition: .3s ease;
}

.wc-point:hover {
    background: rgba(223, 133, 26, .08);
    border-color: rgba(223, 133, 26, .35);
    transform: translateX(5px);
}

.wc-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    background: rgba(223, 133, 26, .15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wc-icon i {
    color: #df851a;
    font-size: 16px;
}

.wc-point-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.wc-point-desc {
    font-size: 13px;
    color: #9faebf;
    line-height: 1.55;
}

.wc-right {
    position: relative;
}

.wc-form-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 24px;
    padding: 36px 32px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.wc-form-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(223, 133, 26, .15);
    border: 1px solid rgba(223, 133, 26, .3);
    font-size: 11px;
    letter-spacing: 2px;
    color: #df851a;
    margin-bottom: 16px;
    font-weight: 700;
}

.wc-form-title {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.25;
}

.wc-form-sub {
    font-size: 14px;
    color: #9faebf;
    margin-bottom: 24px;
    line-height: 1.6;
}

.wc-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
}

.wc-perk {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #c6d0da;
    padding: 10px 12px;
    background: rgba(255, 255, 255, .05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .07);
}

.wc-perk i {
    color: #df851a;
    font-size: 13px;
    width: 14px;
}

.wc-field {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    color: #fff;
    font-size: 14.5px;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    margin-bottom: 14px;
    transition: .25s;
}

.wc-field::placeholder {
    color: #7a8fa0;
}

.wc-field:focus {
    border-color: rgba(223, 133, 26, .5);
    background: rgba(255, 255, 255, .09);
}

.wc-submit {
    width: 100%;
    padding: 15px;
    border-radius: 14px;
    background: #df851a;
    color: #08111e;
    border: none;
    font-size: 15px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: .25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wc-submit:hover {
    background: #f5a83c;
    transform: translateY(-2px);
}

.wc-submit i {
    font-size: 14px;
}

.wc-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 18px;
}

.wc-trust-item {
    font-size: 12px;
    color: #7a8fa0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.wc-trust-item i {
    color: #df851a;
    font-size: 11px;
}

/* ── REAL RESULTS (WB) ────────────────────────────────────── */
.wb-results-section {
    width: 100%;
    position: relative;
}

.wb-results-glow {
    position: absolute;
    width: 700px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 92, 252, 0.07) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.wb-results-header {
    text-align: center;
    margin-bottom: 0;
    position: relative;
}

.wb-results-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--wb-accent);
    margin-bottom: 20px;
}

.wb-results-eyebrow::before,
.wb-results-eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--wb-accent);
    opacity: 0.6;
}

.wb-results-title {
    font-size: clamp(48px, 8vw, 90px);
    line-height: 0.95;
    letter-spacing: 0.01em;
    color: var(--wb-dark);
}

.wb-results-title .wb-results-highlight {
    color: var(--wb-accent);
    display: block;
}

.wb-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 0;
}

.wb-stat-item {
    background: var(--wb-card-bg);
    border: 1px solid var(--wb-border);
    padding: 26px 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.wb-stat-item:hover {
    box-shadow: 0 16px 48px rgba(124, 92, 252, 0.12);
    transform: translateY(-4px);
}

.wb-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--wb-accent), #b49dff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.wb-stat-item:hover::before,
.wb-stat-item.wb-animated::before {
    transform: scaleX(1);
}

.wb-stat-index {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: white;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.wb-stat-number {
    font-size: clamp(52px, 6vw, 80px);
    line-height: 1;
    color: white;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
}

.wb-stat-suffix {
    font-size: 0.55em;
    color: var(--wb-accent);
    margin-left: 3px;
}

.wb-stat-label {
    font-size: 14px;
    font-weight: 400;
    color: white;
    line-height: 1.6;
    max-width: 200px;
}

.wb-stat-icon {
    position: absolute;
    top: 36px;
    right: 36px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgb(203 217 226 / 28%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wb-stat-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--wb-accent);
}

.wb-results-cta {
    display: flex;
    justify-content: center;
}

.wb-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #08476e;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 18px 40px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    margin-bottom: 30px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.wb-cta-btn:hover {
    background: var(--wb-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(124, 92, 252, 0.35);
}

.wb-cta-btn:active {
    transform: translateY(0);
}

.wb-cta-arrow {
    display: inline-flex;
    transition: transform 0.2s ease;
}

.wb-cta-btn:hover .wb-cta-arrow {
    transform: translateX(4px);
}

.wb-fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.wb-fade-up.wb-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── PROCESS SECTION ──────────────────────────────────────── */
.process-section {
    background: #f4f6fb;
}

.process-wrapper {
    position: relative;
}

.process-line {
    position: absolute;
    top: 35px;
    left: 5%;
    width: 90%;
    border-top: 2px dashed #dcdcdc;
    z-index: 0;
}

.process-card {
    background: #084e78;
    padding: 12px 15px;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-circle {
    width: 32px;
    height: 32px;
    background: #ffffff;
    color: #084e78;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.process-card h6 {
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    color: white;
    margin: 0;
}

.process-card p {
    font-size: 12px;
    color: white;
    margin: 0;
}

.process-card::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #dcdcdc;
}

.process-card:last-child::after {
    display: none;
}

/* ── REVIEW / TESTIMONIAL ─────────────────────────────────── */
.review-text-wrapper {
    position: relative;
    min-height: 120px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0.5rem;
}

.read-more-link {
    color: #007bff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    color: #0056b3;
    text-decoration: underline;
    transform: translateX(3px);
}

.full-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-top: 0.5rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.review-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 290px;
}

/* ── VIDEO WRAPPER ────────────────────────────────────────── */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    margin-top: 20% !important;
    margin-left: 40% !important;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ── SUCCESS POPUP OVERLAY ────────────────────────────────── */
#successOverlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.45);
    align-items: center;
    justify-content: center;
}

#successOverlay.show {
    display: flex;
}

.popup-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 48px 40px 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: slideUp .35s ease both;
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.success-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.success-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ringPop .4s .1s ease both;
}

@keyframes ringPop {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.success-ring svg {
    width: 38px;
    height: 38px;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: drawCheck .45s .4s ease forwards;
}

@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

.popup-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.popup-subtitle {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.75;
    margin-bottom: 10px;
}

.popup-subtitle strong {
    color: #111827;
}

.popup-highlight {
    display: inline-block;
    background: #fff7ed;
    color: #c2760a;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 6px;
    margin: 6px 0 20px;
}

.team-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
}

.team-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #eb8f0f;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-left: -8px;
    box-shadow: 0 0 0 1px #e5e7eb;
}

.team-avatar:first-child {
    margin-left: 0;
}

.team-label {
    font-size: 12px;
    color: #9ca3af;
    margin-left: 10px;
}

.popup-divider {
    border: none;
    border-top: 1px solid #f3f4f6;
    margin: 0 0 24px;
}

.popup-close-btn {
    display: inline-block;
    padding: 12px 36px;
    background: #eb8f0f;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: .3px;
    transition: background .2s, transform .15s;
}

.popup-close-btn:hover {
    background: #d4800d;
    transform: translateY(-1px);
}

.confetti-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    animation: confettiFly 1s ease-out both;
}

@keyframes confettiFly {
    0%   { opacity: 1; transform: translate(0, 0) scale(1); }
    100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(.2); }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 992px) {
    .s4-heading  { font-size: 36px; }
    .s4-stages   { grid-template-columns: 1fr; gap: 24px; }
    .s4-line     { display: none; }
    .s4-stage    { padding-top: 20px; }
    .s4-node     { top: 22px; }
    .s4-highlight { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
    .s4-highlight-title { font-size: 22px; }

    .wc-grid     { grid-template-columns: 1fr; gap: 40px; }
    .wc-heading  { font-size: 30px; }
    .wc-perks    { grid-template-columns: 1fr; }

    .wb-stats-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .portfolio-section { padding: 50px 0; }

    .portfolio-tabs .nav-tabs .nav-link {
        padding: 8px 18px;
        font-size: 12px;
    }

    .portfolio-image-container { height: 320px; }

    .portfolio-card:hover .portfolio-image {
        transform: translateY(calc(-100% + 320px));
    }

    .pagination .page-link {
        min-width: 38px;
        height: 38px;
        padding: 6px 10px;
        font-size: 13px;
    }

    .pagination { gap: 5px; }

    .fullscreen-content { margin: 20px auto; }

    .fullscreen-header h3 { font-size: 17px; }

    .process-line  { display: none; }
    .process-card::after { display: none; }
}

@media (max-width: 600px) {
    .s4-heading  { font-size: 28px; }
    .s4-sub      { font-size: 15px; margin-bottom: 40px; }
    .s4-wrap     { padding: 50px 16px; }

    .wc-wrap     { padding: 50px 16px; }
    .wc-heading  { font-size: 26px; }
    .wc-form-card { padding: 26px 20px; }
    .wc-form-title { font-size: 22px; }
}

@media (max-width: 480px) {
    .portfolio-image-container { height: 260px; }

    .portfolio-card:hover .portfolio-image {
        transform: translateY(calc(-100% + 260px));
    }
}