
/* ============================= */
/* GLOBAL RESET */
/* ============================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f8fafc;
  color: #0f172a;
  line-height: 1.6;
  padding-top: 90px;
}

.container {
  max-width: 1280px;
  margin: auto;
  padding: 0 32px;
}

section {
  padding: 100px 0;
  scroll-margin-top: 120px;
}

h1,h2,h3 {
  font-weight: 700;
}

/* Featured Snippet Section */

/* SNIPPET SECTION */
.snippet-section {
  padding: 100px 0;
  background: #f8f9fc;
}

.snippet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.snippet-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.snippet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.snippet-card h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.snippet-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

/* CTA Button */
.snippet-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  background: #0f172a;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.snippet-btn:hover {
  background: #1e293b;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .snippet-grid {
    grid-template-columns: 1fr;
  }
}



.snippet-section {
  padding: 100px 0;
  background: #f9fafc; /* soft light like your Bolt sections */
}

.snippet-inner {
  max-width: 900px;
  margin: 0 auto;
}

.snippet-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.snippet-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}
.snippet-content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* ============================= */
/* BUTTONS */
/* ============================= */

.btn-primary {
  background: #0f172a;
  color: #ffffff;
  padding: 18px 38px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.btn-secondary {
  padding: 18px 38px;
  border-radius: 999px;
  border: 2px solid #1f2937;
  color: #1f2937;
  font-weight: 600;
  margin-left: 20px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #111827;
  color: #ffffff;
  transform: translateY(-3px);
}

/* ============================= */
/* NAVIGATION */
/* ============================= */

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px 0;
}
.nav-links {
  display: flex;
  align-items: center;
}
.logo {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.3px;
  color: #111827;
}

.nav-links a {
  margin-left: 36px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
  position: relative;
  transition: 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -6px;
  background: #0f172a;
  transition: 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: #111827;
  color: #ffffff !important;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 600;
  margin-left: 40px;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.nav-links a.active {
  color: #0f172a;
}

.nav-links a.active::after {
  width: 100%;
}
@media (max-width: 900px) {
  .nav-flex {
    padding: 18px 0;
  }

  .logo {
    font-size: 18px;
  }
}
/* ============================= */
/* HERO */
/* ============================= */
/*
.hero {
  padding: 160px 20px 120px;
  text-align: center;
}
*/
/* ============================= */
/* HERO - BOLT PREMIUM STYLE */
/* ============================= */
.hero a {
  text-decoration: none !important;
}
.hero {
  position: relative;
  padding: 180px 20px 140px;
  text-align: center;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f8fafc 60%,
    #f1f5f9 100%
  );
  overflow: hidden;
}
.hero-content {
  max-width: 1050px;
  margin: 0 auto;
}
/* Soft radial glow */
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(79,70,229,0.12) 0%,
    rgba(79,70,229,0.05) 30%,
    transparent 70%
  );
  z-index: 0;
}

/* Ensure content above glow */
.hero-inner {
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.2px;
  max-width: 1050px;
  margin: 0 auto 30px;
  color: #111827;
}

.hero p {
  font-size: 20px;
  line-height: 1.8;
  max-width: 780px;
  margin: 0 auto 55px;
  color: #4b5563;
}

.hero-animate {
  opacity: 0;
  transform: translateY(40px);
}

.hero-animate.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s cubic-bezier(.16,1,.3,1);
}
@media (max-width: 1024px) {
  .hero h2 {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 38px;
    line-height: 1.15;
  }

  .hero p {
    font-size: 16px;
  }

  .hero {
    padding: 150px 20px 100px;
  }
}
.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.btn-primary,
.btn-secondary,
.nav-cta,
.discuss-btn,
.cta-button,
.insights-button {
  text-decoration: none !important;
}
/* ============================= */
/* STATS */
/* ============================= */

.stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
}

.stats div {
  text-align: center;
}

/* ============================= */
/* ABOUT */
/* ============================= */

.about-section {
  background: #f8fafc;
  padding: 120px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}

.about-content h2 {
  font-size: 42px;
  margin-bottom: 30px;
}

.about-content p {
  margin-bottom: 25px;
  color: #475569;
  line-height: 1.8;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
}

.about-card {
  background: #fff;
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.04);
  transition: .3s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

/* ============================= */
/* ABOUT ICON STYLE (BOLT PRO)  */
/* ============================= */

