/* DSS Consulting Corporation - Professional Website Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    /* --light-bg: #f8fafc; */
    --gradient: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navbar Styles */
/* Navbar Base */
/* Navbar Container */
/* ===== Base Navbar ===== */
.navbar {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
 
  padding: 6px 50px; /* pehle 60px tha, thoda kam kiya for more left logo */

  z-index: 999;
  transition: all 0.3s ease;
}

/* ===== Logo ===== */
.logo img {
  width: 90px;
  height: auto;
  margin-left: 50px; /* logo ko thoda left shift kiya */
}
/* ===== Nav Links ===== */
.nav-links {
  list-style: none;
  display: flex;
  gap: 45px; /* thoda zyada gap diya for better spacing */
  margin-right: 90px; /* nav links ko thoda right shift kiya */
  transition: right 0.4s ease;
  margin-bottom: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #007b8f;
  bottom: 0;
  left: 0;
  transition: 0.3s ease;
}

.nav-links li a:hover {
  color: #007b8f;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* ===== Quote Button ===== */
.quote-button {
  display: flex;
  align-items: center;
}

.quote-button .btn-quote {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(59, 130, 246, 0.85) 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.quote-button .btn-quote:hover {
  background: transparent;
  color: #1e3a8a;
  border: 2px solid #1e3a8a;
}

/* ===== Hamburger Menu ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
  margin-right: 8px;
}

/* ==== 🔵 Updated Hamburger Line Color ==== */
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #1e3a8a; /* Dark Blue */
  border-radius: 2px;
  transition: 0.3s;
}

/* Hamburger Active State (X animation) */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .navbar {
    padding: 6px 20px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    padding: 90px 30px;
    margin: 0;
    box-shadow: -6px 0 20px rgba(0, 0, 0, 0.12);
    transition: right 0.35s ease, transform 0.35s ease;
    z-index: 1100;
  }

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

  .hamburger {
    display: flex;
  }
  
  .logo {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .nav-links {
    width: 100%;
  }
}

/* Prevent body scrolling when mobile nav is open */
.body-lock {
  overflow: hidden;
  height: 100vh;
}

/* Ensure hamburger remains tappable and not too far right on very small screens */
@media (max-width: 420px) {
  .hamburger {
    margin-right: 12px;
    margin-left: 8px;
  }
}

/* Backdrop that appears behind the mobile nav to dim the page and capture outside clicks */
.mobile-backdrop {
  position: fixed;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  background: rgba(0,0,0,0.45);
  z-index: 1050; /* below the nav (1100) but above page content */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
}
.mobile-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* bvsbvb */

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 120px 20px; /* Heading thoda neeche */
    overflow: hidden;
}

/* New Flex Hero Section with Form */
.hero-flex {
  position: relative;
  min-height: 90vh; /* slightly taller section */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 80px 20px; /* added more vertical padding */
  overflow: hidden;
  background-size: cover !important;
  background-position: center !important;
}

.hero-flex-container {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 2.5rem; /* increased spacing between text and form */
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  align-items: flex-start;
  padding: 0 40px;
}

.hero-left-content {
  flex: 1.3;
  min-width: 0;
  margin-top: 40px; /* moves content a bit lower */
}

.hero-left-content h1 {
  font-size: 2.7rem;
  margin-bottom: 2.5rem;
  margin-top: 3rem; /* pushes heading slightly down */
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.hero-left-content .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    opacity: 0.95;
}

.hero-left-content p {
    font-size: 0.95rem;
    max-width: 600px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    /* justify-content: flex-start; */
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

/* RIGHT FORM */
.hero-right-form {
  flex: 0 0 380px; /* made form area wider */
  min-width: 320px;
}

.hero-form {
  background: rgba(255, 255, 255, 0.98) !important; /* brighter background */
  padding: 1.5rem 1.2rem !important; /* more padding for comfort */
  border-radius: 14px;
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.25);
}


.hero-form .form-group {
  margin-bottom: 0.8rem;
}

