:root {
  --dark-blue: #050A30;
  --blue: #09098B;
  --royal-blue: #1025A1;
  --accent-blue: #004AAD;
  --light-blue: #8FB3E2;
  --gray: #D9D9D9;
}

/* GENERAL */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #111;
}

/* TOP BAR */
.top-bar {
  background: var(--dark-blue);
  color: #fff;
  font-size: 14px;
  padding: 6px 0;
}

.top-bar a {
  color: var(--dark-blue);
}

/* NAVBAR */
.navbar-brand span {
  color: var(--accent-blue);
}

.btn-primary {
  background: var(--accent-blue);
  border: none;
}

.btn-primary:hover {
  background: var(--royal-blue);
}

/* SEO HEADER */
.seo-header {
  padding: 30px 0 10px;
}

.seo-header h1 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--dark-blue);
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(135deg, var(--dark-blue), var(--royal-blue));
  color: #fff;
  padding: 80px 0;
}

.hero-subtitle {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
}

.hero-text {
  margin-top: 15px;
  color: #e5e7eb;
}

.hero-points {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.hero-points li {
  margin-bottom: 8px;
}

.hero-buttons {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-contact {
  margin-top: 20px;
  font-size: 15px;
  color: var(--light-blue);
}

.hero-img {
  max-width: 90%;
}

.hero-section{
  background-image: url(../images/Purple\ Swirl\ Background.jpg);
  background-size: cover;
}

/* ================================
   Search Awareness Section
================================ */

.search-awareness-section {
  background: linear-gradient(180deg, #ffffff 0%, #f2f7ff 100%);
  padding: 80px 0;
}

.search-awareness-img {
  max-width: 100%;
  height: auto;
  border-radius: 28px;
}

.search-awareness-subtitle {
  color: var(--blue-main);
  font-weight: 600;
  letter-spacing: 0.4px;
}

.search-awareness-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 12px 0 16px;
}

.search-awareness-title span {
  color: var(--blue-main);
}

.search-awareness-text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
}

.search-awareness-btn {
  background: var(--blue-main);
  color: #fff;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 8px;
}

.search-awareness-btn:hover {
  background: var(--indigo);
  color: #fff;
}
@media (max-width: 991px) {
  .search-awareness-section {
    padding: 60px 0;
  }

  .search-awareness-title {
    font-size: 32px;
  }
}

/* ===============================
   Achievement Goal Section
================================ */

.achievement-goal-section {
  padding: 90px 0;
  background: #ffffff;
}

/* HEADER */
.achievement-header h2 {
  /* font-size: 36px; */
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.achievement-header p {
  max-width: 900px;
  margin: 0 auto 60px;
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}

/* IMAGE */
.achievement-image {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.achievement-image.fade-out {
  opacity: 0;
  transform: scale(0.98);
}

/* CARD */
.achievement-card {
  background: #eaf6ff;
  padding: 36px;
  border-radius: 20px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.achievement-card.fade-out {
  opacity: 0;
  transform: translateY(6px);
}

.achievement-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 14px;
}

.achievement-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
}

/* NAVIGATION */
.achievement-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.nav-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--blue-main);
  color: #111827;
  font-size: 22px;
  cursor: pointer;
}

.nav-arrow.prev {
  background: var(--gray-light);
  color: #111827;
}

.nav-indicator {
  font-size: 14px;
  color: #374151;
}

