html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
  font-family: "Nexa", Arial, sans-serif;
  background: linear-gradient(to right, #df3031, #202020);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: fixed;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.container {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding: 0;
}
.about-us-section {
  padding: 0;
  width: 100%;
}
.about-us-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #fc0;
}
.aboutussection-description {
  font-size: 1.2rem;
  color: #e0e0e0;
}
.about-image img {
  border-radius: 10px;
  box-shadow: 0 4px 20px rgb(0 0 0 / 0.1);
  width: 100%;
}
.about-content ul {
  list-style: none;
  padding-left: 10px;
  font-size: 1rem;
}
.about-content ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #fff;
}
.about-content ul li i {
  margin-right: 10px;
  color: #ffb510;
}
@media (max-width: 768px) {
  .about-us-section {
    padding: 30px 0;
  }
  .about-us-title {
    font-size: 2rem;
  }
  .aboutussection-description {
    font-size: 1rem;
  }
}
.footer {
  padding: 20px 20px;
  background-color: #fff;
  height: 100%;
}
.footer .footer-title {
  font-size: 1em;
  font-weight: 900;
  margin-bottom: 25px;
  background: linear-gradient(90deg, #8d2222, #000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
}
.footer .footer-description {
  font-size: 15px;
  color: #000;
  font-weight: 600;
}
.footer-links {
  list-style: none;
  padding: 0;
  font-weight: 510;
  font-size: 16px;
}
.footer-links li {
  margin: 10px 0;
}
.footer-links a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  background: linear-gradient(90deg, #8d2222, #000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
  font-weight: 900;
}
.footer-divider {
  border-color: #5b0b0b;
  margin: 20px 0;
}
.footer-logo-span {
  display: block;
  font-size: 1em;
  font-weight: 900;
  margin-top: 0.5rem;
  background: linear-gradient(90deg, #8d2222, #000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
}
.footer-logo {
  display: block;
  margin: 0 auto;
  width: 50%;
}
@media (max-width: 768px) {
  .footer {
    padding: 20px 10px;
  }
  .footer-logo {
    width: 50%;
    margin: 0 auto;
    display: block;
  }
  .footer-logo-span {
    display: block;
    text-align: center;
  }
  .footer-title {
    font-size: 1.7em;
    text-align: center;
    margin-bottom: 10px;
  }
  .footer-links {
    padding: 0;
    text-align: center;
    list-style: none;
  }
  .footer-links li {
    margin-bottom: 10px;
  }
  .footer-description {
    text-align: center;
    font-size: 1em;
  }
  .footer-divider {
    margin: 20px 0;
  }
}
.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #fc0;
}
.section-description {
  font-size: 1.2rem;
  color: #e0e0e0;
}
.section-list {
  color: #fff;
}
.service-section {
  width: 100%;
}
.service-card {
  transition: transform 0.3s ease;
  height: 100%;
  width: 100%;
}
.service-card:hover {
  transform: translateY(-10px);
}
.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 15px 0 10px;
}
.service-description {
  font-size: 1rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .service-card {
    margin-bottom: 1rem;
    height: auto;
    width: 90%;
    padding: 10px;
    margin: 0 auto 1rem;
  }
  .icon img {
    width: 60px;
    height: auto;
  }
  .service-title {
    font-size: 1rem;
    margin-top: 0.3rem;
  }
  .service-description {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  .service-section .container {
    padding: 0 10px;
  }
}
.btn-outline-light {
  border: none;
  background: linear-gradient(90deg, #8d2222, #000);
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-outline-light:hover {
  background: linear-gradient(90deg, #000, #8d2222);
  color: #fff;
  transform: scale(1.1);
} /* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 90vh; /* Adjusts height to 90% of viewport height */
  min-height: 400px; /* Ensures minimum height for small devices */
  color: #fff;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

/* Overlay */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 3, 3, 0.5);
  z-index: 1;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
}

/* Headings & Text */
.primary-heading {
  font-size: 2rem;
  font-weight: 800;
  color: #ffb510;
  margin-bottom: 10px;
}

.secondary-heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Carousel Item */
.carousel-item {
  height: 100%;
  position: relative;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

.carousel-item video,
.carousel-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  animation: zoomEffect 10s infinite ease-in-out;
}

/* Zoom Animation */
@keyframes zoomEffect {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Carousel Indicators */
.carousel-indicators [data-bs-target] {
  background-color: #fff;
  border: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.carousel-indicators .active {
  background-color: #e0a50f;
}

/* Responsive Styling */
@media (max-width: 992px) {
  .secondary-heading {
    font-size: 2.5rem;
  }
  .primary-heading {
    font-size: 1.5rem;
  }
  .hero-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 70vh; /* Smaller height for mobile */
    padding: 20px;
  }
  .secondary-heading {
    font-size: 2rem;
  }
  .primary-heading {
    font-size: 1.2rem;
  }
  .hero-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 60vh; /* Very small devices */
  }
  .secondary-heading {
    font-size: 1.5rem;
  }
  .primary-heading {
    font-size: 1rem;
  }
  .hero-description {
    font-size: 0.9rem;
  }
}

/* Remove container padding */
.container-fluid,
.carousel {
  padding: 0;
  margin: 0;
}

.blog {
  padding: 60px 20px;
  text-align: center;
}
.blog h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #e0a50f;
  font-weight: 700;
}
.blog-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
@media (min-width: 1024px) {
  .blog-content {
    justify-content: flex-start;
  }
  .blog-content .blog-item {
    width: calc(33.33% - 20px);
  }
}
@media (max-width: 1024px) {
  .blog-content .blog-item {
    width: calc(50% - 20px);
  }
}
@media (max-width: 768px) {
  .blog-content {
    justify-content: center;
  }
  .blog-content .blog-item {
    width: 100%;
  }
}
.blog-post {
  width: 100%;
  max-width: 350px;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgb(0 0 0 / 0.1);
  overflow: hidden;
  text-align: left;
}
.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-info {
  padding: 20px;
}
.blog-info h3 {
  font-size: 1.4em;
  color: #333;
  margin-bottom: 10px;
  font-weight: 700;
  text-decoration: none;
}
.blog-info a {
  text-decoration: none;
  color: #8d2222;
}
.blog-info p {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .blog-post {
    width: 100%;
  }
}
.contact-section {
  margin: 40px;
}
.contact-info-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffb510;
}
.contact-info-description {
  font-size: 1.1rem;
  color: #fff;
}
.contact-form {
  background-color: #f8f8f8;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
  max-width: 600px;
  margin: 0 auto;
}
.contact-form .form-control {
  border-radius: 5px;
  font-size: 1rem;
  margin-bottom: 15px;
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.contact-form label {
  font-weight: 700;
  margin-bottom: 5px;
  display: block;
}
.contact-form .mobile-container {
  display: flex;
  gap: 8px;
}
.contact-form select {
  width: 70px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 0.9rem;
  background-color: #fff;
}
.contact-form button {
  background-color: #df3031;
  color: #fff;
  padding: 14px;
  font-size: 1.1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s;
}
.contact-form button:hover {
  background-color: #ffb510;
}
/* Error messages */
.error-message {
  color: red;
  font-size: 0.75rem;
  text-align: left;
  display: none; /* hide by default */
  margin: 2px 0 0 0;
}

/* When error is active, show it */
.error-message.active {
  display: block;
}

@media (max-width: 768px) {
  .contact-form {
    padding: 20px;
    width: 100%;
  }
  .contact-form .form-control {
    font-size: 0.9rem;
    padding: 10px;
  }
  .contact-form button {
    font-size: 1rem;
    padding: 12px;
  }
  .contact-form select {
    width: 100%;
    margin-bottom: 8px;
  }
  .mobile-container {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .contact-form {
    padding: 15px;
  }
  .contact-form .form-control {
    font-size: 0.85rem;
    padding: 8px;
  }
  .contact-form button {
    font-size: 0.9rem;
    padding: 10px;
  }
}
@media (min-width: 1200px) {
  .contact-form {
    max-width: 800px;
    padding: 30px;
  }
  .contact-form .form-control {
    font-size: 1.1rem;
    padding: 14px;
  }
  .contact-form button {
    font-size: 1.2rem;
    padding: 14px;
  }
}
@media (max-width: 768px) {
  .contact-info-title {
    font-size: 1.5rem;
  }
  .contact-info-description {
    font-size: 1rem;
  }
  .container {
    padding-left: 0;
    padding-right: 0;
    padding: 5px;
  }
  .col-md-6 {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .contact-info-title {
    font-size: 1.25rem;
  }
  .contact-info-description {
    font-size: 0.9rem;
  }
  .contact-form .form-control {
    font-size: 0.85rem;
  }
  .contact-form button {
    font-size: 0.95rem;
  }
}
.contact-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  background: wheat;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.1);
  border-radius: 20px;
  max-width: 1000px;
  margin: 30px auto;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1;
  min-width: 250px;
}
.icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #ff7f50, #df3031);
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.2);
}
.contact-details {
  display: flex;
  flex-direction: column;
  color: #df3031;
  align-items: center;
  font-weight: 700;
}
.contact-detail:hover {
  color: #5b0b0b !important;
  text-shadow: 0 2px 5px rgb(232 200 18 / 0.8);
}
.contact-title {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
}
.contact-detail a {
  text-decoration: none;
  color: #df3031;
  font-weight: 700;
}
.contact-detail a:hover {
  color: #5b0b0b !important;
  text-shadow: 0 2px 5px rgb(232 200 18 / 0.8);
}
@media (max-width: 768px) {
  .contact-item {
    flex-direction: row;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }
  .icon-wrapper {
    margin-bottom: 0;
  }
}
.service-page {
  color: #e0a50f;
  font-weight: 800;
  padding-bottom: 55px;
}
.service-page-card {
  border-radius: 20%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.service-page-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.2);
  background: linear-gradient(to right, #df3031, #202020);
  color: #fff;
}
.service-page-title {
  font-size: 1.5rem;
  font-weight: 700;
}
.service-page-card .icon {
  font-size: 3rem;
  color: #f39c12;
}
.service-page-card .card-body {
  text-align: center;
  padding: 20px;
}
@media (max-width: 767px) {
  .service-page-card {
    margin-bottom: 20px;
  }
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-list li {
  display: flex;
  align-items: center;
  color: #fff;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}
.service-list li i {
  font-size: 1.2rem;
  color: #fbd392;
  margin-right: 12px;
  min-width: 24px;
}
.service-list li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.service-list li a:hover {
  color: #fbd392;
  font-weight: 800;
  text-shadow: 1px 1px 3px rgb(251 211 146 / 0.7);
}
.service-page-section:not(:last-child) {
  border-bottom: 3px solid #fbd392;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.image-banner-container {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: visible; /* allow content to show */
}

/* Banner Image */
.image-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
  display: flex;
  align-items: center; /* vertically center content */
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Banner Content */
.banner-content {
  color: #fff;
  text-align: center;
  z-index: 2; /* must be higher than overlay */
  max-width: 90%;
  width: 100%;
  position: relative;
}

/* Banner Title */
.banner-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  word-wrap: break-word;
}

/* Banner Description */
.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  word-wrap: break-word;
}

/* CTA Button */
.banner-content .btn {
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background-color: #007bff;
  transition: background-color 0.3s ease;
  white-space: normal;
  max-width: 100%;
  z-index: 3; /* ensure button is on top */
}

.banner-content .btn:hover {
  background-color: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
  .image-banner-container {
    height: 80vh;
  }
  .image-overlay {
    align-items: flex-start; /* move content to top */
  }
  .banner-content h1 {
    font-size: 1.8rem;
  }
  .banner-content p {
    font-size: 0.95rem;
  }
  .banner-content .btn {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .image-banner-container {
    height: 80vh;
  }
  .image-overlay {
    align-items: flex-start; /* keep content at top */
    padding-top: 15px; /* reduce top space further */
  }
  .banner-content h1 {
    font-size: 1.5rem;
  }
  .banner-content p {
    font-size: 0.85rem;
  }
  .banner-content .btn {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    display: inline-block;
  }
} /* Overlay */
.cyber-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 10px;
}