.hero-form .form-group-row {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 0.6rem;
}

/* Responsive adjustments for hero form to avoid inputs overflowing */
@media (max-width: 900px) {
  .hero-flex-container {
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
    gap: 1.25rem;
  }

  .hero-right-form {
    flex: 1 1 auto;
    min-width: 0; /* allow shrinking on small screens */
    width: 100%;
  }

  .hero-form .form-group-row {
    grid-template-columns: 1fr; /* stack inputs vertically on small screens */
    gap: 0.5rem;
  }
}

.hero-form .form-group-row .form-group {
    margin-bottom: 0;
}

.hero-form label {
  color: var(--primary-color) !important;
  font-size: 0.8rem;
  font-weight: 500;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
    font-size: 0.8rem;
    padding: 0.5rem 0.6rem !important;
}

.hero-form textarea {
    min-height: 70px;
    resize: vertical;
    grid-column: 1 / -1;
}

.hero-submit-btn {
  width: 100%;
  padding: 0.8rem 0.9rem !important;
  font-size: 0.9rem;
  margin-top: 0.6rem;
}

/* Overlay to darken the image + gradient is already applied in inline style */
/* Overlay remains the same */
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    margin: 0 auto;
    animation: fadeIn 1s ease forwards;
}

/* Heading */
.hero h1 {
    font-size: 2.7rem;
    margin-bottom: 1.5rem; /* thoda neeche */
    font-weight: 700;
    line-height: 1.3;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    opacity: 0.95;
}

/* Paragraph */
.hero p {
    font-size: 1rem;
    max-width: 750px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    /* justify-content: center; */
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.btn-primary, .btn-secondary {
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #f59e0b;
    color: #fff;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.45);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.can {
  font-size: 18px;       /* thoda bada subtitle size */
  color: #555;           /* halka dark grey for readability */
  text-align: center;    /* center aligned like section subtitles */
  margin-top: 10px;
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 500;
}

.client-content p {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  margin: 15px 0;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px);}
    to { opacity: 1; transform: translateY(0);}
}

 /* ======= who we are =========== */
.about-section {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 10%;
      gap: 40px;
      background: #fff;
    }

    /* Left Content */
    .about-content {
      flex: 1;
    }

    .about-content h2 {
      font-size: 2.2rem;
      margin-bottom: 1rem;
      color: #222;
    }

    .about-content p {
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
      color: #444;
    }

    .about-btn {
      display: inline-block;
      padding: 12px 28px;
      border-radius: 30px;
      font-size: 1rem;
      font-weight: 600;
      background: var(--gradient);
      color: #fff;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
    }

    .about-btn:hover {
      background: #d97706;
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
    }

    /* Right Image */
    .about-image {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .about-image img {
      width: 100%;
      height: 100%;
      max-height: 400px; /* 👈 content के बराबर height रखने के लिए */
      object-fit: cover;
      border: 6px solid  #1e3a8a ;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    /* Responsive */
    @media (max-width: 900px) {
      .about-section {
        flex-direction: column;
        text-align: center;
      }
      .about-image img {
        max-height: 300px;
      }
    }





.client-centric {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: url("images/about_page.jpg") no-repeat center center/cover;
  padding: 60px 20px;
}

/* Overlay with gradient */
.client-centric {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
}

/* Background Image */
.client-centric .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Gradient Overlay */
.client-centric .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(59, 130, 246, 0.85) 100%);
  z-index: 1;
}

/* Content Styling */
.client-centric {
  position: relative;
  min-height: 55vh;   /* 🔹 पहले 70vh था, अब height कम की */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px; /* 🔹 ऊपर-नीचे padding भी थोड़ी कम की */
  overflow: hidden;
}

/* Background Image */
.client-centric .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Gradient Overlay (अब हल्का कर दिया) */
.client-centric .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.65) 0%,   /* 🔹 opacity 0.85 → 0.65 */
    rgba(59, 130, 246, 0.65) 100%
  );
  z-index: 1;
}

/* Content Styling */
.client-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: #fff;
}

