/* ------------------ Header ------------------ */

header {
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5%;
  position: relative;
  z-index: 100;
  flex-wrap: wrap;
}

body {
  background-color: #000;
}

body::-webkit-scrollbar {
  display: none;
}

/* ------------------ Logo ------------------ */

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 0;
  z-index: 101;
  position: relative;
}

.logo-letter {
  font-size: 34px;
  font-weight: 700;
  background: linear-gradient(45deg, #00ff00, #0077ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo .logo-text {
  opacity: 1;
  transform: translateX(0);
}

.logo .logo-letter {
  transform: none;
}

/* ------------------ Navigation ------------------ */

nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ccc;
}

/* ------------------ Dropdown ------------------ */


.dropdown-menu {
  position: absolute;
  top: 40px;
  left: 0;
  background-color: #1b2430;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 10;
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown items */
.dropdown-menu li {
  padding: 14px 20px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-menu li a {
  color: #fff;
  text-decoration: none;
  display: block;
  width: 100%;
}

.dropdown-menu li:hover {
  background-color: #24344d;
}

/* Arrow for desktop */
.dropdown .arrow {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s ease;
  font-size: 0.7em;
}

.dropdown.active .arrow {
  transform: rotate(180deg);
}


/* ------------------ Contact Button ------------------ */


.ctn-btn {
  cursor: pointer;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 20px;
  position: relative;
  /* relative to nav container */
  margin-left: auto;
  /* push to the right on desktop */
  display: inline-block;
}


.ctn-btn:hover {
  border: 2px solid green;
  color: #fff;
}


/* ------------------ Hamburger ------------------ */

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

a {
  text-decoration: none;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: #fff;
  border-radius: 2px;
}

/* Remove hover effects from logo */

.logo .logo-text,
.logo .logo-letter {
  opacity: 1;
  transform: none;
  transition: none;
}

/* ---------- Responsive (Mobile) = Header ---------- */
/*
@media screen and (max-width: 768px) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    position: relative;
  }

  
  .logo {
    display: flex;
    align-items: center;
    gap: 1px;
    position: relative;
    left: 0;
    transform: none;
    z-index: 101;
  }

  .logo-text {
    display: inline;
    opacity: 1;
    transform: none;
    font-size: 1.1rem;
  }


  .hamburger {
    display: flex;
    position: absolute;
    right: 5%;
    top: 20px;
    z-index: 102;
  }

  
  .ctn-btn {
    display: none;
  }

 
  nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: #000;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 100;
  }

  nav.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.2rem;
    margin: 0;
    padding-bottom: 0;
  }

  .ctn-btn {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: #000;
    position: absolute;
    top: 135px;
    left: 200px;
    width: 100%;
    padding: 1rem 0;
    z-index: 100;
  }

  nav.active+.ctn-btn {
    display: block;
  } 

  .ctn-btn:hover {
    background: #000;
    color: #fff;
    box-shadow: none;
    border: none;
  }

 
  .dropdown .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}  */

/*
@media screen and (max-width: 768px) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    position: relative;
  }

  
  .logo {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    left: 0;
    transform: none;
    z-index: 101;
  }

  .logo-letter {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00ff00, #0077ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

 
  .logo-text {
    display: none;
  }

  
  .hamburger {
    display: flex;
    position: relative;
    right: 0;
    top: 0;
    z-index: 102;
  }


  .ctn-btn {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 6px;
    z-index: 103;
    text-align: center;
  }


  nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: #000;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 100;
  }

  nav.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.2rem;
    margin: 0;
    padding-bottom: 0;
  }

  
  .ctn-btn:hover {
    background: #000;
    color: #fff;
    box-shadow: none;
    border-radius: 20px;
  }

   .ctn-btn::after {
    content: "Contact";
  }

  
  .ctn-btn span {
    display: none;
  }


  .dropdown .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}
*/

@media screen and (max-width: 768px) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    position: relative;
  }

  /* Show both letter and text of logo on left */
  .logo {
    display: flex;
    align-items: center;
    gap: 0;
    /* Removes space between letter and text */
    position: relative;
    left: 0;
    transform: none;
    z-index: 101;
  }

  .logo-letter {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00ff00, #0077ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .logo-text {
    display: inline;
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    margin-left: 0;
    /* Ensures no extra spacing */
  }


  /* Hide Contact button completely */
  .ctn-btn {
    display: none !important;
  }

  /* Hamburger on right */
  .hamburger {
    display: flex;
    position: relative;
    right: 0;
    top: 0;
    z-index: 102;
  }

  /* Navigation dropdown menu */
  nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: #000;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 100;
  }

  nav.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.2rem;
    margin: 0;
    padding-bottom: 0;
  }

  /* Remove hover effects on mobile */
  .ctn-btn:hover {
    background: #000;
    color: #fff;
    box-shadow: none;
    border-radius: 20px;
  }

  /* Dropdown menus inside nav */
  .dropdown .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}




