@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap");
/* Note: Google Sans is proprietary, 'Open Sans' or 'Inter' is the closest web-safe alternative if not locally hosted */

:root {
  --primary-color: #3533cd;
  --accent-color: #333333;
  --text-color: #3533cd;
}

body {
  font-family: "Google Sans", "Open Sans", sans-serif;
  scroll-behavior: smooth !important;
}

/* navbar css styles */

/******************************** Base Navbar Style ********************************/
.custom-nav {
  background: linear-gradient(135deg, #3533cd 0%, var(--accent-color) 100%);
  /* Pure color for speed */
  border-bottom: 2px solid #3533cd;
  transition: transform 0.3s ease;
  backface-visibility: hidden;
  /* GPU Acceleration */
  -webkit-font-smoothing: antialiased;
}

/* Desktop Only: Glassmorphism (Mobile par avoid karein speed ke liye) */
@media (min-width: 992px) {
  .custom-nav {
    background-color: rgba(51, 51, 51, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 !important;
    z-index: 1050;
  }
}

/* Mobile Optimization: No Blur, Fast Animation */
@media (max-width: 991px) {
  .navbar-brand {
    order: 1;
    margin-right: auto;
  }

  .navbar-toggler {
    order: 2;
    padding: 0;
    /* Remove extra padding */
  }

  .navbar-collapse {
    order: 3;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 15px;
    /* Smooth expand fix */
    transition: height 0.25s ease-out !important;
  }

  .nav-link {
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}

/* Hover Effects */
.nav-link {
  color: #ffffff !important;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-cta {
  background: #3533cd;
  /* Gradient ki jagah solid color for mobile speed */
  color: white !important;
  border-radius: 8px;
  /* Simple rounded for cleaner look */
  padding: 10px 25px !important;
  font-weight: 600;
}

/* Remove focus outline glitch */
.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

/******************************** Header Section home ********************************/

/* Custom Authority Utilities */
.text-accent {
  color: var(--primary-color) !important;
}

.bg-accent {
  background-color: var(--primary-color) !important;
}

.border-accent-left {
  border-left: 4px solid var(--primary-color) !important;
}

.ls-1 {
  letter-spacing: 1px;
}

/* Slider Hero */
/* Hero Circle Wrapper setup */
.hero-circle-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: auto;
  aspect-ratio: 1 / 1;
  /* Circle maintain karne ke liye */
}

/* Images container to stack them */
.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  border: 8px solid #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.hero-circle-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: circleFade 12s infinite;
  /* 3 images x 4s each */
}

/* Animation Timing for 3 Images */
.hero-circle-img:nth-child(1) {
  animation-delay: 0s;
}

.hero-circle-img:nth-child(2) {
  animation-delay: 4s;
}

.hero-circle-img:nth-child(3) {
  animation-delay: 8s;
}

.hero-circle-img:nth-child(4) {
  animation-delay: 12s;
}

@keyframes circleFade {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  /* Fade in */
  33% {
    opacity: 1;
  }

  /* Stay visible */
  43% {
    opacity: 0;
  }

  /* Fade out */
  100% {
    opacity: 0;
  }
}

/* Decorative Rotating Border */
.circle-deco {
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border: 2px dashed #3533cd;
  border-radius: 50%;
  animation: rotateFull 20s linear infinite;
  z-index: 1;
}

@keyframes rotateFull {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/******************************** Slider Marquee CSS ********************************/
.logo-swiper {
  padding: 15px 0;
  background: transparent;
}

.logo-box {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* filter: grayscale(100%); */
  /* opacity: 0.6; */
  transition: 0.4s ease-in-out;
}

.logo-box img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* --- MOBILE RESPONSIVE (80px) --- */
@media (max-width: 767px) {
  .logo-box {
    width: 80px;
    /* Mobile par box size 80px */
    height: 80px;
  }

  .logo-section {
    padding: 30px 0;
    /* Mobile par padding thodi kam */
  }

  /* Hover effect mobile par thoda kam rakhein taaki screen se bahar na jaye */
  .logo-box img:hover {
    transform: scale(1.1);
  }
}

/* Desktop Hover */
@media (min-width: 768px) {
  .logo-box img:hover {
    opacity: 1;
    transform: scale(1.2) translateY(-5px);
    filter: drop-shadow(0 10px 15px rgba(53, 51, 205, 0.2));
  }
}

/* Important: Ye marquee effect ke liye linear motion zaroori hai */
.swiper-wrapper {
  transition-timing-function: linear !important;
}

/******************************** About us  Section CSS *******************************/

.text-primary-custom {
  color: var(--primary-color) !important;
}

.bg-primary-custom {
  background-color: var(--primary-color) !important;
}

/* --- About Slider Styling --- */
.about-slider-wrapper {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(53, 51, 205, 0.1);
}

.about-slider-wrapper .carousel-item {
  height: 450px;
}

.about-slider-wrapper .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Custom Indicators */
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

.carousel-indicators .active {
  width: 30px;
  border-radius: 10px;
}

.section-title {
  letter-spacing: -1px;
  line-height: 1.2;
}

.btn-primary-custom {
  background-color: var(--primary-color);
  color: white;
  border-radius: 50px;
  padding: 12px 35px;
  font-weight: 600;
  transition: 0.3s;
  border: none;
}

.btn-primary-custom:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}

/******************************** Feature Section CSS *******************************/

.feature-box {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  transition: 0.3s all ease-in-out;
  height: 100%;
}

.feature-box:hover {
  border-color: #3533cd;
  box-shadow: 0 10px 30px rgba(53, 51, 205, 0.1);
  transform: translateY(-5px);
}

.step-number-circle {
  width: 45px;
  height: 45px;
  background: #3533cd;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(53, 51, 205, 0.3);
}

.feature-list li {
  padding-bottom: 15px;
  border-bottom: 1px border-light;
}

.feature-list li:last-child {
  border-bottom: none;
}

.icon-wrap {
  color: #3533cd;
  font-size: 1.2rem;
  margin-right: 12px;
  margin-top: 3px;
}

.text-accent-color {
  color: #3533cd !important;
}

/******************************** Achievement Section v4.2 Style ********************************/
.our-achievement {
  background: linear-gradient(135deg, #3533cd 0%, var(--accent-color) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.our-achievement .title h2 {
  color: #fff;
  font-weight: 800;
  margin-bottom: 15px;
}

.our-achievement .title p {
  color: #adb5bd;
}

.single-achievement {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(222, 184, 135, 0.2);
  padding: 40px 20px;
  border-radius: 20px;
  text-align: center;
  transition: 0.4s;
  backdrop-filter: blur(5px);
}

.single-achievement:hover {
  background: rgba(222, 184, 135, 0.05);
  border-color: #deb887;
  transform: translateY(-10px);
}

.single-achievement .counter {
  color: #deb887;
  /* Secondary Gold Color */
  font-size: 45px;
  font-weight: 800;
  display: block;
  margin-bottom: 5px;
}

.single-achievement p {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  margin: 0;
}

.single-achievement small {
  color: #adb5bd;
  display: block;
  font-size: 12px;
  margin-top: 5px;
  font-weight: normal;
  text-transform: none;
}

/******************************** price Plans ********************************/

/* Premium Glass Design */
.pricing-wrapper {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.pricing-wrapper:hover {
  transform: translateY(-15px);
  box-shadow: 0 40px 80px rgba(53, 51, 205, 0.15) !important;
}

.featured-pro {
  border: 2px solid #3533cd !important;
  background: linear-gradient(180deg, #ffffff 0%, #f9f9ff 100%);
}

/* Price Section */
.plan-title {
  color: #333;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.price-big {
  font-size: 3rem;
  font-weight: 900;
  color: #333;
  line-height: 1;
}

.price-sub {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* Smart Feature List (2 Columns for long lists) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 Columns mein points */
  gap: 10px 20px;
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.f-item {
  font-size: 0.85rem;
  color: #555;
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.f-item i {
  color: #3533cd;
  margin-right: 8px;
  font-size: 1rem;
}

/* CTA Button */
.btn-pricing {
  background: #333;
  color: white;
  border-radius: 12px;
  padding: 15px;
  font-weight: 700;
  border: none;
  transition: 0.3s;
}

.btn-pricing:hover {
  background: #000;
  color: white;
}

.btn-accent {
  background: #3533cd;
}

.btn-accent:hover {
  background: #2826a8;
}

.popular-tag {
  background: #3533cd;
  color: white;
  padding: 4px 15px;
  border-radius: 50px;
  font-size: 0.75rem;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
}

/* ******************************** Section team Styling *********************************/
.team-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.section-tag {
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* Card Styling */
.leader-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(53, 51, 205, 0.1);
}

.leader-img-wrapper {
  height: 400px;
  overflow: hidden;
}

.leader-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.5s;
}

.leader-card:hover .leader-img-wrapper img {
  transform: scale(1.1);
}

/* Small Team Member Styling (Row 3) */
.team-item {
  text-align: center;
  margin-bottom: 30px;
}

.team-img-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 15px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-accent {
  color: var(--primary-color);
}

.bg-accent {
  background-color: var(--primary-color);
}

@media (max-width: 767px) {
  .leader-img-wrapper {
    height: 250px;
  }

  .team-img-circle {
    width: 100px;
    height: 100px;
  }
}

/* ******************************** Contact Section Styling *********************************/
.contact-section {
  background-color: #ffffff;
  padding: 80px 0;
}

/* Contact Info Cards */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  transition: 0.3s;
}

.icon-box {
  width: 50px;
  height: 50px;
  background-color: rgba(53, 51, 205, 0.1);
  color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 20px;
  flex-shrink: 0;
}

/* Form Styling */
.contact-form-card {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-control {
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid #eee;
  background-color: #f9f9f9;
  font-family: "Google Sans", sans-serif;
}

.form-control:focus {
  box-shadow: 0 0 0 4px rgba(53, 51, 205, 0.1);
  border-color: var(--primary-color);
  background-color: #fff;
}

/* Social Icons */
.social-links a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1f1f1;
  color: var(--accent-color);
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

/* Map Styling */
.map-container {
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
  height: 300px;
}

@media (max-width: 767px) {
  /* .contact-form-card { padding: 25px; } */
  .map-container {
    height: 250px;
  }
}

/******************************** Footer Section ********************************/
/* 
footer {
    background: var(--accent-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    border-top: 4px solid var(--accent-gold);
}

.f-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 15px;
    text-transform: uppercase;
}

.f-link {
    color: inherit;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    transition: 0.2s;
}

.f-link:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.f-call {
    font-size: 24px;
    color: #fff;
    font-weight: 800;
}

@media (max-width: 991px) {
    .hero-overlay {
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
    }

    .seo-card {
        border-left: none;
        border-top: 6px solid var(--accent-gold);
        padding: 30px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .navbar-brand img {
        height: 40px;
    }
} */

:root {
  --footer-dark: #0e0e0e;
  --footer-card: rgba(255, 255, 255, 0.03);
  --accent-gradient: linear-gradient(135deg, #7e7e7e 0%, #d1d1d1 100%);
  --text-muted: #94a3b8;
}

footer {
  background: var(--footer-dark);
  color: var(--text-muted);
  padding: 100px 0 0;
  font-family: "Google Sans", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Background Abstract Pattern */
footer::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(53, 51, 205, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.f-title {
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
}

.f-title::after {
  content: "";
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-gradient);
  margin-top: 10px;
  border-radius: 10px;
}

.f-link {
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.f-link:hover {
  color: #fff;
  transform: translateX(8px);
}

/* Contact & Social Section */
.contact-brand-box {
  background: var(--footer-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.f-call-big {
  font-size: 26px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  display: block;
  letter-spacing: -0.5px;
}

.social-wrapper {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
  background: var(--accent-gradient);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(53, 51, 205, 0.3);
}

/* States Section: The "Uttar Pradesh | Delhi" Row */
.states-strip {
  background: white;
  padding: 35px 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.states-content {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 2;
  color: rgb(134, 134, 134);
}

.state-name {
  transition: 0.3s;
  cursor: pointer;
}

.state-name:hover {
  color: #2c2c2c;
}

.pipe {
  color: rgb(134, 134, 134);
  margin: 0 12px;
  font-weight: bold;
}

.copyright-bar {
  background: #ffffff;
  padding: 25px 0;
  font-size: 12px;
}

/********************************* --- Service Section Styles --- *********************************/

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

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(53, 51, 205, 0.1);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: inline-block;
}

/* Pricing Package Highlight */
.pricing-card {
  border: 2px solid var(--primary-color);
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.package-badge {
  background: var(--primary-color);
  color: white;
  padding: 5px 20px;
  position: absolute;
  top: 20px;
  right: -30px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: bold;
}

.price-tag {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.list-unstyled li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #555;
}

.list-unstyled i {
  color: var(--primary-color);
  margin-right: 10px;
}

/* --- Service Grid Styles --- */
.services-grid-section {
  background-color: #ffffff;
  padding: 60px 0;
}

.service-mini-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.service-mini-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(53, 51, 205, 0.1);
}

.service-mini-card .icon-circle {
  width: 65px;
  height: 65px;
  background: rgba(53, 51, 205, 0.05);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  transition: 0.3s;
}

.service-mini-card:hover .icon-circle {
  background: var(--primary-color);
  color: #fff;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.card-tag {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
  opacity: 0.7;
}

/* Category Specific Colors (Optional) */
.tag-hardware {
  color: #666;
}
.tag-print {
  color: #e67e22;
}