.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  transition: 0.35s ease;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.about-card:hover .icon-box {
  transform: translateY(-6px) scale(1.08);
}
/* ============================= */
/* ABOUT ICON COLOR VARIATION   */
/* ============================= */

/* Vision - Deep Indigo (Future / Direction) */
.about-cards .about-card:nth-child(1) .icon-box {
  background: linear-gradient(135deg,#1e1b4b,#6366f1);
}

/* Mission - Emerald (Growth / Empowerment) */
.about-cards .about-card:nth-child(2) .icon-box {
  background: linear-gradient(135deg,#065f46,#10b981);
}

/* Innovation - Purple (Creativity / Forward Thinking) */
.about-cards .about-card:nth-child(3) .icon-box {
  background: linear-gradient(135deg,#581c87,#a855f7);
}

/* Excellence - Amber (Premium / Authority) */
.about-cards .about-card:nth-child(4) .icon-box {
  background: linear-gradient(135deg,#92400e,#f59e0b);
}
.about-cards .about-card:nth-child(1):hover .icon-box {
  box-shadow: 0 18px 40px rgba(99,102,241,0.35);
}

.about-cards .about-card:nth-child(2):hover .icon-box {
  box-shadow: 0 18px 40px rgba(16,185,129,0.35);
}

.about-cards .about-card:nth-child(3):hover .icon-box {
  box-shadow: 0 18px 40px rgba(168,85,247,0.35);
}

.about-cards .about-card:nth-child(4):hover .icon-box {
  box-shadow: 0 18px 40px rgba(245,158,11,0.35);
}

/* ============================= */
/* SERVICES */
/* ============================= */
/* ============================= */


/* Old Cards CSS  */

 
.services-section {
  padding: 120px 0;
  background: #ffffff;
}

.services-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 70px;
}

.services-header h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.services-header p {
  color: #64748b;
  font-size: 18px;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  background: #111827;
  color: #ffffff;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
}

.service-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  padding: 45px;
  transition: .35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.06);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg,#0f172a,#1e293b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  transition: 0.35s ease;
}

/* ============================= */
/* SERVICE ICON COLOR VARIATION */
/* ============================= */

/* Card 1 - Deep Navy (Strategy / Growth) */
.services-grid .service-card:nth-child(1) .icon-wrap {
  background: linear-gradient(135deg,#0f172a,#1e293b);
}

/* Card 2 - Royal Indigo (Planning / Direction) */
.services-grid .service-card:nth-child(2) .icon-wrap {
  background: linear-gradient(135deg,#312e81,#4f46e5);
}

/* Card 3 - Emerald (Merchandising / Retail) */
.services-grid .service-card:nth-child(3) .icon-wrap {
  background: linear-gradient(135deg,#065f46,#10b981);
}

/* Card 4 - Rose / Marketing Energy */
.services-grid .service-card:nth-child(4) .icon-wrap {
  background: linear-gradient(135deg,#9f1239,#f43f5e);
}

/* Card 5 - Amber / Partnerships */
.services-grid .service-card:nth-child(5) .icon-wrap {
  background: linear-gradient(135deg,#92400e,#f59e0b);
}

/* Card 6 - Purple / Influencer Network */
.services-grid .service-card:nth-child(6) .icon-wrap {
  background: linear-gradient(135deg,#581c87,#a855f7);
}

/* Card 7 - Teal / Store Curation */
.services-grid .service-card:nth-child(7) .icon-wrap {
  background: linear-gradient(135deg,#0f766e,#14b8a6);
}

/* -- */
.about-card:hover .icon-box,
.service-card:hover .icon-wrap {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}
.services-grid .service-card:nth-child(1):hover .icon-wrap {
  box-shadow: 0 20px 45px rgba(15,23,42,0.4);
}

.services-grid .service-card:nth-child(2):hover .icon-wrap {
  box-shadow: 0 20px 45px rgba(79,70,229,0.4);
}

.services-grid .service-card:nth-child(3):hover .icon-wrap {
  box-shadow: 0 20px 45px rgba(16,185,129,0.4);
}

.services-grid .service-card:nth-child(4):hover .icon-wrap {
  box-shadow: 0 20px 45px rgba(244,63,94,0.4);
}

.services-grid .service-card:nth-child(5):hover .icon-wrap {
  box-shadow: 0 20px 45px rgba(245,158,11,0.4);
}

.services-grid .service-card:nth-child(6):hover .icon-wrap {
  box-shadow: 0 20px 45px rgba(168,85,247,0.4);
}

.services-grid .service-card:nth-child(7):hover .icon-wrap {
  box-shadow: 0 20px 45px rgba(20,184,166,0.4);
}
.badge {
  background: #e2e8f0;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
}
/* ============================= */
/* SERVICE DROPDOWN ENHANCEMENT */
/* ============================= */

.service-toggle {
  cursor: pointer;
  font-weight: 600;
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
}

.service-toggle i {
  transition: transform 0.3s ease;
}

.service-card.active .service-toggle i {
  transform: rotate(180deg);
}

/* new css dropdown only */
.service-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.3s ease;
  opacity: 0;
}

.service-card.active .service-dropdown {
  opacity: 1;
  margin-top: 20px;
}


/* Divider */
.service-dropdown hr {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 25px 0;
}

/* Section Title */
.service-dropdown h4 {
  font-size: 18px;
  margin-bottom: 18px;
  color: #0f172a;
}

/* Checklist */
.service-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.service-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: #475569;
}

.service-list li:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #0f172a;
}

/* Outcome Box */
.outcome-box {
  background: #f1f5f9;
  padding: 20px;
  border-radius: 18px;
  margin-bottom: 25px;
}

.outcome-box h5 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #0f172a;
}

.outcome-box ul {
  padding-left: 18px;
  color: #334155;
}

/* Discuss Button */
.discuss-btn {
  display: block;
  text-align: center;
  padding: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg,#0f172a,#1e293b);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.discuss-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* ============================= */
/* CASE STUDIES */
/* ============================= */

.case-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  margin-top: 50px;
}

.case-card {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: .3s;
}

.case-card:hover {
  transform: translateY(-6px);
}

/* ============================= */
/* CTA */
/* ============================= */

.cta-section {
  padding: 100px 0;
  background: #f8fafc;
}

.cta-box {
  background: linear-gradient(135deg,#0f172a,#1e293b);
  border-radius: 28px;
  padding: 80px;
  color: #fff;
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 35px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #0f172a;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: .3s ease;
}

.cta-button:hover {
  transform: translateY(-4px);
}

/* ============================= */
/* INSIGHTS */
/* ============================= */
/*
.insights-section {
  padding: 120px 0;
  background: #fff;
}

.insights-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.insights-header h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.insights-header p {
  font-size: 18px;
  color: #64748b;
}

.insights-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0f172a;
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
}
*/
/* New with blog -INSIGHTS SECTION */
.insights-section {
  padding: 120px 0;
  background: #f8f9fc;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.section-header p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.insight-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.insight-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.insight-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.read-more {
  font-weight: 600;
  text-decoration: none;
  color: #0f172a;
}

.read-more:hover {
  text-decoration: underline;
}

.insights-cta {
  text-align: center;
  margin-top: 60px;
}

/* Responsive */
@media (max-width: 992px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================= */
/* CONTACT */
/* ============================= */

 /* CONTACT SECTION */

.contact-section {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #ffffff;
  padding: 140px 0;
}

.contact-header {
  text-align: center;
  margin-bottom: 80px;
}

.contact-header h2 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 18px;
}

.contact-header p {
  font-size: 18px;
  color: #cbd5e1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: start;
}
.contact-form {
  width: 100%;
}

/* FORM */

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 18px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  font-size: 15px;
  outline: none;
}

.form-group textarea {
  height: 140px;
  resize: none;
}

.form-group label {
  position: absolute;
  left: 16px;
  top: 18px;
  color: #94a3b8;
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s ease;
  background: transparent;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label {
  top: -8px;
  left: 12px;
  font-size: 12px;
  background: #0f172a;
  padding: 0 6px;
  color: #ffffff;
}

.contact-btn {
  width: 100%;
  padding: 18px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 16px;
  background: #ffffff;
  color: #0f172a;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* RIGHT SIDE */

.contact-info h3 {
  font-size: 28px;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.info-item i {
  font-size: 20px;
  margin-top: 5px;
}

.info-item p {
  color: #cbd5e1;
}

/* NEWSLETTER CARD */

.newsletter-card {
  margin-top: 50px;
  padding: 35px;
  background: rgba(255,255,255,0.06);
  border-radius: 26px;
}

.newsletter-card h4 {
  font-size: 22px;
  margin-bottom: 12px;
}

.newsletter-card p {
  font-size: 15px;
  color: #cbd5e1;
  margin-bottom: 22px;
}

.newsletter-card input {
  width: 100%;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  margin-bottom: 20px;
}

.newsletter-btn {
  width: 100%;
  padding: 18px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  color: #0f172a;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.newsletter-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

@media(max-width: 900px){
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

 
/* NEWSLETTER CARD FIXED */

.newsletter-card {
  margin-top: 40px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border-radius: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
}

.newsletter-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.newsletter-card p {
  font-size: 16px;
  color: #cbd5e1;
  margin-bottom: 25px;
  line-height: 1.6;
}

.newsletter-card input {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(15,23,42,0.6);
  color: #fff;
  font-size: 15px;
  margin-bottom: 20px;
  outline: none;
  transition: 0.3s ease;
}

.newsletter-card input:focus {
  border-color: #ffffff;
  background: rgba(15,23,42,0.8);
}

.newsletter-btn {
  width: 100%;
  padding: 18px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  color: #0f172a;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.newsletter-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.newsletter-card {
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}


/* ============================= */
/* WHATSAPP FLOAT */
/* ============================= */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width: 900px) {

  .about-grid,
  .contact-grid,
  .services-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero h1 {
    font-size: 34px;
  }
}
    
/* KPI SECTION FIX */

.kpi-section {
  padding: 120px 0;
  background: #f8fafc;
}

.kpi-dark {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 28px;
  padding: 80px 60px;
  color: #ffffff;
}

.kpi-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.kpi-grid div h3 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 10px;
}

.kpi-grid div p {
  font-size: 16px;
  color: #cbd5e1;
}

.kpi-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.15);
}

/* Responsive */

@media (max-width: 900px) {
  .kpi-grid {
    flex-direction: column;
    gap: 40px;
  }

  .kpi-divider {
    display: none;
  }
}

/* FOOTER CLEAN VERSION */

.site-footer {
  background: #020617;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  text-align: center;
}

.site-footer p {
  color: #94a3b8;
  font-size: 14px;
  letter-spacing: 0.3px;
}
body {
  margin: 0;
  background: #f8fafc;
}
.contact-info strong {
  display: block;
  margin-bottom: 6px;
}

/* BLOG SECTION */

.blog-section {
  padding: 120px 0;
  background: #f8f9fc;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.blog-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.blog-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.blog-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
  .blog-wrapper {
  max-width: 850px;
  margin: auto;
}

.blog-wrapper h2 {
  margin-top: 50px;
  font-size: 28px;
}

.blog-wrapper p {
  line-height: 1.9;
  margin-top: 15px;
  color: #444;
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
  color: #777;
}

/* FAQ Section */
.faq-section {
  margin-top: 60px;
  padding: 30px;
  background: #f8f9fc;
  border-radius: 12px;
}

.related-posts {
  padding: 80px 0;
  background: #ffffff;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.related-card {
  padding: 25px;
  background: #f8f9fc;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  color: #111;
  transition: 0.3s;
}

.related-card:hover {
  background: #e9ecf3;
} 


.faq-section {
  padding: 80px 0;
  background: #f9fafc;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.faq-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.faq-card h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.faq-card p {
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media(max-width: 768px){
  .faq-grid {
    grid-template-columns: 1fr;
  }
}



/* Knowledge Hub section */

.luxury-hub {
  padding: 110px 0;
  background: linear-gradient(to bottom, #f9fafc 0%, #f3f4f6 100%);
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 80px;
}
.luxury-card {
  background: #ffffff;
  padding: 50px 45px;
  border-radius: 24px;
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.06);
  position: relative;
  transition: all 0.35s ease;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.luxury-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 65px rgba(15, 23, 42, 0.08);
}

/* Elegant top accent line */

.luxury-accent {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0f172a, #c5a880);
  border-radius: 4px;
  margin-bottom: 25px;
}

.luxury-card h3 {
  font-size: 22px;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.luxury-card p {
  color: #5b6475;
  line-height: 1.7;
  font-size: 15.5px;
  margin-bottom: 35px;
}

/* Luxury Button */

.luxury-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1.5px solid #0f172a;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  color: #0f172a;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.luxury-btn:hover {
  background: #0f172a;
  color: #ffffff;
}

/* Responsive */

@media(max-width: 992px) {
  .knowledge-grid {
    grid-template-columns: 1fr;
  }
}    
          