* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
/* Body text (paragraph, normal text) */
body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
/*   color: #1f2937; */
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Afacad', sans-serif;
  font-weight: 600;
  letter-spacing: -0.5px;
}

/* body {
  background-color: #f9f9f9;
} */

.navbar {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Fix overlapping when WordPress Admin Bar is showing */
.admin-bar .navbar {
  top: 32px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.logo img {
  height: 60px;
  /* Adjust height as per your logo */
  display: block;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  transition: 0.3s;
}

/* Red underline for Active/Hover */       
.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #e31e24;
  bottom: 0;
  left: 0;
}

/* ✅ HEADER BUTTON (Login/Register)
   ⚠️ CONFLICT FIX: Pehle line 69 pe simple red tha, line 1676 pe gradient wala tha bhi.
   FINAL: Gradient wala yahan merge kar diya - neeche wala hata diya gaya ✔️ */

/* Nav-btn wrapper - cart + my account button */
.nav-btn {
  display: flex;
  align-items: center;
  gap: 30px;
}

.contact-btn {
  background: linear-gradient(135deg, #e31e24, #c4191f);
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
/*   border-radius: 30px; */
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(227, 30, 36, 0.4);
  background: linear-gradient(135deg, #c4191f, #a51418);
}

/* Responsive Design */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333;
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
    /* Hide links on mobile */
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

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

  .menu-toggle {
    display: flex;
  }

  .nav-btn {
    display: flex;
    gap: 15px;
  }
}

.hero-background {
  background-image: url("../images/tech.png");
  background-size: cover;
  /* Image ko left-center rakha hai taaki flip ke baad right balance mile */
  background-position: left center;
  background-repeat: no-repeat;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: #fff;

  /* === IMAGE KO HORIZONTALLY ULTA KARNE KE LIYE === */
  transform: scaleX(-1);
}

/* Left side se shadow/gradient jo image ko white background mein merge karegi */
.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 35%,
    rgba(255, 255, 255, 0.5) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

/* Container text ko align karne ke liye left side mein */
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 50px;
  position: relative;
  z-index: 2;
  transform: scaleX(-1);
  /* Padding taaki text left edge se bilkul chipka na rahe */
  display: flex;
  justify-content: flex-start;
  /* Text ko left mein rakhne ke liye */
}

.hero-content {
  max-width: 600px;
  /* Text area ki width limit karne ke liye */
  z-index: 2;
  /* Text ko image ke upar laane ke liye */
  color: #2b3975;
  /* Default dark color for text */
}

.hero-content h1 {
  font-size: 3.8rem;
  /* Thoda bada size design match karne ke liye */
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 700;
  color: inherit;
}

.hero-content p {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 35px;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background-color: #2b3975;
  color: white !important;
  padding: 15px 35px;
/*   border-radius: 2px; */
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: 0.3s;
  border: none;
}

.btn-primary:hover {
  background-color: #1a244a;
  color: white !important;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #fff;
  color: #2b3975 !important;
  padding: 15px 40px;
  border: 2px solid #2b3975;
/*   border-radius: 4px; */
  text-decoration: none;
  margin-left: 10px;
  display: inline-block;
  font-weight: 600;
  transition: 0.3s;
}

.btn-secondary:hover {
  background-color: #2b3975;
  color: #fff !important;
}

@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
    /* Font thoda chota kiya tablet ke liye */
  }

  .hero-background::before {
    width: 100%;
    /* Gradient ko puri width di taaki text readable rahe */
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.8) 50%,
      rgba(255, 255, 255, 0.1) 100%
    );
  }
}

