/* style.css - Clean White & Saffron Theme */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Color Palette - Saffron & Clean White */
  --primary-color: #fe5001;
  /* True Saffron */
  --primary-hover: #fe5001;
  /* Deeper Saffron for hover */
  --secondary-color: #1e293b;
  /* Slate Dark (for contrast) */
  --accent-color: #fca5a5;

  /* Gradients */
  --primary-bg-gradient: linear-gradient(135deg, #ff9933 0%, #ff7300 100%);
  --text-gradient: linear-gradient(to right, #ff9933, #ff7300);

  /* Backgrounds */
  --bg-color: #ffffff;
  --bg-alt: #f8fafc;

  /* Text */
  --text-main: #475569;
  --text-light: #64748b;
  --text-heading: #0f172a;

  /* UI Elements */
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(0, 0, 0, 0.05);
  --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --hover-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --glow-effect: 0 8px 15px rgba(255, 153, 51, 0.3);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-padding: 6rem 2rem;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: var(--font-family);
  color: var(--text-main);
  background-color: var(--bg-color);
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--bg-color);
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-color);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 153, 51, 0.2);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s infinite linear;
}

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

/* Typography Utilities */
.text-center {
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3.5rem;
  position: relative;
/*  display: inline-block;*/
  color: var(--text-heading);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-bg-gradient);
  border-radius: 2px;
}

.section-subtitle {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  display: block;
}

.gradient-text {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.section {
  padding: var(--section-padding);
  position: relative;
}

.bg-light,
section[style*="background: var(--bg-color);"] {
  background: var(--bg-alt) !important;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: #fe5001;
  color: white !important;
  font-weight: 700;
  box-shadow: var(--glow-effect);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 153, 51, 0.4);
  opacity: 0.95;
}

.btn-outline {
  background: transparent;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: black;
  transform: translateY(-3px);
  box-shadow: var(--glow-effect);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /*padding: 1.5rem 0;*/
  z-index: 1000;
  transition: all 0.4s ease;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.navbar.sticky {
  padding: 1rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-heading);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -1px;
}

.logo span {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-family: var(--font-heading);
  color: var(--text-main);
  position: relative;
  font-size: 1.05rem;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active {
  color: var(--primary-color);
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-heading);
  z-index: 1001;
  transition: color 0.3s;
}

.hamburger:hover {
  color: var(--primary-color);
}

/* Hero Slider */
.hero-slider {
  width: 100%;
  position: relative;
}

.swiper-slide .hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Clean bright overlay instead of extremely dark */


.swiper-slide .hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 2;
}

.hero-slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color) !important;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.swiper-pagination-bullet-active {
  background: var(--primary-color) !important;
  box-shadow: var(--glow-effect) !important;
}

/* Typist Effect */
.typing-container {
  display: inline-block;
  max-width: 100%;
}

.typewriter-text {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 800;
  border-right: 3px solid var(--primary-color);
  white-space: pre-wrap;
  animation: blink 0.75s step-end infinite;
  word-break: break-word;
  max-width: 100%;
}

@keyframes blink {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: var(--primary-color);
  }
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 20px;
}

/* Global Cards */
.card {
  background: white;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--card-shadow);
  z-index: 1;
}

.card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 153, 51, 0.3);
  box-shadow: var(--hover-shadow);
}

.card:hover::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-bg-gradient);
}

/* Service Cards */
.service-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  background: rgba(255, 153, 51, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
}

.card:hover .service-icon {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--glow-effect);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-heading);
}

.card-desc {
  color: var(--text-light);
  margin-bottom: 2rem;
  flex-grow: 1;
  font-size: 1.05rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary-color);
  gap: 0.5rem;
  font-size: 1.1rem;
  margin-top: auto;
}

.card-link i {
  transition: transform 0.3s ease;
}

.card-link:hover {
  color: var(--primary-hover);
}

.card-link:hover i {
  transform: translateX(5px);
}

/* Product Cards */
.product-card {
  padding: 0;
  border: 1px solid var(--glass-border);
  background: white;
}