.client-content h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.client-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Button Styling */


/* Button Styling */





/* Section Styles */
.section {
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
/* ------------------------------------------------------service */
/* Prevent a tall card from stretching other cards in the same grid row */
.cards-grid {
  align-items: start;
}

.more-text{
  display: none;
}
.card {
  align-self: start; /* ensure each card sizes independently */
}

.more-text {
  display: none;
}

.expand-toggle {
  background: #007bff;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.expand-toggle:hover {
  background: #0056b3;
}

.service-card p {
  transition: all 0.3s ease-in-out;
}

/* ------------------------------------------------------------- */

.card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Card Image */
.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card .btn {
  display: inline-block;
  margin: 0 auto 1.5rem; /* Center horizontally + bottom space */
  padding: 10px 25px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.card .btn:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.card h3 {
  font-size: 1.3rem;
  margin: 1rem 0 0.5rem;
  color: var(--primary-color);
}

.card p {
  color: var(--text-light);
  line-height: 1.6;
  padding: 0 1rem 1.5rem;
  font-size: 0.95rem;
}
/* ------------------------------------------------ */

/* process extra content — hidden by default, expands per-card */
.process-extra {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
  display: inline;
}
.process-extra.expanded {
  visibility: visible;
  opacity: 1;
}

  .services-grid {
    display: grid;
    gap: 2rem;
  }
  .service-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  .service-card:hover {
    transform: translateY(-5px);
  }
  .service-icon {
    font-size: 28px;
    color: #2563eb;
    margin-bottom: 10px;
  }
  .service-card h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
  }
  .service-card p {
    margin-bottom: 10px;
  }
  .btn {
    display: inline-block;
    padding: 6px 12px;
    background: #2563eb;
    color: #fff;
    border-radius: 6px;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
  }
  
/* ------------------------------------------------- */

   /* =======why-choose======= */
.why-choose-section {
  background: linear-gradient(90deg, #1e3a8a, #3b82f6);
  color: #ffffff;
  padding: 4rem 1rem;
  font-family: 'Arial', sans-serif;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Heading */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 1.25rem;
  color: #cce0ff; /* Light blue text */
}


/* ========= lets go ============ */
.hero-section-dss {
  padding: 80px 20px;
  text-align: center;
}

.container-dss {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title-dss {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.hero-subtitle-dss {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.8;
}

.hero-buttons-dss {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary-dss, .btn-secondary-dss {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.btn-primary-dss {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #fff;
}

.btn-primary-dss:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  color: #fff;
}

.btn-secondary-dss {
  background: #f3f4f6;
  color: #1e3a8a;
}

.btn-secondary-dss:hover {
  background: #e5e7eb;
  color: #1e3a8a;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

/* Feature Item */
.feature-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2rem 1rem;
  border-radius: 1rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: #ffffff;
}

/* Feature Title */
.feature-item h3 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* Feature Description */
.feature-item p {
  font-size: 0.875rem;
  color: #cce0ff;
}

/* Responsive */
@media(max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
  .section-header p {
    font-size: 1rem;
  }
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}




/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;

    display: flex;              /* flex layout */
    flex-direction: column;     /* content upar se niche */
    justify-content: space-between; 
    text-align: center;         /* text center */
}

.service-card .btn {
    display: inline-block;
    margin: 1.5rem auto 0 auto; /* center button */
    padding: 0.8rem 1.5rem;
    background: var(--gradient);
    color: #fff;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card .btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient);
}


.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--gradient);
    color: #fff;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
    align-items: center;
}

.btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-list {
    list-style: none;
    margin: 1.5rem 0;
}

.service-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: var(--text-light);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}


/* ======== industies ======= */

/* Section Padding & Center Text */
.section {
  padding: 80px 20px;
  background-color: #ffffff; /* Full white background */
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1e3a8a;
  text-align: center;
  margin-bottom: 12px;
}

.can {
  text-align: center;
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 50px;
}

.industries-content {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
  justify-content: center;
}

.industries-left {
  flex: 1;
  min-width: 320px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.card-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #ffffff; /* White background */
  padding: 16px 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.tick-icon {
  color: #fff !important;  /* !important lagane se priority badhti hai */
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  font-size: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


.card-item p {
  margin: 0;
  font-size: 0.95rem;
  color: #1f2937;
  font-weight: 500;
}

.btn {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #ffffff;
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  display: inline-block;
  margin-top: 20px;
}

.btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
}

.industries-right {
  flex: 1;
  min-width: 320px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.industries-image {
  width: 100%;
  max-width: 500px;
  border-left: 6px solid #1e3a8a;
  border-bottom: 6px solid #3b82f6;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 900px) {
  .industries-content {
    flex-direction: column;
    align-items: center;
  }

  .industries-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }

  .industries-right {
    margin-top: 40px;
  }

  .card-item {
    justify-content: flex-start;
  }
}


/* Section - Height auto based on content */
.study {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Background Image */
.study .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Gradient Overlay */
.study .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.75) 0%, rgba(59, 130, 246, 0.75) 100%);
  z-index: 2;
}