/* ------------------ Container ------------------ */

/* --------------- HERO SECTION ---------------- */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 35vh;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  overflow: hidden;
}

/* --------------- HERO IMAGE ---------------- */
.hero-image {
  width: 100%;
  max-width: 100%;
  max-height: 430px;
  /* fixed max height */
  height: 100%;
  /* fill height up to max-height */
  object-fit: cover;
  /* ensures full width coverage without stretching */
  display: block;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Optional hover effect */
.hero-image:hover {
  transform: scale(1.03);
  opacity: 0.95;
}

.know-more-btn {
  position: absolute;
  bottom: 150px;
  left: 78%;
  transform: translateX(-50%);
  color: white;
  background-color: black;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}


.arrowa {
  background: linear-gradient(45deg, #00ff00, #0077ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  padding: 5px;
}






/* --------------- RESPONSIVE ---------------- */
@media screen and (max-width: 1024px) {
  .hero-section {
    min-height: 28vh;
    padding: 15px 0;
  }

  .hero-image {
    max-height: 350px;
  }

}

@media screen and (max-width: 768px) {
  .hero-section {
    min-height: 25vh;
    padding: 10px 0;
  }

  .hero-image {
    max-height: 300px;
  }

   .know-more-btn {
    bottom: 58px;
    left: 50%; /* center the button */
    transform: translateX(-1%);
    font-size: 12px;
    padding: 4px 8px;
  }

  .arrowa {
    font-size: 15px;
  }


}

@media screen and (max-width: 480px) {
  .hero-section {
    min-height: 22vh;
    padding: 5px 0;
  }

  .hero-image {
    max-height: 200px;
  }


}











/* Cards Container (Optional) */

.cards-container {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  cursor: pointer;
  background-color: #000;
  justify-content: center;
}

/* ------------------ Cards Container ------------------ */

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1300px;
  width: 100%;
  background-color: #000;
  font-family: Arial, sans-serif;
  color: #fff;
  margin: 0 auto 0;
  min-height: 500px;
  padding: 20px;
  box-sizing: border-box;
}

/* ------------------ Card Base ------------------ */
.card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  cursor: pointer;
  background-color: transparent;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  box-sizing: border-box;
}

.card:hover {
  background-color: white;

}

/* ------------------ Card Background Image ------------------ */
.card-background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.card:hover .card-background-img {
  opacity: 0;
}

/* ------------------ Card Content ------------------ */
.card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding-top: 50%;
}

.card:hover .card-content {
  background: none;
  padding-top: 0;
}

/* ------------------ Category & Title ------------------ */
.card-category {
  font-size: 0.85em;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.card-title {
  font-size: 1.45em;
  font-weight: bold;
  line-height: 1.3;
  margin: 0 0 15px;
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card:hover .card-title {
  margin-bottom: 10px;
}

/* ------------------ Expanded Description ------------------ */
.card-expanded-description {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-bottom: 15px;
}

.card-expanded-description p {
  font-size: 17px;
  line-height: 1.6;
  color: #000;
  margin: 0;
}

.card:hover .card-expanded-description {
  max-height: 250px;
  opacity: 1;
}

/* ------------------ Action Button ------------------ */
.action-btn {
  background: rgba(255, 251, 251, 0.2);
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-top: auto;
}

.action-btn i {
  font-size: 1.3em;
}

/* ------------------ Responsive  card  ------------------ */
@media (max-width: 1024px) {
  .card {
    min-height: 380px;
  }
}

@media (max-width: 768px) {
  .card {
    min-height: 350px;
  }

  .card-title {
    font-size: 1.3em;
  }

  .card-expanded-description p {
    font-size: 0.85em;
  }
}

/* --- Carousel Container --- */
.carousel-container {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  border-radius: 12px;
  font-family: Arial, sans-serif;
}

/* --- Slides Wrapper --- */
.carousel-slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}

/* --- Individual Slide --- */
.carousel-slide {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 40px;
  gap: 40px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .carousel-slide {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    gap: 20px;
  }
}

/* --- Image Section --- */
.slide-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
}