/* Mobile Phones (768px and below) */
@media (max-width: 768px) {
  .hero-background {
    min-height: 50vh;
    /* Mobile par reduced height taaki footer overlap na ho */
    background-position: center;
    /* Image center mein */
    transform: none;
    /* Flip hata diya mobile par simplicity ke liye */
    padding: 20px 0;
  }

  .hero-container {
    transform: none;
    padding: 0 20px;
    justify-content: center;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    padding: 30px 20px;
/*     border-radius: 10px; */
  }

  .hero-content h1 {
    font-size: 2.2rem;
    /* Mobile ke liye headings choti */
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    margin-left: 0 !important;
    text-align: center;
  }

  .hero-background::before {
    background: rgba(255, 255, 255, 0.6);
  }
}

/* Stats Section */
.stats {
  background-color: #2b3975;
  color: white;
  padding: 60px 0;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.stat-item h2 {
  font-size: 2.8rem;
  display: inline-block;
  font-weight: 700;
}

.stat-item span {
  font-size: 2.8rem;
  font-weight: 700;
}

.stat-item p {
  font-size: 1rem;
  opacity: 0.9;
  margin-top: 5px;
}

@media (max-width: 992px) {
  .hero-background {
    background-position: center;
    padding: 50px 20px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 30px;
/*     border-radius: 8px; */
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-btns {
    justify-content: center;
    flex-wrap: wrap;
  }

  .stats-container {
    flex-wrap: wrap;
    gap: 30px;
  }

  .stat-item {
    flex: 1 0 45%;
  }
}

/* Stats Section */

.sifa-about-wrapper {
  padding: 80px 20px;
  background-color: #fff;
  font-family: "Poppins", sans-serif;
}

.sifa-about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

.sifa-about-content {
  flex: 1;
}

.sifa-about-tag {
  color: #e31e24;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 15px;
}

.sifa-about-title {
  font-size: 36px;
  color: #1e2a6c;
  line-height: 1.3;
  margin-bottom: 25px;
}

.sifa-about-text {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 16px;
}

.sifa-about-btn {
  display: inline-block;
  padding: 12px 25px;
  border: 1.5px solid #2b3975;
  color: #2b3975;
  text-decoration: none;
  font-weight: 600;
/*   border-radius: 4px; */
  margin-top: 10px;
  transition: 0.3s;
}

.sifa-about-btn:hover {
  background: #2b3975;
  color: #fff;
}

/* Grid Images Styling */
.sifa-about-grid {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sifa-grid-main,
.sifa-sub-box {
  position: relative;
  overflow: hidden;
/*   border-radius: 4px; */
}

.sifa-grid-main img,
.sifa-sub-box img {
  width: 100%;
  display: block;
  transition: 0.5s;
}

.sifa-grid-label,
.sifa-grid-label-small {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
}

.sifa-grid-label h3 {
  font-size: 20px;
}

.sifa-grid-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sifa-features-wrapper {
  padding-bottom: 80px;
}

.sifa-features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 20px;
}

.sifa-feature-card {
  background: #f8f9fc;
  padding: 30px;
/*   border-radius: 4px; */
  text-align: left;
  transition: 0.3s;
}

.sifa-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.sifa-feature-icon {
  width: 56px;
  height: 56px;
  background-color: #1a237e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
/*   border-radius: 4px; */
  margin-bottom: 18px;
  color: #ffffff;
}

.sifa-feature-icon i {
  font-size: 22px;
}

.sifa-feature-card h3 {
  color: #2b3975;
  margin-bottom: 10px;
  font-size: 18px;
}

.sifa-feature-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 992px) {
  .sifa-about-container {
    flex-direction: column;
  }

  .sifa-features-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sifa-about-title {
    font-size: 28px;
  }

  .sifa-grid-sub {
    grid-template-columns: 1fr;
  }

  .sifa-features-container {
    grid-template-columns: 1fr;
  }
}

.sifa-prod-section {
  padding: 80px 20px;
  background-color: #fcfcfc;
  font-family: "Poppins", sans-serif;
}

.sifa-prod-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.sifa-prod-tag {
  color: #e31e24;
  /* Red color */
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  padding: 0 40px;
}

/* Red lines beside "OUR PRODUCTS" */
.sifa-prod-tag::before,
.sifa-prod-tag::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background-color: #e31e24;
}