/* Content Area */
.study-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.study-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
}

.study-content p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Updated Button Styling */
.btn-primary {
  background-color: #f59e0b; /* amber (orange-gold) */
  color: #1e1e1e;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #d97706;
  color: #fff;
}



/* ========= about page======= */

.about-hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 140px 20px 80px;
    overflow: hidden;
}

/* Background Image */
.about-hero-section .about-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Gradient Overlay */
.about-hero-section .about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.75) 0%, rgba(59, 130, 246, 0.75) 100%);
    z-index: 1;
}

/* Content */
.about-hero-section .about-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-section h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.about-hero-section .about-subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-hero-section .about-content p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}
  /* ======== who about section========== */

.who-we-are-section {
  padding: 80px 20px;
  background: var(--light-bg);
}

.who-we-are-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.who-we-are-content {
  flex: 1;
  min-width: 300px;
}

.who-we-are-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.who-we-are-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

.who-we-are-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.who-we-are-list li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 10px;
}

.tick-icon {
  color: #1e3a8a;
  font-weight: bold;
  margin-right: 10px;
}

.who-we-are-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.who-we-are-btn:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.who-we-are-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.who-we-are-image img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 8px solid #1e3a8a; /* Bottom border */
  border-right: 8px solid #3b82f6; /* Right border */
  border-radius: 10px;
}


/* ========= our mission ===== */

.our-mission-section {
  padding: 80px 20px;
  background: var(--light-bg);
}

.our-mission-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.our-mission-image {
  flex: 1;
  min-width: 300px;
}

.our-mission-image img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 8px solid #1e3a8a;
  border-right: 8px solid #3b82f6;
  border-radius: 10px;
}

.our-mission-content {
  flex: 1;
  min-width: 300px;
}

.our-mission-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.our-mission-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

.our-mission-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  margin-top: 15px;
}

.our-mission-btn:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* ========= our prosess page====== */
.process-top {
  margin-top: -170px; /* tum chaho to 20px, 30px, ya aur kam bhi kar sakte ho */
}


.process-section {
  padding: 90px 20px;
  background: #fff;
  text-align: center;
}

.process-title {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.process-subtitle {
  color: #64748b;
  font-size: 18px;
  margin-bottom: 60px;
}

/* Extra spacing between each process section */
.process-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  padding-top: 60px; /* 👈 Added top padding */
}

.process-content {
  flex: 1 1 550px;
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.process-number {
  width: 55px;
  height: 55px;
  background: var(--gradient);
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.process-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
}

.process-text {
  color: #475569;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #334155;
  font-size: 16.5px;
}


.process-list i {
  color: #3b82f6;
  margin-right: 12px;
  font-size: 18px;
}

.process-image {
  flex: 1 1 550px;
  text-align: center;
}

.process-image img {
  width: 100%;
  height: 420px; /* Bigger image height like in your screenshot */
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.15);
}