.product-img-wrapper {
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}

.product-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: white;
  z-index: 2;
  position: relative;
}

/* Blog Cards */
.blog-card {
  background: white;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: var(--card-shadow);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.blog-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 3px solid var(--primary-color);
}

.blog-content {
  padding: 2rem;
}

.blog-date {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-heading);
}

.blog-title:hover {
  color: var(--primary-color);
}

/* Testimonials */
.testimonial-card {
  background: white;
  border: 1px solid var(--glass-border);
  box-shadow: var(--card-shadow);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
}

.testimonial-card i.fa-quote-left {
  font-size: 3rem;
  color: rgba(255, 153, 51, 0.15);
  position: absolute;
  top: 20px;
  left: 20px;
}

.client-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  margin: 0 auto 1.5rem;
  object-fit: cover;
  display: block !important;
}

.client-name {
  color: var(--text-heading);
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.client-role {
  color: var(--primary-color);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-main);
  font-size: 1.05rem;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  padding-right: 2rem;
  padding-bottom: 2rem;
}

.about-img-wrapper::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about-img_main {
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  box-shadow: var(--card-shadow);
}

.about-experience {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  z-index: 2;
  box-shadow: var(--hover-shadow);
  border: 1px solid var(--glass-border);
}

.about-experience h3 {
  color: var(--primary-color);
  font-size: 3rem;
  margin-bottom: 0;
}

.about-features {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  color: var(--text-heading);
  font-family: var(--font-heading);
}

.about-feature i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

/* Contact Section */
.contact-wrapper {
  background: white;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  overflow: hidden;
}

.contact-info-panel {
  background: var(--bg-alt);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--glass-border);
}

.contact-info-panel h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-method i {
  font-size: 1.5rem;
  color: var(--primary-color);
  background: rgba(255, 153, 51, 0.1);
  padding: 1rem;
  border-radius: 50%;
}

.contact-method h4 {
  color: var(--text-heading);
  margin-bottom: 0.25rem;
  font-size: 1.2rem;
}

.contact-form {
  padding: 1rem 4rem 4rem 4rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  background: #f1f5f9;
  color: var(--text-main);
  font-family: var(--font-family);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(255, 153, 51, 0.1);
  background: white;
}

textarea.form-control {
  min-height: 180px;
  resize: vertical;
}

/* Details Pages */
.page-header {
  padding: 160px 0 80px;
  background: var(--bg-alt);
  position: relative;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

.breadcrumb {
  font-family: var(--font-heading);
  justify-content: center;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--primary-color);
  font-weight: 600;
}

.details-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.details-main img {
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  margin-bottom: 3rem;
}

.details-main h2 {
  margin: 2rem 0 1.5rem;
  font-size: 2.2rem;
}

.features-list li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--text-main);
}

.features-list i {
  color: var(--primary-color);
  margin-right: 15px;
  font-size: 1.2rem;
}

.details-sidebar .widget {
  background: white;
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 2.5rem;
  box-shadow: var(--card-shadow);
}

.widget h3 {
  margin-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 1rem;
  font-size: 1.5rem;
}

.widget-list li {
  margin-bottom: 1.25rem;
}

.widget-list a {
  display: flex;
  justify-content: space-between;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.widget-list a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

/* Footer */
footer {
  background: #0f172a;
  border-top: 5px solid var(--primary-color);
  padding: 5rem 0 0;
  position: relative;
  color: #94a3b8;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.footer-about .logo {
  margin-bottom: 2rem;
  color: white !important;
}

.footer-widget h4 {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: white;
}

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

.footer-links a {
  color: #94a3b8;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 8px;
}

.social-links a {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  transition: all 0.3s;
  color: white;
}

.social-links a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  box-shadow: var(--glow-effect);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 0;
  text-align: center;
  color: #64748b;
  font-family: var(--font-heading);
}

/* Text overrides that might exist in old dark theme elements explicitly */
.text-light-override {
  color: var(--text-light) !important;
}