.sifa-prod-tag::before {
  left: 0;
}

.sifa-prod-tag::after {
  right: 0;
}

.sifa-prod-main-title {
  font-size: 36px;
  color: #2b3975;
  /* Blue color */
  margin: 15px 0;
  font-weight: 700;
}

.sifa-prod-subtitle {
  color: #666;
  font-size: 16px;
}

.sifa-prod-grid {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.sifa-prod-card {
  background: #fff;
/*   border-radius: 4px; */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sifa-prod-img-box {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.sifa-prod-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.sifa-prod-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
/*   border-radius: 2px; */
}

.sifa-prod-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(43, 57, 117, 0.9));
  color: #fff;
}

.sifa-prod-img-overlay h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.sifa-prod-img-overlay p {
  font-size: 13px;
  opacity: 0.9;
}

.sifa-prod-info {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.sifa-prod-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
}

.sifa-prod-features {
  list-style: none;
  margin-bottom: 25px;
  flex-grow: 1;
}

.sifa-prod-features li {
  font-size: 13px;
  color: #444;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.sifa-prod-features li::before {
  content: "•";
  color: #2b3975;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.sifa-prod-btn {
  background-color: #2b3975;
  color: #fff;
  text-align: center;
  padding: 12px;
  text-decoration: none;
/*   border-radius: 4px; */
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.sifa-prod-footer {
  text-align: center;
  margin-top: 50px;
}

.sifa-prod-view-all {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid #2b3975;
  color: #2b3975;
  text-decoration: none;
  font-weight: 600;
/*   border-radius: 4px; */
}

@media (max-width: 1200px) {
  .sifa-prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sifa-prod-grid {
    grid-template-columns: 1fr;
  }

  .sifa-prod-main-title {
    font-size: 28px;
  }
}

.sifa-cta-wrapper {
  background-color: #1a2a5e;
  /* Premium Dark Blue */
  padding: 60px 0;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.sifa-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.sifa-cta-content {
  flex: 1;
  color: #fff;
  padding-right: 40px;
}

.sifa-cta-badge {
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
/*   border-radius: 4px; */
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.sifa-cta-dot {
  width: 8px;
  height: 8px;
  background-color: #e31e24;
  /* Red Dot */
  border-radius: 50%;
  margin-right: 10px;
}

.sifa-cta-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.sifa-cta-text {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 35px;
  max-width: 500px;
}

.sifa-cta-btns {
  display: flex;
  gap: 15px;
}

.sifa-btn-red {
  display: inline-block;
  background: #e31e24;
  color: #fff !important;
  padding: 14px 30px;
/*   border-radius: 6px; */
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.sifa-btn-red:hover {
  background: #c4191f;
  transform: translateY(-2px);
  color: #fff !important;
}

.sifa-btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff !important;
  padding: 14px 30px;
/*   border-radius: 6px; */
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #fff;
  transition: all 0.3s ease;
  margin-left: 15px;
}

.sifa-btn-outline:hover {
  background: #fff;
  color: #2b3474 !important;
}

/* Diagonal Image Side */
.sifa-cta-image-side {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.sifa-cta-shape-box {
  width: 100%;
  height: 450px;
  background: #fff;
  /* Diagonal cut effect using clip-path */
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
}

.sifa-cta-shape-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Responsive View --- */
@media (max-width: 992px) {
  .sifa-cta-container {
    flex-direction: column;
    text-align: center;
  }

  .sifa-cta-content {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .sifa-cta-text {
    margin: 0 auto 35px;
  }

  .sifa-cta-btns {
    justify-content: center;
  }

  .sifa-cta-shape-box {
    clip-path: none;
    height: 300px;
/*     border-radius: 10px; */
  }
}

@media (max-width: 600px) {
  .sifa-cta-title {
    font-size: 30px;
  }

  .sifa-cta-btns {
    flex-direction: column;
  }

  .sifa-btn-red,
  .sifa-btn-outline {
    width: 100%;
    text-align: center;
  }
}

.ac-svc-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.ac-svc-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.ac-svc-subtitle {
  color: #e63946;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ac-svc-title {
  font-size: 32px;
color: #1E2A6C !important;
  margin: 15px 0;
}

.ac-svc-description {
  color: #555;
  line-height: 1.6;
}

/* Grid Layout */
.ac-svc-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ac-svc-right-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ac-svc-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Card Styling */
.ac-svc-card {
  position: relative;
  overflow: hidden;
/*   border-radius: 4px; */
  height: 100%;
  min-height: 250px;
}

.ac-svc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.ac-svc-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, rgba(13, 27, 42, 0.9));
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

/* Specific Card Text */
.ac-svc-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.ac-svc-card p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 15px;
}

.ac-svc-num {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
  opacity: 0.7;
}

.ac-svc-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.ac-svc-list li::before {
  content: "•";
  color: #e63946;
  margin-right: 8px;
}

.ac-svc-btn {
  display: inline-block;
  background: #fff;
  color: #0d1b2a;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  width: fit-content;
}

.ac-svc-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.ac-svc-outline-btn {
  border: 1px solid #ccc;
  padding: 12px 35px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.ac-svc-bottom-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #f1f4f9;
  padding: 30px;
  margin-top: 30px;
  gap: 20px;
}

.ac-svc-feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ac-svc-icon {
  width: 48px;
  height: 48px;
  background: #1a237e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
/*   border-radius: 4px; */
  color: #ffffff;
}

.ac-svc-icon i {
  font-size: 20px;
}

.ac-svc-feature h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.ac-svc-feature p {
  font-size: 12px;
  color: #666;
}

@media (max-width: 992px) {
  .ac-svc-main-grid {
    grid-template-columns: 1fr;
  }

  .ac-svc-card-lg {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .ac-svc-bottom-bar {
    grid-template-columns: 1fr;
  }

  .ac-svc-sub-grid {
    grid-template-columns: 1fr;
  }

  .ac-svc-title {
    font-size: 26px;
  }
}

.pfo-main-section {
  padding: 60px 0 0 0;
  background: #fff;
}

.pfo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Tabs */
.pfo-header {
  text-align: center;
  margin-bottom: 40px;
}

.pfo-pre-title {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
color: #e31e24 !important;
}

.pfo-title {
  font-size: 36px;
  color: var(--primary);
  margin: 10px 0;
  font-weight: 700;
color: #1E2A6C !important;

}

.pfo-desc {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.6;
}

.pfo-filter-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px 0 50px;
}

.pfo-tab {
  background: #fff !important;
  color: #2c3776 !important;
  border: 1px solid #d9dde8 !important;
  padding: 10px 24px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pfo-tab:hover {
  background: #1f2d86  !important;
  border-color: #1f2d86  !important;
  color: #fff !important;
}

.pfo-tab.active {
  background: #1f2d86  !important;
  border-color: #1f2d86  !important;
  color: #fff !important;
}

/* .pfo-tab[data-filter="all"] {
  background: #1f2d86  !important;
  border-color: #1f2d86 !important;
  color: #fff !important;
	border-radius:0;
} */

/* Grid Logic */
.pfo-layout-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 20px;
}

.pfo-left-pane,
.pfo-right-pane {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pfo-split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Card Design */
.pfo-card {
  position: relative;
/*   border-radius: 4px; */
  overflow: hidden;
  height: 300px;
}

.pfo-featured {
  height: 500px;
}

.pfo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

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

.pfo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
}

.pfo-badge {
  padding: 4px 12px;
  font-size: 10px;
  font-weight: bold;
  width: fit-content;
  margin-bottom: 10px;
}

.pfo-badge.red {
  background: var(--accent);
}

.pfo-badge.outline {
  border: 1px solid white;
  background: rgba(255, 255, 255, 0.1);
}

.pfo-loc {
  font-size: 11px;
  opacity: 0.8;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pfo-card h3 {
  font-size: 19px;
  margin: 5px 0;
}

.pfo-summary {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 20px;
  line-height: 1.5;
}

.pfo-specs,
.pfo-mini-stats {
  display: flex;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
}

.pfo-specs span,
.pfo-mini-stats span {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.pfo-specs small,
.pfo-mini-stats small {
  font-size: 10px;
  opacity: 0.7;
}

.pfo-card.is-hidden {
  display: none;
}

/* Explore All Projects Area (Fixed) */
.pfo-footer-cta {
  margin-top: 10px;
  text-align: left; /* Figma me left aligned hai */
}

.pfo-footer-cta p {
  max-width: 600px;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0;
}

.pfo-btn-explore {
  border: 1px solid #1f2d86;
  color: #1f2d86;
  background: transparent;
  padding: 12px 30px;
  margin-bottom: 50px;
  text-decoration: none;
}

.pfo-btn-explore:hover {
  background: #0d1b2a;
  color: white;
}

/* Newsletter Bar */
.newsletter-bar {
  margin-top: 50px;
  background: #f4f7fa;
  padding: 40px 0;
  border-top: 1px solid #e0e0e0;
}

.newsletter-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.newsletter-text h3 {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 5px;
}

.newsletter-text p {
  color: var(--text-light);
  font-size: 14px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
}

.newsletter-form input {
  padding: 12px 20px;
  border: 1px solid #ddd;
/*   border-radius: 8px; */
  width: 300px;
  background: #eaeff5;
}

.newsletter-form button {
  padding: 12px 30px;
  border: none;
  background: #fff;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
/*   border-radius: 8px; */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.newsletter-form button:hover {
  color: #ffffff;
}

.newsletter-form button i {
  margin-left: 6px;
}

/* Responsive */
@media (max-width: 1024px) {
  .pfo-layout-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .pfo-split-row {
    grid-template-columns: 1fr;
  }

  .pfo-title {
    font-size: 28px;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-form input {
    width: 100%;
  }
}

.sifa-ftr-main {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 80px 0 30px 0;
  font-family: "Poppins", sans-serif;
}

.sifa-ftr-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
  width: 100%;
  box-sizing: border-box;
}

.sifa-ftr-top-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.6fr 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  /* Header Button Text Hide */
  .contact-btn .btn-text {
    display: none !important;
  }
  .navbar .nav-btn {
    gap: 15px !important;
  }

  .sifa-ftr-main {
    padding: 60px 0 30px 0 !important;
  }
  .sifa-ftr-top-grid {
    display: block !important; /* Force block to ensure stacking */
    width: 100% !important;
  }
  .sifa-ftr-col,
  .footer-col {
    text-align: center !important;
    width: 100% !important;
    margin-bottom: 30px !important;
    display: block !important;
  }
  .sifa-ftr-col h4::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  .sifa-ftr-bottom {
    flex-direction: column-reverse !important;
    text-align: center !important;
    gap: 20px !important;
  }
  .sifa-ftr-legal {
    justify-content: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
  }
}

.sifa-ftr-logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.sifa-ftr-about {
  color: #a0a0a0;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* Social Icons */
.sifa-ftr-social {
  display: flex;
  gap: 12px;
}

.sifa-ftr-social a {
  width: 36px;
  height: 36px;
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
/*   border-radius: 4px; */
  font-size: 14px;
  transition: 0.3s;
}

.sifa-ftr-social a:hover {
  background-color: #2e4a9e;
}

/* Headings & Links */
.sifa-ftr-heading {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 25px;
}

.sifa-ftr-links {
  list-style: none;
}

.sifa-ftr-links li {
  margin-bottom: 12px;
}

.sifa-ftr-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.sifa-ftr-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

/* Contact Info */
.sifa-ftr-contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.sifa-ftr-icon {
  min-width: 36px;
  height: 36px;
  background-color: #1e3a8a;
  /* Dark Blue */
  display: flex;
  align-items: center;
  justify-content: center;
/*   border-radius: 2px; */
}

.sifa-ftr-icon i {
  color: #ffffff;
  font-size: 16px;
}

.sifa-ftr-contact-item p {
  color: #a0a0a0;
  font-size: 14px;
  line-height: 1.5;
}

/* Divider & Bottom Bar */
.sifa-ftr-divider {
  height: 1px;
  background-color: #333;
  margin: 60px 0 25px 0;
}

.sifa-ftr-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.sifa-ftr-copy {
  color: #666;
  font-size: 13px;
}

.sifa-ftr-legal {
  display: flex;
  gap: 30px;
  list-style: none;
}

.sifa-ftr-legal a {
  color: #666;
  text-decoration: none;
  font-size: 13px;
}

.sifa-ftr-legal a:hover {
  color: #ffffff;
}

/* Responsive Fixes */
@media (max-width: 992px) {
  .sifa-ftr-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .sifa-ftr-top-grid {
    grid-template-columns: 1fr;
  }

  .sifa-ftr-bottom {
    flex-direction: column-reverse;
    text-align: center;
  }

  .sifa-ftr-legal {
    justify-content: center;
    gap: 15px;
  }
}

/* Hide Uncategorized WooCommerce Category */
.product-category.product.category-uncategorized {
  display: none !important;
}

/* ✅ ICON ALIGNMENT FIX (feature icons + footer icons) */
.sifa-feature-icon,
.sifa-ftr-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==================================================
   ✅ CART ICON HIDE RULES - SIRF YAHAN DEFINE HAIN
   Yeh sab rules header cart icon ko chhupate hain.
   Agar cart icon dikhana ho to in sab ko comment karo.
   ⚠️ NOTE: a[href*="cart"] bahut broad hai - yeh cart
   page ke links bhi chupa sakta hai. Zarurat ho to
   ise specific class se replace karo.
   ================================================== */

a[href*="cart"],
a[href*="/cart"] {
  display: none !important;
}

.header-cart,
.site-header-cart,
.cart-contents,
a.cart-contents,
.menu-item-cart,
.menu-item-woocommerce-cart,
.elementor-widget-woocommerce-menu-cart,
.elementor-menu-cart__toggle,
.elementor-menu-cart__container,
.elementor-menu-cart__wrapper {
  display: none !important;
}

.cart-count,
.cart-contents-count,
.header-cart-count,
.elementor-menu-cart__counter {
  display: none !important;
}

/* ==================================================
   ⚠️ REMOVED FROM HERE (DUPLICATE THI):
   - .contact-btn        → sirf line ~69 pe hai (style.css)
   - #customer_login     → woocommerce.css mein properly define hai
   ================================================== */

/* =========================================
   LOGIN, REGISTER & LOST PASSWORD FIXES
   ========================================= */

/* Ensure two-column layout doesn't cramp */
#customer_login.u-columns.col2-set {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 40px !important;
  width: 100% !important;
  justify-content: space-between !important;
}

#customer_login .u-column1,
#customer_login .u-column2 {
  flex: 1 !important;
  min-width: 320px !important;
  width: 100% !important;
  margin: 0 !important;
}

/* Fix Input Field Widths & Heights on all Account Forms */
.woocommerce-account.logged-out form.login input.input-text,
.woocommerce-account.logged-out form.register input.input-text,
#customer_login input.input-text,
.woocommerce-ResetPassword.lost_reset_password input.input-text,
.woocommerce-address-fields input.input-text,
.woocommerce-address-fields select,
.woocommerce-EditAccountForm input.input-text,
.woocommerce-EditAccountForm select {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  height: 50px !important;
  border: 1px solid #ddd !important;
/*   border-radius: 8px !important; */
  padding: 0 15px !important;
  box-sizing: border-box !important;
  background: #fafafa !important;
  font-size: 15px !important;
  color: #333 !important;
}

/* Fix Select2 Height inside Addresses */
.woocommerce-address-fields .select2-container .select2-selection--single {
  height: 50px !important;
  border: 1px solid #ddd !important;
/*   border-radius: 8px !important; */
  background: #fafafa !important;
  display: flex !important;
  align-items: center !important;
}
.woocommerce-address-fields
  .select2-container
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 50px !important;
  padding-left: 15px !important;
}

/* Labels & Rows Stacking Fix (For Login, Registration, Reset Password, Addresses & Account details) */
#customer_login .form-row,
.woocommerce-address-fields .form-row,
.woocommerce-EditAccountForm .form-row,
.woocommerce-EditAccountForm .woocommerce-form-row {
  display: block !important;
  width: 100% !important;
  margin-bottom: 20px !important;
}

#customer_login form.login label,
#customer_login form.register label,
.woocommerce-ResetPassword.lost_reset_password label,
.woocommerce-address-fields label,
.woocommerce-EditAccountForm label,
.woocommerce-EditAccountForm .woocommerce-form-row label {
  display: block !important;
  font-weight: 500 !important;
  margin-bottom: 8px !important;
  color: #444 !important;
  text-align: left !important;
  width: 100% !important;
}

/* Account Detail Extra Text (This will be how your name...) */
.woocommerce-EditAccountForm .woocommerce-form-row span {
  display: block !important;
  margin-top: 5px !important;
  width: 100% !important;
  font-size: 13px !important;
  color: #666 !important;
}

/* Hide the broken WooCommerce Show Password Toggle globally */
.show-password-input {
  display: none !important;
  visibility: hidden !important;
}

/* Buttons Styling */
.woocommerce-account.logged-out form.login button.woocommerce-Button,
.woocommerce-account.logged-out form.register button.woocommerce-Button,
.woocommerce-ResetPassword.lost_reset_password button[type=\'submit\'],
.woocommerce-address-fields button[type=\'submit\'] {
  background: #e31e24 !important;
  color: #fff !important;
  border: none !important;
  padding: 15px 20px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
/*   border-radius: 8px !important; */
  width: 100% !important;
  cursor: pointer !important;
  text-transform: uppercase !important;
  margin-top: 10px !important;
}

/* Lost Password Page Premium Layout & Center Alignment */
.woocommerce-account.lost-password .woo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  padding: 60px 20px;
}
.woocommerce-ResetPassword.lost_reset_password {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}
.woocommerce-ResetPassword.lost_reset_password p:first-child {
  margin-bottom: 25px;
  line-height: 1.6;
}

/* =========================================
   CHECKOUT PAGE SPACING & ALIGNMENT
   ========================================= */
.woocommerce-billing-fields__field-wrapper {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 15px 20px !important;
}

#billing_country_field,
#billing_address_1_field {
  grid-column: 1 / -1 !important; /* Make these full width */
}

.woocommerce-checkout .form-row {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  float: none !important;
}
.woocommerce-checkout .form-row label {
  margin-bottom: 5px !important;
  font-size: 14px !important;
  display: block !important;
}
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select {
  height: 40px !important;
  padding: 0 12px !important;
  border-radius: 6px !important;
  margin: 0 !important;
}

/* Important: Fix checkout form and contact form bug */
.woocommerce-checkout form.checkout,
.woocommerce-checkout .form-row {
  display: block !important;
}

@media (max-width: 768px) {
  .woocommerce-billing-fields__field-wrapper {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  #customer_login.u-columns.col2-set {
    flex-direction: column !important;
  }
}

/* Ensure Addresses Cards in My Account are Full Width */
.woocommerce-Address {
  width: 100% !important;
  max-width: 100% !important;
}

/* Final checkout override: payment methods + terms/newsletter/place-order */
.woocommerce-checkout #payment ul.payment_methods li.payment_method_cod,
.woocommerce-checkout #payment ul.payment_methods li.payment_method_razorpay {
  position: relative;
}

.woocommerce-checkout
  #payment
  ul.payment_methods
  li.payment_method_cod
  > input.input-radio,
.woocommerce-checkout
  #payment
  ul.payment_methods
  li.payment_method_razorpay
  > input.input-radio,
.woocommerce-checkout
  #payment
  ul.payment_methods
  li.payment_method_cod
  > input[type="radio"],
.woocommerce-checkout
  #payment
  ul.payment_methods
  li.payment_method_razorpay
  > input[type="radio"] {
  position: absolute !important;
  top: 18px !important;
  left: 16px !important;
  margin: 0 !important;
  width: 18px !important;
  height: 18px !important;
  z-index: 2 !important;
}

.woocommerce-checkout #payment ul.payment_methods li.payment_method_cod > label,
.woocommerce-checkout
  #payment
  ul.payment_methods
  li.payment_method_razorpay
  > label {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 10px 12px !important;
  width: 100% !important;
  min-height: 58px !important;
  padding: 14px 16px 14px 44px !important;
  margin: 0 !important;
  line-height: 1.4 !important;
  position: relative;
}

.woocommerce-checkout
  #payment
  ul.payment_methods
  li.payment_method_cod
  > label::before,
.woocommerce-checkout
  #payment
  ul.payment_methods
  li.payment_method_razorpay
  > label::before {
  display: none !important;
}

.woocommerce-checkout #payment .form-row.place-order,
.woocommerce-checkout #payment div.form-row.place-order,
.woocommerce-checkout #payment p.form-row.place-order {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
  width: 100% !important;
}