/* Popup Box */
.cyber-popup-box {
  background: #fff;
  border-radius: 12px;
  padding: 15px 20px; /* decreased padding */
  width: 95%;
  max-width: 480px; /* slightly smaller max width */
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  position: relative;
  text-align: center;
  box-sizing: border-box;
}

/* Close Button */
.cyber-close-popup {
  position: absolute;
  top: 8px; /* moved slightly up */
  right: 12px;
  font-size: 1.4rem;
  border: none;
  background: none;
  cursor: pointer;
  color: #555;
}
.cyber-close-popup:hover {
  color: #000;
}

/* Headings */
.cyber-popup-box h2 {
  font-size: 1.2rem;
  margin-bottom: 4px; /* reduced margin */
}
.cyber-popup-box p {
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: #555;
  line-height: 1.2;
}

/* Form */
.cyber-popup-box form {
  display: flex;
  flex-direction: column;
  gap: 8px; /* reduced gap */
  margin: 0;
  padding: 0;
  background: none;
}

/* Row 1: Name + Company */
.form-row.name-company {
  display: flex;
  gap: 8px; /* reduced gap */
  align-items: stretch;
}
.form-row.name-company input {
  flex: 1;
  margin: 0;
  background: #fff;
  padding: 6px 8px; /* smaller input padding */
}

/* Row 2: Country Code + Mobile | Email */
.form-row.contact-row {
  display: flex;
  flex-direction: column; /* stack email under mobile for mobile */
  gap: 5px; /* smaller gap */
  align-items: stretch;
  margin: 0;
  padding: 0;
  background: none;
}

.mobile-wrapper {
  display: flex;
  gap: 5px;
  flex: 1 1 100%;
  align-items: stretch;
}

.country-code {
  flex: 0 0 25%;
  background: #fff;
  padding: 6px 8px; /* smaller select padding */
}
#mobile {
  flex: 1;
  background: #fff;
  padding: 6px 8px; /* smaller input padding */
}

.form-row.contact-row > input[type="email"] {
  flex: 1 1 100%;
  margin-top: 5px;
  background: #fff;
  padding: 6px 8px; /* smaller input padding */
}

/* Subject & Message */
#subject,
#message {
  width: 100%;
  margin: 0;
  background: #fff;
  padding: 6px 8px; /* smaller padding */
}
#message {
  min-height: 50px; /* smaller height */
  resize: vertical;
}

/* Captcha */
.form-row.captcha-row {
  margin-top: 6px;
  width: 100%;
  display: flex;
  justify-content: center;
}
#captcha-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Inputs */
input,
select,
textarea {
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 0.85rem; /* smaller font */
  box-sizing: border-box;
  margin: 0;
  background: #fff;
}
input:focus,
select:focus,
textarea:focus {
  border-color: #f4b73f;
  box-shadow: 0 0 0 2px rgba(244, 183, 63, 0.2);
}

/* Submit Button */
.cyber-submit-button {
  width: 100%;
  padding: 8px; /* smaller button */
  background: #fbd392;
  color: #1a1a1a;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.cyber-submit-button:hover {
  background: #ffe6a2;
}

/* Responsive */
@media (max-width: 480px) {
  .cyber-popup-box {
    padding: 12px 15px;
  }

  h2 {
    font-size: 1rem;
  }
  p {
    font-size: 0.8rem;
  }

  input,
  select,
  textarea {
    font-size: 0.8rem;
    padding: 5px 6px;
  }

  .form-row.name-company {
    flex-wrap: wrap;
    gap: 4px;
  }
  .form-row.name-company input {
    flex: 1 1 100%;
  }

  /* Contact row: keep country code + mobile same row, email below */
  .form-row.contact-row {
    flex-direction: column;
    gap: 4px;
  }
  .mobile-wrapper {
    flex-direction: row;
    gap: 4px;
  }
  .country-code {
    flex: 0 0 28%;
  }
  #mobile {
    flex: 1;
  }
  .form-row.contact-row > input[type="email"] {
    width: 100%;
    margin-top: 4px;
  }

  .form-row.captcha-row {
    margin-top: 6px;
  }
  #captcha-container {
    justify-content: center;
  }
}

/* Responsive */
@media (max-width: 768px) {
  /* Stack name + company inputs */
  .form-row.name-company {
    flex-wrap: wrap;
  }
  .form-row.name-company input {
    flex: 1 1 100%;
  }
}
/* Overlay */
.cyber-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 10px;
}

/* Popup Box */
.cyber-popup-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 95%;
  max-width: 500px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  position: relative;
  text-align: center;
  box-sizing: border-box;
}

/* Close Button */
.cyber-close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  border: none;
  background: none;
  cursor: pointer;
  color: #555;
}
.cyber-close-popup:hover {
  color: #000;
}

/* Headings */
.cyber-popup-box h2 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.cyber-popup-box p {
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: #555;
  line-height: 1.3;
}

/* Form */
.cyber-popup-box form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  background: none;
}

/* Row 1: Name + Company */
.form-row.name-company {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.form-row.name-company input {
  flex: 1;
  margin: 0;
  background: #fff;
}

/* Row 2: Country Code + Mobile | Email */
.form-row.contact-row {
  display: flex;
  flex-direction: column; /* for mobile stacking */
  gap: 5px;
  align-items: stretch;
  margin: 0;
  padding: 0;
  background: none;
}

.mobile-wrapper {
  display: flex;
  gap: 5px;
  flex: 1 1 100%;
  align-items: stretch;
}

.country-code {
  flex: 0 0 20%;
  background: #fff;
}
#cyber-mobile {
  flex: 1;
  background: #fff;
}

.form-row.contact-row > input[type="email"] {
  flex: 1 1 100%;
  width: 100%;
  margin-top: 0;
  background: #fff;
}

/* Subject & Message */
#subject,
#message {
  width: 100%;
  margin: 0;
  background: #fff;
}
#message {
  min-height: 60px;
  resize: vertical;
}

/* Captcha */
.form-row.captcha-row {
  margin-top: 8px;
  width: 100%;
  display: flex;
  justify-content: center;
}
#captcha-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Inputs */
input,
select,
textarea {
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 0.9rem;
  box-sizing: border-box;
  margin: 0;
  background: #fff;
}
input:focus,
select:focus,
textarea:focus {
  border-color: #f4b73f;
  box-shadow: 0 0 0 2px rgba(244, 183, 63, 0.2);
}

/* Submit Button */
.cyber-submit-button {
  width: 100%;
  padding: 10px;
  background: #fbd392;
  color: #1a1a1a;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.cyber-submit-button:hover {
  background: #ffe6a2;
}

