/**
* BEST CONSTRUCTIONS & INTERIORS — Modern Redesign
*/

:root {
  --primary: #1a56db;
  --primary-dark: #0d3fa6;
  --accent: #f59e0b;
  --dark: #0d1b2a;
  --dark-2: #1e293b;
  --text: #374151;
  --text-light: #6b7280;
  --bg-light: #f0f6ff;
  --bg-alt: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 24px rgba(13,27,42,0.10);
  --shadow-lg: 0 10px 40px rgba(13,27,42,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* { box-sizing: border-box; }

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { color: var(--primary-dark); text-decoration: none; }

h1,h2,h3,h4,h5,h6 {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  font-weight: 700;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 4px solid var(--bg-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/*--------------------------------------------------------------
# Back to top
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 996;
  background: var(--primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.back-to-top i { font-size: 22px; color: #fff; line-height: 0; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }
.back-to-top.active { visibility: visible; opacity: 1; }

/*--------------------------------------------------------------
# AOS
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] { transition-delay: 0 !important; }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: var(--dark);
  height: 42px;
  font-size: 13px;
  color: #94a3b8;
  padding: 0;
  transition: var(--transition);
}
#topbar .contact-info i { font-style: normal; color: #94a3b8; }
#topbar .contact-info i a,
#topbar .contact-info i span { padding-left: 6px; color: #cbd5e1; }
#topbar .contact-info i a:hover { color: var(--white); }
#topbar .social-links a {
  color: #64748b;
  line-height: 0;
  transition: var(--transition);
  margin-left: 18px;
  font-size: 15px;
}
#topbar .social-links a:hover { color: var(--accent); }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  z-index: 997;
  height: 80px;
  box-shadow: 0 2px 20px rgba(13,27,42,0.08);
  border-bottom: 1px solid var(--border);
}
#header.fixed-top { height: 68px; }
#header .logo img { height: 64px; width: auto; max-width: 280px; }
#header.fixed-top .logo img { height: 52px; }

.scrolled-offset { margin-top: 68px; }

/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/
.navbar { padding: 0; }
.navbar ul { margin: 0; padding: 0; display: flex; list-style: none; align-items: center; }
.navbar li { position: relative; }
.navbar > ul > li { white-space: nowrap; padding: 10px 0 10px 30px; }
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  padding: 0 3px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-2);
  white-space: nowrap;
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.navbar > ul > li > a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar a:hover::after,
.navbar li:hover > a::after,
.navbar .active::after { width: 100%; }
.navbar a:hover,
.navbar .active,
.navbar li:hover > a { color: var(--primary); }

/* Dropdown */
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 20px);
  margin: 0;
  padding: 8px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  min-width: 200px;
}
.navbar .dropdown ul a { padding: 10px 20px; font-weight: 500; text-transform: none; font-size: 14px; }
.navbar .dropdown:hover > ul { opacity: 1; top: 100%; visibility: visible; }

/* Mobile nav */
.mobile-nav-toggle {
  color: var(--dark);
  font-size: 26px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: var(--transition);
}
.mobile-nav-toggle.bi-x { color: var(--white); }

@media (max-width: 991px) {
  .mobile-nav-toggle { display: block; }
  .navbar ul { display: none; }
}

.navbar-mobile {
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,0.95);
  backdrop-filter: blur(8px);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle { position: absolute; top: 18px; right: 18px; }
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 60px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background: var(--white);
  overflow-y: auto;
  border-radius: var(--radius-lg);
}
.navbar-mobile a,
.navbar-mobile a:focus { padding: 12px 20px; font-size: 14px; color: var(--dark); text-transform: uppercase; }
.navbar-mobile > ul > li { padding: 0; }
.navbar-mobile a:hover,
.navbar-mobile .active { color: var(--primary); }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 100vh;
  background: url("../img/hero-bg.jpg") center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.85) 0%, rgba(26,86,219,0.60) 100%);
}
#hero .container { position: relative; z-index: 1; }
#hero h1 {
  margin: 0;
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  font-family: "Poppins", sans-serif;
}
#hero h1 span {
  color: var(--accent);
  display: block;
}
#hero h2 {
  color: rgba(255,255,255,0.80);
  margin: 20px 0 40px;
  font-size: 18px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  transition: var(--transition);
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 8px 30px rgba(26,86,219,0.4);
}
#hero .btn-get-started:hover {
  background: var(--accent);
  box-shadow: 0 8px 30px rgba(245,158,11,0.4);
  transform: translateY(-2px);
}

/* Hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 20px 0;
  z-index: 1;
}
.hero-stats .stat-item {
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.hero-stats .stat-item:last-child { border-right: none; }
.hero-stats .stat-item h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  margin: 0;
  line-height: 1;
}
.hero-stats .stat-item p {
  color: rgba(255,255,255,0.8);
  margin: 6px 0 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (min-width: 1024px) { #hero { background-attachment: fixed; } }

@media (max-width: 768px) {
  #hero h1 { font-size: 30px; }
  #hero h2 { font-size: 14px; }
  .hero-stats .stat-item { padding: 8px 12px; }
  .hero-stats .stat-item h3 { font-size: 22px; }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section { padding: 80px 0; overflow: hidden; }
.section-bg { background: var(--bg-alt); }

.section-title { text-align: center; padding-bottom: 50px; }
.section-title .badge-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid #bfdbfe;
  margin-bottom: 16px;
}
.section-title h2 {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0 0 12px;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  color: var(--primary);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid #bfdbfe;
}
.section-title h3 {
  margin: 0 0 16px;
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.section-title h3 span { color: var(--primary); }
.section-title p {
  color: var(--text-light);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}
.section-title .divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 4px;
  margin: 20px auto 0;
}

/*--------------------------------------------------------------
# Featured Services (About Cards)
--------------------------------------------------------------*/
.featured-services { background: var(--bg-alt); padding: 80px 0; }
.featured-services .icon-box {
  padding: 40px 30px;
  height: 100%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.featured-services .icon-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), #1d4ed8);
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}
.featured-services .icon-box:hover::before { opacity: 1; }
.featured-services .icon-box > * { position: relative; z-index: 1; }
.featured-services .icon-box:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }

.featured-services .icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}
.featured-services .icon i { font-size: 32px; color: var(--primary); transition: var(--transition); }
.featured-services .icon-box:hover .icon { background: rgba(255,255,255,0.15); }
.featured-services .icon-box:hover .icon i { color: var(--white); }

.featured-services .title { font-weight: 700; margin-bottom: 14px; font-size: 20px; }
.featured-services .title a { color: var(--dark); }
.featured-services .description { font-size: 14px; line-height: 1.8; color: var(--text-light); margin-bottom: 0; }
.featured-services .icon-box:hover .title a,
.featured-services .icon-box:hover .description { color: rgba(255,255,255,0.9); }

/*--------------------------------------------------------------
# Counts Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Counts Section
--------------------------------------------------------------*/
.counts { 
  padding: 0; 
}

.counts-inner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 35px 0;   /* reduced height */
}

.counts .count-box {
  text-align: center;
  padding: 10px 20px;  /* reduced empty space */
  position: relative;
}

.counts .count-box i {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.counts .count-box span {
  font-size: 42px;
  display: block;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.counts .count-box p {
  margin: 10px 0 0;
  font-size: 13px;
}
@media (max-width: 768px) {
  .counts .count-box::after { display: none; }
  .counts .count-box span { font-size: 36px; }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services { background: var(--white); }
.services .icon-box {
  padding: 36px 28px;
  transition: var(--transition);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.services .icon-box:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: #bfdbfe; }

.services .icon-box .icon {
  width: 64px;
  height: 64px;
  background: var(--bg-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.services .icon-box .icon i { color: var(--primary); font-size: 28px; transition: var(--transition); }
.services .icon-box:hover .icon { background: var(--primary); }
.services .icon-box:hover .icon i { color: var(--white); }

.services .icon-box h4 { font-weight: 700; margin-bottom: 12px; font-size: 18px; }
.services .icon-box h4 a { color: var(--dark); transition: var(--transition); }
.services .icon-box:hover h4 a { color: var(--primary); }
.services .icon-box p { font-size: 14px; line-height: 1.8; color: var(--text-light); margin-bottom: 0; text-align: left; }


/*--------------------------------------------------------------
# Gallery (Portfolio)
--------------------------------------------------------------*/
.portfolio { background: var(--bg-alt); }

#portfolio-flters {
  padding: 0;
  margin: 0 auto 40px;
  list-style: none;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
#portfolio-flters li {
  cursor: pointer;
  padding: 10px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50px;
  transition: var(--transition);
  user-select: none;
}
#portfolio-flters li:hover,
#portfolio-flters li.filter-active {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(26,86,219,0.25);
}

.portfolio-container { gap: 0; }

.portfolio .portfolio-item {
  margin-bottom: 0;
  padding: 10px;
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  background: var(--dark);
}

.portfolio .portfolio-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.portfolio .portfolio-item:hover img { transform: scale(1.08); }

.portfolio .portfolio-item .portfolio-info {
  display: none;
}

/* Category badge */
.portfolio .portfolio-item .cat-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}
.portfolio .portfolio-item.filter-card .cat-badge { background: #10b981; color: #fff; }
.portfolio .portfolio-item.filter-web .cat-badge { background: #8b5cf6; color: #fff; }

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact { background: var(--white); }

.contact .info-box {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.contact .info-box:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--primary); }
.contact .info-box i {
  font-size: 36px;
  color: var(--primary);
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.contact .info-box:hover i { background: var(--primary); color: var(--white); }
.contact .info-box h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin: 0 0 10px; }
.contact .info-box p { font-size: 14px; color: var(--text-light); margin: 0; line-height: 1.7; }

.contact .map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-top: 30px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--dark);
  color: #94a3b8;
  font-size: 14px;
}

#footer .footer-top {
  padding: 70px 0 40px;
  background: var(--dark);
}

#footer .footer-contact h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 20px;
  font-family: "Poppins", sans-serif;
}
#footer .footer-contact h3 span { color: var(--accent); }
#footer .footer-contact p { font-size: 14px; line-height: 1.9; color: #94a3b8; }
#footer .footer-contact strong { color: #cbd5e1; }

