* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
body {
  background: #fff;
}

/* ===================== */
/* TOP BAR */
/* ===================== */
.top-bar {
  width: 100%;
  background: #111; /* dark clean bar */
  color: #fff;
  padding: 15px 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.top-bar-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}

.top-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.top-info span i {
  margin-right: 8px;
  color: #ff6600; /* neon green to match your theme */
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .top-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    font-size: 13px;
  }
}

/* NAV WRAPPER */
nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 5px;
  background: #ffffff;
  border-bottom: 2px solid #eee;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  position: absolute;
  top: 25px;
  left: 2px;
  width: 185px;
  z-index: 20;
}

/* MENU */
/* Menu container baseline (do not style <body> per your request) */
.menu {
  display: flex;
  gap: 34px;
  align-items: center;
  justify-content: center; /* or space-between where needed */
  padding-left: 150px;
}

/* Menu link */
.menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #333;
  font-weight: 700;
  font-size: 14px;
  position: relative;
  padding: 4px 6px;
}

/* Icon */
.mi-icon {
  width: 30px;
  height: 30px;
  display: block;
  color: #ff6600; /* icon color (change as needed) */
  transition:
    transform 0.18s ease,
    color 0.18s ease;
}

/* Text under icon */
.mi-text {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  letter-spacing: 0.6px;
  color: #222;
}

/* Hover */
.menu-item:hover .mi-icon {
  transform: translateY(-6px);
  color: #ff6600;
}
.menu-item:hover .mi-text {
  color: #ff6600;
}

/* Dropdown */
.menu-item .dropdown {
  display: none;
  position: absolute;
  top: 86px; /* leaves space under icon */
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  min-width: 180px;
  z-index: 100;
  border-radius: 6px;
}
.menu-item:hover .dropdown {
  display: block;
}
.menu-item .dropdown a {
  display: block;
  padding: 10px 14px;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.menu-item .dropdown a:hover {
  background: #f6f6f6;
}

/* Make menu responsive */
@media (max-width: 980px) {
  .menu {
    gap: 18px;
  }
  .mi-icon {
    width: 34px;
    height: 34px;
  }
  .mi-text {
    font-size: 12px;
  }
}

@media (max-width: 720px) {
  /* change to horizontal compact or a scrollable strip */
  .menu {
    gap: 14px;
    overflow-x: auto;
    padding: 8px 12px;
    -webkit-overflow-scrolling: touch;
  }

  /* optionally hide labels on very small screens to save space */
  .mi-text {
    display: none;
  }

  .menu-item {
    padding: 6px;
  }
}

/* small accessibility focus style */
.menu-item:focus,
.menu-item:focus-visible {
  outline: 3px solid rgba(0, 166, 81, 0.18);
  border-radius: 6px;
}

.mobile-menu {
  display: none;
}

/* MOBILE */
.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
}
/* Dropdown container */
.menu-dropdown {
  position: absolute;
  top: 110px;
  left: 0;
  width: 100%;
  padding: 0; /* IMPORTANT to allow column backgrounds to look clean */
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  border-radius: 0 0 10px 10px;
  z-index: 999;
  animation: fadeDown 0.25s ease;
}

/* Show dropdown on hover */
.menu-item:hover + .menu-dropdown,
.menu-dropdown:hover {
  display: grid;
}

/* --- COLUMN BACKGROUNDS --- */
.dropdown-col.left {
  background: #000;
  color: #fff;
  padding: 35px 40px;
}

.dropdown-col.center {
  background: #fff;
  color: #000;
  padding: 35px 40px;
}

.dropdown-col.right {
  background: #000;
  color: #fff;
  padding: 35px 40px;
  text-align: center;
}

/* --- VERTICAL DIVIDERS --- */
.dropdown-col {
  position: relative;
}

.dropdown-col.left::after,
.dropdown-col.center::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.3); /* line inside black section */
}

.dropdown-col.center::after {
  background: rgba(0, 0, 0, 0.2); /* darker line for white background */
}

/* Titles */
.dropdown-col h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #ff6600;
  font-weight: 600;
}

/* Links */
.dropdown-col a {
  display: block;
  margin: 6px 0;
  color: inherit;
  text-decoration: none;
  font-size: 15px;
}

.dropdown-col a:hover {
  color: #ff6600;
}

/* Center text */
.dropdown-col.center p {
  margin: 6px 0;
  font-size: 15px;
}

/* Logo right */
.dropdown-col.right img {
  width: 140px;
  display: block;
  margin: auto;
}

/* Animation */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .menu-dropdown {
    grid-template-columns: 1fr;
  }

  .dropdown-col {
    padding: 25px 20px !important;
  }

  .dropdown-col::after {
    display: none; /* No divider lines on mobile */
  }

  .dropdown-col.right img {
    margin-top: 20px;
  }
}

/* BUTTON */
.cta button {
  background: #ff6600;
  border: none;
  padding: 12px 42px;
  color: #fff;
  font-size: 15px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: 1.5px solid black;
}
.cta a {
  color: white;
  text-decoration: none;
}
@media (max-width: 720px) {
  .hamburger {
    display: block;
    z-index: 1000;
  }

  .menu {
    display: none;
    flex-direction: column;
    background: #fff;
    width: 100%;
    padding: 20px 10px;
    position: absolute;
    top: 70px;
    left: 0;
    border-bottom: 2px solid #eee;
  }

  .menu.show {
    display: flex;
  }
}
@media (max-width: 720px) {
  .mi-icon {
    width: 28px;
    height: 28px;
  }

  .menu-item {
    flex-direction: row;
    gap: 12px;
    justify-content: flex-start;
  }

  .mi-text {
    display: inline; /* show text on mobile */
    font-size: 14px;
  }
}
@media (max-width: 720px) {
  .menu-item .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
  }

  .menu-item:hover .dropdown {
    display: block;
  }

  .dropdown a {
    padding: 10px 5px;
  }
}
@media (max-width: 720px) {
  .logo img {
    position: static;
    width: 150px;
    margin: 10px 0;
  }

  nav {
    padding: 10px 15px;
  }
}
@media (max-width: 720px) {
  .hamburger {
    display: block;
    font-size: 30px;
    cursor: pointer;
    z-index: 2000;
  }

  .menu {
    display: none;
    flex-direction: column;
    background: #fff;
    width: 100%;
    padding: 20px 12px;
    position: absolute;
    top: 200px;
    left: 0;
    border-bottom: 2px solid #eee;
    z-index: 1500;
  }

  .menu.show {
    display: flex;
  }
}
/* ---------- HERO SECTION ---------- */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
}