.woocommerce-checkout #payment .form-row.place-order > p,
.woocommerce-checkout #payment .form-row.place-order > div,
.woocommerce-checkout #payment .form-row.place-order > label,
.woocommerce-checkout #payment .form-row.place-order > span,
.woocommerce-checkout
  #payment
  .form-row.place-order
  > .woocommerce-privacy-policy-text,
.woocommerce-checkout #payment .form-row.place-order > .validate-required,
.woocommerce-checkout #payment .form-row.place-order > .mailchimp-newsletter,
.woocommerce-checkout #payment .form-row.place-order > .mc4wp-checkbox,
.woocommerce-checkout
  #payment
  .form-row.place-order
  > .wc-gzd-checkbox-placeholder {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  float: none !important;
  clear: both !important;
}

.woocommerce-checkout
  #payment
  .form-row.place-order
  .woocommerce-terms-and-conditions-wrapper
  .woocommerce-form__label-for-checkbox,
.woocommerce-checkout
  #payment
  .form-row.place-order
  .mailchimp-newsletter
  label,
.woocommerce-checkout #payment .form-row.place-order .mc4wp-checkbox label {
  display: inline-flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  width: 100% !important;
  margin: 0 !important;
}

.woocommerce-checkout #payment .form-row.place-order #place_order,
.woocommerce-checkout #payment .place-order #place_order {
  width: 100% !important;
  display: block !important;
  margin-top: 0 !important;
}

/* âœ… HEADER LOGIN ICON FOR MOBILE */
@media (max-width: 768px) {
  .contact-btn {
    padding: 10px !important;
/*     border-radius: 50% !important; */
    width: 40px !important;
    height: 40px !important;
    justify-content: center !important;
    box-shadow: 0 4px 10px rgba(227, 30, 36, 0.2) !important;
  }

  .contact-btn .btn-text {
    display: none !important;
  }

  .contact-btn i {
    font-size: 18px !important;
    margin: 0 !important;
  }

  .nav-btn {
    gap: 15px !important;
  }
}
