/* === Header Styling Based on Style Guide === */

/* Header background, padding and shadow */
.custom-header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 1000;
}

/* Brand Typography */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2459bf;
}

/* Nav Links */
.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #5715a4;
}

/* Dropdown Menu Style */
.dropdown-menu {
  font-size: 0.9rem;
  border-radius: 12px;
  border: none;
  padding: 0.5rem 0;
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
  animation: fadeDown 0.2s ease-in-out;
}

/* Fade animation */
@keyframes fadeDown {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.dropdown-menu .dropdown-item {
  padding: 0.5rem 1.2rem;
  transition: background-color 0.2s;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f5f7ff;
  color: #2459bf;
}

/* Buttons */
.navbar .btn-primary {
  background: linear-gradient(135deg, #2459bf, #5715a4);
  border: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.navbar .btn-primary:hover {
  background: linear-gradient(135deg, #5715a4, #2459bf);
}

/* Responsive spacing (gap between nav items) */
@media (min-width: 992px) {
  .navbar-nav {
    gap: 0.75rem;
  }
}

/* Mobile Menu Enhancements */
.navbar-toggler {
  border: none;
}


/* ===== Hero Section ===== */
.hero-section {
  background-color: var(--light);
  padding: 96px 0;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.hero-title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-family: 'Lato', sans-serif;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Button Container */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== Gradient Button ===== */
.btn-gradient {
  background: var(--gradient);
  color: #fff;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 8px 20px rgba(36, 89, 191, 0.25);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(87, 21, 164, 0.35);
}

/* ===== Outline Button ===== */
.btn-outline {
  padding: 14px 28px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(36, 89, 191, 0.15);
}

/* ===== Responsive Typography ===== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}




/* ========== Our Clients Section ========== */
.clients-section {
  background-color: #fff;
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 30px;
  font-family: 'Lato', sans-serif;
}

/* Google Rating */
.review-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.review-badge img {
  height: 40px;
}

.review-text {
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #28a745;
  font-size: 1rem;
}

/* Carousel Styling */
.client-carousel-wrapper {
  position: relative;
  max-width: 100%;
}

.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 20px 0;
}

.client-logos img {
  max-height: 60px;
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.client-logos img:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* Custom Arrows */
.carousel-control {
  background: linear-gradient(to right, #2459bf, #5715a4);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.carousel-control:hover {
  opacity: 1;
}

.custom-prev {
  position: absolute;
  left: -30px;
}

.custom-next {
  position: absolute;
  right: -30px;
}

.carousel-control i {
  font-size: 1rem;
}

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

  .client-logos {
    gap: 20px;
  }

  .custom-prev,
  .custom-next {
    display: none;
  }
}

/* --------------------------
  Our Core Services Section
---------------------------- */

.services-section {
  padding: 80px 0;
  background-color: #f9f9ff;
}

/* Section Headings */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #222;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  color: #6c757d;
  font-family: 'Lato', sans-serif;
  margin-bottom: 50px;
}

/* Service Cards */
.service-card {
  background: #fff;
  border-radius: 1rem;
  padding: 30px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

/* Icon Styling */
.icon-wrapper {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2459bf, #5715a4);
  color: #fff;
}

/* Title & Text */
.service-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.service-text {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

/* Link Button */
.service-link {
  font-weight: 600;
  color: #2459bf;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #5715a4;
  text-decoration: underline;
}

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

  .service-card {
    padding: 25px 15px;
  }

  .icon-wrapper {
    font-size: 2rem;
    width: 60px;
    height: 60px;
  }
}


/*  */
/* Typography Consistency */
.industries-section {
  font-family: 'Poppins', sans-serif;
  background: #f9fafc;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111;
}

.section-subtitle {
  font-size: 1rem;
  color: #6c757d;
}

/* Tabs Styling */
.industries-tabs .nav-link {
  border-radius: 2rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  font-size: 0.95rem;
}

.industries-tabs .nav-link.active {
  background: linear-gradient(135deg, #2459bf, #5715a4);
  color: #fff;
  border-color: #2459bf;
  box-shadow: 0 3px 12px rgba(36, 89, 191, 0.3);
}

.industries-tabs .nav-link:not(.active):hover {
  background-color: #e7f0ff;
  color: #2459bf;
}

/* Industry Cards */
.industry-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.industry-card:hover {
  background: linear-gradient(135deg, #f0f5ff, #f8f0ff);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
  color: #2459bf;
}

/* Responsive Margin Handling */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }

  .industries-tabs .nav-link {
    font-size: 0.875rem;
    padding: 0.4rem 0.9rem;
  }

  .industry-card {
    font-size: 0.95rem;
    padding: 1rem;
  }
}


/* Why Choose Us Section Styles */

/* Section Headings */
.section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f1f1f;
}

.section-subheading {
  font-size: 1rem;
  color: #6c757d;
  max-width: 500px;
  margin: 0 auto;
}

/* Card Container */
.why-card {
  width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    padding: 2rem 1.2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex
;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Icons */
.why-icon {
      font-size: 2.5rem !important;
    margin-bottom: 1rem;
}

/* Titles */
.why-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .section-heading {
    font-size: 1.8rem;
  }

  .why-title {
    font-size: 1rem;
  }
}


/* ========== Case Studies Section ========== */

/* Headings */
.section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f1f1f;
}

.section-subheading {
  font-size: 1rem;
  color: #6c757d;
  max-width: 540px;
  margin: 0 auto;
}

/* Card Container */
.case-card {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    display: flex
;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    padding: 1.8rem 1.5rem;
}

.case-card:hover {
  transform: translateY(-6px);
}

/* Card Body */
.case-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.25rem;
}

.case-category {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 1rem;
}

/* List Styling */
.case-details {
  padding-left: 0;
  list-style: none;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.case-details li {
  margin-bottom: 0.4rem;
}

/* Description Text */
.case-description {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

/* Footer Button */
.case-footer {
  margin-top: auto;
}

/* Gradient Button */
.btn-gradient {
  background: linear-gradient(135deg, #2459bf, #5715a4);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #1e4aad, #4b1190);
  color: #fff;
}


/* --- Testimonial Section Styling --- */

/* Section Title & Subtitle */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2459bf; /* Brand primary */
}

.section-subtitle {
  font-size: 1rem;
  color: #6c757d;
}

/* Testimonial Card Base */
.testimonial-card {
  transition: transform 0.3s ease;
  border-radius: 1.5rem;
  border: none;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
}

/* Testimonial Image */
.testimonial-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #2459bf; /* Optional for emphasis */
}

/* Star Styling */
.text-warning {
  font-size: 1.2rem;
  letter-spacing: 1px;
}

/* Testimonial Quote Text */
.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}


/* === Section Titles === */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2459bf; /* Brand Blue */
}

.section-subtitle {
  font-size: 1rem;
  color: #6c757d;
}

/* === Pricing Cards === */
.pricing-card {
    padding: 1rem;
    transition: transform 0.3s ease;
    border-radius: 1.5rem;
    background-color: #efefef33;
    position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.07);
}