.hero-container {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1300px;
  margin: auto;
  align-items: center;
  gap: 40px;
}

/* ---------- LEFT SIDE ---------- */

.hero-left {
  width: 50%;
  color: #ffffff;
}

.hero-left h1 {
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.hero-points li {
  margin-bottom: 10px;
  font-size: 1.1rem;
  position: relative;
  padding-left: 20px;
}

.hero-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffcc00;
}

.hero-btn {
  padding: 13px 30px;
  background: #ff7d27;
  color: #fff;
  border: none;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.hero-btn a {
  color: #fff;
  text-decoration: none;
}
.hero-btn:hover {
  background: #ff5400;
}

/* ---------- RIGHT SIDE FORM ---------- */

.hero-right {
  width: 40%;
  display: flex;
  justify-content: center;
}

.form-box {
  width: 100%;
  max-width: 420px;
  background: #ffffffdd;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2; /* Higher stacking */
  overflow: visible;
}

.offer-badge {
  width: 100px;
  position: absolute;
  top: -46px;
  right: -40px;
  z-index: 10; /* Now works properly */
  pointer-events: none;
}

.form-box h2 {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.form-box input,
.form-box textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.form-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(to right, #ff7a00, #ff3d00);
  color: #fff;
  border: none;
  font-size: 1.1rem;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 10px;
}

.form-btn:hover {
  background: linear-gradient(to right, #ff8c24, #ff591c);
}
/* .christmas-border {
  position: relative;
  padding: 10px;
  border-radius: 20px;
  overflow: visible;
} */

/* 🎄 Animated Christmas Lights Border */
/* .christmas-border::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 24px;
  padding: 4px;

  background: repeating-linear-gradient(
    90deg,
    red 0 12px,
    green 12px 24px,
    yellow 24px 36px,
    blue 36px 48px
  );
  background-size: 200% 100%;
  animation: lights-move 2.5s linear infinite;

  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}


@keyframes lights-move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 200% 0;
  }
} */

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-left h1 {
    font-size: 2.2rem;
  }
}

/* CLIENT RATING SECTION */
.client-rating-section {
  padding: 50px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.rating-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.rating-left {
  text-align: left;
  max-width: 300px;
}

.stars {
  font-size: 25px;
  color: #ffcc00;
}

.rating-left h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 26px;
  margin-top: 10px;
}

.rating-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.rating-logos img {
  width: 120px;
  height: auto;
}

.enquire-btn a {
  background: #ff5c00;
  padding: 12px 22px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
}

.enquire-btn a:hover {
  background: #e14e00;
}

/* TEXT */
.client-desc {
  margin-top: 30px;
  font-size: 17px;
  line-height: 28px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #444;
}

/* BLUE CTA AREA */
.cta-blue-section {
  background: #000;
  padding: 60px 20px;
  text-align: center;
  color: #ff6600;
  font-family: "Poppins", sans-serif;
  margin-top: 40px;
}

.cta-blue-section h2 {
  font-size: 32px;
  font-weight: 700;
}

.cta-subtext {
  font-size: 17px;
  margin-top: 18px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 28px;
}

.cta-main-btn {
  margin-top: 30px;
  display: inline-block;
  background: #ff6600;
  padding: 14px 30px;
  font-size: 18px;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.cta-main-btn:hover {
  background: #02b300;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .rating-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .rating-left {
    text-align: center;
  }

  .rating-logos img {
    width: 90px;
  }

  .cta-blue-section h2 {
    font-size: 24px;
  }

  .cta-main-btn {
    font-size: 16px;
    padding: 12px 25px;
  }
}

/* ---------------- SECTION WRAPPER ---------------- */
.expectation-section {
  width: 100%;
  padding: 60px 0;
  background: #fff;
  font-family: "Poppins", sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ---------------- TITLES ---------------- */
.main-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ff6600;
}

.subtitle {
  max-width: 900px;
  text-align: center;
  margin: 0 auto 40px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  font-weight: bold;
}

/* ---------------- SERVICE CARDS ---------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.service-card {
  padding: 20px;
  text-align: center;
  border: 2px solid #eee;
  border-radius: 10px;
  background: #fff;
  font-weight: 600;
  transition: 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  background: #ff660069;
  border-color: #ff6600;
  transform: translateY(-3px);
}
/* ---------- WRAPPER FOR TEXT + IMAGE ---------- */
.experience-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 0;
}

.experience-image img {
  width: 100%;
  max-width: 420px;
}

/* ---------- EXPERIENCE BOX ---------- */
.experience-box {
  flex: 1;
  padding: 30px;
  border-radius: 12px;
  background: #f7faff;
  border: 1px solid #e0eaff;
}

.exp-title {
  color: #ef4a24;
  font-size: 15px;
  font-weight: 600;
}

.exp-subtitle {
  font-size: 28px;
  margin-top: 5px;
  margin-bottom: 15px;
}

.exp-text {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  font-weight: bold;
}

/* ---------- CHECKLIST ---------- */
.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.check-item {
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 600;
  color: #333;
  background: #fff;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #eee;
  cursor: pointer;
  transition: color 0.3s ease;
}

/* Hover animation: orange slides left → right */
.check-item::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #ff7a00, #ef4a24);
  z-index: -1;
  transition: left 0.35s ease;
}

.check-item:hover::before {
  left: 0; /* slide across */
}

.check-item:hover {
  color: #fff;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .experience-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .checklist {
    grid-template-columns: 1fr; /* one column on mobile */
  }

  .experience-image img {
    max-width: 350px;
  }
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-title {
    font-size: 26px;
  }

  .exp-subtitle {
    font-size: 22px;
  }

  .checklist {
    grid-template-columns: 1fr;
  }
}

/* 

indusrty ####################################################
*/
.industry-section {
  padding: 80px 20px;
  background: #fafafa;
  font-family: "Poppins", sans-serif;
}

.industry-container {
  max-width: 1200px;
  margin: 0 auto;
}