/* Responsive */
@media (max-width: 768px) {
  .form-row.name-company {
    flex-wrap: wrap;
  }
  .form-row.name-company input {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .cyber-popup-box {
    padding: 15px;
  }

  h2 {
    font-size: 1.1rem;
  }
  p {
    font-size: 0.85rem;
  }

  input,
  select,
  textarea {
    font-size: 0.85rem;
    padding: 6px 8px;
  }

  /* Name + Company stacked */
  .form-row.name-company {
    flex-wrap: wrap;
    gap: 5px;
  }
  .form-row.name-company input {
    flex: 1 1 100%;
  }

  /* Contact row: country code + mobile same row, email below */
  .form-row.contact-row {
    flex-direction: column;
    gap: 5px;
  }
  .mobile-wrapper {
    flex-direction: row;
    gap: 5px;
  }
  .country-code {
    flex: 0 0 25%;
  }
  #cyber-mobile {
    flex: 1;
  }
  .form-row.contact-row > input[type="email"] {
    flex: 1 1 100%;
    width: 100%;
    margin-top: 5px;
  }

  /* Captcha centered */
  .form-row.captcha-row {
    justify-content: center;
    margin-top: 8px;
  }
  #captcha-container {
    width: 100%;
    justify-content: center;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.step-column {
  position: relative;
  padding: 7px;
  align-items: center;
}
.step-number {
  font-size: 10rem;
  font-weight: 700;
  color: wheat;
  position: absolute;
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}
.step-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fcd895;
  text-transform: uppercase;
  margin-top: 60px;
  padding-bottom: 15px;
  align-items: center;
}
.step-title a {
  text-decoration: none;
  color: wheat;
}
.sub-title {
  font-size: 1.5rem;
  color: wheat;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.step-text {
  font-size: 1.2rem;
  color: #fff;
  text-align: justify;
  width: 100%;
  box-sizing: border-box;
}
.service-circle {
  width: 200px;
  height: 200px;
  background-color: #fff;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 6px rgb(0 0 0 / 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.service-circle:hover {
  box-shadow: 0 6px 12px rgb(0 0 0 / 0.2);
}
@media (max-width: 768px) {
  .step-title {
    font-size: 1.8rem;
  }
  .sub-title {
    font-size: 1.8rem;
  }
  .step-number {
    font-size: 6rem;
    left: 40%;
    opacity: 0.3;
    z-index: -1;
  }
  .step-text {
    font-size: 1.2rem;
    color: #fff;
    text-align: justify;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
  }
  .service-circle {
    width: 150px;
    height: 150px;
  }
  .step-column {
    margin: 0 auto;
  }
}
.security:not(:last-child) {
  border-bottom: 3px solid #fbd392;
  padding-bottom: 20px;
}
.security {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}
.security > div {
  flex: 1;
  min-width: 300px;
  box-sizing: border-box;
}
.about-us {
  max-width: 1200px;
  border-radius: 8px;
}
.about-us-title {
  text-align: center;
  font-size: 2rem;
  color: #e0a50f;
}
.about-us-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.about-us-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 10px;
}
.about-us-icon {
  font-size: 2em;
}
.about-us-item h3 {
  font-size: 1.8em;
  color: #fcd895;
  margin: 0 0 5px;
  font-weight: 700;
}
.about-us-item p {
  font-size: 1em;
  color: #fff;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .about-us-content {
    grid-template-columns: 1fr;
  }
  .about-us-title {
    font-size: 2em;
  }
}
.values-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 600;
  color: #fc0;
  text-align: center;
}
.values-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.value-card {
  background: wheat;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  width: 300px;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.2);
  transition: transform 0.3s ease;
}
.value-card:hover {
  transform: translateY(-10px);
}
.value-card i {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #e0a50f;
}
.value-card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}
.value-card p {
  font-size: 1em;
  color: #000;
  font-weight: 300;
}
@media (max-width: 768px) {
  .history-content {
    flex-direction: column;
  }
}
.blog-area {
  padding: 50px 15px;
}
.blog-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgb(0 0 0 / 0.2);
}
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-card .content {
  padding: 20px;
}
.blog-card .content .meta {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 10px;
}
.blog-card .content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 10px 0;
}
.blog-card .content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}
.blog-card .content a {
  text-decoration: none;
  font-weight: 700;
  color: #5b0b0b;
  transition: color 0.3s ease;
}
.blog-card .content a:hover {
  color: #0056a5;
}
@media (max-width: 768px) {
  .blog-items {
    grid-template-columns: 1fr;
  }
  .blog-card img {
    height: 180px;
  }
  .blog-card .content h3 {
    font-size: 1.2rem;
  }
  .blog-card .content p {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .blog-card img {
    height: 150px;
  }
  .blog-card .content h3 {
    font-size: 1rem;
  }
  .blog-card .content p {
    font-size: 0.8rem;
  }
}
.why-choose-us {
  padding: 50px 20px;
  text-align: center;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #e0a50f;
}
.section-subtitle {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 25px;
}
.circle-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.circle-item {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: linear-gradient(to right, #ffeda1, #df3031);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 15px rgb(0 0 0 / 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.circle-item:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgb(0 0 0 / 0.3);
}
.circle-content {
  text-align: center;
  color: #8d2222;
}
.circle-content i {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.circle-content h4 {
  font-size: 1.3rem;
  margin: 5px 0;
  font-weight: 700;
}
.circle-content p {
  font-size: 0.9rem;
  color: #8d2222;
}
@media (max-width: 768px) {
  .circle-item {
    width: 220px;
    height: 220px;
  }
  .circle-content i {
    font-size: 2rem;
  }
  .circle-content h4 {
    font-size: 1rem;
  }
  .circle-content p {
    font-size: 0.8rem;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgb(0 0 0 / 0.1);
  cursor: pointer;
  z-index: 1000;
  text-decoration: none;
}
.whatsapp-float img {
  width: 30px;
  height: 30px;
}
.custom-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px;
}
.custom-col-md-8 {
  flex: 2;
  max-width: 66.67%;
  padding: 15px;
}
.custom-col-md-4 {
  flex: 1;
  max-width: 33.33%;
  padding: 15px;
}
@media (max-width: 768px) {
  .custom-col-md-8,
  .custom-col-md-4 {
    max-width: 100%;
    flex: 100%;
    padding: 10px;
  }
  .custom-row {
    gap: 15px;
    margin: 10px;
  }
}
.custom-section {
  padding: 0;
  margin-bottom: 20px;
    margin-top: 60px !important;
  border-radius: 8px;
}
.custom-section h2 {
  font-size: 30px;
  color: #e0a50f;
  text-align: center;
  font-weight: 700;
  padding-top: 10px;

  margin-bottom: 20px;
}
.custom-section h3 {
  font-size: 25px;
  color: wheat;
  font-weight: 800;
  margin-top: 15px;
}
.custom-p {
  line-height: 1.6;
  color: #fff;
}
.custom-p a{
  line-height: 1.6;
  color: wheat;
  font-size: 19px;
  font-weight: 800;
  text-decoration: none;
}
.custom-p span {
  line-height: 1.6;
  color: #e0a50f;
  font-weight: 700;
}
.custom-p strong {
  font-size: 20px;
  color: #fff;
  font-weight: 900;
}
.custom-details {
  font-size: 14px;
  color: wheat;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Common span */
.custom-details span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Author */
.meta-author img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ddd;
}

/* Icons */
.custom-details i {
  color: #007bff;
}

/* Links */
.custom-details a {
  color: wheat;
  text-decoration: none;
  font-weight: 500;
}

.custom-details a:hover {
  color: #fc0;
}

/* Mobile */
@media (max-width: 768px) {
  .custom-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.latest-blog {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 0.1);
  overflow: hidden;
}
.latest-blog-image {
  width: 100%;
  overflow: hidden;
  margin-bottom: 5px;
}
.latest-blog-image img {
  width: 100%;
  height: auto;
  display: block;
}
.latest-blog-content {
  padding: 15px;
}
.latest-blog-content h3 {
  font-size: 20px;
  color: #ffb510;
  margin-bottom: 8px;
}
.custom-h3-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
.custom-h3-link:hover {
  color: #fff;
  text-decoration: none;
}
.latest-blog-content p {
  font-size: 14px;
  color: wheat;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .latest-blog-image {
    width: 100%;
    height: auto;
    display: block;
  }
  .latest-blog-content {
    padding: 10px;
  }
  .latest-blog-content h3 {
    font-size: 18px;
  }
  .latest-blog-content p {
    font-size: 12px;
  }
}
.flowchart-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5px;
}
.flowchart-step {
  background-color: #ffb510;
  color: #5b0b0b;
  font-weight: 700;
  padding: 2px 5px;
  margin: 2px 0;
  border-radius: 5px;
  text-align: center;
  width: 140px;
  font-size: 12px;
}
.arrow {
  width: 0;
  height: 0;
  border-left: 5px solid #fff0;
  border-right: 5px solid #fff0;
  border-top: 10px solid #fff;
  margin: 5px 0;
}
.split-arrow {
  width: 0;
  height: 0;
  border-top: 5px solid #fff0;
  border-bottom: 5px solid #fff0;
  border-right: 10px solid #fff;
  margin: 5px 0;
}
.flex-row-custom {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 5px;
}
.flex-column-custom {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 48%;
}
@media (max-width: 768px) {
  .flowchart-step {
    width: 100%;
    margin: 2px 0;
    font-size: 12px;
  }
  .flex-row-custom {
    flex-direction: column;
  }
  .flex-column-custom {
    width: 100%;
    margin-bottom: 3px;
  }
}
.top-content-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgb(0 0 0 / 0.1);
}
.custom-ul {
  padding-left: 20px;
}
.custom-li {
  list-style-type: disc;
  margin-bottom: 8px;
  color: #fff;
}
.latest-blog-custom-details {
  font-size: 14px;
  color: wheat;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.latest-blog-custom-details span {
  display: flex;
  align-items: center;
}
.latest-blog-custom-details i {
  color: #007bff;
  margin-right: 6px;
}
.latest-blog-custom-details a {
  color: wheat;
  text-decoration: none;
}
.latest-blog-custom-details a:hover {
  color: #fc0;
  text-decoration: none;
}
.custom-list {
  list-style-type: disc;
  padding-left: 40px;
  margin: 0;
}
.custom-list li {
  font-size: 14px;
  color: #f0f0f0;
  margin-bottom: 8px;
}
.custom-list li::before {
  content: "•";
  color: #007bff;
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.custom-divider {
  border: 1px solid #ccc;
  margin: 20px 0;
}
.table-responsive {
  overflow-x: auto;
  margin-top: 20px;
  width: 100%;
}
.table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.table th,
.table td {
  padding: 12px 15px;
  text-align: left;
  border: 1px solid #000;
}
.table thead {
  background-color: #f5f5f5;
}
.table-striped tbody tr:nth-child(odd) {
  background-color: #f9f9f9;
}
.table-hover tbody tr:hover {
  background-color: #f1f1f1;
}
.table th {
  background-color: wheat;
  color: #000;
  font-weight: 700;
}
.table td {
  color: #555;
  font-size: 0.9rem;
}
@media screen and (max-width: 768px) {
  .table th,
  .table td {
    font-size: 0.9rem;
    padding: 10px 12px;
  }
  .table-responsive {
    margin-left: 0;
    margin-right: 0;
  }
  .table {
    width: 90%;
    table-layout: auto;
    margin-left: 5%;
  }
}
@media screen and (max-width: 480px) {
  .table th,
  .table td {
    padding: 10px 12px;
    font-size: 1rem;
  }
  .table-responsive {
    margin-left: 0;
    margin-right: 0;
  }
  .table {
    width: 100%;
    table-layout: auto;
    margin-left: 0;
  }
}
.qr-flowchart-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}
.qr-flow-step {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgb(0 0 0 / 0.1);
  padding: 6px 10px;
  width: 100%;
  margin: 4px 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.qr-flow-step h2 {
  margin-left: 8px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 0.5rem;
  color: #333;
  text-align: left;
}
.qr-icon {
  width: 20px;
  height: 20px;
}
.qr-line {
  width: 2px;
  height: 12px;
  background-color: #007bff;
  margin: 6px auto;
}
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.1);
  }
  100% {
    transform: translateX(-50%) scale(1);
  }
}
.feature-section {
  padding: 5px 20px; /* keep your original padding */
  color: #e4e4e4; /* keep original color */
  margin-top: 0; /* remove negative margin */
  position: relative; /* allows fine adjustment if needed */
  top: -50px; /* optional: visually move section up without breaking layout */
}

/* Optional: responsive adjustments */
@media (max-width: 768px) {
  .feature-section {
    top: -30px; /* smaller shift for tablets */
  }
}

@media (max-width: 480px) {
  .feature-section {
    top: -50px; /* smaller shift for mobile */
  }
}

.feature-container {
  max-width: 1200px;
  margin: auto;
}
.feature-title {
  text-align: center;
  font-size: 2;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #ff4d4d, #960000);
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.feature-title::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background: #7a0000;
  left: -20px;
  top: -18px;
  transform: rotate(-8deg);
  z-index: -1;
  border-radius: 6px;
}

.feature-subtitle {
  text-align: center;
  font-size: 17px;
  color: #f0f0f0;
  margin-top: 20px;
  margin-bottom: 55px;
}

.feature-row {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.feature-row-4 {
  grid-template-columns: repeat(4, 1fr);
}
.feature-row-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .feature-row-4,
  .feature-row-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .feature-row-4,
  .feature-row-3 {
    grid-template-columns: 1fr;
  }
}
.feature-card {
  background: rgb(122 109 35 / 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgb(255 255 255 / 0.08);
  padding: 3.5rem 1.5rem 1.8rem;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 4px 30px rgb(0 0 0 / 0.2);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  overflow: visible;
  margin-top: 50px;
  animation: slideUp 0.8s ease forwards;
}
.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 25px rgb(251 211 146 / 0.4);
}
.feature-icon {
  width: 60px;
  height: 60px;
  background-color: #fbd392;
  color: #1c1c1c;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.3);
  border: 3px solid #1c1c1c;
  z-index: 10;
  transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon {
  animation: pulse 0.6s ease-in-out;
}
.feature-card h3 {
  color: #fbd392;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 0.8rem;
}
.feature-card p {
  color: #d1d1d1;
  font-size: 0.95rem;
  line-height: 1.6;
}
.agan-node-timeline {
  padding: 10px 20px;
  margin-top: 50px;
  margin-bottom: 50px;
  color: #fff;
  text-align: center;
  border: 2px solid #fff; /* Example: bright blue border */
  border-radius: 12px; /* Rounded corners for a modern look */
  background-color: #5b0b0b; /* Optional: dark background to contrast the border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Optional: subtle shadow for depth */
}

.node-title {
  font-size: 2.3rem;
  color: #fff;
  font-weight: 900;
  margin-top: 70px;
  margin-bottom: 1.6rem;
}
.node-timeline-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  max-width: 1200px;
  margin: auto;
}
.node-timeline-wrapper::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 0;
  right: 0;
  height: 4px;
  background: #fbd392;
  z-index: 1;
}
.node-step {
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 2;
}
.node-circle {
  width: 70px;
  height: 70px;
  background: #fbd392;
  color: #1c1c1c;
  border-radius: 50%;
  margin: 0 auto 1rem;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.3);
  transition: transform 0.3s ease;
}
.node-step:hover .node-circle {
  transform: scale(1.1);
}
.node-content h3 {
  font-size: 1.1rem;
  color: #fbd392;
  margin-bottom: 0.5rem;
}
.node-content p {
  font-size: 0.95rem;
  color: #d1d1d1;
  padding: 0 10px;
  line-height: 1.5;
}
@media (max-width: 992px) {
  .node-timeline-wrapper {
    flex-direction: column;
    gap: 3rem;
  }
  .node-timeline-wrapper::before {
    display: none;
  }
  .node-step {
    padding-bottom: 1.5rem;
  }
}
.contact-banner {
  background: linear-gradient(to right, #fbd392 0%, #fbbf77 100%);
  color: #1c1c1c;
  text-align: center;
  padding: 60px 20px;
  border-radius: 40px;
  margin: 60px 20px 0;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.15);
}
.contact-banner-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}
.contact-banner-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #333;
}
.contact-banner-btn {
  display: inline-block;
  background: #1c1c1c;
  color: #fbd392;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  white-space: normal; /* allow text to wrap */
  word-wrap: break-word; /* break long words if needed */
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
  max-width: 100%; /* prevent overflow */
  box-sizing: border-box;
}

/* Hover Effect */
.contact-banner-btn:hover {
  background: #333;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(43, 135, 227, 0.3);
}

/* Responsive Styles - Tablets */
@media (max-width: 768px) {
  .contact-banner-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Responsive Styles - Mobile */
@media (max-width: 480px) {
  .contact-banner-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}
.timeline-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
  padding: 70px 40px;
  border-radius: 20px;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.02) 10px,
    rgba(255, 255, 255, 0.02) 20px
  );
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25),
    inset 0 0 30px rgba(255, 50, 50, 0.15);
}

.timeline-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 3px;
  text-shadow: 0 0 12px rgba(255, 60, 60, 0.9);
}