.custom-gradient{
  background: linear-gradient(white, white, white, white, #d6fcff);
}

/* MOBILE */
@media (max-width: 991px) {
  .achievement-goal-section {
    padding: 70px 0;
  }

  .achievement-header h2 {
    font-size: 28px;
  }

  .achievement-card {
    padding: 28px;
  }
}

/* ==============================
   Digital Marketing Services
================================ */

.dm-services-section {
  padding: 20px 0 0;
  background: linear-gradient(#040446, var(--dark-blue));;
  color: #fff;
}

.dm-title {
  text-align: center;
  /* font-size: 48px; */
  font-weight: 700;
  margin-bottom: 32px;
}

/* LABELS */
.dm-labels {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.dm-label {
  background: #00b7ff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.dm-label:hover,
.dm-label.active {
  background: #0097d9;
}

.dm-divider {
  margin: 40px 0;
  border-color: rgba(255,255,255,0.15);
}

/* CONTENT GRID */
.dm-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.dm-item {
  position: relative;
  padding-left: 28px;
}

.dm-item::before {
  content: ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #00b7ff;
  font-size: 18px;
}

.dm-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.dm-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5e1;
}

.dm-content{
  min-height: 90px;
}

/* MOBILE */
@media (max-width: 768px) {
  .dm-title {
    font-size: 26px;
  }
}

/* ===============================
   Brand Image Grid Section
================================ */

.sf-brand-section {
  padding: 20px 0 90px;
  background: linear-gradient(180deg, #eaf7ff, #ffffff);
}

.sf-brand-main-title {
  text-align: center;
  /* font-size: 32px; */
  font-weight: 700;
  margin-bottom: 42px;
  color: #0a2540;
}

/* Grid Layout */
.sf-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Card */
.sf-brand-card {
  position: relative;
  height: 240px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

/* Image */
.sf-brand-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay */
.sf-brand-overlay {
  position: absolute;
  inset: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.35)
  );
}

/* Title - Always Visible */
.sf-brand-title-text {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
  transform: translateY(40px);
  transition: transform 0.35s ease;
}

/* Description - Hidden Initially */
.sf-brand-desc {
  font-size: 13px;
  line-height: 1.5;
  color: #e5e7eb;

  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Hover Animation */
.sf-brand-card:hover .sf-brand-desc {
  opacity: 1;
  transform: translateY(0);
}
.sf-brand-card:hover .sf-brand-title-text{
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .sf-brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .sf-brand-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   About Section (Exact Design)
================================ */

.sf-about-section {
  padding: 100px 0;
  background: #f1f1f1;
}

.sf-about-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  position: relative;
  gap: 40px;
}

/* LEFT IMAGE */
.sf-about-image {
  flex: 1;
  z-index: 2;
}

.sf-about-image img {
  width: 100%;
  border-radius: 30px;
  display: block;
  object-fit: cover;
}

/* RIGHT CARD */
.sf-about-card {
  flex: 1.2;
  background: #061a35;
  border-radius: 30px;
  padding: 70px 60px;
  color: #ffffff;
  position: relative;

  /* angled top effect */
  clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 90%);
}
.sf-about-image{
  clip-path: polygon(0 0, 100% 10%, 100% 90%, 0% 100%);
}

/* CONTENT */
.sf-about-content h2 {
  font-size: 42px;
  margin-bottom: 30px;
  font-weight: 700;
}

.sf-about-block {
  margin-bottom: 30px;
}

.sf-about-block h3 {
  font-size: 20px;
  /* color: #00c2ff; */
  margin-bottom: 12px;
  font-weight: 600;
}

.sf-about-block p {
  font-size: 16px;
  line-height: 1.8;
  color: #cbd5e1;
}

/* ===============================
   Responsive
================================ */

@media (max-width: 991px) {
  .sf-about-wrapper {
    flex-direction: column;
  }

  .sf-about-card {
    clip-path: none;
    padding: 40px 30px;
  }

  .sf-about-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .sf-about-content h2 {
    font-size: 26px;
  }

  .sf-about-block p {
    font-size: 15px;
  }
}

/* ==========================
   CTA Section
========================== */

.sf-cta-section {
  overflow: hidden;
}

/* LEFT SIDE */
.sf-cta-left {
  background: linear-gradient(135deg, #071a35, #0b2c59);
  padding: 80px 60px;
  position: relative;
}

.sf-cta-content {
  max-width: 520px;
}

.sf-cta-btn {
  background: #00b7ff;
  color: #fff;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 6px;
}

.sf-cta-btn:hover {
  background: #009ad6;
  color: #fff;
}

/* RIGHT FORM */
.sf-cta-form-wrapper {
  padding: 60px;
}

.sf-submit-btn {
  background: #00b7ff;
  color: #fff;
  font-weight: 600;
  padding: 12px;
  border-radius: 6px;
}

.sf-submit-btn:hover {
  background: #009ad6;
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .sf-cta-left {
    padding: 60px 30px;
    text-align: center;
  }

  .sf-cta-form-wrapper {
    padding: 40px 25px;
  }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: scale(1.1);
    color: #fff;
}