/* === Custom Buttons === */

/* Primary Gradient Button */
.btn-brand-gradient {
  background: linear-gradient(135deg, #2459bf, #5715a4);
  color: #fff;
  border: none;
  font-weight: 600;
  border-radius: 1.5rem;
  transition: all 0.3s ease;
}

.btn-brand-gradient:hover {
  background: linear-gradient(135deg, #1e49a1, #470f93);
  color: #fff;
}

/* Outline Brand Button */
.btn-outline-brand {
  border: 2px solid #2459bf;
  color: #2459bf;
  font-weight: 600;
  border-radius: 1.5rem;
  transition: all 0.3s ease;
}

.btn-outline-brand:hover {
  background-color: #2459bf;
  color: #fff;
}

/* === Badge === */
.bg-brand-gradient {
  background: linear-gradient(135deg, #2459bf, #5715a4);
}

.text-brand {
  color: #2459bf;
}

.border-brand {
  border-color: #2459bf !important;
}

/* === List Style Fixes === */
.pricing-card ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.4;
}


/* Contact Section Styles */
.contact-section {
  background-color: #ffffff;
  border-top: 1px solid #e9ecef;
}

/* Headings */
.section-heading {
  font-weight: 700;
  font-size: 2rem;
  color: #2459bf;
}

/* Form Card */
.contact-form {
  background-color: #f8f9fa;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

/* Inputs and Select */
.contact-form .form-control,
.contact-form .form-select {
  border-radius: 12px;
  border: 1px solid #dce3ec;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #2459bf;
  box-shadow: 0 0 0 0.2rem rgba(36, 89, 191, 0.25);
}

/* Gradient Primary Button */
.btn-primary-gradient {
  background: linear-gradient(135deg, #2459bf, #5715a4);
  color: #fff;
  border: none;
  border-radius: 12px;
  transition: background 0.3s ease;
}

.btn-primary-gradient:hover {
  background: linear-gradient(135deg, #1e4ea5, #4c1291);
}

/* Trust Logos */
.trust-logo {
  height: 40px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.trust-logo:hover {
  filter: grayscale(0%);
}


/* Blog Section Styling */
.blog-section {
  background-color: #f8f9fa;
}

/* Section Heading and Subheading */
.section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2459bf;
}

.section-subheading {
  font-size: 1rem;
  color: #6c757d;
  font-family: 'Lato', sans-serif;
}

/* Blog Card */
.blog-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

/* Image Styling */
.blog-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Blog Content */
.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #212529;
}

/* Gradient Button (Small) */
.btn-gradient-sm {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(135deg, #2459bf, #5715a4);
  border: none;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-gradient-sm:hover {
  background: linear-gradient(135deg, #1e4ea5, #4c1291);
  transform: scale(1.05);
}



/* HERO SECTION CONTAINER */
.who-we-are-hero {
  padding: 0;
  background: linear-gradient(135deg, #2459bf, #5715a4);
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

/* Dark semi-transparent overlay for better contrast */
.who-we-are-hero .overlay {
  background-color: rgba(0, 0, 0, 0.35);  /* Adds contrast layer */
}

/* HEADING */
.hero-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.3;
  color: #ffffff;
}

@media (min-width: 768px) {
  .hero-heading {
    font-size: 3.2rem;
  }
}

/* SUBHEADING */
.hero-subheading {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #f2f2f2;
}

/* GRADIENT BUTTON */
.btn-gradient {
  background: linear-gradient(to right, #ffffff, #e5e4ff);
  color: #5715a4;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  background: #fff;
  color: #2459bf;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}



/*------------------------------
  Mission & Vision Section Styles
------------------------------*/

.mission-vision-section {
  background: linear-gradient(135deg, #f7f9ff, #eef2fb);
  font-family: 'Poppins', sans-serif;
}

/* Section Title */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2459bf;
}

/* Section Subtitle */
.section-subtitle {
  font-size: 1.15rem;
  font-weight: 400;
  color: #6c757d;
  font-family: 'Lato', sans-serif;
}

/* Mission/Vision Card */
.mv-card {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  gap: 1.25rem;
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

/* Icon Style */
.mv-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Title inside card */
.mv-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #212529;
}

/* Text inside card */
.mv-text {
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  color: #555;
  margin: 0;
}




/*-----------------------------------
  What Sets Us Apart Section Styles
-----------------------------------*/

.unique-selling-points {
  background: linear-gradient(to right, #f3f5fd, #edf1ff);
  font-family: 'Poppins', sans-serif;
}

/* Section Title */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2459bf;
}

/* Subtitle */
.section-subtitle {
  font-size: 1.15rem;
  font-family: 'Lato', sans-serif;
  color: #6c757d;
}

/* Card Styling */
.usp-card {
  background-color: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.usp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

/* Icon Styling */
.usp-icon {
  font-size: 2.5rem;
  color: #2459bf;
  margin-bottom: 1rem;
}

/* Card Title */
.usp-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.75rem;
}

/* Card Text */
.usp-text {
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  color: #555;
}


/*-----------------------------------
  Our Core Values Section
-----------------------------------*/

/* Background and font */
.core-values-section {
  background: linear-gradient(120deg, #f3f5fd, #edf1ff);
  font-family: 'Poppins', sans-serif;
}

/* Section title */
.core-values-section .section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2459bf;
}

/* Cards for desktop grid */
.value-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.75rem 1.25rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  font-size: 1.1rem;
  font-weight: 600;
  color: #5715a4;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

/* Pills for mobile horizontal scroll */
.value-pill {
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 600;
  color: #2459bf;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

.value-pill:hover {
  background-color: #e2e8f0;
}




/*-----------------------------------
  Meet Our Team Section
-----------------------------------*/

/* Section base styling */
.team-section {
  background: linear-gradient(to bottom right, #f3f5fd, #edf1ff);
  font-family: 'Poppins', sans-serif;
}

/* Headings */
.team-section .section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2459bf;
}

.team-section .section-subtitle {
  font-size: 1.125rem;
  color: #666;
  font-family: 'Lato', sans-serif;
}

/* Team card container */
.team-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

/* Team image */
.team-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top;
}

/* Info section */
.team-info {
  padding: 1.25rem 1rem;
  font-family: 'Lato', sans-serif;
}

.team-info .name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #5715a4;
}

.team-info .role {
  font-size: 0.95rem;
  color: #6c757d;
}




/* ------------------------------
   Our Journey Timeline Section
------------------------------ */

/* Section Styling */
.journey-section {
  background: linear-gradient(to bottom right, #f5f8ff, #e9edff);
  font-family: 'Lato', sans-serif;
}

.journey-section .section-title {
  font-size: 2.25rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #2459bf;
}

.journey-section .section-subtitle {
  font-size: 1.125rem;
  color: #666;
  max-width: 640px;
  margin: auto;
}

/* Timeline Base Layout */
.timeline {
  position: relative;
  margin-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: #d0d6f9;
  transform: translateX(-50%);
}

/* Timeline Items */
.timeline-item {
  position: relative;
  width: 100%;
  max-width: 540px;
  padding: 1.5rem 1rem;
}

.timeline-item.left {
  margin-left: 0;
  margin-right: auto;
  padding-right: 3rem;
  text-align: right;
}

.timeline-item.right {
  margin-left: auto;
  margin-right: 0;
  padding-left: 3rem;
  text-align: left;
}

.timeline-item::after {
  content: '';
  position: absolute;
  top: 28px;
  width: 14px;
  height: 14px;
  background-color: #5715a4;
  border-radius: 50%;
  z-index: 2;
}

.timeline-item.left::after {
  right: -7px;
}

.timeline-item.right::after {
  left: -7px;
}

/* Timeline Content Box */
.timeline-content {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.timeline-content h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: #5715a4;
}

.timeline-content p {
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .timeline::before {
    left: 12px;
  }

  .timeline-item {
    text-align: left !important;
    padding-left: 2.5rem !important;
    padding-right: 0 !important;
  }

  .timeline-item.right,
  .timeline-item.left {
    margin: 0 auto;
  }

  .timeline-item::after {
    left: 0;
  }
}


/* -------------------------------------------
   Testimonial Section - "What Our Clients Say"
------------------------------------------- */

.testimonial-section {
  background: linear-gradient(to bottom right, #f3f7ff, #e8edff);
  font-family: 'Lato', sans-serif;
}

/* Section Headings */
.testimonial-section .section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2459bf;
  font-family: 'Poppins', sans-serif;
}

.testimonial-section .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 650px;
  margin: 0 auto;
}

/* Testimonial Card */
.testimonial-card {
  background-color: #ffffff;
  padding: 1.75rem;
  border-radius: 1.25rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
  font-size: 1rem;
  color: #333;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #5715a4;
  margin-bottom: 0;
}

.testimonial-role {
  color: #888;
  font-size: 0.875rem;
}

/* Client Logos */
.client-logo {
  filter: grayscale(100%);
  max-height: 60px;
  transition: filter 0.3s ease;
}

.client-logo:hover {
  filter: grayscale(0%);
}


/* ----------------------------------------------
   Call-To-Action Section - "Ready to scale..."
------------------------------------------------ */

.cta-section {
  background: linear-gradient(to right, #2459bf, #5715a4); /* Brand gradient */
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  overflow: hidden;
}

/* Heading */
.cta-heading {
     font-size: 2rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

/* Subheading */
.cta-subheading {
  font-size: 1.125rem;
  color: #e0e0e0;
  max-width: 700px;
  margin: 0 auto;
}

/* CTA Button */
.cta-button {
  background-color: #ffffff;
  color: #2459bf;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
  background-color: #f3f7ff;
  color: #5715a4;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}




/* =====================================
   Section: Technical SEO Tips (Modern)
===================================== */
.technical-seo-section {
  background: linear-gradient(135deg, #f9f9fb 0%, #ffffff 100%);
  font-family: 'Lato', sans-serif;
}

/* Heading */
.seo-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e1e1e;
}

.seo-subheading {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.125rem;
  color: #6c757d;
}

/* Tip Card */
.seo-tip-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border-left: 5px solid #2459bf;
}

.seo-tip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-left-color: #5715a4;
}

/* Tip Number */
.seo-tip-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2459bf;
  font-family: 'Poppins', sans-serif;
  min-width: 40px;
}

/* Tip Title */
.seo-tip-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 0.5rem;
}

/* Closing Note */
.seo-note {
  font-size: 1rem;
  color: #555;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}



/* =====================================
   Section: Contact Hero (Modern)
===================================== */
.contact-hero-section {
  padding: 6rem 1rem;
  background: linear-gradient(135deg, #2459bf 0%, #5715a4 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Hero Title */
.contact-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

/* Hero Subtitle */
.contact-hero-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Optional: Subtle animated background shape (optional aesthetic flair) */
.contact-hero-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -80px;
  left: -80px;
  z-index: 0;
}

.contact-hero-section::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -60px;
  right: -60px;
  z-index: 0;
}

.contact-hero-section .container {
  position: relative;
  z-index: 2;
}





/* =====================================
   Section: Get In Touch (Contact Form)
===================================== */

.get-in-touch-section {
  padding: 5rem 1rem;
  background-color: #f8f9fc;
  font-family: 'Lato', sans-serif;
}

/* Section Title */
.section-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #2459bf;
}

/* Subtitle */
.section-subtitle {
  font-size: 1.125rem;
  color: #6c757d;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

/* Form Wrapper */
.contact-form {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

/* Input & Textarea */
.custom-input {
  border: 1px solid #d0d7e2;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.custom-input:focus {
  border-color: #5715a4;
  box-shadow: 0 0 0 0.25rem rgba(87, 21, 164, 0.1);
  outline: none;
}

/* Label */
.form-group label {
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.5rem;
  display: block;
}

/* Submit Button */
.custom-btn {
  background: linear-gradient(135deg, #2459bf 0%, #5715a4 100%);
  color: #fff;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.custom-btn:hover {
  background: linear-gradient(135deg, #1d4aa3, #4a1293);
  transform: translateY(-2px);
}





/* =======================================
   Section: Get in Touch - Contact + Map
======================================= */

.contact-details-section {
  padding: 5rem 1rem;
  background-color: #f9fbff;
  font-family: 'Lato', sans-serif;
  color: #343a40;
}

/* Heading */
.contact-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #2459bf;
  margin-bottom: 2rem;
}

/* Contact Links */
.contact-link {
  color: #5715a4;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #3e0f82;
  text-decoration: underline;
}

/* Map Embed Styling */
.map-wrapper {
  aspect-ratio: 4 / 3;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.07);
    display: flex
;
    justify-content: center;
    align-items: center;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}




/* =======================================
   Section: Connect With Us
======================================= */

.connect-section {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #f0f4ff, #ffffff);
  color: #343a40;
  font-family: 'Lato', sans-serif;
}

/* Heading */
.connect-section .section-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #2459bf;
  margin-bottom: 1rem;
}

/* Subheading */
.connect-section .section-subheading {
  font-size: 1.125rem;
  color: #6c757d;
  margin-bottom: 2.5rem;
}

/* Social Icons */
.connect-section .social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1.75rem;
}

/* Icon Link Styling */
.connect-section .social-icons a {
  color: #5715a4;
  transition: transform 0.3s ease, color 0.3s ease;
}

.connect-section .social-icons a:hover {
  color: #2459bf;
  transform: scale(1.2);
}







/* FAQ Section Styling */
.faq-section {
  background-color: #f9fafe;
}

/* Optional light gradient if needed */
.bg-gradient-light {
  background: linear-gradient(to bottom, #f9fafe 0%, #ffffff 100%);
}

/* Accordion button styling */
.accordion-button {
  background-color: #fff;
  color: #2459bf;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
}

.accordion-button:not(.collapsed) {
  background-color: #eaf1ff;
  color: #2459bf;
  box-shadow: none;
}

/* Accordion body */
.accordion-body {
  background-color: #ffffff;
  border-top: 1px solid #dee2e6;
  padding: 1rem 1.25rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
}

/* Accordion item */
.accordion-item {
  background-color: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

/* CTA Button */
.btn-gradient {
  background: linear-gradient(135deg, #2459bf, #5715a4);
  color: #fff;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  transition: 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #1e4fb3, #4d1294);
  color: #fff;
}



/* CTA SECTION STYLING */
.cta-section {
  /* Use a stylish gradient background */
  background: linear-gradient(135deg, #2459bf 0%, #5715a4 100%);
  padding: 4rem 0;
  color: #ffffff;
}

/* Optional: lighter shade text for paragraph */
.cta-section p {
  color: #e0e0f0;
  font-family: 'Lato', sans-serif;
}

/* Heading style */
.cta-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
}

/* Gradient Light Button */
.btn-gradient-light {
  background-color: #ffffff;
  color: #2459bf;
  border-radius: 8px;
  transition: 0.3s ease-in-out;
  font-family: 'Poppins', sans-serif;
}

.btn-gradient-light:hover {
  background-color: #eaf1ff;
  color: #1e45a2;
}




/* ---------------------------------------------
   Section: Header
---------------------------------------------- */

/* Reset default bootstrap behavior */
.dropdown-menu {
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  padding: 0;
  border-radius: 8px;
  min-width: 220px;
  border-radius: 8px;
}

/* Main dropdown item */
.dropdown-menu .dropdown-item {
  padding: 10px 16px;
  font-size: 15px;
  color: #333;
  transition: all 0.2s ease-in-out;
  background: #fff;
  border-bottom: 1px solid #f2f2f2;
}

/* Hover effect */
.dropdown-menu .dropdown-item:hover {
  background: linear-gradient(135deg, #2459bf, #5715a4);
  color: #fff;
}

/* Parent submenu */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu:first-child {
    border-radius: .5rem .5rem 0 0;
}

.dropdown-submenu:last-child {
    border-radius:  0 0 .5rem .5rem;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -0.1rem;
  border-radius: 8px;
}

/* Optional: Show submenu on hover (if JS fails) */
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* Optional: Add arrow indicator to submenus */
.dropdown-submenu > a::after {
  content: '▶';
  margin-left: 10px;
    font-size: 12px;
    color: #999;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
}

/* On hover change arrow color */
.dropdown-submenu:hover > a::after {
  color: #fff;
}


.dropdown-menu {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  display: block !important;
  visibility: hidden;
  pointer-events: none;
}

.dropdown:hover > .dropdown-menu,
.dropdown-submenu:hover > .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}



/* Trusted Block */
.trusted-by img {
  opacity: 0.8;
  transition: 0.3s;
}
.trusted-by img:hover {
  opacity: 1;
}


/*  */
/* ================================
   Contact Brief Section - Enhanced UI
   ================================ */
#contact.contact-brief {
  background: linear-gradient(90deg, #2459bf 0%, #5715a4 100%);
  padding-top: 4rem;
  padding-bottom: 4rem;
  color: #fff; /* White text for contrast */
}

#contact .container {
  background: #ffffff;
  border-radius: 15px;
  padding: 2.5rem;
  max-width: 1024px;
  margin: auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

#contact h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #2459bf;
  margin-bottom: 0.75rem;
}

#contact p {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 1.5rem;
}

#contact p a {
  color: #5715a4;
  font-weight: 600;
  text-decoration: none;
}

#contact p a:hover {
  text-decoration: underline;
}

/* Brand-styled outline button with gradient hover */
.btn-outline-brand {
  border: 2px solid #2459bf;
  color: #2459bf;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  background: transparent;
}

.btn-outline-brand:hover {
  background: linear-gradient(90deg, #2459bf 0%, #5715a4 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 15px rgba(36, 89, 191, 0.3);
  transform: translateY(-2px);
}


/*  */
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin:28px 0;}
    .plan-card{background:var(--card);border-radius:12px;padding:22px;box-shadow:0 10px 30px rgba(0,0,0,.06);display:flex;flex-direction:column;height:100%;}
    .plan-title{font-family:'Poppins',sans-serif;font-size:1.125rem;margin-bottom:6px;color:var(--secondary);}
    .plan-price{font-size:28px;font-weight:700;margin:12px 0;color:var(--primary);}
    .plan-period{font-size:14px;color:var(--muted);}
    .plan-list{list-style:none;padding:0;margin:12px 0 18px;flex:1;}
    .plan-list li{padding:8px 0;border-top:1px solid #f1f3fb;color:#333;}
    .plan-cta{margin-top:auto;}
    .btn{display:inline-block;padding:12px 20px;border-radius:10px;text-decoration:none;font-weight:600;}
    .btn-ghost{background:transparent;border:2px solid var(--primary);color:var(--primary);}
    .btn-gradient{background:linear-gradient(135deg,var(--primary),var(--secondary));color:#fff;border:none;}
    .popular-badge{background:linear-gradient(135deg,var(--secondary),var(--primary));color:#fff;padding:6px 10px;border-radius:999px;font-size:13px;display:inline-block;margin-bottom:12px;}
    .compare-table{width:100%;border-collapse:collapse;margin-top:36px;background:transparent;}
    .compare-table th,.compare-table td{padding:14px;border-bottom:1px solid #eef2ff;text-align:left;}
    .compare-table th{background:#fff;font-family:'Poppins',sans-serif;color:var(--primary);position:sticky;top:0;}
    .feature-yes{color:var(--primary);font-weight:700;}
    .feature-no{color:#b0b7c9;}
    .faq{margin-top:40px;}
    .faq h3{font-family:'Poppins',sans-serif;color:var(--secondary);margin-bottom:10px;}
    .faq-item{background:#fff;padding:16px;border-radius:10px;box-shadow:0 6px 18px rgba(0,0,0,.04);margin-bottom:12px;}
    .cta-strip{margin-top:40px;background:linear-gradient(90deg,var(--primary),var(--secondary));color:#fff;padding:28px;border-radius:12px;text-align:center;}
    .cta-strip h3{margin:0 0 8px;font-family:'Poppins',sans-serif;}
    .small-note{font-size:13px;color:var(--muted);margin-top:8px;}
    @media (max-width:980px){
      .pricing-grid{grid-template-columns:repeat(1,1fr);}
      .compare-table th, .compare-table td{font-size:14px;}
    }