.slide-image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.carousel-slide:hover .slide-image img {
  transform: scale(1.05);
  opacity: 0.85;
}

.placeholder {
  width: 100%;
  height: 300px;
  background-color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #777;
  font-size: 1.2rem;
}

/* --- Content Section --- */
.slide-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 60px;
}

.slide-content h2 {
  font-size: 2rem;
  margin: 0 0 16px;
  font-weight: 600;
  line-height: 1.2;
}

.slide-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 24px;
}


/* --- Controls --- */
.carousel-controls {
  position: absolute;
  bottom: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.carousel-controls button {
  background: rgba(30, 30, 30, 0.7);
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background-color 0.3s, color 0.3s;
}

.carousel-controls button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #00f0ff;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: rgba(30, 30, 30, 0.7);
  padding: 5px 10px;
  border-radius: 6px;
}

#slide-counter {
  font-size: 0.9rem;
  text-align: center;
  min-width: 30px;
}


:root {
  --primary-violet: #b388ff;
  --primary-blue: #007bff;
  --primary-green: #28a745;
  --background-dark: #000;
  --card-bg-dark: #2c2c2c;
  --text-light: white;
  --text-muted: white;
  --border-dark: #3a3a3a;
  --shadow-dark: 0 0.5rem 1rem rgba(0, 0, 0, 0.913);
}

/* --- Page Layout --- */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.contact-page-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 50px 20px;
}

.contact-form-wrapper {
  display: flex;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
}

/* --- Left Side: Input Form --- */
.contact-form {
  flex: 2;
  background: var(--card-bg-dark);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-dark);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  box-sizing: border-box;
  background-color: var(--card-bg-dark);
  color: var(--text-light);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00bfff;
  /* Bright blue border */
  box-shadow: 0 0 0 3px rgba(0, 255, 150, 0.4);
  /* Soft blue-green glow */
  outline: none;
}


.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

/* --- Right Side: Contact Info Cards --- */
.contact-info-section {
  flex: 1;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  padding: 25px;
  border-radius: 14px;
  color: var(--text-light);
  background: linear-gradient(135deg, #0a0a0a, #001a26);
  /* Subtle dark gradient base */
  border: 1px solid rgba(0, 200, 255, 0.25);
  /* Blue-green border */
  box-shadow: 0 0 20px rgba(0, 255, 150, 0.1);
  /* Soft neon glow */
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 150, 0.5);
  box-shadow: 0 0 30px rgba(0, 255, 150, 0.35);
}

/* --- Card Icon and Details --- */
.contact-icon-wrapper {
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Blue → Green gradient */
  box-shadow: 0 0 15px rgba(0, 255, 150, 0.4);
  /* Soft glow effect */
  color: #fff;
  /* Icon color */
  font-size: 22px;
  transition: all 0.3s ease;
}

.contact-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(0, 255, 150, 0.6);
  /* Brighter glow on hover */
}


.icon-placeholder {
  font-size: 24px;
}