/* Responsive */
@media (max-width: 991px) {

  .about-grid,
  .contact-wrapper,
  .details-content {
    grid-template-columns: 1fr;
  }

  .contact-info-panel {
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
    padding: 3rem 2rem;
  }

  .contact-form {
    padding: 3rem 2rem;
  }

  .about-img-wrapper::before {
    display: none;
  }

  .nav-container {
    position: static;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    background: white;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
    flex-direction: column;
    padding: 2rem 0;
    transition: 0.4s ease;
    gap: 1.5rem;
    z-index: 1000;
  }

  .nav-links.active {
    left: 0;
  }

  .hamburger {
    display: block;
    color: var(--text-heading);
  }
}

.necta {
    background: white;
    padding: 4rem 3rem;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
}
@media (max-width: 768px) {
  .section {
            padding: 28px 10px 10px 10px;
  }
  section.section.homenine {
    padding-top: 20px;
    padding-bottom: 32px;
}
.contact-form {
    padding: 18px 15px 23px 15px;
}
section.section.hometen {
    padding-top: 20px;
}
section.seo-section.homeeleven {
    padding-top: 20px;
}
  section.section.homeseven {
    padding-top: 20px;
    padding-bottom: 29px;
}
section.section.homeeight {
    padding-top: 20px;
    padding-bottom: 20px;
}
  .necta {
    background: white;
    padding: 2rem 1rem;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
}
  .about-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    z-index: 2;
    box-shadow: var(--hover-shadow);
    border: 1px solid var(--glass-border);
}
section.section.homefour {
    padding-top: 22px;
}
.about-grid {
    gap: 2rem;
    align-items: center;
}
  header.page-header.pone {
    padding: 12px 0 36px;
}
section.section.ptwo {
    padding-top: 20px;
    padding-bottom: 32px;
}
section.section.pnine {
    padding-top: 20px;
    padding-bottom: 32px;
}
section.section.peight {
    padding-top: 0px;
    padding-bottom: 32px;
}
section.section.soft-bg.pseven {
    padding-top: 20px;
    padding-bottom: 32px;
}
section.section.psix {
    padding-top: 4px;
    padding-bottom: 32px;
}
section.section.soft-bg.pfive {
    padding-top: 20px;
    padding-bottom: 32px;
}
section.section.pfour {
    padding-top: 0px;
    padding-bottom: 32px;
}
section.section.soft-bg.pthree {
    padding-top: 20px;
    padding-bottom: 32px;
}
    .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px !important;
    position: relative;
    z-index: 2;
}

  .card {
    padding: 2rem 1.5rem;
  }

  .product-content {
    padding: 1.5rem;
  }

  .swiper-slide .hero-slide-overlay {
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 100%);
  }
}



img.main_logo {
  width: 70%;
}

a.logo {
  width: 37%;
}




/*New slider css start*/

/* HERO SECTION */
.hero-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.hero-slider {
  width: 100%;
  position: relative;
}

.hero-slide {
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(255, 145, 0, 0.08), transparent 35%),
    radial-gradient(circle at bottom right, rgba(0, 86, 179, 0.08), transparent 35%),
    #ffffff;
}

.hero-slide-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  padding: 80px 0;
}

.hero-text {
  flex: 1;
  max-width: 580px;
  z-index: 2;
}

.section-subtitle {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ff8c00;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.banner_text {
  font-size: 58px;
  line-height: 1.15;
  font-weight: 800;
  color: #0b1b3f;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(90deg, #005bbb, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #5a6473;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease;
}

.btn i {
  font-size: 16px;
}

.btn-primary {
  background: #fe5001;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(255, 140, 0, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  color: #ffffff;
}

.btn-outline {
  border: 2px solid #0b1b3f;
  color: #0b1b3f;
  background: transparent;
}

.btn-outline:hover {
  background: #0b1b3f;
  color: #ffffff;
  transform: translateY(-3px);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: right;
  align-items: right;
}

.hero-image-shape {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1 / 1;
  border-radius: 48% 52% 50% 50% / 42% 45% 55% 58%;
  background: linear-gradient(145deg, #fe681f, #1a1f73);
  padding: 25px;
  box-shadow: 0 25px 60px rgba(14, 61, 145, 0.25);
  overflow: hidden;
}

.hero-image-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

/* SWIPER BUTTONS */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  width: 54px;
  height: 54px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 800;
  color: #ff8c00;
}

.hero-slider .swiper-pagination {
  bottom: 20px !important;
}

.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #d4d9e3;
  opacity: 1;
}