/* =============  tree ======= */
.tree {
  background: #f9fafc;
  padding: 100px 0;
  position: relative;
}

.tree-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.tree h2 {
  font-size: 2.5rem;
  background: var(--gradient, linear-gradient(135deg, #1e3a8a, #3b82f6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  margin-bottom: 10px;
}

.tree-subtitle {
  color: #555;
  margin-bottom: 60px;
  font-size: 1.1rem;
}

.tree-timeline {
  position: relative;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.tree-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  transform: translateX(-50%);
}

.tree-step {
  position: relative;
  width: 50%;
  padding: 20px 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tree-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.tree-step:nth-child(odd) {
  align-self: flex-start;
  margin-left: 0;
}

.tree-step:nth-child(even) {
  align-self: flex-end;
  margin-right: 0;
}

.tree-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: absolute;
  top: -30px;
  left: calc(50% - 30px);
  z-index: 2;
  box-shadow: 0 0 10px rgba(59,130,246,0.4);
}

.tree-content h3 {
  color: #1e3a8a;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.tree-content p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .tree-timeline::before {
    left: 20px;
  }

  .tree-step {
    width: 100%;
    margin: 0 0 40px 40px;
  }

  .tree-icon {
    left: -10px;
  }
}
  
/* =========our prosesss  ==== */


  /* ========== journey ======== */
.journey-section {
  padding: 80px 20px;
  background: var(--light-bg);
}

.journey-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.journey-header {
  margin-bottom: 50px;
}

.journey-title {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.journey-subtitle {
  font-size: 1.2rem;
  color: #555;
}

/* Timeline line in center */
.journey-timeline {
  position: relative;
  padding: 40px 0;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

/* Timeline items */
.journey-section {
  padding: 80px 20px;
  background: var(--light-bg);
}

.journey-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.journey-header {
  margin-bottom: 50px;
  text-align: center;
}

.journey-title {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.journey-subtitle {
  font-size: 1.2rem;
  color: #555;
}

/* Timeline line */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #1e3a8a, #3b82f6);
  transform: translateX(-50%);
}

/* Timeline items */
.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 1rem;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border: 3px solid #fff;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.2);
}

/* Timeline content */
.timeline-content {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-left: 2rem;
  margin-right: 2rem;
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 8px 0;
  border-color: transparent white transparent transparent;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 2rem;
  margin-right: 2rem;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: auto;
  right: -8px;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent white;
}

/* Timeline Year */
.timeline-year {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paragraph */
.timeline-content p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .timeline-content,
  .timeline-item,
  .timeline-item:nth-child(even),
  .timeline-item:nth-child(odd) {
    width: 100%;
    margin-left: 40px;
  }

  .timeline-item::before {
    left: 20px;
    transform: translateX(0);
  }

  .timeline-content::before {
    left: -8px !important;
    right: auto !important;
    border-width: 8px 8px 8px 0 !important;
    border-color: transparent white transparent transparent !important;
  }
}



/* Responsive */
@media (max-width: 768px) {
  .journey-timeline {
    gap: 20px;
  }
  .journey-item {
    padding-left: 20px;
  }
}


/* Section styling */
.clients-section {
  padding: 80px 20px;
  background: #f9f9f9;
  font-family: sans-serif;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section header */
.section-header {
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Grid */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Single Item */
.client-item {
  display: flex;
  align-items: flex-start;
}

/* Icon */
.icon-bg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.icon-bg i {
  color: #fff;
  font-size: 14px;
}

/* Content */
.client-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #1e3a8a; /* Optional: dark blue text */
}

.client-content p {
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .client-item {
    flex-direction: row;
    align-items: flex-start;
  }
}



/* Stats Section */
.stats-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Timeline */
/* .timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.timeline-item:nth-child(odd) {
    text-align: right;
    padding-right: calc(50% + 2rem);
}

.timeline-item:nth-child(even) {
    text-align: left;
    padding-left: calc(50% + 2rem);
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 2rem;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px var(--white), 0 0 0 8px var(--accent-color);
} */



/* who we are ======= */

.update-section {
  background: #f0f4f8;
  padding: 100px 0;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.update-title {
  font-size: 2.8rem;
  color: #1e3a8a;
  margin-bottom: 12px;
  font-weight: 700;
}

.update-subtitle {
  color: #4b5563;
  font-size: 1.2rem;
  margin-bottom: 60px;
}

.update-accordion {
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}

.accordion-item {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 25px;
  border: 1px solid #e0e7ff;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.08);
}

.accordion-item:hover {
  box-shadow: 0 8px 28px rgba(30, 58, 138, 0.15);
}

.accordion-header {
  width: 100%;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 20px 28px;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease, transform 0.2s ease;
}

.accordion-header i {
  font-size: 1.4rem;
  margin-right: 12px;
}

.accordion-header .icon {
  font-size: 1.6rem;
  transition: transform 0.3s ease;
  color: #fff;
}

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

.accordion-content {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  background: #f9fafb;
  color: #374151;
  line-height: 1.7;
  transition: all 0.4s ease;
  font-size: 1rem;
}

.accordion-item.active .accordion-content {
  padding: 24px 28px;
  max-height: 2000px;
}

.accordion-content ul {
  margin: 18px 0;
  padding-left: 20px;
}

.accordion-content ul li {
  margin-bottom: 8px;
  position: relative;
  font-size: 1rem;
}

.accordion-content ul li::before {
  content: "•";
  color: #1e3a8a;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.accordion-header .icon {
  transition: transform 0.3s ease, color 0.3s ease;
}




/* tax card =========== */
.tax-section {
  padding: 70px 20px;
  background: #f0f4f8;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2d3748;
}

.tax-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  border-radius: 14px;
  overflow: hidden;
  gap: 20px;
  flex-wrap: wrap;
}

.tax-left {
  flex: 1 1 50%;
  padding: 50px;
  border-left: 6px solid #2f855a;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tax-left h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2f855a;
  margin-bottom: 24px;
}

.tax-left p {
  font-size: 17px;
  line-height: 1.7;
  color: #4a5568;
}

.tax-right {
  flex: 1 1 50%;
  padding: 50px 40px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.tax-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.tax-item {
  background-color: #e6fffa;
  padding: 20px 25px;
  border-left: 5px solid #38a169;
  border-radius: 8px;
  font-size: 15.5px;
  line-height: 1.6;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  color: #2d3748;
  transition: transform 0.2s ease;
}

.tax-item:hover {
  transform: translateY(-4px);
}

.tax-item strong {
  display: block;
  margin-bottom: 6px;
  color: #276749;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .tax-container {
    flex-direction: column;
    gap: 40px;
  }

  .tax-left, .tax-right {
    padding: 30px;
    flex: 1 1 100%;
  }

  .tax-left {
    border-left: none;
    border-top: 6px solid #2f855a;
  }
}



/* ===== service page ngo ====== */
/* Reveal Animations */
section.ngo-section{
padding:60px 20px;
}


.ngo-section {
  padding: 80px 20px;
  background: #f9fafb;
}

.ngo-container {
  display: flex;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.ngo-left {
  flex: 1 1 100%;
  text-align: center;
  margin-bottom: 50px;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
   background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  margin: 0 auto 20px;
}

.ngo-left h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.ngo-left p {
  max-width: 700px;
  margin: 0 auto 25px;
  line-height: 1.7;
  color: #374151;
}

.cta-btn {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(12, 74, 110, 0.3);
}

/* RIGHT SIDE */
.ngo-right {
  flex: 1 1 100%;
}

.ngo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.ngo-service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  padding: 24px;
  border-left: 5px solid #1e3a8a;
  transition: 0.3s ease;
}

.ngo-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.ngo-service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

.ngo-service-card p {
  font-size: 15px;
  color: #374151;
  margin-bottom: 10px;
  line-height: 1.6;
}

.ngo-service-card ul {
  padding-left: 18px;
  color: #0A4A55;
  font-size: 14px;
  margin: 0;
}






/* form ============ */

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
  }

  .contact-form .form-group {
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
  }

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

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 0.9rem 1.1rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
    background-color: #f9fafb;
    color: #1f2937;
    font-family: inherit;
  }

  .contact-form input:focus,
  .contact-form select:focus,
  .contact-form textarea:focus {
    border-color: var(--primary-color);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
  }

  .contact-form textarea {
    resize: vertical;
    min-height: 120px;
  }

  .submit-btn {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #fff;
    padding: 0.95rem 2.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
  }

  .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.35);
  }

  .submit-btn:active {
    transform: translateY(0);
  }

  /* Contact Info Cards */
  .info-card {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: #fff;
    font-size: 1.5rem;
  }

  .info-card h4 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-color);
  }

  .info-card p {
    margin: 0;
    color: var(--text-light);
  }

  /* Social Media */
  .social-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .social-card h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
  }

  .social-links {
    display: flex;
    gap: 1rem;
  }

  .social-links a {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
  }

  .social-links a:hover {
    transform: scale(1.1);
  }

  .social-links .facebook { background: #1877f2; }
  .social-links .twitter { background: #1da1f2; }
  .social-links .linkedin { background: #0077b5; }
  .social-links .instagram { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }

  /* Responsive */
  @media (max-width: 900px) {
    .container > div {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }

/* Contact Page Form Specific Styling */
#contact-form-section .contact-form {
  background: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

#contact-form-section .form-group {
  margin-bottom: 1.3rem;
}

#contact-form-section label {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  display: block;
}

#contact-form-section input,
#contact-form-section select,
#contact-form-section textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background-color: #f9fafb;
  color: #1f2937;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

#contact-form-section input:focus,
#contact-form-section select:focus,
#contact-form-section textarea:focus {
  background-color: #ffffff;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
  outline: none;
}

#contact-form-section textarea {
  resize: vertical;
  min-height: 120px;
}