.timeline-subtitle {
  margin-top: 20px;
  color: #eaeaea;
  font-size: 1.15rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.92;
}
.timeline-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.timeline-card {
  flex: 1 1 calc(25% - 20px);
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  position: relative;
  box-shadow: 0 10px 24px rgb(0 0 0 / 0.06);
  transition: transform 0.3s ease;
}
.timeline-card:hover {
  transform: translateY(-5px);
}
.timeline-number {
  width: 40px;
  height: 40px;
  background: wheat;
  color: #000;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.1rem;
}
.timeline-card h3 {
  font-size: 1.1rem;
  color: #000000;
  font-weight: 800;
  margin-bottom: 10px;
}
.timeline-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .timeline-card {
    flex: 1 1 45%;
  }
}
@media (max-width: 600px) {
  .timeline-card {
    flex: 1 1 100%;
  }
} /* FAQ Section Styles */
.faq-section {
  margin: 10px 0;
  padding: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.faq-section .feature-title {
  margin-bottom: 25px;
  margin-top: -25px;
  text-align: center;
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 33px;
}
.faq-section .feature-subtitle {
  text-align: center;
  font-size: 18px;
  padding-bottom: 20px;
  /* font-weight: 800; */
  color: #fff;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  width: 900px;
  max-width: 100%; /* prevents overflow */
  margin: 0 auto 18px auto; /* centers the box */
  padding: 8px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Tablet */
@media (max-width: 992px) {
  .faq-item {
    width: 90%; /* reduce width */
    padding: 18px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .faq-item {
    width: 100%;
    padding: 15px;
    margin: 0 0 18px 0; /* remove auto centering padding */
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .faq-item {
    padding: 12px;
  }

  .faq-item h3 {
    font-size: 16px;
  }

  .faq-item p {
    font-size: 14px;
  }
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgb(0 0 0 / 0.12);
}
.faq-item h3 {
  margin: 0;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  background-color: wheat;
  color: #000;
}
.faq-item h3::after {
  content: "▼";
  position: absolute;
  right: 20px;
  font-size: 16px;
  transition: transform 0.3s ease;
}
.faq-item.active h3::after {
  transform: rotate(180deg);
}
.faq-item p {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  background: #f9f9f9;
  margin: 0;
}
.faq-item.active p {
  max-height: 400px;
  padding: 15px 20px;
}
.image-banner-container {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  margin-top: 50px;
}
.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 0.6);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  color: #fff;
}
.overlay-image h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  margin-top: 60px;
}
.overlay-image p {
  font-size: 1.25rem;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .image-banner-container {
    height: 70vh;
    margin-top: 160px;
  }
  .overlay-image h1 {
    font-size: 2rem;
  }
  .overlay-image p {
    font-size: 1rem;
  }
  .btn.btn-lg {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .image-banner-container {
    height: 60vh;
  }
  .overlay-image h1 {
    font-size: 1.5rem;
  }
  .overlay-image p {
    font-size: 0.95rem;
  }
}
.read-more-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #df3031, #000);
  color: #fff !important; /* forces white text */
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.1);
}
.read-more-btn:hover {
  background: linear-gradient(135deg, #000, #df3031);
  color: #fff;
  box-shadow: 0 6px 16px rgb(43 135 227 / 0.3);
  transform: translateY(-2px);
}

.acs-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: -80px;
  padding: 30px 20px;
  box-sizing: border-box;
}
.acs-main-section {
  flex: 1 1 65%;
}
.acs-heading {
  font-size: 28px;
  margin-bottom: 15px;
  color: #fbd392;
  font-weight: 900;
}
.acs-subheading {
  font-size: 22px;
  margin-top: 30px;
  color: #fcd895;
  font-weight: 800;
}
.acs-paragraph {
  font-size: 16px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 15px;
}
.acs-solution-list {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 15px;
  color: #ddd6d6;
}
.acs-solution-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}
.acs-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
  max-width: 350px;
  width: 100%;
}
.acs-sidebar-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgb(0 0 0 / 0.07);
  transition: box-shadow 0.3s ease;
}
.acs-sidebar-card:hover {
  box-shadow: 0 6px 24px rgb(0 0 0 / 0.12);
}
.acs-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #0a2a43;
}
.acs-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #4a4a4a;
}
.acs-download-btn {
  display: inline-block;
  background-color: #004aad;
  color: #fff;
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.acs-download-btn:hover {
  background-color: #003580;
}
.acs-service-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.acs-service-links li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  list-style: none;
}
.acs-service-links li::before {
  content: "🔹";
  position: absolute;
  left: 0;
  top: 0;
}
.acs-service-links a {
  color: #004aad;
  text-decoration: none;
  transition: color 0.3s ease;
}
.acs-service-links a:hover {
  color: #002c6b;
  font-weight: 800;
}
.acs-sidebar {
  padding: 20px;
  border-radius: 8px;
}
.acs-flow-map-section {
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgb(0 0 0 / 0.1);
  height: auto;
}
.acs-sidebar-heading {
  font-size: 1.3rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 8px;
}
.acs-sidebar-text {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 12px;
}
.acs-flow-map {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.acs-flow-step {
  text-align: center;
  margin: 8px 0;
}
.acs-step-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: #007bff;
  display: block;
  margin-bottom: 4px;
}
.acs-step-title {
  font-size: 1rem;
  color: #333;
  font-weight: 700;
}
.acs-step-description {
  font-size: 0.9rem;
  color: #666;
}
.acs-flow-arrow {
  font-size: 1.8rem;
  color: #007bff;
  transform: rotate(90deg);
}
.acs-flow-arrow::before {
  font-size: 1.8rem;
  color: #007bff;
}
.acs-banner-section {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  background-color: #040f33;
  color: #fff;
  margin-top: 100px;
}
.acs-banner-content {
  flex: 1;
  padding-right: 20px;
}
.acs-banner-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.acs-banner-subheading {
  font-size: 1rem;
  margin-bottom: 20px;
}
.acs-banner-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff6f00;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  border-radius: 5px;
}
.acs-banner-button:hover {
  background-color: #e65c00;
}
.acs-banner-image {
  flex: 1;
}
.acs-banner-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
@media screen and (max-width: 1024px) {
  .acs-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
  }
  .acs-main-section {
    width: 100%;
    flex: 1 1 100%;
  }
  .acs-sidebar {
    max-width: 100%;
    width: 100%;
    padding: 1rem 0;
  }
  .acs-banner-section {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }
  .acs-banner-content {
    padding-right: 0;
    margin-bottom: 20px;
  }
  .acs-banner-image {
    margin-top: 20px;
  }
  .acs-banner-img {
    max-width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .acs-heading {
    font-size: 24px;
  }
  .acs-subheading {
    font-size: 20px;
  }
  .acs-paragraph {
    font-size: 15px;
  }
  .acs-flow-map-section {
    padding: 15px;
  }
  .acs-step-number {
    font-size: 1.4rem;
  }
  .acs-step-title {
    font-size: 0.95rem;
  }
  .acs-step-description {
    font-size: 0.85rem;
  }
  .acs-card-title {
    font-size: 1.1rem;
  }
  .acs-card-text {
    font-size: 0.9rem;
  }
  .acs-download-btn {
    font-size: 0.9rem;
  }
  .acs-banner-heading {
    font-size: 1.6rem;
  }
  .acs-banner-subheading {
    font-size: 0.95rem;
  }
  .acs-banner-button {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}
@media screen and (max-width: 480px) {
  .acs-banner-content {
    padding-right: 0;
    margin-top: 100px;
  }
  .acs-wrapper {
    padding: 15px 10px;
    gap: 20px;
  }
  .acs-heading {
    font-size: 20px;
  }
  .acs-subheading {
    font-size: 18px;
  }
  .acs-paragraph {
    font-size: 14px;
  }
  .acs-sidebar {
    padding: 0;
  }
  .acs-sidebar-card {
    padding: 1rem;
  }
  .acs-flow-map-section {
    border-radius: 12px;
  }
  .acs-banner-section {
    padding: 20px 10px;
    margin-top: 60px;
  }
  .acs-banner-heading {
    font-size: 1.4rem;
  }
  .acs-banner-subheading {
    font-size: 0.9rem;
  }
  .acs-banner-button {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
  .acs-step-number {
    font-size: 1.2rem;
  }
  .acs-step-title {
    font-size: 0.9rem;
  }
  .acs-step-description {
    font-size: 0.8rem;
  }
}
.pagination {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
  margin-right: 30px;
}
.pagination button {
  margin: 0 5px;
  padding: 6px 12px;
  border: none;
  background: #e0e0e0;
  cursor: pointer;
  border-radius: 4px;
}
.pagination button.active {
  background: #007bff;
  color: #fff;
}
.main-wrapper {
  width: 100%;
  max-width: none;     /* remove limit */
  margin: 0;           /* no center gap */
  padding: 0 24px;     /* optional side spacing */
  display: flex;
  gap: 30px;
  min-height: 70vh;
}

.article-grid {
  flex: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  height: 10%;
}
@media (max-width: 991px) {
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .article-grid {
    grid-template-columns: 1fr;
  }
}
.article-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgb(0 0 0 / 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgb(0 0 0 / 0.15);
}
.article-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom: 3px solid #e5dddf;
  transition: transform 0.3s ease;
}
.article-card:hover img {
  transform: scale(1.05);
}
.article-content {
  padding: 10px 20px 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.article-content h3 {
  margin: 0 0 5px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #822437;
  transition: color 0.3s ease;
}
.article-content h3 a {
  text-decoration: none;
  color: inherit;
}
.article-content h3 a:hover {
  color: #0056b3;
  text-decoration: none;
}
.article-content p {
  color: #555;
  font-size: 15px;
  flex-grow: 1;
}/* =========================
   ARTICLE INFO
========================= */
.article-info {
  font-size: 12px;
  color: #fff;
  margin-top: 14px;
  padding: 8px 12px;

  background: #7a0000;
  border-radius: 6px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.open-author-popup {
  cursor: pointer;
}

/* Date */
.article-date {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #fff;
}

.article-date i {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #fff;     /* circle */
  color: #7a0000;          /* icon color */
  border-radius: 50%;
  font-size: 14px;
}

/* Author */
.article-author {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #fff;
  font-weight: 500;
}

.article-author img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ddd;
}

/* Category */
.blog-category-link {
  text-decoration: none;
  padding: 4px 10px;
  background: #fff;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  color: #7a0000;
  border: 1px solid #e0e0e0;
  transition: 0.2s ease;
}

.blog-category-link:hover {
  background: #e0a50f;
  color: #fff;
  border-color: #e0a50f;
}.article-separator {
  width: 1px;
  height: 26px;        /* same height as icon/image */
  background: #fff;
  opacity: 0.6;
}



.category-sidebar {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgb(0 0 0 / 0.08);
  padding: 24px;
  width: 250px; 
  position: sticky;
  top: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.category-sidebar h4 {
  font-size: 15px;
  margin: 0 0 16px;
  color: #822437;
  font-weight: 700;
  border-bottom: 2px solid #822437;
  padding-bottom: 6px;
}
.category-search {
  padding: 10px 14px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  width: 100%;
  outline: none;
  transition: border-color 0.3s;
}
.category-search:focus {
  border-color: #822437;
}
.category-list {
  overflow-y: auto;
  padding-right: 6px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.category-list label {
  font-size: 15px;
  display: flex;
  align-items: center;
  color: #495057;
  cursor: pointer;
  transition: color 0.3s ease;
}
.category-list label:hover {
  color: #822437;
}
.category-list input[type="checkbox"] {
  margin-right: 12px;
  width: 18px;
  height: 18px;
  accent-color: #822437;
  cursor: pointer;
  appearance: checkbox;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}
.pagenavigation {
  margin: 30px auto 40px;
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  user-select: none;
  max-width: 1100px;
  padding: 0 20px;
}
.pagenavigation button {
  background: #fff;
  border: 2px solid #822437;
  color: #822437;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  min-width: 38px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.pagenavigation button:hover:not(:disabled) {
  background: #007bff;
  color: #fff;
}
.pagenavigation button:disabled {
  border-color: #822437;
  color: #822437;
  cursor: not-allowed;
  background: #f0f0f0;
}
.article-link-btn {
  display: inline-block;
  padding: 5px 10px;
  max-width: 100px;
  background-color: #822437;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.article-link-btn:hover {
  background: linear-gradient(90deg, #8d2222, #000);
  color: #fff;
  transform: scale(1.05);
}
.blog-category-link {
  display: inline-block;
  background-color: #f0f8ff;
  color: #007bff;
  font-size: 13px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 4px 10px;
  border-radius: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid #007bff;
}
.blog-category-link:hover {
  background-color: #007bff;
  color: #fff;
}
#mobile-filters {
  display: none;
}
@media (max-width: 991px) {
  .main-wrapper {
    flex-direction: column;
    padding: 0 16px;
    gap: 20px;
  }
  aside,
  .category-sidebar {
    display: none;
  }
}
@media (max-width: 767px) {
  .article-content h3 {
    font-size: 16px;
  }
  .article-content p {
    font-size: 13px;
  }
  .article-link-btn {
    font-size: 11px;
    padding: 4px 6px;
    max-width: 80px;
  }
  .blog-category-link {
    font-size: 11px;
    padding: 3px 6px;
  }
  .pagenavigation {
    gap: 6px;
    padding: 0 8px;
    justify-content: center;
  }
  .pagenavigation button {
    padding: 5px 8px;
    font-size: 11px;
    min-width: 30px;
  }
}
@media (max-width: 768px) {
  aside {
    position: relative;
    top: auto;
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .main-wrapper {
    flex-direction: column;
    padding: 0 16px;
    gap: 20px;
  }
}
.mobile-filters-dropdown {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}
#mobile-filter-toggle {
  width: 100%;
  background-color: #007bff;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#mobile-filter-toggle:focus {
  outline: 3px solid #0056b3;
}
.mobile-filters-list {
  position: absolute;
  background: #fff;
  border: 1px solid #ddd;
  width: 100%;
  margin-top: 5px;
  box-shadow: 0 4px 6px rgb(0 0 0 / 0.1);
  border-radius: 5px;
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 10px;
}
.mobile-filters-list label {
  margin-bottom: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.mobile-filters-list label:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  #mobile-filter-toggle,
  #mobile-filters-list {
    display: none !important;
  }
}
.agan-brochure {
  max-width: 1200px;
  margin: 80px auto;
  padding: 30px;
  margin-top: 120px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.4);
}
.agan-brochure-header {
  text-align: center;
  margin-bottom: 40px;
}
.agan-logo {
  max-height: 130px;
  display: block;
  margin: 0 auto 10px;
}
.agan-brochure-header h1 {
  font-size: 28px;
  color: #fcd895;
  margin-bottom: 10px;
}
.agan-brochure-header p {
  font-size: 15px;
  color: #ddd;
}
.agan-brochure-intro {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 35px;
  color: #f8f8f8;
  text-align: justify;
}
.agan-section-title {
  font-size: 22px;
  font-weight: 700;
  color: #fcd895;
  border-left: 5px solid #fcd895;
  padding-left: 14px;
  margin: 40px 0 20px;
}
.agan-services-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  justify-content: space-between;
  margin-bottom: 50px;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
}
.agan-service-list {
  flex: 1 1 55%;
}
.agan-service-list ul {
  list-style: none;
  padding-left: 0;
  color: #000;
}
.agan-service-list li {
  display: flex;
  align-items: start;
  margin-bottom: 18px;
  gap: 12px;
  font-size: 16px;
}
.agan-service-list li::before {
  content: "🔒";
  font-size: 18px;
  color: #27ae60;
  margin-top: 2px;
}
.agan-service-img {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.agan-service-img img {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
}
.agan-packages {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.agan-package {
  flex: 1;
  min-width: 300px;
  background-color: #fafafa;
  border: none;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgb(0 0 0 / 0.2);
  transition: transform 0.3s ease;
}
.agan-package:hover {
  transform: translateY(-6px);
}
.agan-package h3 {
  font-size: 20px;
  color: #222;
  margin-bottom: 14px;
  font-weight: 800;
  border-bottom: 2px solid #eee;
  padding-bottom: 6px;
}
.agan-package ul {
  padding-left: 20px;
  font-size: 15px;
  color: #444;
}
.agan-package li {
  margin-bottom: 10px;
}
.agan-price {
  display: inline-block;
  background-color: #e5dddf;
  color: #1d1d1d;
  border: 2px solid #df3031;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 18px;
  border-radius: 8px;
  margin-top: 15px;
}
.agan-note {
  font-size: 14px;
  color: #f8f8f8;
  border-top: 1px dashed #999;
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .agan-services-flex,
  .agan-packages {
    flex-direction: column;
  }
  .agan-price {
    text-align: left;
  }
  .agan-brochure {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .agan-service-img {
    justify-content: center;
    margin-top: 20px;
  }
  .agan-service-img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
  }
} /* Breadcrumb Container */
.breadcrumb-one-line {
  display: flex;
  flex-wrap: wrap; /* allow items to wrap to next line */
  align-items: center;
  font-size: 1rem;
  color: #fff;
  padding: 12px 16px;
  /* background-color: #1c1c1c; */
  border-radius: 8px;
  margin-top: 25px;
  box-sizing: border-box;
}

/* Breadcrumb Item */
.breadcrumb-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 6px 10px;
  font-size: 1rem;
  border-radius: 4px;

  margin-bottom: 6px; /* space between wrapped items */
}

/* Breadcrumb Links */
.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

/* Active Item */
.breadcrumb-item.active {
  font-weight: 700;
  color: #ffc107;
}

/* Divider */
.divider {
  margin: 0 10px;
  color: #ccc;
  font-weight: 600;
}

/* Icons */
.breadcrumb-item i {
  margin-right: 6px;
  color: #fff;
  transition: color 0.3s ease, font-size 0.3s ease;
}

/* Hover Effects */
.breadcrumb-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #002c6b;
}
.breadcrumb-item:hover a,
.breadcrumb-item:hover i {
  color: #fbd392;
  font-size: 1.1rem;
  font-weight: 900;
}
@media (max-width: 768px) {
  .breadcrumb-one-line {
    font-size: 0.9rem;
    padding: 10px 12px;
    flex-wrap: wrap; /* allow items to wrap */
    margin-bottom: 12px; /* proper spacing below breadcrumb */
  }

  .breadcrumb-item {
    padding: 4px 8px;
    font-size: 0.9rem;
    margin-bottom: 6px; /* spacing between wrapped items */
  }

  .divider {
    margin: 0 6px;
  }

  .breadcrumb-item i {
    margin-right: 4px;
  }

  .breadcrumb-item:hover a,
  .breadcrumb-item:hover i {
    font-size: 1rem;
  }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
  .breadcrumb-one-line {
    font-size: 0.85rem;
    padding: 8px 10px;
    flex-wrap: wrap; /* allow wrapping on mobile */
  }
  .breadcrumb-item {
    padding: 3px 6px;
    font-size: 0.85rem;
    margin-bottom: 4px; /* spacing between lines */
  }
  .divider {
    margin: 0 4px;
  }
  .breadcrumb-item i {
    margin-right: 4px;
  }
  .breadcrumb-item:hover a,
  .breadcrumb-item:hover i {
    font-size: 0.95rem;
  }
}

.agan-faqs {
  margin-top: 30px;
}
.agan-faq-item {
  background: #fff;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgb(0 0 0 / 0.04);
  transition: all 0.3s ease;
}
.agan-faq-question {
  padding: 15px 20px;
  cursor: pointer;
  background: #eee;
  color: #000;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.agan-faq-question::after {
  content: "+";
  font-size: 20px;
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
}
.agan-faq-item.active .agan-faq-question::after {
  content: "-";
}
.agan-faq-answer {
  padding: 15px 20px;
  display: none;
  background: #f1f5f9;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}
.agan-faq-item.active .agan-faq-answer {
  display: block;
} /* Breadcrumb Container */
.blogcrumb-bar {
  background-color: #f1f5f9;
  padding: 12px 20px;
  border-radius: 10px;
  margin: 50px 0 30px 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  overflow-x: auto; /* allows horizontal scroll if breadcrumbs overflow */
}

/* Breadcrumb List */
.blogcrumb-list {
  display: flex;
  flex-wrap: wrap; /* wrap items on smaller screens */
  list-style: none;
  gap: 12px;
  margin: 0;
  padding: 0;
}

/* Breadcrumb Items */
.blogcrumb-list li {
  display: flex;
  align-items: center;
  font-size: 14px;
  white-space: nowrap; /* prevent breaking inside each breadcrumb */
}

/* Breadcrumb Links */
.blogcrumb-link {
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  background: #e0ecf7;
  border-radius: 6px;
  transition: background 0.2s;
  flex-shrink: 0; /* prevents shrinking on small screens */
}

.blogcrumb-link:hover {
  background: #cfe4f5;
  font-weight: 900;
}

/* Current Page Breadcrumb */
.blogcrumb-current {
  font-weight: 900;
  color: #333;
  background: #e2e8f0;
  padding: 6px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  flex-shrink: 0; /* prevents shrinking */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .blogcrumb-bar {
    background-color: #f1f5f9;
    padding: 10px 15px; /* inner spacing */
    border-radius: 10px;
    margin-top: 60px; /* space above the bar */
    margin-bottom: -70px; /* pulls the content closer below */
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    overflow-x: auto; /* allows horizontal scroll if needed on small screens */
  }

  .blogcrumb-list {
    gap: 8px;
  }
  .blogcrumb-list li {
    font-size: 13px;
  }
  .blogcrumb-link,
  .blogcrumb-current {
    padding: 5px 8px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .blogcrumb-bar {
    padding: 8px 10px;
  }
  .blogcrumb-list {
    gap: 6px;
  }
  .blogcrumb-list li {
    font-size: 12px;
  }
  .blogcrumb-link,
  .blogcrumb-current {
    padding: 4px 6px;
    font-size: 12px;
  }
}

.odoo-partner-card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgb(0 0 0 / 0.06);
}
.text-odoo {
  color: #875a7b;
}
.btn-odoo {
  background-color: #875a7b;
  color: #fff;
  border: none;
}
.btn-odoo:hover {
  background-color: #704865;
  color: #fff;
}
.service-wrapper {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}
.service-page-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 900;
  color: #fff;
  position: relative;
}
.service-page-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #df3031;
  margin: 15px auto 0;
  border-radius: 2px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.service-page-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 20px rgb(0 0 0 / 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-page-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #df3031, #202020);
  transition: top 0.5s ease;
  z-index: 0;
}
.service-page-card:hover::before {
  top: 0;
}
.service-page-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 25px rgb(0 0 0 / 0.15);
}
.service-page-card h3,
.service-page-card p,
.sub-service-list li a {
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #df3031, #000);
  color: #fff;
  margin-right: 12px;
}
.service-page-card h3 {
  font-size: 1.5rem;
  margin-bottom: 18px;
  display: flex;
  font-weight: 700;
  align-items: center;
  gap: 12px;
  color: 0;
}
.service-page-card p {
  color: #555;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
}
.sub-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sub-service-list li {
  padding: 8px 0;
}
.sub-service-list li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}
.sub-service-list li a i {
  color: #df3031;
  font-size: 1rem;
  flex-shrink: 0;
  transition: color 0.3s ease;
}
.service-page-card:hover p {
  color: #fff;
}
.service-page-card:hover h3,
.service-page-card:hover .sub-service-list li a,
.service-page-card:hover .sub-service-list li a i {
  color: wheat !important;
}
.sub-service-list li a:hover {
  color: wheat;
  font-weight: 900;
  text-shadow: 0 0 8px rgb(255 222 173 / 0.7);
  transform: translateX(5px);
}
.sub-service-list li a:hover i {
  color: wheat !important;
  transform: rotate(20deg);
}
.read-more {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 18px;
  background: linear-gradient(135deg, #df3031, #000);
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}
.read-more:hover {
  background: linear-gradient(135deg, #000, #df3031);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 15px rgb(0 0 0 / 0.3);
  color: #fff;
} /* ===== HEADER BASE ===== */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  flex-wrap: nowrap;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 90px;
}
.logo h2 {
  background: linear-gradient(135deg, #df3031, #000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-size: 23px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* ===== Default: Laptop/Desktop ===== */
.sira-logo {
  display: flex;
  align-items: center;
  margin-right: 20px;
  z-index: 5; /* ensure it stays on top */
}

.sira-logo img {
  height: 65px; /* default size for desktop */
  width: auto;
  display: block;
}

/* ===== Mobile View: SIRA logo in a box next to sidebar ===== */
@media (max-width: 900px) {
  .sira-logo {
    position: fixed; /* always visible */
    right: 25px; /* adjust distance from sidebar */
    top: 15px; /* distance from top */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* above sidebar */
  }

  .sira-logo img {
    height: 45px; /* logo size inside box */
    width: auto;
    display: block;
  }
}

/* Extra small mobile devices */
@media (max-width: 500px) {
  .sira-logo {
    width: 50px;
    height: 50px;
  }

  .sira-logo img {
    height: 35px;
  }
}

/* Nav */
nav {
  flex-grow: 1;
  margin-left: 8px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
nav ul li {
  position: relative;
}
nav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 700;
  padding: 8px 12px;
  display: block;
  cursor: pointer;
}
nav ul li a:hover {
  background: linear-gradient(135deg, #df3031, #000);
  border-radius: 5px;
  color: #fff;
}

/* Dropdown */
nav ul li ul.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateX(-50%);
  background: #fff;
  padding: 10px;
  min-width: 700px;
  border: 1px solid #c12030;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.15);
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  z-index: 9999;
  max-width: 95vw;
}
@media (min-width: 901px) {
  nav ul li.has-dropdown:hover > ul.dropdown {
    display: grid;
  }
}
nav ul li ul.dropdown li a {
  color: #111;
  font-size: 14px;
  padding: 8px;
  border-radius: 4px;
  background: #f7f7f7;
}
nav ul li ul.dropdown li a:hover {
  background: linear-gradient(135deg, #df3031, #000);
  color: #fff;
}

/* Submenu */
nav ul li ul.dropdown li ul.submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  min-width: 200px;
  border: 1px solid #c12030;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.15);
  z-index: 10000;
}
nav ul li ul.dropdown li:hover > ul.submenu {
  display: block;
}
nav ul li ul.dropdown li ul.submenu.flip-left {
  left: auto;
  right: 100%;
}
nav ul li ul.dropdown li ul.submenu li a {
  background: #fff;
  padding: 10px;
  font-size: 14px;
  color: #111;
  white-space: nowrap;
}
nav ul li ul.dropdown li ul.submenu li a:hover {
  background: linear-gradient(135deg, #df3031, #000);
  color: #fff;
}

/* Menu toggle */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ===== HEADER CONTACT ===== */
.header-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.header-contact-item {
  color: #111;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.header-contact-item:hover {
  background: linear-gradient(45deg, #df3031, #000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.header-contact-item:hover .header-contact-icon {
  background: linear-gradient(135deg, #df3031, #000);
  color: #fff;
}

.header-contact-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #df3031, #000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */

/* Tablet view */
@media (max-width: 1024px) {
  .header-contact {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
  }
}

/* Mobile view */
@media (max-width: 900px) {
  header {
    flex-direction: column; /* header vertical for desktop fallback */
    align-items: flex-start;
    padding: 10px 15px;
  }

  /* Logo + company name in single line */
  .logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
  }

  .logo img {
    height: 70px;
    flex-shrink: 0;
  }

  .logo h2 {
    font-size: 14px; /* smaller size for mobile */
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Hamburger menu */
  .menu-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2000;
  }

  nav {
    width: 100%;
    margin-top: 10px;
  }

  nav ul {
    flex-direction: column;
    display: none;
    background: #fff;
    width: 100%;
    border-top: 1px solid #ddd;
    max-height: 80vh;
    overflow-y: auto;
  }

  nav.active ul {
    display: flex;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    padding: 8px 20px;
  }

  nav ul li ul.dropdown {
    position: static;
    grid-template-columns: 1fr;
    min-width: 100%;
    padding: 0;
    transform: none;
    box-shadow: none;
    border: none;
    display: none;
  }

  nav ul li.show > ul.dropdown {
    display: block;
  }

  nav ul li ul.dropdown li a {
    padding-left: 10px;
    background: none;
    font-weight: 700;
  }

  nav ul li ul.dropdown li ul.submenu {
    position: static;
    display: none;
    padding-left: 10px;
    border: none;
    box-shadow: none;
    font-weight: 400;
    font-size: 14px;
  }

  nav ul li ul.dropdown li.show-submenu > ul.submenu {
    display: block;
  }

  nav ul li a.has-submenu::after {
    content: attr(data-icon, "+");
    float: right;
    font-weight: 700;
  }

  nav ul li.show-submenu > a.has-submenu::after {
    content: attr(data-icon, "-");
  }

  nav ul li ul.dropdown li ul.submenu li a {
    padding-left: 40px;
  }

  /* Header contact row below logo, single line with ellipsis */
  .header-contact {
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    gap: 10px;
    overflow: hidden;
    margin-top: 10px;
  }

  .header-contact-item {
    flex: 1 1 0;
    min-width: 0;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-contact-icon {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }
}

.product-pricing-section {
  background: wheat;
  padding: 60px 20px;
  border-radius: 50px;
}
.product-pricing-section .feature-title {
  font-size: 2.5rem;
  margin-bottom: 5px;
  color: #000;
}
.product-pricing-section .feature-subtitle {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #555;
}
.product-pricing-section ul li {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #333;
}
.product-pricing-section ul li i {
  color: #28a745;
}
.product-pricing-section h3 {
  font-size: 2rem;
  font-weight: 700;
}
.product-pricing-section .btn {
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  transition: 0.3s;
}
.product-pricing-section .btn:hover {
  background-color: #e6b800;
  color: #fff;
}
.btn-fixed {
  width: 180px;
}
@media (max-width: 768px) {
  .product-pricing-section .row {
    flex-direction: column-reverse;
    text-align: center;
  }
  .product-pricing-section .col-md-6 {
    margin-bottom: 20px;
  }
  .product-pricing-section h3 {
    font-size: 1.8rem;
  }
  .product-pricing-section .btn {
    padding: 10px 18px;
    font-size: 0.95rem;
  }
  .btn-fixed {
    width: 160px;
  }
}
/* Footer SIRA Certification Section */
.footer-certification {
  background: #ddd;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 10px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.footer-certification .cert-inner {
  display: flex;
  align-items: center; /* vertically center logo and text */
  gap: 20px;
  max-width: 1200px;
  width: 100%;
  flex-wrap: nowrap; /* keep logo and text in one line */
}

/* Logo styling */
.footer-certification .cert-logo img {
  height: 75px; /* desktop size */
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Text styling */
.footer-certification .cert-text {
  flex: 1; /* take remaining space */
}

.footer-certification .cert-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  text-align: left; /* align left next to logo */
  color: #000;
}

.footer-certification .cert-text span {
  color: #007bff;
  font-weight: 600;
}

/* Responsive: Tablets */
@media (max-width: 992px) {
  .footer-certification .cert-logo img {
    height: 50px;
  }

  .footer-certification .cert-text p {
    font-size: 13px;
  }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .footer-certification .cert-inner {
    flex-direction: column; /* stack logo and text on mobile */
    align-items: center;
    gap: 15px;
  }

  .footer-certification .cert-logo img {
    height: 60px;
  }

  .footer-certification .cert-text p {
    text-align: center; /* center text on mobile */
    font-size: 14px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .footer-certification .cert-logo img {
    height: 50px;
  }

  .footer-certification .cert-text p {
    font-size: 12px;
    line-height: 1.4;
  }
}
/* SIRA Certification inside Hero */
.hero-section .sira-certification {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.15); /* subtle overlay for readability */
  /* padding: 10px 15px; */
  border-radius: 8px;
}

.hero-section .sira-certification .cert-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.hero-section .sira-certification .cert-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #fff; /* white text over video */
  text-align: left;
}

.hero-section .sira-certification .cert-text span {
  color: #ffd700; /* highlight with gold color for contrast */
  font-weight: 600;
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .hero-section .sira-certification {
    flex-direction: column;
    gap: 10px;
    padding: 8px 12px;
  }

  .hero-section .sira-certification .cert-logo img {
    height: 50px;
  }

  .hero-section .sira-certification .cert-text p {
    font-size: 13px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-section .sira-certification .cert-logo img {
    height: 40px;
  }

  .hero-section .sira-certification .cert-text p {
    font-size: 12px;
  }
} /* ===== Banner Section ===== */
.rectangle-banner {
  background: url("../img/cctv-combo-kit-banner.webp") no-repeat center center /
    cover;
  position: relative;
  padding: 60px 20px;
  margin-top: 100px;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Optional: dark overlay to improve text readability */
.rectangle-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* semi-transparent overlay */
  z-index: 0;
}

.banner-content {
  position: relative;
  z-index: 1; /* above overlay */
  max-width: 900px;
}

.rectangle-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.banner-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fbd392;
}
.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #dcdcdc;
}
.cta-price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}
.original-price {
  text-decoration: line-through;
  color: #dcdcdc;
  font-size: 1rem;
}
.offer-price {
  color: wheat;
  font-size: 1.5rem;
  font-weight: 900;
}
.offer-tag {
  background: #ff3333;
  color: #fff;
  padding: 5px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.8rem;
}
.buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.primary-btn {
  background-color: #fbd392;
  color: #000;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.primary-btn:hover {
  background-color: #ffe6a2;
}

/* ===== Popup Styles ===== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 15px;
  overflow-y: auto;
}

/* Slide-in animation */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.popup-box {
  background: #fff;
  padding: 20px 20px; /* reduced height */
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  position: relative;
  box-sizing: border-box;
  opacity: 0;
  transform: translateX(100%);
}
.popup-box.show {
  animation: slideInRight 0.4s forwards;
}

.popup-box h2 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
}
.popup-box input,
.popup-box textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
}
.popup-box textarea {
  min-height: 70px;
  resize: vertical;
}
.popup-box button {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  background-color: #fbd392;
  cursor: pointer;
}
.popup-box button:hover {
  background-color: #ffe6a2;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}
#formMessage {
  margin-top: 8px;
  font-size: 0.95rem;
  color: green;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 2.2rem;
  }
  .cta-price {
    flex-direction: column;
    gap: 6px;
  }
  .offer-price {
    font-size: 1.3rem;
  }
  .primary-btn {
    width: 100%;
    text-align: center;
  }
}
/* ===== Mobile view adjustments ===== */
@media (max-width: 480px) {
  .rectangle-banner {
    padding: 40px 15px; /* slightly increased top/bottom padding */
    margin-top: 100px;
    flex-direction: column; /* stack content vertically */
    align-items: center; /* center horizontally */
    justify-content: flex-start; /* align top */
    text-align: center;
  }

  .banner-content {
    max-width: 95%; /* ensure banner content fits mobile */
  }

  .banner-content h1 {
    font-size: 1.8rem; /* adjust heading size */
    line-height: 1.2; /* prevent overflow */
    word-wrap: break-word;
    margin-bottom: 15px;
  }

  .banner-content p {
    font-size: 0.95rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .cta-price {
    flex-direction: column;
    gap: 6px;
  }

  .offer-price {
    font-size: 1.2rem;
  }

  .buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .primary-btn {
    width: 100%;
    text-align: center;
  }

  /* Popup adjustments */
  .popup-box {
    max-width: 95%;
    padding: 15px 10px;
  }
  .popup-box h2 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  .popup-box input,
  .popup-box textarea,
  .popup-box button {
    font-size: 0.9rem;
    padding: 8px;
  }
  .popup-box textarea {
    min-height: 60px;
  }
}

/* Privacy Policy container styling */
.privacy-policy {
  max-width: 1200px;
  margin: 20px auto 40px; /* top margin 180px as you had */
  padding: 30px 20px;
  /* background-color: #222; Optional dark bg */
  color: #fff; /* White text */
  border-radius: 10px;
  /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); Optional shadow */
  font-family: Arial, sans-serif;
  line-height: 1.7;
}