.hero-slider .swiper-pagination-bullet-active {
  background: #ff8c00;
  transform: scale(1.2);
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .banner_text {
    font-size: 48px;
  }

  .hero-slide-content {
    gap: 40px;
  }

  .hero-image-shape {
    max-width: 560px;
  }
}

@media (max-width: 991px) {
  .hero-slide {
    min-height: auto;
  }

  .hero-slide-content {
    display: flex !important;
    flex-direction: column !important;
    text-align: center;
    padding: 70px 0 160px !important;
    gap: 0; /* Use child margins instead */
  }

  .hero-text {
    display: contents !important;
  }

  .section-subtitle { order: 1; margin-bottom: 15px; }
  .banner_text { order: 2; margin-bottom: 20px; }
  .hero-text p { order: 3; margin-bottom: 30px; margin-left: auto; margin-right: auto; }
  .hero-image { order: 4; margin-bottom: 40px; }
  .hero-cta { order: 5; margin-top: 0 !important; }

  .hero-slide {
    width: 100% !important;
    flex-shrink: 0 !important;
    height: auto !important;
    min-height: auto !important;
    display: flex !important;
  }

  .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: auto !important;
  }

  .hero-text {
    max-width: 100%;
  }

  /* p margins handled by order block above */

  .hero-cta {
    justify-content: center;
    flex-direction: column;
    width: 100%;
    gap: 15px;
    margin-top: 30px;
  }

  .hero-cta .btn {
    width: 100%;
    margin: 0 !important;
  }

  .hero-image-shape {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .banner_text {
    font-size: 40px;
  }

  .hero-image-shape {
    max-width: 500px;
  }
}

@media (max-width: 767px) {
  .hero-slide-content {
    gap: 5px;
    padding: 50px 0 140px;
  }

  .section-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .hero-slide-content {
    padding: 50px 0 160px !important;
  }

  .banner_text {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 15px;
    line-height: 1.7;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-slider .swiper-button-next,
  .hero-slider .swiper-button-prev {
    display: none;
  }

  .hero-image-shape {
    max-width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 30px;
  }

  .hero-slide {
    width: 100% !important;
    flex-shrink: 0 !important;
    display: flex !important;
  }

  .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
  }

  /* Force hidden slides on mobile/tablet to avoid jumble */
  .swiper-slide:not(.swiper-slide-active) {
    opacity: 0 !important;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .swiper-slide-active {
    opacity: 1 !important;
    pointer-events: auto;
  }
}


/*new slider css end*/


/*FAQ CSS START*/
/* FAQ SECTION */
.faq-wrapper {
  max-width: 900px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  color: #111;
}

.faq-question span {
  flex: 1;
}

.faq-icon {
  min-width: 18px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
}

.faq-answer p {
  padding: 0 1.5rem 1.4rem;
  margin: 0;
  color: #555;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 0.96rem;
    padding: 1rem 1rem;
  }

  .faq-answer p {
    padding: 0 1rem 1rem;
    font-size: 0.95rem;
  }
}

/* FAQ SECTION */
/* WHY CHOOSE US SECTION */
.why-choose-section {
  position: relative;
  overflow: hidden;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.why-choose-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #666;
  margin-bottom: 2rem;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.why-point-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fe5001, #ffb866);
  color: #fff;
  font-size: 15px;
  box-shadow: 0 10px 25px rgba(255, 153, 51, 0.25);
  margin-top: 4px;
}

.why-point h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: #111;
}

.why-point p {
  margin: 0;
  color: #666;
  line-height: 1.8;
}

.why-choose-btn {
  margin-top: 2rem;
}