.contact-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-content {
  width: 100%;
  max-width: 600px; /* keeps it neat on larger screens */
  margin: 0 auto; /* centers the text */
  padding: 15px;
  color: var(--text-muted, #333);
  font-size: 16px;
  line-height: 1.6;
  word-wrap: break-word; /* ensures long words wrap */
  overflow-wrap: break-word;
}

/* --- Gradients --- */
.gradient-green {
  background: linear-gradient(135deg, var(--card-bg-dark), #3a403a);
  border: 1px solid #3a3a3a;
}

.gradient-blue {
  background: linear-gradient(135deg, var(--card-bg-dark), #3a3a40);
  border: 1px solid #3a3a3a;
}

.gradient-light-green {
  background: linear-gradient(135deg, var(--card-bg-dark), #352e40);
  border: 1px solid #3a3a3a;
}

.gradient-blue .icon-placeholder {
  color: var(--primary-blue);
}

.gradient-green .icon-placeholder {
  color: var(--primary-green);
}

.gradient-light-green .icon-placeholder {
  color: var(--primary-violet);
}

/* 
@media (max-width: 992px) {

 
  .contact-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
  
    align-items: flex-start;
  }

  .contact-form {
    width: 90%;

    margin-left: 0;

    padding: 15px;
  }

  .contact-info-section {
    width: 90%;
  
    margin-left: 0;
    padding: 15px;
  }



 
  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    width: 100%;
    box-sizing: border-box;
  }
}
*/

@media (max-width: 992px) {

  /* Stack form and info vertically */
  .contact-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* spacing between form and info */
    align-items: flex-start;
    /* align content to the left */
  }

  /* Form width slightly less than full, moved left */
  .contact-form {
    width: 90%;
    /* adjust as needed */
    margin-left: 0;
    /* ensure it starts from left */
    padding: 15px;
  }

  .contact-info-section {
    width: 90%;
    /* keep same width as form */
    margin-left: 0;
    padding: 15px;
  }

   .contact-content {
    width: 95%;
    padding: 12px;
    font-size: 15px;
  }

  /* Inputs, textarea, and button take full width of their container */
  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .contact-content {
    width: 95%;
    padding: 10px;
    font-size: 11px;
    margin-left: -10px;
   
  }

}



.gradient-btn {
  width: 30%;
  padding: 12px;
  background: #000;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 50px;

  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
  margin: 0 auto;
}

.gradient-btn:hover {
  opacity: 0.9;
  border: 2px solid green;
  transform: translateY(-2px);
}

.gradient-btn:active {
  transform: translateY(1px);
}

/* 
@media (max-width: 480px) {
  .contact-content {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 10px;

    text-align: center;

    word-break: keep-all;

  }
}
*/



:root {
  --background-dark: #000;
  --card-bg-dark: #000;
  --text-light: #f0f0f0;
  --text-muted: #b0b0b0;
  --primary-violet: #b388ff;
  --primary-violet-dark: #916ad1;
}

/* --- Footer Base --- */
.site-footer {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: 60px 40px 20px;
}

.footer-content-wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  gap: 30px;
}

.footer-column {
  flex: 1;
}

/* --- Company Info --- */
.company-info {
  flex: 1.5;
}

.logo-section {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.logo-box {
  width: 32px;
  height: 32px;
  background-color: var(--primary-violet);
  color: #111827;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  border-radius: 4px;
  margin-right: 10px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light);
  margin: 0;
}

.company-description {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 330px;
}

/* --- Quick Links --- */
.quick-links {
  flex: 0.8;
}

.link-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.link-list li {
  margin-bottom: 8px;
}

.link-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.link-list a:hover {
  background: linear-gradient(45deg, #0077ff, #00ff66);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

/* --- Connect With Us --- */
.connect-with-us {
  flex: 1;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 50px;
  height: 50px;
  margin-top: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Brand Colors */
.social-link.linkedin {
  background-color: #0077b5;
}

.social-link.x {
  background-color: #1da1f2;
}

.social-link.mail {
  background-color: #d44638;
}

.social-link:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* --- Footer Bottom --- */
.footer-divider {
  border: 0;
  border-top: 1px solid #3a3a3a;
  margin: 0 auto 20px;
  max-width: 1200px;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

.copyright {
  margin-bottom: 10px;
}

.legal-links a {
  color: var(--text-muted);
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s ease;
}

.legal-links span {
  color: #3a3a3a;
}

.legal-links a:hover {
  color: var(--primary-violet);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .footer-content-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-column {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-bottom {
    padding: 0 20px;
  }

  .legal-links {
    display: block;
  }

  .legal-links a,
  .legal-links span {
    display: block;
    margin: 5px 0;
  }
}

/*----------about vc-------*/

:root {
  --primary-gradient: linear-gradient(45deg, #0077ff, #00ff66);
  --primary-blue: #0077ff;
  --primary-green: #00ff66;
  --background-dark: #000;
  /* black background */
  --card-dark: #0b0b0b;
  /* dark card background */
  --text-light: #fff;
  /* white text */
  --text-muted: #bbb;
}

/* --- Section --- */
.vc-section {
  background: var(--background-dark);
  padding: 40px 20px;
  font-family: "Inter", sans-serif;
  color: var(--text-light);
}

.vc-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Header --- */
.vc-header {
  text-align: center;
  margin-bottom: 60px;
}

.vc-title {
  font-size: 2.8rem;
  font-weight: 700;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.a3 {
  background: linear-gradient(90deg, #00ff99, #00cc66);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.vc-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 20px auto 0;
  line-height: 1.6;
}

/* --- Grid --- */
.vc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

/* --- Cards --- */
.vc-card {
  background: var(--card-dark);
  border: 1px solid #fff;
  /* white border */
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
  /* white shadow */
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.vc-card:hover {
  transform: scale(1.05);
  border-color: #fff;
  /* brighten border on hover */
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
  /* stronger white shadow */
}

/* --- Icon --- */
.vc-icon {
  width: 60px;
  height: 60px;
  background: black;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  margin-bottom: 20px;
}

/* --- Card Text --- */
.vc-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
}

.vc-card-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 10px;
}

/* --- Hidden Details --- */
.vc-details {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 10px;
  display: none;
}

.vc-card:hover .vc-details {
  display: block;
}

/* --- Benefits Section --- */
.vc-benefits {
  background: #000;
  /* black background */
  color: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 25px rgba(255, 255, 255, 0.15);
  border: 1px solid #fff;
  /* white shadow */
}

.vc-benefits h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.vc-benefits ul {
  list-style: none;
  padding: 0;
}

.vc-benefits li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .vc-title {
    font-size: 2.2rem;
  }

  .vc-card {
    padding: 20px;
  }

  .vc-grid {
    gap: 20px;
  }

  .vc-benefits {
    padding: 30px;
  }
}



/*----------about avc-------*/

/* ---------- Base Styles ---------- */
/* ---------- Body & Section ---------- */
body {
  background-color: #000;
  color: #eee;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
}

section {
  padding: 10px 20px;
  background: linear-gradient(to bottom right, #000, #1a1a1a);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ---------- Header ---------- */
.avc-header {
  text-align: center;
  margin-bottom: 40px;
  animation: fadeUp 1s ease-out;
}

.avc-title {
  font-size: 2.8rem;
  font-weight: 700;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.a4 {
  background: linear-gradient(90deg, #00ff99, #00cc66);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.avc-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------- Cards Row ---------- */
.grid {
  display: flex;
  justify-content: center;
  /* Center all cards horizontally */
  align-items: stretch;
  /* All cards same height */
  gap: 30px;
  /* Space between cards */
  margin-bottom: 80px;
  flex-wrap: nowrap;
  /* Keep all cards in one line */
  max-width: 100%;
  /* Ensure container fits screen */
}

/* Card */
.cardx {
  background: black;
  border: 1px solid #fff;
  border-radius: 0;
  padding: 30px;
  width: 220px;
  /* Adjust width if needed to fit all cards */
  text-align: left;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
  flex-shrink: 0;
  /* Prevent cards from shrinking */
}

/* Staggered animation */
.cardx:nth-child(1) {
  animation-delay: 0.1s;
}

.cardx:nth-child(2) {
  animation-delay: 0.3s;
}

.cardx:nth-child(3) {
  animation-delay: 0.5s;
}

.cardx:nth-child(4) {
  animation-delay: 0.7s;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card content */
.card-icon {
  width: 60px;
  height: 60px;
  background: black;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  margin-bottom: 15px;
}

.metric {
  font-size: 1.8rem;
  color: #00ff66;
  font-weight: 700;
  margin-bottom: 10px;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.card-desc {
  font-size: 1rem;
  color: #bbb;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.card-desc {
  font-size: 1rem;
  color: #bbb;
}

/* ---------- Comparison Section ---------- */
.comparison {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: nowrap;
  /* Stay in one line */
  margin-top: 50px;
}

.compare-box {
  border-radius: 20px;
  padding: 40px;
  width: 400px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.compare-box:nth-child(1) {
  animation-delay: 0.4s;
}

.compare-box:nth-child(2) {
  animation-delay: 0.6s;
}

.compare-left {
  background: linear-gradient(45deg, #0077ff, #00ff66);
  /* Blue → Green gradient */
  color: #fff;
}

.compare-right {
  background: #111;
  border: 2px solid rgba(0, 191, 255, 0.2);
  /* Blue border */
  color: #ddd;
}

.compare-box h3 {
  font-size: 2rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.compare-box ul {
  list-style: none;
  padding: 0;
}

.compare-box li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  font-size: 1.1rem;
}

.compare-box li span {
  margin-right: 10px;
  font-size: 1.3rem;
}

.arrow {
  color: #fff;
}

.tick {
  color: #c77dff;
}

/* ---------- Animation ---------- */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 1100px) {

  .grid,
  .comparison {
    flex-wrap: wrap;
    /* Stack when screen is smaller */
  }

  .card,
  .compare-box {
    width: 100%;
    max-width: 400px;
  }
}



/*----digital-----*/

/* -------------------- GLOBAL SECTION -------------------- */
.dm-section {
  background-color: #000;
  color: #eee;
  font-family: 'Inter', sans-serif;
  padding: 40px 20px;
  background: linear-gradient(to bottom right, #000, #0a0a0a);
}

.dm-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* -------------------- HEADER -------------------- */
.dm-header {
  text-align: center;
  margin-bottom: 60px;
}

.dm-title {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ffffff, #f2f2f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.a1 {
  background: linear-gradient(90deg, #00ff99, #00cc66);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.dm-subtitle {
  font-size: 1.1rem;
  color: #aaa;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* -------------------- MAIN GRID -------------------- */
.dm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

/* -------------------- CARD BASE -------------------- */
.dm-card {
  background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.dm-card:nth-child(1) {
  animation-delay: 0.1s;
}

.dm-card:nth-child(2) {
  animation-delay: 0.2s;
}

.dm-card:nth-child(3) {
  animation-delay: 0.3s;
}

.dm-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* -------------------- HOVER EFFECT -------------------- */
.dm-card:hover {
  border-color: #ffffff;
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

.dm-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #ffffff;
  transition: 0.3s ease;
}

.dm-card:hover .dm-icon {
  transform: scale(1.2) rotate(5deg);
  color: #ffffff;
}

/* -------------------- CARD TEXT -------------------- */
.dm-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.dm-card-desc {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* -------------------- DETAILS EXPAND -------------------- */
.dm-details {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.dm-card:hover .dm-details {
  opacity: 1;
  max-height: 200px;
}

/* -------------------- KEY BENEFITS SECTION -------------------- */
.dm-benefits {
  text-align: center;
  padding: 80px 20px;
  background: radial-gradient(circle at center, #0a0a0a 0%, #000 100%);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
  margin: 100px auto 0;
  max-width: 1200px;
  animation: fadeUp 1s ease-out;
}

.dm-benefits h3 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefits-intro {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* -------------------- BENEFITS GRID -------------------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-items: center;
}

.benefit-card {
  background: linear-gradient(to bottom right, #0d0d0d, #1a1a1a);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 40px 25px;
  max-width: 300px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

/* -------------------- BENEFIT HOVER EFFECT -------------------- */
.benefit-card:hover {
  border-color: #ffffff;
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

.benefit-icon {
  width: 65px;
  height: 65px;
  border-radius: 15px;
  background: linear-gradient(to bottom right, #ffffff, #cccccc);
  color: #000;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: 0.4s ease;
}

.benefit-card:hover .benefit-icon {
  transform: rotate(8deg) scale(1.1);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

/* -------------------- BENEFIT TEXT -------------------- */
.benefit-card h4 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
}

.benefit-card p {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* -------------------- ANIMATIONS -------------------- */
@media (max-width: 768px) {
  .dm-title {
    font-size: 2rem;
    text-align: center;
    /* Center title */
  }

  .dm-subtitle {
    font-size: 1rem;
    text-align: center;
    /* Center subtitle */
  }

  .dm-benefits {
    padding: 60px 15px;
  }

  .dm-benefits h3 {
    font-size: 1.8rem;
  }

  /* Grid adjustments */
  .benefits-grid {
    display: flex;
    flex-direction: column;
    /* Stack cards vertically */
    gap: 20px;
    align-items: center;
    /* Center the cards */
  }

  .benefit-card {
    width: 100%;
    /* Make cards full width */
    max-width: 350px;
    /* Optional: limit width */
    padding: 30px 20px;
    text-align: center;
    /* Center content inside card */
  }
}



/*----------ai powered-------*/

#ai-solutions {
  padding: 20px 20px;
  background: radial-gradient(circle at top left, #0a0a0a, #000);
  color: #eee;
  font-family: 'Inter', sans-serif;
}

/* ---------- Header ---------- */
.ai-header {
  text-align: center;
  margin-bottom: 70px;
  animation: fadeUp 1s ease-out;
}

.ai-title {
  font-size: 2.8rem;
  font-weight: 800;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.a5 {
  background: linear-gradient(90deg, #00ff99, #00cc66);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ai-subtitle {
  font-size: 1.15rem;
  color: #cfcfcf;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Cards ---------- */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  justify-content: center;
  margin-bottom: 90px;
}

.ai-card {
  position: relative;
  background: #000;
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 35px 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
  transition: all 0.35s ease;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

/* Hover gradient glow */
.ai-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
  z-index: 0;
}

.ai-card:hover::before {
  opacity: 1;
}

.ai-card:hover {
  transform: translateY(-10px);
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Animation delays */
.ai-card:nth-child(1) {
  animation-delay: 0.1s;
}

.ai-card:nth-child(2) {
  animation-delay: 0.3s;
}

.ai-card:nth-child(3) {
  animation-delay: 0.5s;
}

.ai-card:nth-child(4) {
  animation-delay: 0.7s;
}

/* ---------- Icon ---------- */
.ai-icon {
  width: 65px;
  height: 65px;
  background: #111;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.ai-card:hover .ai-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* ---------- Card Text ---------- */
.metric {
  font-size: 1.5rem;
  color: white;
  font-weight: 700;
  margin-bottom: 10px;
  z-index: 1;
}

.ai-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.ai-card-desc {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ---------- Comparison Section ---------- */
.ai-comparison {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.compare-box {
  border-radius: 20px;
  padding: 40px;
  width: 420px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
  transition: all 0.4s ease;
}

.compare-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.compare-left {
  background: #000;
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;

}

.compare-right {
  background: #000;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid #fff;
}

.compare-box:nth-child(1) {
  animation-delay: 0.4s;
}

.compare-box:nth-child(2) {
  animation-delay: 0.6s;
}

.compare-box h3 {
  font-size: 2rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.compare-box ul {
  list-style: none;
  padding: 0;
}

.compare-box li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  font-size: 1.1rem;
}

.compare-box li span {
  margin-right: 10px;
  font-size: 1.3rem;
}

.arrow {
  color: #fff;
}

.tick {
  color: white;
}

/* ---------- Animation ---------- */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .ai-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-card {
    max-width: 100%;
  }

  .compare-box {
    width: 100%;
    max-width: 480px;
  }
}

@media (max-width: 700px) {
  .ai-grid {
    grid-template-columns: 1fr;
  }

  .ai-title {
    font-size: 2.2rem;
  }

  .ai-subtitle {
    font-size: 1rem;
  }

  .ai-card {
    padding: 25px;
  }

  .compare-box {
    padding: 30px;
  }
}



/*----------ai implementation-------*/

/* ========== AI Implementation Section ========== */
#ai-implementation {
  padding: 40px 20px;
  background: linear-gradient(to bottom right, #050505, #0a0a0a);
  color: #eee;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

/* Header */
.impl-header {
  margin-bottom: 70px;
  animation: fadeUp 1s ease-out;
}

.impl-title {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ffffff, #f2f2f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.a2 {

  background: linear-gradient(90deg, #00ff99, #00cc66);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.impl-subtitle {
  font-size: 1.15rem;
  color: #cfcfcf;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ------------------ Cards Grid ------------------ */
.impl-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 35px;
}

.impl-card {
  position: relative;
  background: #000;
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 35px 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
  transition: all 0.35s ease;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
  flex: 0 1 calc(33.33% - 23.33px);
  /* 3 cards per row */
  max-width: 300px;
}

.impl-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
  z-index: 0;
}

.impl-card:hover::before {
  opacity: 1;
}

.impl-card:hover {
  transform: translateY(-10px);
  border: 1px solid #fff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.impl-icon {
  width: 65px;
  height: 65px;
  background: black;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.impl-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.impl-card-desc {
  font-size: 1rem;
  color: #b8b8b8;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Delay Animations */
.impl-card:nth-child(1) {
  animation-delay: 0.1s;
}

.impl-card:nth-child(2) {
  animation-delay: 0.3s;
}

.impl-card:nth-child(3) {
  animation-delay: 0.5s;
}

.impl-card:nth-child(4) {
  animation-delay: 0.7s;
}

.impl-card:nth-child(5) {
  animation-delay: 0.9s;
}

.impl-card:nth-child(6) {
  animation-delay: 1.1s;
}

/* ------------------ Responsive ------------------ */
/* ------------------ Responsive ------------------ */
@media (max-width: 1100px) {
  .impl-card {
    flex: 0 1 calc(50% - 20px);
    /* Slightly smaller to account for gap */
    max-width: calc(50% - 20px);
    margin: 0 auto;
    /* Center cards if needed */
  }

  .impl-grid {
    gap: 20px;
    /* Reduce gap for smaller screens */
  }
}

@media (max-width: 700px) {
  .impl-title {
    font-size: 2.2rem;
  }

  .impl-subtitle {
    font-size: 1rem;
  }

  .impl-grid {
    gap: 15px;
  }

  .impl-card {
    flex: 0 1 100%;
    max-width: 100%;
    padding: 25px;
    margin: 0 auto;
    /* Center single card rows */
  }

  .impl-card-title,
  .impl-card-desc {
    text-align: center;
    /* Center text for small screens */
  }

  .impl-icon {
    margin: 0 auto 20px auto;
    /* Center icon */
  }
}

/* Fade up animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



/* -------------------- ARTIFICIAL INTELLIGENCE SECTION -------------------- */
.ai-section {
  background: linear-gradient(to bottom right, #000, #0a0a0a);
  color: #eee;
  font-family: 'Inter', sans-serif;
  padding: 80px 20px;
}

.ai-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.ai-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeUp 1s ease-out;
}

.ai-title {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ffffff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.a6 {
  background: linear-gradient(90deg, #00ff99, #00cc66);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ai-subtitle {
  font-size: 1.15rem;
  color: #ccc;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Grid */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

/* Card */
.ai-card {
  background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
  position: relative;
}

.ai-card:nth-child(1) {
  animation-delay: 0.1s;
}

.ai-card:nth-child(2) {
  animation-delay: 0.2s;
}

.ai-card:nth-child(3) {
  animation-delay: 0.3s;
}

.ai-card:nth-child(4) {
  animation-delay: 0.4s;
}

.ai-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: #fff;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

/* Icon */
.ai-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #fff;
  transition: transform 0.3s ease;
}

.ai-card:hover .ai-icon {
  transform: rotate(8deg) scale(1.2);
}

/* Text */
.ai-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.ai-card-desc {
  color: #bbb;
  font-size: 1rem;
  line-height: 1.6;
}

/* Benefits Section */
.ai-benefits {
  text-align: center;
  margin-top: 100px;
  background: radial-gradient(circle at center, #0a0a0a, #000);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  padding: 80px 20px;
  box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
  animation: fadeUp 1s ease-out;
}

.ai-benefits h3 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefits-intro {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Benefit Cards */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-items: center;
}

.benefit-card {
  background: linear-gradient(145deg, #0d0d0d, #1a1a1a);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 40px 25px;
  max-width: 300px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: #fff;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

.benefit-icon {
  width: 65px;
  height: 65px;
  border-radius: 15px;
  background: linear-gradient(to bottom right, #fff, #ccc);
  color: #000;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: 0.4s ease;
}

.benefit-card:hover .benefit-icon {
  transform: rotate(8deg) scale(1.1);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.benefit-card h4 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
}

.benefit-card p {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .ai-title {
    font-size: 2rem;
  }

  .ai-subtitle {
    font-size: 1rem;
  }

  .ai-benefits {
    padding: 60px 15px;
  }

  .benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .benefit-card {
    width: 100%;
    max-width: 350px;
    padding: 30px 20px;
  }
}

/* -------------------- Services -------------------- */


/* General Styles 
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #000;
  color: #f1f1f1;
}


.services-section {
  padding: 50px 20px;
  background: #000;
}

.container {
  max-width: 1200px;
  margin: auto;
}


.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header h2 {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}


.services-header p {
  color: #aaa;
  font-size: 1.1rem;
  max-width: 700px;
  margin: auto;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #000;
  border: 1px solid #2a2a2a;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 255, 255, 0.2);
  border-color: white;
}


.icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  margin-bottom: 20px;
}


.service-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.b1 {
  background: linear-gradient(90deg, #00ff99, #00cc66);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-card p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}


.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  color: #ddd;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
}


@media (max-width: 768px) {
  .services-title {
    font-size: 2rem;
  }

  .services-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .service-card {
    padding: 25px 20px;
  }

  .icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-title {
    font-size: 1.8rem;
  }
}   */


.about-section {
  background: #000;
  padding: 80px 20px;
 
  font-family: 'Poppins', sans-serif;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

/* ------- IMAGE SECTION ------- */
.about-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* ------- CONTENT SECTION ------- */
.about-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.about-content h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 20px;
  position: relative;
}

.about-content h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin-top: 8px;
  border-radius: 2px;
}

.about-content p {
  color: white;
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.about-content .intro {
  font-weight: 500;
}

.about-content .highlight {
  background: #e8f8f1;
  border-left: 4px solid #00b36b;
  padding: 15px 20px;
  border-radius: 6px;
  color: #0a3d2d;
}

/* ------- RESPONSIVE DESIGN ------- 
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 100%;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 60px 15px;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }
}*/


@media (max-width: 992px) {
  .about-container {
    flex-direction: column-reverse; /* content first, image below */
    text-align: center;
  }

  .about-image img {
    max-width: 100%;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 60px 15px;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }
}