/* Headings styling */
.privacy-policy h2 {
  color: wheat; /* Heading color */
  margin-top: 30px;
  font-weight: 900;
  font-size: 1.5rem;
}

/* Paragraphs */
.privacy-policy p {
  margin-bottom: 15px;
  font-size: 1rem;
}

/* Lists */
.privacy-policy ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.privacy-policy li {
  margin-bottom: 10px;
}

/* Links */
.privacy-policy a {
  color: wheat; /* Blue links */
  text-decoration: none;
}

.privacy-policy a:hover {
  text-decoration: underline;
  font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .privacy-policy {
    padding: 20px 15px;
  }

  .privacy-policy h2 {
    font-size: 1.3rem;
  }

  .privacy-policy p,
  .privacy-policy li {
    font-size: 0.95rem;
  }
} /* Privacy Banner */
.privacy-banner {
  position: relative;
  width: 100%;
  min-height: 400px; /* Minimum height for small devices */
  margin-top: 100px;
  background-image: url("../img/privacy-policy.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px; /* Add padding for small screens */
}

/* Overlay */
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Content */
.banner-content {
  color: #fff;
  text-align: center;
  max-width: 100%; /* Prevent overflow */
  width: 100%;
}

.banner-content.buttons-left {
  text-align: left; /* Left-aligned for desktop */
}

/* Title */
.banner-content h1 {
  font-size: 2.2rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.2;
  word-wrap: break-word; /* Prevent overflow on very small screens */
}

/* Buttons container */
.banner-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center; /* Center buttons on mobile by default */
}