.why-choose-visual {
  position: relative;
  padding: 20px 20px 40px;
}

.why-main-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.why-main-image img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
}

.why-floating-card {
  position: absolute;
  background: #fff;
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.10);
  max-width: 220px;
}

.why-floating-card h4 {
  margin: 0 0 6px;
  font-size: 1.6rem;
  color: #111;
}

.why-floating-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
}

.top-card {
  top: 0;
  left: -20px;
}

.bottom-card {
  bottom: -69;
  right: -10px;
}

@media (max-width: 991px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-choose-visual {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }

  .top-card {
    left: 10px;
  }

  .bottom-card {
    right: 10px;
  }
}

@media (max-width: 767px) {
  .why-choose-grid {
    gap: 30px;
  }

  .why-choose-text {
    font-size: 0.98rem;
  }

  .why-point {
    gap: 12px;
  }

  .why-point-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 13px;
  }

  .why-point h3 {
    font-size: 1rem;
  }

  .why-point p {
    font-size: 0.95rem;
  }

  .why-floating-card {
    position: static;
    max-width: 100%;
    margin-top: 15px;
  }

  .why-choose-visual {
    padding: 0;
  }
}

/*WHY CHOOSE US END*/


/*Menu CSS START*/

.navbar{
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.nav-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
  position: relative;
}

.logo{
  display: inline-flex;
  align-items: center;
}

.main_logo{
  max-height: 55px;
  width: auto;
  display: block;
}

.nav-links{
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li{
  position: relative;
}

.nav-links li a{
  text-decoration: none;
  color: #111;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active{
  color: #ff9933;
}

.nav-btn{
  color: #000 !important;
  padding: 12px 24px;
  border-radius: 30px;
}

/* Desktop Dropdown */
.has-dropdown{
  position: relative;
}

.dropdown-toggle{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dropdown-toggle i{
  font-size: 12px;
  transition: 0.3s ease;
}

.dropdown-menu{
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  background: #fff;
  border-radius: 16px;
  padding: 12px 0;
  margin: 0;
  list-style: none;
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
  z-index: 99;
}

.dropdown-menu li a{
  display: block;
  padding: 11px 18px;
  color: #222;
  font-size: 14px;
  font-weight: 500;
}

.dropdown-menu li a:hover{
  background: rgba(255,153,51,0.08);
  color: #ff9933;
  padding-left: 24px;
}

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

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

.hamburger{
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #111;
}

/* Mobile */
@media (max-width: 991px){
  .hamburger{
    display: block;
  }

  .nav-links{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 20px 24px;
    box-shadow: 0 18px 35px rgba(0,0,0,0.08);
    max-height: 80vh;
    overflow-y: auto;
  }

  .nav-links.show{
    display: flex;
  }

  .nav-links > li{
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .nav-links > li:last-child{
    border-bottom: none;
    margin-top: 12px;
  }

  .nav-links > li > a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
  }

  .dropdown-menu{
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    min-width: 100%;
    padding: 0 0 10px;
    background: transparent;
    display: none;
  }

  .has-dropdown.open .dropdown-menu{
    display: block;
  }

  .has-dropdown.open .dropdown-toggle i{
    transform: rotate(180deg);
  }

  .dropdown-menu li a{
    padding: 10px 0 10px 14px;
  }

  .nav-btn{
    display: inline-block !important;
    width: 100%;
    text-align: center;
  }
}
/*Menu CSS END*/

.social-links {
  margin-top: 1.5rem;
  display: flex;
  gap: 14px;
}

/* Common Style */
.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

/* YouTube */
.social-icon.youtube {
  background: linear-gradient(135deg, #ff0000, #ff4d4d);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.25);
}

/* Facebook */
.social-icon.facebook {
  background: linear-gradient(135deg, #1877f2, #4da3ff);
  box-shadow: 0 10px 25px rgba(24, 119, 242, 0.25);
}

/* Hover Effect */
.social-icon:hover {
  transform: translateY(-6px) scale(1.05);
}

.social-icon.youtube:hover {
  box-shadow: 0 15px 35px rgba(255, 0, 0, 0.35);
}

.social-icon.facebook:hover {
  box-shadow: 0 15px 35px rgba(24, 119, 242, 0.35);
}

/* Glow effect */
.social-icon::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: rgba(255,255,255,0.2);
  top: 100%;
  left: -10%;
  transform: rotate(25deg);
  transition: 0.5s;
}

.social-icon:hover::before {
  top: -20%;
}
h2.Let {
    color: white;
}
@media (max-width: 767px) {
 a.logo {
    width: 83%;
}
    .navbar{
        padding: 0px;
    }
    
  .hero-slide-content {
    display: flex !important;
    flex-direction: column !important;
    text-align: center;
    padding: 17px 0 70px !important;
  }
.hero-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
   
}
    
.footer-grid {
    display: flow;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 1rem;
}

}


h2.text-white {
    font-size: 38px;
    color: white;
}

.grid.grid-3.bh {
    padding-top: 28px;
}

.container.fcont {
    max-width: 1398px !important;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 90px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
}

.floating-whatsapp i {
  line-height: 1;
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  background: #ff7a00;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.35);
  z-index: 9999;
  transition: all 0.3s ease;
}

.scroll-top:hover {
  transform: translateY(-4px) scale(1.05);
  background: #e96f00;
  box-shadow: 0 14px 30px rgba(255, 122, 0, 0.45);
}

.scroll-top i {
  line-height: 1;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 767px) {
  .floating-whatsapp,
  .scroll-top {
    width: 50px;
    height: 50px;
    font-size: 22px;
    right: 15px;
  }

  .floating-whatsapp {
    bottom: 75px;
  }

  .scroll-top {
    bottom: 15px;
    font-size: 18px;
  }
}



.seo-section {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(180deg, #fff7f0 0%, #ffffff 45%, #fffaf6 100%);
  overflow: hidden;
}

.seo-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.10) 0%, rgba(255, 122, 0, 0) 70%);
  border-radius: 50%;
}