.industry-main-heading {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 50px;
}

/* Category Title */
.industry-category {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6600;
  margin: 40px 0 20px;
  text-transform: capitalize;
}

/* Grid Layout */
.industry-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

/* Items */
.industry-grid li {
  background: #fff;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

/* Hover */
.industry-grid li:hover {
  background: #ff6600;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 600px) {
  .industry-main-heading {
    font-size: 2rem;
  }
  .industry-category {
    font-size: 1.4rem;
  }
  .industry-grid li {
    font-size: 1rem;
    padding: 14px 18px;
  }
}
/* +++++++++++++++++++++++++++++++++         faq section +++++++++++++++++++++++ */
/* FAQ SECTION */
.faq-section {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: "Poppins", sans-serif;
}

.faq-box {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: #fff;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Heading Gradient */
.gradient-text {
  background: linear-gradient(90deg, #ff6600, #ff0066);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Paragraph Styling */
.faq-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .faq-item {
    padding: 18px;
  }

  .gradient-text {
    font-size: 18px;
  }

  .faq-item p {
    font-size: 14px;
  }
}

/* ===========================
   SERVICES SECTION
=========================== */

.services-section {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
  font-family: "Poppins", sans-serif;
}

.services-section .main-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.services-section .main-title span {
  color: #ff4800;
}

.services-section .main-description {
  max-width: 850px;
  margin: 0 auto 40px auto;
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 90px;
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #0078ff;
  font-weight: 600;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-section .main-title {
    font-size: 23px;
  }

  .service-card img {
    width: 70px;
  }
}

/*======================================
CONTACT SECTION V2
========================================*/

.contact-sec-v2 {
  padding: 80px 20px;
  background-color: #ffffff;
  color: #1a1a1a;
  font-family: "Poppins", sans-serif;
}

.contact-container-v2 {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.contact-header-v2 {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header-v2 h5 {
  color: var(--thm-black);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.contact-header-v2 h2 {
  font-size: 2.5rem;
  margin-top: 10px;
  color: #111;
}

.contact-header-v2 p {
  color: #555;
  margin-top: 10px;
  font-size: 1rem;
}

/* Wrapper */
.contact-wrapper-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

/* FORM */
.contact-form-v2 {
  flex: 1 1 550px;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-form-v2 h3 {
  margin-bottom: 25px;
  color: #111;
}

.form-group-v2 {
  margin-bottom: 20px;
}

.form-group-v2 label {
  font-weight: 600;
  color: #222;
  display: block;
  margin-bottom: 6px;
}

.form-group-v2 input,
.form-group-v2 textarea,
.form-group-v2 select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  outline: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  background-color: #fff;
  color: #111;
}

/* Custom Select */
.select-v2 {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='%23666' height='24' ...");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  cursor: pointer;
  height: 48px;
}

.form-group-v2 input:focus,
.form-group-v2 textarea:focus,
.form-group-v2 select:focus {
  border-color: var(--thm-primary);
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.15);
}

.form-group-v2 select option {
  color: #111;
}

/* Buttons */
.buttons-wrap-v2 {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.btn-send-v2 {
  padding: 12px 28px;
  background: #0d4250;
  border: 2px solid var(--thm-primary);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-send-v2:hover {
  background: transparent;
  color: var(--thm-primary);
}

/* WhatsApp Button */
.btn-whatsapp-v2 {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: #25d366;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #25d366;
  transition: 0.3s ease;
}

.btn-whatsapp-v2:hover {
  background: transparent;
  color: #25d366;
}

/* CONTACT INFO */
.contact-info-v2 {
  flex: 1 1 350px;
}

.contact-info-v2 h3 {
  margin-bottom: 25px;
}

.info-box-v2 {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.info-box-v2 i {
  font-size: 1.4rem;
  color: var(--thm-primary);
}

.info-box-v2 h4 {
  margin-bottom: 5px;
  font-weight: 600;
  color: #111;
}

.info-box-v2 p {
  color: #555;
  font-size: 0.95rem;
}

.social-icons-v2 {
  display: flex;
  gap: 12px;
}

.social-icons-v2 a {
  font-size: 2rem;
  color: black;
  transition: color 0.3s;
}

.social-icons-v2 a:hover {
  color: #1e7e34;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-wrapper-v2 {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .contact-form-v2 {
    padding: 25px;
  }

  .btn-send-v2 {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .buttons-wrap-v2 {
    justify-content: center;
  }

  .btn-send-v2,
  .btn-whatsapp-v2 {
    width: 100%;
    text-align: center;
  }
}

/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% technologies %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
.tech-section {
  text-align: center;
  padding: 50px 0;
}
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #ff6600;
}
.section-sub {
  max-width: 700px;
  margin: 10px auto 30px;
  color: #666;
  font-weight: bold;
}

.tech-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  background: #eee;
  border-radius: 5px;
  font-weight: 600;
}
.tab-btn.active {
  background: #ff6600;
  color: white;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* .tech-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #ff6600;
}
.tech-item img {
  width: 55px;
  height: auto;
}
.tech-item p {
  margin-top: 10px;
  font-weight: 600;
} */
.tech-item {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid #ff6600;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.tech-item img {
  width: 60px;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.tech-item p {
  color: black;
  font-size: 15px;
}

.tech-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.tech-item:hover img {
  transform: scale(1.15) rotate(3deg);
}

@media (max-width: 600px) {
  .tech-item {
    padding: 15px;
  }
  .tech-item img {
    width: 45px;
  }
}

/* ===== About Section ===== */
.os-about-section {
  padding: 100px 20px;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
}

.os-container {
  max-width: 1100px;
  margin: 0 auto;
}

.os-about-content {
  background: #f7f7f7;
  padding: 50px;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

/* Title */
.os-about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #111;
  line-height: 1.3;
}

/* Paragraph */
.os-about-text {
  font-size: 1.2rem; /* big readable text */
  line-height: 1.9;
  color: #444;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .os-about-content {
    padding: 30px;
  }

  .os-about-title {
    font-size: 2rem;
  }

  .os-about-text {
    font-size: 1.1rem;
    line-height: 1.8;
  }
}

/* Section Wrapper */
.service-list-section {
  padding: 80px 20px;
  background: #fafafa;
  font-family: "Poppins", sans-serif;
}

/* Container */
.service-list-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Heading */
.service-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 40px;
  text-transform: capitalize;
}

/* Grid List */
.service-list-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

/* Individual Items */
.service-list-grid li {
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

/* Hover Effect */
.service-list-grid li:hover {
  background: #ff6600;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .service-heading {
    font-size: 1.8rem;
  }

  .service-list-grid li {
    font-size: 1rem;
    padding: 14px 18px;
  }
}

/* ================================
   TESTIMONIAL SECTION
===================================*/

.business-section {
  padding: 80px 0;
  background: #f8f9fb;
  font-family: "Poppins", sans-serif;
}

.claim-to-test {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.tes {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
  border-top: 4px solid #00b894;
}

.tes:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Testimonial Text */
.test {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 400;
}

/* Arrow box style */
.arrow-new {
  position: absolute;
  bottom: 68px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #ffffff;
}

/* Profile + Name */
.name-test {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-weight: 600;
  font-size: 14px;
}

.name-test img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #00b894;
}

/* =============================
        RESPONSIVE
=============================== */

/* Tablets */
@media (max-width: 992px) {
  .claim-to-test {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .claim-to-test {
    grid-template-columns: 1fr;
  }

  .tes {
    padding: 20px;
  }

  .test {
    font-size: 14px;
  }
}
/* MAIN WRAPPER */
.career-wrapper {
  background: #f1f1f1;
  padding: 60px 0;
}

/* FLEX CONTAINER */
.career-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT CONTENT */
.career-left {
  width: 60%;
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.career-left h2 {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
  color: #002d62;
}

/* FORM STYLE */
.career-left label {
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  margin-bottom: 18px;
  font-size: 15px;
}

.form-control:focus {
  border-color: #00b894;
  outline: none;
  box-shadow: 0 0 4px rgba(0, 184, 148, 0.3);
}

/* TWO COLUMN FIELDS */
.two-col {
  display: flex;
  gap: 20px;
}

.two-col > div {
  width: 50%;
}

/* SUBMIT BUTTON */
.career-btn {
  width: 100%;
  padding: 14px;
  background: #ff6600;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.career-btn:hover {
  background: #009f7a;
}

/* RIGHT IMAGE */
.career-right {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.career-right img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border: 2px solid black;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .career-container {
    flex-direction: column;
  }

  .career-left,
  .career-right {
    width: 100%;
  }
}

/* ===== WHY CHOOSE US Section ===== */
.whychoose-section {
  padding: 80px 20px;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
  color: #1a1a1a;
}

.whychoose-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.whychoose-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: #111;
}

.whychoose-header h3 {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  color: #444;
  margin-top: 10px;
}

/* Problems Section */
.whychoose-problems {
  margin-top: 40px;
}

.whychoose-problems h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.whychoose-text {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 20px;
}

.whychoose-list {
  list-style: none;
  padding: 0;
}

.whychoose-list li {
  font-size: 1.05rem;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  line-height: 1.6;
}

/* Causes Section */
.whychoose-causes {
  margin-top: 40px;
}

.whychoose-causes h4 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.whychoose-causes ul {
  padding-left: 20px;
}

.whychoose-causes li {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

/* CTA */
.whychoose-cta {
  margin-top: 50px;
  text-align: center;
}

.whychoose-cta h4 {
  font-size: 1.6rem;
  font-weight: 600;
}

.whychoose-cta p {
  font-size: 1.1rem;
  margin: 6px 0;
}

/* Button */
.whychoose-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  background: #000;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
  border: 2px solid #000;
}

.whychoose-btn:hover {
  background: transparent;
  color: #000;
  transform: translateY(-3px);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .whychoose-header h2 {
    font-size: 2.2rem;
  }
  .whychoose-header h3 {
    font-size: 1.3rem;
  }
  .whychoose-list li,
  .whychoose-causes li {
    font-size: 1rem;
  }
  .whychoose-btn {
    width: 100%;
    padding: 14px;
  }
}

/* ================================
   Homepage Carousel Styles
   ================================ */

.dp-carousel-wrapper {
  width: 100%;
  background: #fff;
  padding: 10px 0;
  overflow: hidden;
}

.dp-carousel-container {
  max-width: 100%;
  padding-left: 0 !important;
  overflow: visible;
}

.dp-carousel-heading {
  font-size: 42px;
  font-weight: 800;
  color: #000928;
  letter-spacing: -1px;
  margin: 0 0 20px;
  line-height: 52px;
  text-align: center;
  padding-bottom: 20px;
}

@media (max-width: 480px) {
  .dp-carousel-heading {
    font-size: 38px;
  }
}

/* ================================
   Swiper Core Layout
   ================================ */

.swiper {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
}

/* ================================
   Carousel Card Styles + 3D Tilt
   ================================ */

.dp-carousel-card {
  background: #000;
  color: #ff6600;
  padding: 20px 20px 70px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease,
    box-shadow 0.4s ease;
  border-radius: 15px;
  user-select: none;
  transform-style: preserve-3d;
  will-change: transform;
  opacity: 1;
  z-index: 1;
  position: relative;
  border: 2px dotted #ff6600;
}

.dp-carousel-card:nth-child(odd) {
  margin-top: 40px;
  margin-bottom: 10px;
  transform: rotateX(6deg) rotateY(-6deg);
}

.dp-carousel-card:nth-child(even) {
  margin-bottom: 40px;
  margin-top: 10px;
  transform: rotateX(6deg) rotateY(6deg);
}

.dp-carousel-card:hover {
  transform: rotateX(0deg) rotateY(0deg);
  opacity: 1;
  box-shadow: none; /* shadow disappears on hover */
  z-index: 2;
}

.dp-carousel-swiper:hover .dp-carousel-card:not(:hover) {
  opacity: 0.3;
}

/* ================================
   Card Content
   ================================ */

.dp-carousel-card h3 {
  font-size: 1.2rem;
  margin: 0 0 10px 0;
  font-weight: 600;
  color: #ff6600;
}

.dp-carousel-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #ff6600;
  padding-bottom: 10px !important;
  font-weight: bold;
}

.dp-carousel-image {
  margin-top: auto;
}

.dp-carousel-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  pointer-events: none;
}

/* ================================
   Button Appearance
   ================================ */

.dp-carousel-button {
  position: absolute;
  bottom: 15px;
  left: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.dp-carousel-card:hover .dp-carousel-button {
  opacity: 1;
  transform: translateY(0);
}

.dp-btn {
  display: inline-block;
  position: relative;
  padding: 10px 45px 10px 20px;
  margin-bottom: -10px !important;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #00bfff, #009edb);
  border: none;
  border-radius: 25px;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 191, 255, 0.3);
  overflow: hidden;
}

.dp-btn::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("../../uploads/2025/04/Arrow-2.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.dp-btn:hover {
  background: linear-gradient(135deg, #009edb, #007ca8);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 191, 255, 0.5);
  color: #fff;
}

.dp-btn:hover::after {
  transform: translateY(-50%) translateX(4px);
}

/* ================================
   Mobile Responsive Buttons
   ================================ */

@media (max-width: 768px) {
  .dp-carousel-button {
    margin-top: 20px;
  }

  .dp-carousel-card .dp-carousel-button {
    display: none;
  }

  .dp-carousel-card.active-card .dp-carousel-button {
    display: block;
  }
}

/* ================================
   Disable User Selection
   ================================ */

.dp-carousel-card,
.dp-carousel-content,
.dp-carousel-image,
.dp-carousel,
.dp-carousel * {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.dp-carousel img {
  pointer-events: none;
  user-drag: none;
  -webkit-user-drag: none;
}
.dp-carousel-swiper {
  cursor: grab;
}

.dp-carousel-swiper:active {
  cursor: grabbing;
}

/* ================================
   3D Tilt Effects for Swiper Slides
   ================================ */

.dp-carousel-card.odd-card {
  margin-top: 40px;
  margin-bottom: 10px;
  transform: rotateX(9deg) rotateY(-9deg);
  box-shadow: 15px 25px 40px rgba(0, 0, 0, 0.3); /* bottom-right shadow */
  height: 400px;
  width: 250px;
}

.dp-carousel-card.even-card {
  margin-bottom: 40px;
  margin-top: 10px;
  transform: rotateX(9deg) rotateY(9deg);
  box-shadow: -15px 25px 40px rgba(0, 0, 0, 0.3); /* bottom-left shadow */
  height: 400px;
  width: 250px;
}

.dp-carousel-card:hover {
  transform: rotateX(0deg) rotateY(0deg);
  box-shadow: none; /* shadow disappears on hover */
  z-index: 2;
}

.dp-carousel-swiper:hover .dp-carousel-card:not(:hover) {
  opacity: 0.3;
}

.swiper-slide .dp-carousel-card:hover {
  transform: rotateX(0deg) rotateY(0deg);
  box-shadow: none; /* shadow disappears on hover */
  z-index: 2;
}

.dp-carousel-swiper:hover .swiper-slide:not(:hover) .dp-carousel-card {
  opacity: 0.3;
}

/* ================================
   Drag Cursor
   ================================ */
/* Custom Drag Cursor */
.drag-cursor {
  position: fixed;
  width: 70px;
  height: 70px;
  background: black;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out;
  opacity: 0;
}

.dp-carousel-swiper:hover ~ .drag-cursor {
  opacity: 1;
}

.dp-drag-cursor {
  position: fixed;
  width: 80px;
  height: 80px;
  background: rgba(0, 191, 255, 0.9);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  line-height: 80px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.2s ease;
  transform: translate(-50%, -50%);
  font-family: sans-serif;
}

@media (pointer: coarse) {
  .dp-drag-cursor {
    display: none !important;
  }
}

.footer-section {
  background: #000;
  padding: 50px 20px;
  color: white;
  font-family: Arial;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Titles */
.footer-box h3 {
  margin-bottom: 20px;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: bold;
}

.footer-box span {
  font-size: 12px;
}
/* Achievement image */
.achievement-img {
  max-width: 200px;
}
.parabor {
  border: 1px solid #ff6600;
  padding: 8px;
}
/* Testimonial box */
/* .testimonial-card {
  background: #111;
  padding: 20px;
  border-left: 4px solid #ff9800;
  margin-bottom: 15px;
} */
.testimonial-slider {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  /* padding: 40px 20px; */
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  height: 300px; /* FIXED HEIGHT */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}
.testimonial-card img {
  width: 50px;
  position: absolute;
  top: 164px;
  left: 104px;
}
.testimonial-card strong {
  font-size: 15px;
  color: #222;
  text-transform: uppercase;
}

.swiper-pagination-bullet {
  background: #000;
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  background: #00b894;
  opacity: 1;
}

/* Responsive */
@media (max-width: 600px) {
  .testimonial-card {
    padding: 20px;
    height: auto; /* auto height on mobile */
  }
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #111;
  border-radius: 50%;
  font-size: 20px;
  color: white;
  transition: 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-4px);
  box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.3);
}

/* INDIVIDUAL BRAND COLORS */
.social-icons .twitter:hover {
  background: #1da1f2;
}
.social-icons .facebook:hover {
  background: #1877f2;
}
.social-icons .linkedin:hover {
  background: #0077b5;
}
.social-icons .youtube:hover {
  background: #ff0000;
}
.social-icons .instagram:hover {
  background: #e1306c;
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .social-icons {
    justify-content: center;
    gap: 10px;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}

/* Accordion */
.acc-btn {
  width: 100%;
  background: #ff6600;
  padding: 10px;
  color: white;
  border: none;
  font-size: 16px;
  margin-bottom: 5px;
  cursor: pointer;
  text-align: left;
}
.acc-btn a {
  text-decoration: none;
  color: #fff;
}
.acc-content {
  background: #111;
  list-style: none;
  padding: 10px 15px;
  display: none;
}

.acc-content li {
  margin-bottom: 8px;
}

/* Open First */
.acc-content.show {
  display: block;
}

/* Contact info */
.workspace-img {
  margin-top: 20px;
  width: 180px;
}
.footer-box {
  background: #000;
  padding: 20px;
  color: #fff;
  width: 100%;
  border-radius: 10px;
}

.footer-box h3 {
  font-size: 22px;
  /* margin-bottom: 10px; */
  color: #ff6600;
  font-weight: 700;
}

.footer-box p {
  font-size: 14px;
  line-height: 22px;
  position: relative;
}

.image-1 {
  width: 200px;
  border-radius: 100px;
}
.forpadding p {
  padding-left: 30px;
}
.footer-box p i {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 18px;
  color: #ff6600;
}
.footer-bottom {
  /* padding: 20px 0; */
  border-bottom: 1px solid #ff6600;
  text-align: center;
}

.footer-payments {
  display: flex;
  flex-direction: column; /* stacked up–down */
  align-items: center;
  gap: 8px; /* spacing between lines and image */
}

.footer-text {
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  color: #fff; /* change if background is light */
}

.footer-logo {
  width: 300px; /* adjust as needed */
  max-width: 100%;
}

.footer-box strong {
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}

.workspace-img {
  margin-top: 15px;
  width: 160px;
  max-width: 100%;
}
.foot-1 {
  text-align: center;
  width: 100px;
  height: 100px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-box {
    padding: 20px;
  }

  .footer-box h3 {
    font-size: 20px;
  }

  .footer-box p {
    font-size: 13px;
    padding-left: 28px;
  }

  .footer-box p i {
    font-size: 16px;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons img {
    margin: 5px;
  }

  .achievement-img {
    margin: auto;
  }
}

/* Section Base */
.design-process {
  padding: 60px 20px;
  background: #0e0f12;
  color: #ff6600;
  text-align: center;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
}

.section-subtitle {
  max-width: 700px;
  margin: 10px auto 40px;
  font-size: 18px;
  opacity: 0.8;
  font-weight: bold;
}

/* Process Layout */
.process-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.process-box {
  padding: 30px;
  position: relative;
  border: 2px solid #ff6600;
  border-radius: 6px;
  color: #fff;
  clip-path: polygon(0 0, 100% 5%, 95% 100%, 0 95%);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(3px);
  transition: all 0.4s ease;
}

.process-box:hover {
  box-shadow:
    0 0 10px rgba(255, 102, 0, 0.6),
    0 0 25px rgba(255, 102, 0, 0.4),
    0 0 50px rgba(255, 102, 0, 0.2);
  transform: translateY(-6px);
}
.process-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 102, 0, 0.25),
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.process-box:hover::before {
  transform: translateX(100%);
}
@keyframes pulseBorder {
  0% {
    box-shadow: 0 0 0 rgba(255, 102, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.6);
  }
  100% {
    box-shadow: 0 0 0 rgba(255, 102, 0, 0.3);
  }
}

.process-box {
  animation: pulseBorder 3s infinite;
}

/* Number */
.step-number {
  font-size: 50px;
  font-weight: 800;
  color: #ff6600;
  position: absolute;
  top: -10px;
  left: 10px;
  z-index: 3;
}

/* Title */
.step-title {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 15px;
  text-align: left;
  font-weight: 700;
}

/* Text */
.step-text {
  text-align: left;
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 1100px) {
  .process-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .process-wrapper {
    grid-template-columns: 1fr;
  }

  .step-number {
    font-size: 40px;
  }
}
/* Basic container */
.osg-contact-times {
  background: #f3fbff;
  padding: 48px 18px;
  font-family: "Poppins", Arial, sans-serif;
}
.osg-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Title */
.osg-section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 28px;
  color: #0b2447;
  font-weight: 700;
}

/* Cards grid */
.osg-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}

/* Individual card */
.osg-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  gap: 18px;
  align-items: center;
  box-shadow: 0 8px 22px rgba(6, 24, 55, 0.06);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
  border: 1px solid rgba(11, 36, 71, 0.04);
}
.osg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(6, 24, 55, 0.1);
}

/* Flag circle */
.osg-flag img {
  width: 84px;
  height: 84px;
  min-width: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  background: linear-gradient(180deg, #fff, #f6f7fb);
  border: 2px solid rgba(11, 36, 71, 0.06);
  box-shadow: 0 6px 18px rgba(11, 36, 71, 0.04) inset;
}

/* Info column */
.osg-info {
  flex: 1;
}
.osg-country {
  font-size: 18px;
  font-weight: 700;
  color: #0b2447;
  margin-bottom: 6px;
}
.osg-phone {
  color: #1f3a5b;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Live time box */
.osg-time {
  display: inline-block;
  padding: 8px 12px;
  background: #fff;
  color: #000;
  font-weight: 600;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 6px 18px rgba(11, 36, 71, 0.12);
  border: 1px solid black;
}
/* .osg-plans {
  display: block;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  font-size: 18px;
  font-weight: 700;
  color: #0b2447;

  border: 1px solid #000;
}
.osg-plans a {
  text-decoration: none;
} */
/* SOCIAL ICONS */
.osg-social-row {
  text-align: center;
  margin-top: 28px;
}

.osg-social-icons {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

/* Circle social */
.osg-social {
  width: 48px; /* smaller size */
  height: 48px; /* smaller size */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  color: #fff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 6px 18px rgba(11, 36, 71, 0.06);
  position: relative;
  overflow: hidden;
}

.osg-social img {
  width: 22px; /* perfect icon size */
  height: 22px;
  filter: invert(1); /* makes icons white */
}

/* Hover effect: lift + glow */
.osg-social:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

/* brand colors */
.osg-twitter {
  background: linear-gradient(180deg, #60c8ff, #2aa3f7);
}
.osg-facebook {
  background: linear-gradient(180deg, #3b5998, #2d4373);
}
.osg-insta {
  background: radial-gradient(
    circle at 30% 30%,
    #feda75,
    #f58529,
    #dd2a7b,
    #8134af,
    #515bd4
  );
}
.osg-linkedin {
  background: linear-gradient(180deg, #0077b5, #005a8f);
}
.osg-youtube {
  background: linear-gradient(180deg, #ff4b4b, #c40000);
}
.osg-whatsapp {
  background: linear-gradient(180deg, #2fd35f, #0aa44a);
}
/* ⭐ Microsoft Teams */
.osg-teams {
  background: linear-gradient(180deg, #6264a7, #464775);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .osg-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .osg-cards {
    grid-template-columns: 1fr;
  }
  .osg-flag {
    width: 64px;
    height: 64px;
    min-width: 64px;
    font-size: 28px;
  }
  .osg-social {
    width: 48px;
    height: 48px;
  }
  .osg-section-title {
    font-size: 22px;
  }
}
/* Floating Button */
.ai-btn {
  position: fixed;
  bottom: 10px;
  right: 2px;
  color: #fff;
  border-radius: 50%;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 9999;
}

/* Chat Box */
.ai-chatbox {
  width: 350px;
  height: 500px;
  background: #fff;
  position: fixed;
  bottom: 20px;
  right: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 99999;
}

/* Header */
.ai-header {
  background: #f7f7f7;
  padding: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.ai-status-dot {
  width: 10px;
  height: 10px;
  background: #00c853;
  border-radius: 50%;
  display: inline-block;
}

.ai-close {
  position: absolute;
  right: 15px;
  cursor: pointer;
  font-size: 18px;
}

/* Logo Box */
.ai-logo-box {
  text-align: center;
  padding: 20px 10px;
}

.ai-logo {
  width: 120px;
  margin-bottom: 10px;
}

.ai-small {
  margin-top: 5px;
  color: #888;
  font-size: 14px;
}

/* Chat Messages */
.ai-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
}

/* Input Area */
.ai-input-area {
  display: flex;
  padding: 10px;
  border-top: 1px solid #ddd;
}

.ai-input-area input {
  flex: 1;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #ccc;
  outline: none;
}

.ai-input-area button {
  background: #0066ff;
  border: none;
  padding: 10px 15px;
  margin-left: 10px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
}
.ai-btn img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

/* Sidebar container */
.sidebar {
  position: fixed;
  top: 25%;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 99999;
}

/* Common styles */
.sidebar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

/* "Have a Product in Mind?" vertical button */
.product-btn {
  background-color: #ff6600;
  padding: 10px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border-radius: 6px 0px 0px 6px;
  transform: translateX(0);
  width: 40px;
  text-align: center;
}

/* .product-btn:hover {
  transform: translateX(-80px);
  background-color: #e0266f;
} */

/* WhatsApp */
.sidebar-item.whatsapp {
  background-color: #25d366;
  width: 140px;
  padding: 10px;
  border-radius: 6px 0 0 6px;
  gap: 8px;
  transform: translateX(100px);
  transition: transform 0.4s ease;
  padding-right: 20px;
}

.sidebar-item.whatsapp:hover {
  transform: translateX(0);
}

/* Call */
.sidebar-item.call {
  background-color: blue;
  width: 140px;
  padding: 10px;
  border-radius: 6px 0 0 6px;
  gap: 8px;
  transform: translateX(100px);
  transition: transform 0.4s ease;
  padding-right: 70px;
}

.sidebar-item.call:hover {
  transform: translateX(0);
}

/* Icons */
.sidebar-item img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

/* LinkedIn button */
.sidebar-item.linkedin {
  background-color: #0077b5;
  width: 140px;
  padding: 10px;
  border-radius: 6px 0 0 6px;
  gap: 8px;
  transform: translateX(100px);
  padding-right: 30px;
}

.sidebar-item.linkedin:hover {
  transform: translateX(0);
}

/* Facebook button */
.sidebar-item.facebook {
  background-color: #3b5998;
  width: 140px;
  padding: 10px;
  border-radius: 6px 0 0 6px;
  gap: 8px;
  transform: translateX(100px);
  padding-right: 22px;
}

.sidebar-item.facebook:hover {
  transform: translateX(0);
}

/* Icons */
.sidebar-item img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

/* Contact Panel (Right Side Slide-out) */
.contact-panel {
  position: fixed;
  top: 160px;
  right: -350px;
  width: 350px;
  height: 60vh;
  background: #fff;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.2);
  transition: right 0.4s ease;
  z-index: 999;
  padding: 20px;
  padding-right: 50px;
}

.contact-panel.open {
  right: 0;
}

/* Contact Header */
.contact-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-header h3 {
  color: #ff6600;
  margin: 0;
}

.contact-header button {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* Contact Form */
.contact-panel form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.contact-panel input,
.contact-panel textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.contact-panel button {
  background: #ff6600;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

/* ================= PRICING SECTION ================= */
.osg-pricing-section {
  padding: 60px 20px;
  background: #000;
}

.osg-heading {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
}

.osg-pricing-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ================= PRICE CARD ================= */
.osg-price-card {
  border: 2px solid #ff6600;
  border-radius: 14px;
  padding: 28px;
  background: #000;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  color: #ff6600;
}

.osg-price-card:hover {
  transform: translateY(-6px);
  border-color: #e2e2e2;
}

/* top area */
.osg-price-top h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ff6600;
}

.osg-old-price {
  text-decoration: line-through;
  color: ff6600;
  font-size: 16px;
  margin: 4px 0;
}

.osg-old-price span {
  color: #ff6600;
  font-weight: 700;
}

.osg-price {
  font-size: 42px;
  font-weight: 800;
  color: #ff6600;
  margin-bottom: 20px;
}

/* Features */
.osg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.osg-features li {
  margin-bottom: 10px;
  padding-left: 22px;
  font-size: 15px;
  position: relative;
  color: #ff6600;
}

.osg-features li::before {
  content: "✔";
  color: #ff6600;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* button */
.osg-btn {
  width: 100%;
  padding: 12px;
  background: #ff6600;
  color: #fff;
  font-size: 17px;
  border: none;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.25s;
}

.osg-btn:hover {
  background: #c1372d;
}

/* bottom contact row */
.osg-bottom {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  border: 1px solid #ff6600;
  background: #ff6600;
  border-radius: 10px;
  padding: 10px;
}

.osg-bottom span {
  color: #ffff;
}

.osg-bottom strong {
  display: block;
  font-weight: 700;
  color: #ffff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .osg-pricing-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .osg-pricing-wrapper {
    grid-template-columns: 1fr;
  }

  .osg-price-card {
    max-width: 420px;
    margin: auto;
  }
}
.refund-policy {
  background-color: #0f0f0f;
  color: #ffffff;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
}

.refund-container {
  max-width: 900px;
  margin: 0 auto;
}

.refund-policy h2 {
  font-size: 36px;
  margin-bottom: 30px;
  text-align: center;
}

.refund-policy p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #e0e0e0;
}

.refund-policy strong {
  color: #ffffff;
}

.refund-policy .contact {
  margin-top: 30px;
  font-weight: 500;
}

.refund-policy a {
  color: #ff6600;
  text-decoration: none;
}

.refund-policy a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .refund-policy h2 {
    font-size: 28px;
  }

  .refund-policy p {
    font-size: 15px;
  }
}
.privacy-policy {
  background-color: #0f0f0f;
  color: #ffffff;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-policy h2 {
  font-size: 38px;
  margin-bottom: 8px;
  text-align: center;
}

.updated {
  text-align: center;
  color: #aaaaaa;
  font-size: 14px;
  margin-bottom: 40px;
}

.privacy-policy h3 {
  font-size: 22px;
  margin-top: 35px;
  margin-bottom: 12px;
}

.privacy-policy p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.privacy-policy ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.privacy-policy ul li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #dddddd;
}

.privacy-policy strong {
  color: #ffffff;
}

.privacy-policy a {
  color: #ff6600;
  text-decoration: none;
}

.privacy-policy a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .privacy-policy h2 {
    font-size: 28px;
  }

  .privacy-policy h3 {
    font-size: 20px;
  }

  .privacy-policy p,
  .privacy-policy ul li {
    font-size: 15px;
  }
}
.terms-conditions {
  background-color: #0f0f0f;
  color: #ffffff;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
}

.terms-conditions h2 {
  font-size: 38px;
  text-align: center;
  margin-bottom: 10px;
}

.welcome {
  text-align: center;
  font-size: 15px;
  color: #aaaaaa;
  margin-bottom: 40px;
}

.terms-conditions h3 {
  font-size: 22px;
  margin-top: 35px;
  margin-bottom: 12px;
}

.terms-conditions p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.terms-conditions ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.terms-conditions ul li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #dddddd;
}

.terms-conditions strong {
  color: #ffffff;
}

.terms-conditions a {
  color: #ff6600;
  text-decoration: none;
}

.terms-conditions a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .terms-conditions h2 {
    font-size: 28px;
  }

  .terms-conditions h3 {
    font-size: 20px;
  }

  .terms-conditions p,
  .terms-conditions ul li {
    font-size: 15px;
  }
}

.osg-clock {
  position: relative;
  width: 80px;
  height: 80px;
  border: 4px solid #222;
  border-radius: 50%;
  background: #fff;
}

.osg-clock .hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(0deg);
}

.osg-clock .hour {
  width: 4px;
  height: 22px;
  background: #000;
}

.osg-clock .minute {
  width: 3px;
  height: 30px;
  background: #000;
}

.osg-clock .second {
  width: 2px;
  height: 34px;
  background: red;
}

.osg-clock .center-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* RESET */

/* HERO SECTION */
.ai-dir-hero {
  position: relative;
  height: 100vh;
  color: white;
  overflow: hidden;
}

/* BACKGROUND VIDEO */
.ai-dir-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* DARK OVERLAY */
.ai-dir-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: -1;
}

/* NAVBAR */
.ai-dir-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.ai-dir-logo {
  height: 45px;
}

/* MENU */
.ai-dir-menu a {
  color: white;
  text-decoration: none;
  margin-right: 20px;
  font-size: 20px;
}

.ai-dir-btn {
  background: #ff6600;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 5px;
  cursor: pointer;
}
.ai-dir-wobble {
  display: inline-block;
  animation: wobbleAnim 3s infinite;
  color: #ff6600;
}

/* WOBBLE KEYFRAMES */
@keyframes wobbleAnim {
  0% {
    transform: rotate(0deg);
  }

  5% {
    transform: rotate(-5deg);
  }
  10% {
    transform: rotate(5deg);
  }
  15% {
    transform: rotate(-4deg);
  }
  20% {
    transform: rotate(4deg);
  }
  25% {
    transform: rotate(-2deg);
  }
  30% {
    transform: rotate(2deg);
  }

  35% {
    transform: rotate(0deg);
  }

  /* REST TIME */
  100% {
    transform: rotate(0deg);
  }
}

/* MAIN CONTENT CONTAINER */
.ai-dir-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  height: calc(100vh - 100px);
}

/* LEFT SIDE */
.ai-dir-left {
  max-width: 600px;
}

.ai-dir-left h1 {
  font-size: 56px;
  margin-bottom: 15px;
}

.ai-dir-left p {
  font-size: 18px;
  line-height: 1.6;
}

/* SEARCH BOX */
.ai-dir-search {
  margin-top: 25px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ai-dir-search input {
  padding: 18px;
  border: none;
  border-radius: 4px;
  width: 220px;
}

.ai-dir-search button {
  background: #ff6600;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
}

/* RIGHT SIDE IMAGE */
.ai-dir-right img {
  width: 450px;
  max-width: 100%;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1000px) {
  .ai-dir-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .ai-dir-left h1 {
    font-size: 36px;
  }

  .ai-dir-right {
    margin-top: 20px;
  }

  .ai-dir-navbar {
    flex-direction: column;
    gap: 10px;
  }

  .ai-dir-search {
    justify-content: center;
  }

  .ai-dir-search input,
  .ai-dir-search button {
    width: 100%;
  }
}
.ai-dir-searchbar {
  display: flex;
  align-items: center;
  background: #f1f1f1;
  border-radius: 12px;
  padding: 8px;
  max-width: 700px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ai-dir-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  flex: 1;
}

.ai-dir-label {
  font-weight: bold;
  color: #000;
}

.ai-dir-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 16px;
  width: 100%;
}

.ai-dir-divider {
  width: 1px;
  height: 30px;
  background: #ccc;
}

.ai-dir-searchbtn {
  background: #ff6600;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 20px;
  cursor: pointer;
  color: #00c853;
}

/* STATES SECTION */
.ai-dir-states {
  background: #f4f6f9;
  padding: 60px 40px;
}

.ai-dir-states-title {
  font-size: 28px;
  margin-bottom: 30px;
  color: #111;
}

.ai-dir-states-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.ai-dir-states-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ai-dir-states-grid li {
  margin-bottom: 10px;
  color: #0a2540;
  cursor: pointer;
  transition: 0.3s;
}

.ai-dir-states-grid li:hover {
  color: #ff0066;
  transform: translateX(4px);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .ai-dir-states-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 800px) {
  .ai-dir-states-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .ai-dir-states-grid {
    grid-template-columns: 1fr;
  }
}