/* Primary Button */
.banner-btn.primary-btn {
  padding: 10px 20px;
  /* background: linear-gradient(to right, #df3031, #202020); */
  background-color: #5b0b0b;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
  flex: 1 1 120px; /* Flexibility for small screens */
  text-align: center;
}

.banner-btn.primary-btn:hover {
  /* background: linear-gradient(to right, #202020, #df3031); */
  background-color: #ccc;
  color: #000;
}

/* Phone Button */
.banner-btn.phone-btn {
  padding: 10px 20px;
  background-color: #1e40af;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  flex: 1 1 120px; /* Flexible width */
  text-align: center;
}

.banner-btn.phone-btn:hover {
  background-color: #cfe4f5;
  color: #000;
}

/* Tablet: 768px and below */
@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 1.9rem;
  }
  .banner-divider {
    width: 100px;
    margin-bottom: 25px;
  }
  .banner-btn.primary-btn,
  .banner-btn.phone-btn {
    font-size: 0.9rem;
    padding: 10px 15px;
  }
}
/* Mobile view: 480px and below */
@media (max-width: 480px) {
  .banner-buttons {
    flex-direction: column !important; /* Stack vertically */
    gap: 20px; /* Increased space between rows */
    align-items: center; /* Center horizontally */
  }

  .banner-btn.primary-btn,
  .banner-btn.phone-btn {
    display: block; /* Each button on its own row */
    width: 90%; /* Fit mobile screen */
    max-width: 220px;
    padding: 12px 0;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 10px; /* gap handles spacing */
  }
}