#contact-form-section .submit-btn {
  width: 100%;
  padding: 1rem 2.5rem;
  margin-top: 1.5rem;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

#contact-form-section .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.4);
}

#contact-form-section .submit-btn:active {
  transform: translateY(-1px);
}

  /* Responsive */
  @media (max-width: 900px) {
    .container > div {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: center;       /* 👈 Centers all sections horizontally */
    align-items: flex-start;
    gap: 4rem;                     /* Equal space between all sections */
    flex-wrap: wrap;               /* Responsive layout for small screens */
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;            /* 👈 Centers text and icons */
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-size: 1.17em;
    font-weight: bold;
}

.footer-section p,
.footer-section li {
    margin-bottom: 0.8rem;
    color: #d1d5db;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    justify-content: center;       /* 👈 Centers social icons */
    gap: 1rem;
}

.social-icons a {
    color: #d1d5db;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}


/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

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

    .nav-link {
        padding: 1rem;
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-flex-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 20px;
    }

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

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

    .hero-left-content p {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-right-form {
        max-width: 100%;
        width: 100%;
        flex: 0 0 auto;
    }

    .hero-form {
        padding: 1rem !important;
    }

    .hero-form .form-group-row {
        grid-template-columns: 1fr;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .cards-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        text-align: left;
        padding-left: 80px;
        padding-right: 0;
    }

    .timeline-item:nth-child(odd) {
        text-align: left;
        padding-left: 80px;
        padding-right: 0;
    }

    .timeline-dot {
        left: 30px;
    }

    .contact-form {
        margin: 0 1rem;
        padding: 2rem;
    }
}

/* Map Section Styling */
.map-section {
  padding: 80px 20px;
  background: #ffffff;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.map-container .section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.map-container .can {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.google-map-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.google-map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 12px;
}

/* Responsive Map */
@media (max-width: 768px) {
  .google-map-wrapper iframe {
    height: 350px;
  }
  
  .map-container .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

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

    .section {
        padding: 60px 0;
    }

    .container {
        padding: 0 1rem;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}