.seo-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.08) 0%, rgba(255, 140, 0, 0) 70%);
  border-radius: 50%;
}

.seo-section .container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-header h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px;
  line-height: 1.8;
  color: #64748b;
  margin: 0;
}

.seo-content-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.seo-box {
  background: #ffffff;
  border: 1px solid rgba(255, 122, 0, 0.10);
  border-radius: 24px;
  padding: 35px 32px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
  transition: all 0.35s ease;
}

.seo-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
  border-color: rgba(255, 122, 0, 0.22);
}

.seo-box h3 {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
}

.seo-box p {
  font-size: 16px;
  line-height: 1.95;
  color: #475569;
  margin: 0 0 16px;
}

.seo-box p:last-child {
  margin-bottom: 0;
}

.seo-box strong {
  color: #0f172a;
  font-weight: 700;
}

.seo-highlight-bar {
  margin-top: 35px;
  background: linear-gradient(135deg, #ff7a00, #ff9a2f);
  border-radius: 20px;
  padding: 24px 28px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(255, 122, 0, 0.25);
}

.seo-highlight-bar p {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: #ffffff;
}

.seo-highlight-bar strong {
  color: #ffffff;
  font-weight: 800;
}

@media (max-width: 991px) {
  .section-header h2 {
    font-size: 34px;
  }

  .seo-content-wrap {
    grid-template-columns: 1fr;
  }

  .seo-box h3 {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .seo-section {
    padding: 65px 0;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 15px;
    line-height: 1.7;
  }

  .seo-box {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .seo-box h3 {
    font-size: 22px;
  }

  .seo-box p {
    font-size: 15px;
    line-height: 1.85;
  }

  .seo-highlight-bar {
    padding: 20px 18px;
    border-radius: 16px;
  }

  .seo-highlight-bar p {
    font-size: 15px;
    line-height: 1.7;
  }
}

h2.Build {
    color: white;
}
a.btn.btn-primary.sstart {
    color: black !important;
}
a.btn.btn-outline.callnow {
    color: white !important;
}
header.page-header.spage {
    text-align: left;
}




/* ===== RESPONSIVE FIX FOR professional-website.php ===== */

html, body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/*
.container {
  width: min(92%, 1200px);
  margin: 0 auto;
}
*/

.details-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
  gap: 32px;
  align-items: start;
}

.details-main,
.sidebar,
.content-card,
.sidebar-card,
.feature-card,
.process-card,
.highlight-card,
.faq-item {
  min-width: 0;
}

.content-card,
.sidebar-card,
.feature-card,
.process-card,
.highlight-card,
.faq-item {
  overflow: hidden;
}

.content-card img.hero-service-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
}

/* Tablet */
@media (max-width: 1199px) {
  .details-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    top: auto;
  }

  .features-grid,
  .highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .page-header h1 {
    font-size: 42px;
  }

  .section-title h2 {
    font-size: 34px;
  }

  .seo-copy h3,
  .content-card h2 {
    font-size: 30px;
  }

  .content-card h3 {
    font-size: 24px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .section {
    padding: 55px 0;
  }
    
    ul.footer-linksdd {
    display: inline-block !important;
    gap: 64px;
}

  .page-header {
    padding: 85px 0 55px;
  }

  .page-header h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .page-header p {
    font-size: 15px;
    line-height: 1.7;
  }

  .breadcrumb {
    font-size: 13px;
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .content-card,
  .sidebar-card,
  .feature-card,
  .process-card,
  .highlight-card,
  .faq-item,
  .seo-copy {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .content-card h2 {
    font-size: 24px;
  }

  .content-card h3,
  .seo-copy h3 {
    font-size: 20px;
    line-height: 1.3;
  }

  .content-card p,
  .feature-card p,
  .process-card p,
  .highlight-card p,
  .faq-item p,
  .seo-copy p,
  .section-title p {
    font-size: 15px;
    line-height: 1.8;
  }

  .features-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .features-list li {
    padding: 14px 14px;
    font-size: 14px;
    line-height: 1.6;
  }

  .features-grid,
  .process-grid,
  .highlights-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .feature-card h3,
  .process-card h3,
  .highlight-card h3,
  .faq-item h3,
  .sidebar-card h3 {
    font-size: 20px;
    line-height: 1.35;
  }

  .feature-icon,
  .process-icon,
  .highlight-icon {
    width: 52px;
    height: 52px;
    font-size: 20px;
    border-radius: 14px;
    margin-bottom: 14px;
  }

  .widget-list a {
    padding: 13px 14px;
    font-size: 14px;
    line-height: 1.5;
  }

  .mini-points {
    gap: 10px;
  }

  .mini-points li {
    font-size: 14px;
    line-height: 1.6;
  }

  .cta-box {
    padding: 30px 18px;
    border-radius: 18px;
  }

  .cta-box h2 {
    font-size: 26px;
    line-height: 1.25;
  }

  .cta-box p {
    font-size: 15px;
    line-height: 1.7;
  }

  .cta-actions {
    flex-direction: column;
    gap: 12px;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .content-card img.hero-service-img {
    min-height: auto;
    border-radius: 14px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .container {
    width: 94%;
  }

  .page-header h1 {
    font-size: 26px;
  }

  .section-title h2 {
    font-size: 23px;
  }

  .content-card h2 {
    font-size: 22px;
  }

  .content-card h3,
  .seo-copy h3 {
    font-size: 18px;
  }

  .btn {
    padding: 13px 18px;
    font-size: 14px;
  }
}

a.btn.btn-primary.nav-btn {
    color: white !important;
}

h3.your {
    color: white !important;
}

a.btn.btn-outline.callnow:hover {
    color: black !important;
}
ul.footer-linksdd {
    display: flex;
        gap: 64px;
}

section.section.homethree {
    background: #f8f9fc;
    padding-top: 30px;
    padding-bottom: 60px;
}
section.section.homefive {
    background: #f8f9fc;
}

section.section.homeseven {
    background: #f8f9fc;
}

section.section.homenine {
    background: #f8f9fc;
}