/* Extra small devices: 320px */
@media (max-width: 360px) {
  .banner-btn.primary-btn,
  .banner-btn.phone-btn {
    max-width: 180px;
    width: 85%; /* Fit very small screens */
    font-size: 0.85rem;
    padding: 10px 0;
    margin-bottom: 20px;
  }
}
/* Divider line under title */
.banner-divider {
  display: block; /* Ensure block-level */
  width: 120px; /* Default width */
  height: 3px;
  background-color: wheat;
  border: none;
  margin: 10px 0 30px 0; /* top, right, bottom, left */
}

/* Tablet: 768px and below */
@media (max-width: 768px) {
  .banner-divider {
    width: 100px;
    margin: 10px 0 25px 0; /* Keep left-aligned */
  }
}

/* Mobile view: 480px and below */
@media (max-width: 480px) {
  .banner-divider {
    width: 80px;
    margin: 10px 0 20px 0; /* Left-aligned */
  }
}

/* Extra small devices: 320px */
@media (max-width: 360px) {
  .banner-divider {
    width: 70px;
    margin: 8px 0 18px 0; /* Left-aligned */
  }
}
/* Footer Bottom Section */
.footer-bottom {
  color: #000; /* default text color */
  padding: 5px 5px;
  /* background-color: #111; optional dark background */
}

.footer-bottom-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Stack on mobile */
  max-width: 1200px;
  margin: 0 auto;
}

/* Company link */
.footer-company-link {
  color: #5b0b0b;
  text-decoration: none;
  font-weight: 600;
}

.footer-company-link:hover {
  text-decoration: underline;
}