#footer .footer-top h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}
#footer .footer-top h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
}

#footer .footer-links ul { list-style: none; padding: 0; margin: 0; }
#footer .footer-links ul li { padding: 7px 0; display: flex; align-items: center; }
#footer .footer-links ul i { padding-right: 8px; color: var(--accent); font-size: 16px; }
#footer .footer-links ul a { color: #94a3b8; transition: var(--transition); }
#footer .footer-links ul a:hover { color: var(--white); padding-left: 4px; }

#footer .social-links a {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  color: #94a3b8;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-right: 8px;
  border: 1px solid rgba(255,255,255,0.10);
  transition: var(--transition);
}
#footer .social-links a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); transform: translateY(-3px); }

#footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  background: rgba(0,0,0,0.2);
}
#footer .copyright { text-align: center; color: #64748b; font-size: 13px; }
#footer .copyright strong { color: #94a3b8; }

/*--------------------------------------------------------------
# Floating Action Buttons
--------------------------------------------------------------*/
.floating-box {
  position: fixed;
  right: 24px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  z-index: 9999;
}

.fab-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.fab-btn img { width: 52px; height: 52px; }
.fab-btn:hover { transform: scale(1.12); }

.fab-btn.call { animation: pulseCall 2s infinite; }
.fab-btn.whatsapp { animation: pulse 2s infinite; }
.fab-btn.whatsapp img { animation: iconBounce 2s infinite; }
.fab-btn.call img { animation: iconShake 2s infinite; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@keyframes pulseCall {
  0% { box-shadow: 0 0 0 0 rgba(26,86,219,0.6); }
  70% { box-shadow: 0 0 0 14px rgba(26,86,219,0); }
  100% { box-shadow: 0 0 0 0 rgba(26,86,219,0); }
}
@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes iconShake {
  0%,100% { transform: rotate(0); }
  25% { transform: rotate(12deg); }
  50% { transform: rotate(-12deg); }
  75% { transform: rotate(6deg); }
}

/* ============================================================
   WHO WE ARE — Vision & Mission Cards
   ============================================================ */
.about-card {
  border-radius: 24px;
  padding: 50px 44px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.about-card:hover { transform: translateY(-10px); box-shadow: 0 24px 60px rgba(0,0,0,0.18); }

/* Vision — deep blue gradient */
.about-vision {
  background: linear-gradient(145deg, #1a56db 0%, #0d3fa6 60%, #062b78 100%);
  color: #fff;
}
/* Mission — vibrant orange gradient */
.about-mission {
  background: linear-gradient(145deg, #f59e0b 0%, #e07b00 60%, #b85d00 100%);
  color: #fff;
}

/* decorative circle blob */
.about-card::before {
  content: "";
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  pointer-events: none;
}
.about-card::after {
  content: "";
  position: absolute; bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}

.about-icon-wrap {
  width: 80px; height: 80px;
  border-radius: 20px;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  color: #fff;
  margin-bottom: 28px;
  transition: all 0.35s ease;
  position: relative; z-index: 1;
}
.about-card:hover .about-icon-wrap {
  background: rgba(255,255,255,0.28);
  transform: rotate(-8deg) scale(1.08);
}

.about-card h4 {
  font-size: 26px; font-weight: 800;
  color: #fff; margin-bottom: 16px;
  position: relative; z-index: 1;
}
.about-card p {
  font-size: 15px; line-height: 1.85;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
  position: relative; z-index: 1;
}
.about-card-footer {
  display: flex; gap: 14px; flex-wrap: wrap;
  position: relative; z-index: 1;
  margin-top: auto;
}
.about-card-footer span {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.90);
  font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 50px;
  letter-spacing: 0.5px;
}
.about-card-footer span i { font-size: 13px; }

/* ============================================================
   SERVICES — Colored Cards
   ============================================================ */
.svc-card {
  border-radius: 20px;
  padding: 36px 28px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  cursor: default;
  border: none;
  display: flex;
  flex-direction: column;
}
.svc-card:hover { transform: translateY(-10px); box-shadow: 0 20px 52px rgba(0,0,0,0.18); }

/* Decorative blob top-right */
.svc-card::before {
  content: "";
  position: absolute; top: -40px; right: -40px;
  width: 130px; height: 130px; border-radius: 50%;
  background: rgba(255,255,255,0.10);
  pointer-events: none;
}

.svc-icon {
  width: 66px; height: 66px;
  border-radius: 16px;
  background: rgba(255,255,255,0.20);
  border: 1.5px solid rgba(255,255,255,0.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; color: #fff;
  margin-bottom: 22px;
  transition: all 0.35s ease;
  position: relative; z-index: 1;
}
.svc-card:hover .svc-icon { transform: rotate(-8deg) scale(1.1); background: rgba(255,255,255,0.30); }

.svc-card h4 {
  font-size: 16px; font-weight: 800;
  color: #fff; margin-bottom: 12px;
  position: relative; z-index: 1;
}
.svc-card p {
  font-size: 13px; line-height: 1.8;
  color: rgba(255,255,255,0.80);
  margin: 0;
  position: relative; z-index: 1;
}

/* 8 color variants */
.svc-orange  { background: linear-gradient(145deg, #f97316, #c2410c); }
.svc-blue    { background: linear-gradient(145deg, #3b82f6, #1d4ed8); }
.svc-green   { background: linear-gradient(145deg, #10b981, #065f46); }
.svc-purple  { background: linear-gradient(145deg, #8b5cf6, #5b21b6); }
.svc-cyan    { background: linear-gradient(145deg, #06b6d4, #0e7490); }
.svc-pink    { background: linear-gradient(145deg, #ec4899, #9d174d); }
.svc-amber   { background: linear-gradient(145deg, #f59e0b, #92400e); }
.svc-red     { background: linear-gradient(145deg, #ef4444, #991b1b); }

/* ============================================================
   CONTACT — Colored Cards
   ============================================================ */
.contact-card {
  border-radius: 22px;
  padding: 44px 32px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  border: none;
}
.contact-card:hover { transform: translateY(-10px); box-shadow: 0 20px 56px rgba(0,0,0,0.18); }

.contact-card::before {
  content: "";
  position: absolute; top: -50px; right: -50px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(255,255,255,0.10);
  pointer-events: none;
}
.contact-card::after {
  content: "";
  position: absolute; bottom: -30px; left: -30px;
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}

.contact-icon-wrap {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.20);
  border: 2px solid rgba(255,255,255,0.30);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 34px; color: #fff;
  margin-bottom: 22px;
  transition: all 0.35s ease;
  position: relative; z-index: 1;
}
.contact-card:hover .contact-icon-wrap {
  background: rgba(255,255,255,0.30);
  transform: scale(1.1) rotate(-6deg);
}

.contact-card h3 {
  font-size: 20px; font-weight: 800;
  color: #fff; margin-bottom: 12px;
  position: relative; z-index: 1;
}
.contact-card p {
  font-size: 14px; line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin: 0;
  position: relative; z-index: 1;
}
.contact-card p a { color: rgba(255,255,255,0.90); font-weight: 600; text-decoration: underline; }
.contact-card p a:hover { color: #fff; }

/* Color variants */
.contact-blue   { background: linear-gradient(145deg, #1a56db, #0d3fa6); }
.contact-orange { background: linear-gradient(145deg, #f59e0b, #b45309); }
.contact-green  { background: linear-gradient(145deg, #10b981, #065f46); }