/* Privacy Policy Button/Link */
.footer-bottom-right {
  display: inline-block;
  padding: 8px 8px;
  background: linear-gradient(to right, #df3031, #202020);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 5px;
  margin-right: 40px;
  transition: background 0.3s ease;
}

.footer-bottom-right:hover {
  background: linear-gradient(to right, #202020, #df3031);
}

/* Responsive: stack for small screens */
@media (max-width: 480px) {
  .footer-bottom-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
/* 🟠 Inner Images */
.inner-image img {
  width: 100%;
  max-width: 450px;
  height: 200px;
  object-fit: cover;
  display: block;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inner-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
/* ================================
   Odoo Integration Section Styling
================================== */

.odoo-integration {
  padding: 80px 0;
  margin-top: 100px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  height: auto; /* ✅ Removed fixed height for responsiveness */
}

/* Background texture */
.odoo-integration::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/pattern.webp") repeat;
  opacity: 0.08;
  z-index: 1;
}

.odoo-integration .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.odoo-integration h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #8d2222;
  line-height: 1.3;
  margin-bottom: 20px;
}

.odoo-integration p {
  color: #222;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.odoo-integration strong {
  color: #000;
}

/* Button */
.odoo-integration .btn-primary {
  background: linear-gradient(to right, #202020, #df3031);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  padding: 10px 30px;
  transition: all 0.3s ease;
  color: #fff;
  text-decoration: none;
}

.odoo-integration .btn-primary:hover {
  background: linear-gradient(to right, #df3031, #202020);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(90, 15, 200, 0.2);
}

/* Image */
.odoo-integration img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s ease;
}

.odoo-integration img:hover {
  transform: scale(1.03);
}

/* ================================
   Responsive Design
================================== */

/* Tablet view */
@media (max-width: 991px) {
  .odoo-integration .container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    margin-top: 30px;
  }

  .odoo-integration {
    padding: 60px 20px;
    margin-top: 80px;
  }

  .odoo-integration h2 {
    font-size: 2rem;
  }

  .odoo-integration p {
    font-size: 0.98rem;
  }

  .odoo-integration img {
    max-width: 90%;
    margin: 0 auto;
  }
}

/* Mobile view */
@media (max-width: 576px) {
  .odoo-integration {
    padding: 50px 15px;
    margin-top: 60px;
  }

  .odoo-integration h2 {
    font-size: 1.6rem;
  }

  .odoo-integration p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .odoo-integration .btn-primary {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .odoo-integration img {
    max-width: 100%;
    border-radius: 12px;
  }
}
.odoo-services h2 {
  color: wheat;
  font-size: 2rem;
  /* text-transform: uppercase; */
  font-weight: 800;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.module-item {
  background: #fff;
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(90, 15, 200, 0.1);
}

.module-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(90, 15, 200, 0.2);
  border-color: #5a0fc8;
}

.module-item img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(90, 15, 200, 0.3));
}

.module-item h4 {
  color: #8d2222;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.module-item p {
  color: #555;
  font-size: 0.95rem;
}

.btn-gradient {
  background: linear-gradient(to right, #202020, #df3031);
  color: #fff;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(to right, #df3031, #202020);
  color: #fff;
}

/* ✅ Responsive adjustments for mobile view */
@media (max-width: 768px) {
  .odoo-services h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  .modules-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0 15px;
  }

  .module-item {
    padding: 20px 15px;
    border-radius: 14px;
  }

  .module-item img {
    width: 55px;
    height: 55px;
    margin-bottom: 12px;
  }

  .module-item h4 {
    font-size: 1rem;
  }

  .module-item p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .btn-gradient {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
}
.odoo-benefits {
  background: linear-gradient(135deg, #f6f5ff 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.odoo-benefits-img img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.odoo-benefits-content h2 {
  color: #8d2222;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 20px;
}

.odoo-benefits-content p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Benefit List */
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.benefit-list li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}

.benefit-list i {
  color: #8d2222;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Button */
.btn-benefit {
  background: linear-gradient(to right, #df3031, #202020);
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-benefit:hover {
  background: linear-gradient(to right, #202020, #df3031);
  transform: translateY(-3px);
}

/* ✅ Responsive - Tablet */
@media (max-width: 992px) {
  .odoo-benefits {
    padding: 70px 0;
  }

  .odoo-benefits-content {
    text-align: center;
  }

  .benefit-list {
    display: inline-block;
    text-align: left;
  }

  .odoo-benefits-content h2 {
    font-size: 1.8rem;
  }
}

/* ✅ Responsive - Mobile */
@media (max-width: 768px) {
  .odoo-benefits {
    padding: 50px 0;
  }

  .odoo-benefits-content {
    text-align: center;
    padding: 0 15px;
  }

  .odoo-benefits-content h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .odoo-benefits-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .benefit-list {
    display: inline-block;
    text-align: left;
    margin: 0 auto 25px;
  }

  .benefit-list li {
    justify-content: flex-start;
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .benefit-list i {
    font-size: 1rem;
  }

  .btn-benefit {
    padding: 10px 22px;
    font-size: 0.9rem;
  }

  .odoo-benefits-img img {
    margin-top: 25px;
    border-radius: 16px;
  }
}

/* ✅ Extra Small Mobile */
@media (max-width: 480px) {
  .odoo-benefits-content h2 {
    font-size: 1.4rem;
  }

  .benefit-list {
    padding-left: 20px;
  }

  .benefit-list li {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .btn-benefit {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
}
.odoo-timeline {
  /* background: linear-gradient(180deg, #f8f7ff 0%, #ffffff 100%); */
  padding: 100px 0;
  position: relative;
}

/* Section Title */
.section-title {
  color: wheat;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.section-subtitle {
  color: #ddd6d6;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

/* Timeline Container */
.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  gap: 40px;
}

/* Center Divider Line (Desktop Only) */
.timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: white;
  transform: translateY(-50%);
  z-index: 1;
}

/* Timeline Card */
.timeline-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  flex: 1 1 22%;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  text-align: center;
}

.timeline-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(90, 15, 200, 0.15);
}

/* Timeline Icon */
.timeline-icon {
  background-color: #8d2222;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -60px auto 20px;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(90, 15, 200, 0.25);
}

.timeline-content h4 {
  color: #c12030;
  font-weight: 600;
  margin-bottom: 10px;
}

.timeline-content p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ✅ Responsive - Tablet */
@media (max-width: 992px) {
  .odoo-timeline {
    padding: 70px 0;
  }

  .timeline {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item {
    max-width: 480px;
    width: 100%;
  }
}

/* ✅ Responsive - Mobile */
@media (max-width: 768px) {
  .odoo-timeline {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 40px;
    padding: 0 15px;
  }

  .timeline-item {
    width: 90%;
    max-width: 360px;
    padding: 25px 18px;
  }

  .timeline-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin-top: -45px;
  }

  .timeline-content h4 {
    font-size: 1.1rem;
  }

  .timeline-content p {
    font-size: 0.9rem;
  }
}

/* ✅ Extra Small Devices */
@media (max-width: 480px) {
  .section-title {
    font-size: 1.4rem;
  }

  .timeline-item {
    width: 95%;
    padding: 20px 15px;
  }

  .timeline-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .timeline-content h4 {
    font-size: 1rem;
  }

  .timeline-content p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
} /* MAIN WRAPPER */
.amc-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 50px 5%;
  gap: 50px;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* LEFT CONTENT */
.amc-left {
  flex: 1 1 450px;
  color: #fff;
}
.amc-heading-img {
  display: block;
  max-width: 100%; /* makes image responsive */
  height: auto; /* maintains aspect ratio */
  margin: 0 auto 25px auto; /* centers image and adds spacing below */
  border-radius: 10px; /* optional: rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* subtle shadow for depth */
  transition: transform 0.3s ease; /* smooth hover effect */
}

.amc-heading-img:hover {
  transform: scale(1.05); /* slightly enlarges on hover for effect */
}

.amc-left h1 {
  font-size: 36px;
  color: #fff;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.amc-left h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  color: #333;
  margin-top: 10px;
  margin-bottom: 25px;

  /* smooth design */
  background: #f8f8f8;
  padding: 12px 16px;
  border-left: 4px solid #b22222; /* Red highlight bar */
  border-radius: 6px;
}

.amc-left p {
  font-size: 17px;
  line-height: 1.8;
  max-width: 550px;
  color: #e8e8e8;
}

/* RIGHT FORM CARD */
.amc-form-card {
  flex: 1 1 380px;
  background: #000000;
  color: #fff;
  margin-bottom: 90px;
  padding: 35px;
  border-radius: 16px;
  max-width: 450px;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.3);
}

.amc-form-card h2 {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 700;
}

/* FORM GROUP */
.amc-form-card .form-group {
  margin-bottom: 18px;
  text-align: left;
}

.amc-form-card label {
  display: block;
  color: #ccc;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 500;
}

/* INPUT + SELECT + TEXTAREA (Uniform Size) */
.amc-form-card input,
.amc-form-card select,
.amc-form-card textarea {
  width: 100%;
  background: #1a1a1a !important;
  border: 1px solid #333 !important;
  padding: 13px;
  height: 48px;
  color: #fff !important;
  border-radius: 8px;
  font-size: 15px;
  box-sizing: border-box;
  transition: 0.2s ease;
}

.amc-form-card textarea {
  height: 130px !important;
  padding-top: 12px;
  resize: none;
}

/* SELECT DROPDOWN FIX */
.amc-form-card select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.amc-form-card select option {
  background: #1a1a1a !important;
  color: #fff !important;
}

/* FOCUS STATE */
.amc-form-card input:focus,
.amc-form-card select:focus,
.amc-form-card textarea:focus {
  border-color: #e30613 !important;
  outline: none;
}

/* SUBMIT BUTTON */
.amc-submit-btn {
  width: 100%;
  padding: 15px;
  border: none;
  background: #e30613;
  color: #fff;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.amc-submit-btn:hover {
  background: #bf0510;
}

/* ====================================== */
/* RESPONSIVE BREAKPOINTS */
/* ====================================== */

@media (max-width: 1024px) {
  .amc-left h1 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .amc-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 50px 6%;
  }

  .amc-left p {
    margin: 0 auto;
  }

  .amc-form-card {
    margin: 0 auto;
    max-width: 100%;
    margin-bottom: 100px;
  }

  .amc-left h1 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .amc-wrapper {
    padding: 40px 5%;
  }

  .amc-left h1 {
    font-size: 26px;
  }

  .amc-left p {
    font-size: 15px;
  }

  .amc-form-card {
    padding: 25px;
  }

  .amc-form-card input,
  .amc-form-card select,
  .amc-form-card textarea {
    font-size: 14px;
    padding: 12px;
  }
}
/* SECTION */
.amc-process-alt {
  padding: 60px 6%;
  /* background: #fff; */
  color: #fff;
  text-align: center;

  /* 🔥 Reduced width */
  width: 90%;
  max-width: 1100px;
  margin: 50px auto;

  /* 🔥 Modern curved container */
  border-radius: 40px;

  /* 🔥 Clean outer border */
  border: 2px solid #ffffff33;

  /* Prevent clipping */
  overflow: hidden;

  /* Smooth shadow */
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

.alt-title {
  font-size: 36px;
  font-weight: 900;
  color: wheat;
  margin-bottom: 20px;
}

.alt-subtitle {
  color: #cfcfcf;
  font-size: 17px;
  margin-bottom: 10px;
}
.amc-divider-gradient {
  width: 100%;
  height: 4px;
  margin-top: -55px;
  margin-bottom: 90px;
  background: linear-gradient(to right, transparent, #fff, transparent);
  border-radius: 5px;
}

/* STEPS WRAPPER */
.alt-steps {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1100px;
  margin: auto;
}

.alt-step {
  display: flex;
  align-items: center;
  gap: 30px;
  text-align: left;

  /* Content width border */
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;

  border: 2px solid #fff;
  padding: 25px 30px;
  border-radius: 20px;
  background: #0d0d0d;
}

.alt-step.alt-reverse {
  flex-direction: row-reverse;
}

/* ICON */
.alt-step-icon {
  min-width: 100px;
  height: 100px;
  background: #111;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #fff;
  padding: 20px;
}

.alt-step-icon img {
  width: 120px;
}

/* TEXT */
.alt-step-text h3 {
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 900;
}

.alt-step-text p {
  color: #ccc;
  font-size: 16px;
  line-height: 1.7;
  max-width: 500px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .alt-step,
  .alt-step.alt-reverse {
    flex-direction: column !important;
    text-align: center;
  }

  .alt-step-text p {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .alt-title {
    font-size: 28px;
  }

  .alt-step-icon {
    width: 90px;
    height: 90px;
  }

  .alt-step-icon img {
    width: 55px;
  }
}
.agan-services-section {
  padding: 80px 6%;
  /* background: #0e0e0e; */
  text-align: center;
  border-radius: 35px;
  /* border: 2px solid #222; */
  margin: 50px auto;
}

.agan-title {
  font-size: 32px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.agan-subtitle {
  color: #ccc;
  font-size: 16px;
  margin-bottom: 40px;
}

/* Wrapper */
.agan-services-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Card */
.agan-service-card {
  background: #fff;
  border: 1px solid #333;
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.agan-service-card:hover {
  border-color: #e30613;
  transform: translateY(-5px);
}

/* Icon */
.agan-icon {
  font-size: 45px;
  margin-bottom: 15px;
}

/* Title */
.agan-service-card h3 {
  color: #000;
  font-size: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 900;
}

/* Paragraph */
.agan-service-card p {
  color: #202020;
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

/* Responsive Improvements */
@media (max-width: 480px) {
  .agan-title {
    font-size: 26px;
  }
  .agan-services-section {
    padding: 50px 5%;
  }
}
/* ================================
   AGAN Benefits Section – RED THEME
   ================================ */

.agan-benefits {
  padding: 40px 0;
  /* background: linear-gradient(135deg, #b30000, #e60000); */
  border-radius: 10px;
  margin-bottom: 30px;
  color: #fff;
}

.agan-benefits .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.agan-benefits-title {
  font-size: 22px;
  font-weight: 800;
  margin: 20px 0 45px 0;
  color: #fff;
  text-transform: uppercase;

  background: #b30000;
  padding: 14px 24px;
  display: inline-block;

  /* Ribbon effect */
  position: relative;
  border-radius: 0 10px 10px 0;
}

.agan-benefits-title:before {
  content: "";
  position: absolute;
  left: -15px;
  top: 0;
  width: 15px;
  height: 100%;
  background: #7a0000;
  border-radius: 10px 0 0 10px;
}

.benefits-grid {
  list-style: none;
  margin: 30px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* BENEFIT CARD */
.benefit-card {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: #ffffff;
  color: #222;
  border-radius: 14px;
  align-items: flex-start;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

/* ICON STYLE */
.benefit-icon {
  min-width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #ffe6e6, #ffcccc);
  color: #cc0000;
  font-size: 20px;
  flex-shrink: 0;
}

.benefit-title {
  margin: 0 0 6px 0;
  font-size: 17px;
  font-weight: 700;
  color: #111;
}

.benefit-desc {
  margin: 0;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

/* ================================
   RESPONSIVE STYLES
   ================================ */

/* Tablets & Below */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile (Main Optimization) */
@media (max-width: 768px) {
  .agan-benefits {
    padding: 35px 0;
  }

  .agan-benefits .container {
    padding: 0 28px; /* More inside spacing */
  }

  .benefits-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 20px;
  }

  .benefit-card {
    padding: 18px;
    border-radius: 14px;
  }

  .benefit-icon {
    min-width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .agan-benefits-title {
    font-size: 22px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .agan-benefits .container {
    padding: 0 22px; /* Move inside more */
  }

  .benefit-card {
    padding: 16px;
    margin: 10px;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .agan-benefits .container {
    padding: 0 18px;
  }

  .benefit-card {
    padding: 15px;
  }

  .benefit-icon {
    min-width: 38px;
    height: 38px;
    font-size: 16px;
  }
}
.thank-box {
  margin-top: 160px;
  margin-bottom: 160px;
  padding: 60px 40px;
  width: 100%;
  max-width: 650px;

  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 18px;

  text-align: center;
  color: #fff;

  box-shadow: 0 0 40px rgba(255, 0, 0, 0.25),
    0 0 12px rgba(255, 255, 255, 0.1) inset;
}

.icon-check {
  font-size: 55px;
  color: #25d366;
  margin-bottom: 15px;
}

.thank-box h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.thank-box p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.button-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-main {
  background: #e60000;
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.btn-main:hover {
  background: #ff1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

/* WhatsApp button */
.whatsapp-btn {
  background: #25d366;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
}/* =========================
   BLOG META
========================= */
.blog-meta {
  font-size: 12px;
  margin-bottom: 12px;
  padding: 8px 12px;

  width: 100%;
  max-width: 500px;

  background: #7a0000;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border-radius: 8px;
  border: 3px solid rgba(0, 0, 0, 0.05);

  display: flex;
  align-items: center;
  gap: 8px;

  flex-wrap: nowrap;      /* 🔥 prevents next line */
  white-space: nowrap;    /* 🔥 keeps everything in one row */
  overflow: hidden;
}

/* DATE + AUTHOR INLINE */
.blog-meta span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

/* LINKS */
.blog-meta a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  line-height: 1;
}

.blog-meta a:hover {
  color: #e0a50f;
}

/* ICON IN CIRCLE */
.blog-meta i {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-right: 6px;
  font-size: 12px;

  color: #7a0000;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;         /* 🔥 icon should not shrink */
}

/* SEPARATOR (VERTICAL LINE) */
.separator {
  display: inline-block;
  height: 22px;
  width: 1px;
  background-color: #fff;
  opacity: 0.6;
  margin: 0 4px;
  flex-shrink: 0;
}

/* AUTHOR */
.author {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* AUTHOR IMAGE */
.author-img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid #fff;
  flex-shrink: 0;         /* 🔥 prevents wrap */
}

/* =========================
   MODAL OVERLAY
========================= */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* =========================
   MODAL BOX
========================= */
.modal-content {
  background: #fff;
  width: 320px;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  position: relative;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Popup Image */
.modal-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f1f1f1;
  margin: 0 auto 12px;
  display: block;
}

.modal-content h2 {
  margin: 8px 0 4px;
  font-size: 20px;
}

.modal-content p {
  font-size: 14px;
  color: #666;
}

/* =========================
   SOCIAL ICONS
========================= */
.social-links {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-links a {
  font-size: 22px;
  transition: transform 0.2s ease;
}

.social-links a:hover {
  transform: scale(1.15);
}

/* Brand Colors */
.linkedin { color: #0077b5; }
.facebook { color: #1877f2; }
.twitter { color: #000; }
.whatsapp {
  color: #25D366;
}


.instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================
   CLOSE BUTTON
========================= */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #555;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
  .blog-meta {
    font-size: 10px;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }

  .author-img {
    width: 30px;
    height: 30px;
  }

  .modal-content {
    width: 90%;
  }
}
