/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom right, #0a0a0a, #111827);
}

a {
  text-decoration: none;
}

/* Header */
header {
  width: 90%;
  margin: 20px auto;
  padding: 20px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  transition: top 0.3s ease;
  flex-wrap: wrap;
  gap: 20px;

}
.hidden-header {
top: -120px; /* adjust if your header is taller or shorter */
}
.logo img {
  height: 60px;
}

.hamburger {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.logo {
  margin-right: auto;
}



nav {
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}


nav a {
  color: white;
  font-weight: 400;
  font-size: 17px;
}

nav a:hover {
  color: #a855f7;
}

.cta {
  background: linear-gradient(to right, #d946ef, #9333ea);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 0.6rem 1.2rem;
  font-size: 17px;
  font-weight: 400;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.cta:hover {
  transform: scale(1.05);
}

.mobile-only {
  display: none;
}
.cta.desktop-only {
  margin-right: 20px; /* Adjust this value as needed */
}

/* Dropdown Styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  color: white;
  font-weight: 400;
  font-size: 17px;
  text-decoration: none;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(30, 30, 50, 0.95);
  backdrop-filter: blur(10px);
  min-width: 230px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 9999;
  
}
/* Add gap only between Services and Website Development */
.dropdown-content a:first-child {
  margin-top: 20px; /* Adjust the value as needed */
}


.dropdown-content a {
  display: block;
  color: white;
  padding: 10px 15px;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.dropdown-content a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #a855f7;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Mobile view - dropdown inside nav column */
@media (max-width: 768px) {
  .dropdown {
    width: 100%;
  }

  .dropdown-content {
    position: static;
    background: transparent;
    backdrop-filter: none;
    border: none;
    min-width: 100%;
  }

  .dropdown-content a {
    padding: 8px 0;
  }
}



/* Hero Section */
.hero {
  text-align: center;
  padding: 12rem 2rem 6rem;
  max-width: 1000px;
  margin: 0 auto;
  color: white;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.highlight-wrapper {
  display: inline-block;
  height: 80px;
  overflow: hidden;
  vertical-align: middle;
}

#dynamicText {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  animation: slideUp 0.5s ease forwards;
  white-space: nowrap;
  background: linear-gradient(#d946ef, #9333ea, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.2;
  height: 100px;
}

@keyframes slideUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.hero p {
  font-size: 1.1rem;
  margin: 2rem 0;
  color: #cbd5e1;
}

.call-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #111827;
  background: linear-gradient(#0a0a0a, #111827) padding-box,
              linear-gradient(to right, #d946ef, #9333ea) border-box;
  color: white;
  border: 1px solid transparent;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.call-btn:hover {
  background: linear-gradient(to right, #d946ef, #9333ea);
  transform: scale(1.05);
}


/* Responsive Styles */
@media (max-width: 768px) {
  .hero {
    padding: 8rem 1rem 4rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 1.3;
  }

  .highlight-wrapper {
    height: 60px;
  }

  #dynamicText {
    font-size: clamp(2rem, 5.5vw, 2.8rem);
    height: 60px;
  }

  .hero p {
    font-size: 1rem;
    margin: 1rem 0;
    padding: 0 10px;
  }

  .call-btn {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 10rem 1rem 3rem;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  #dynamicText {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .hero p {
    font-size: 0.95rem;
  }

  .call-btn {
    width: 50%;
    max-width: 180px;
    font-size: 0.95rem;
    margin:2rem 0 0;
  }
}





/* Responsive */
@media (max-width: 768px) {
.hamburger {
  display: block;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  position: relative;
  left: -20px; /* Adjust as needed */
}
    

  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(30, 30, 50, 0.95);
    border-radius: 15px;
    padding: 1rem;
    margin-top: 10px;
    width: 90%;
    z-index: 999;
  }

  nav.show {
    display: flex;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
   header {
    padding: 12px 8px;
  }

  .logo img {
    height: 45px;
  }

  .hamburger {
    font-size: 1.8rem;
    left: 0;
  }

}
/*second section*/
.consultation-section {
  background-color: #000000;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.consultation-container {
  max-width: 1100px;
  width: 100%;
  background: linear-gradient(-67.12deg, #ffffff4a -26.34%, #fff0 91.75%);
  border-radius: 20px;
  padding: 60px;
  display: flex;
  flex-direction: row;
  gap: 50px;
  box-shadow: 0 0 60px rgba(151, 71, 255, 0.2);
  border-bottom: 2px solid #a78bfa;
  border-left: 2px solid #a78bfa;
  flex-wrap: wrap;
}

.consultation-text {
  flex: 1 1 400px;
  color: white;
  padding-top: 20px;
}

.consultation-text-para {
  color: #a78bfa;
  letter-spacing: 1px;
  font-weight: 800;
  margin-bottom: 10px;
  font-size: 16px;
}

.consultation-text h2 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.3;
}

.consultation-text p {
  font-size: 16px;
  color: #cbd5e1;
}

.consultation-form {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.consultation-form input[type="text"],
.consultation-form input[type="email"],
.consultation-form input[type="tel"] {
  padding: 15px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 16px;
  background: white;
  width: 100%;
}

.phone-field {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: linear-gradient(to bottom right, #ffffff, #f3f3f3);
  border-radius: 8px;
  padding: 0 10px;
  gap: 10px;
}

.phone-field input {
  flex: 1;
  border: none;
  outline: none;
  padding: 15px 0;
  font-size: 16px;
  background: transparent;
}

.country-code {
  padding: 12px;
  border: none;
  outline: none;
  font-size: 14px;
  background-color: transparent;
  width: 100px;
  flex-shrink: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.consultation-form button {
  padding: 16px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  font-weight: 700;
  color: white;
  background: linear-gradient(to right, #a855f7, #ec4899);
  cursor: pointer;
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.6);
  transition: transform 0.2s;
}

.consultation-form button:hover {
  transform: translateY(-2px);
}

.consultation-form button:focus {
  outline: 2px solid #c084fc;
  outline-offset: 2px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .consultation-container {
    padding: 40px;
    gap: 40px;
  }

  .consultation-text h1 {
    font-size: 32px;
  }
  .consultation-form input,
  .phone-field input,
  .country-code {
    margin: 0;
  }

  .phone-field {
    margin-top: 0;
    padding: 0;
    display: flex;
    align-items: center;
  }

  .country-code {
    margin-right: 8px;
    padding: 12px 6px;
  }

  .consultation-form button {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .consultation-container {
    padding: 15px;
    gap: 16px;
  }

  .consultation-text h1 {
    font-size: 24px;
  }

  .consultation-text h5 {
    font-size: 14px;
  }

  .consultation-form {
    gap: 8px;
  }

  .phone-field {
    padding: 0 8px;
  }

  .consultation-form button {
    font-size: 14px;
    padding: 14px;
  }
}

/*Third section*/
.innovate-section {
  background: #000;
  padding: 60px 20px;
  color: white;
  font-family: "Segoe UI", sans-serif;
  display: flex;
  justify-content: center;
}

.innovate-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  gap: 100px;
  border-radius: 20px;
  padding: 40px;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}

.innovate-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.innovate-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  border: 3px solid #6b21a8;
  height: auto;
  object-fit: cover;
}

.innovate-content {
  flex: 1;
  min-width: 280px;
}

.innovate-content h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}

.innovate-content p {
  color: #bdbdbd;
  font-size: 1rem;
  margin-top: 23px;
  line-height: 1.6;
  font-family: Arial, Helvetica, sans-serif;
}

.innovate-content hr {
  border: none;
  border-top: 1px solid #555;
  margin: 20px 0;
  width: 80px;
}

.innovate-points {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.innovate-points li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.innovate-points span {
  font-size: 20px;
  color: #93c5fd;
}

.innovate-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.cta-button {
  background: #2563eb;
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: center;
}
.cta-button a {
  color: white;
  text-decoration: none;
}

.cta-button:hover {
  background: #1b50c3;
}

.rating {
  color: gold;
  font-size: 18px;
  text-align: center;
  line-height: 1.3;
}
.rating small {
  color: #d1d5db;
  font-size: 18px;
  text-align: center;
  line-height: 1.3;
}

/* Media Queries */
@media (max-width: 992px) {
  .innovate-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    padding: 20px;
  }

  .innovate-image,
  .innovate-content {
    width: 100%;
  }

  .innovate-content h2 {
    font-size: 32px;
  }

  .innovate-content p {
    font-size: 0.95rem;
  }

  .innovate-cta {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .innovate-content h2 {
    font-size: 26px;
  }

  .innovate-content p {
    font-size: 14px;
  }

  .cta-button {
    width: 100%;
    font-size: 15px;
  }

  .rating {
    font-size: 16px;
    width: 100%;
  }

  .innovate-points li {
    font-size: 15px;
  }

  .innovate-points span {
    font-size: 18px;
  }
}

/*Ai Services*/
#ai-services-section {
  padding: 60px 20px;
  background-color: #000;
}

/* Heading */
#ai-services-section .heading {
  text-align: center;
  margin: 0 auto 80px auto;
  max-width: 1000px;
  padding: 0 20px;
}

#ai-services-section .heading h2 {
  font-size: 2.5rem;
  font-weight: 500;
  color: #dfd5fd;
  margin-bottom: 30px;
}

#ai-services-section .heading p {
  color: #bdbdbd;
  font-size: 1rem;
  line-height: 1.6;
  font-family: Arial, Helvetica, sans-serif;
}

/* Cards Grid */
#ai-services-section .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card Styling with Gradient Background */
#ai-services-section .card {
  background: linear-gradient(-67.12deg, #ffffff4a -26.34%, #fff0 91.75%);
  border-radius: 20px;
  padding: 20px;
  width: 100%;
  height: 320px;
  text-align: center;
  border-top: 2px solid #a78bfa;
  border-left: 2px solid #a78bfa;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s ease;
}

/* Hover Effect */
#ai-services-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px #b98cff, 0 0 35px #b98cff;
}

/* Text Styling */
#ai-services-section .card h3 {
  font-size: 24px;
  color: #ccbcff;
  letter-spacing: 0.2px;
  margin-bottom: 10px;
  background-clip: text;
  display: inline-block;
}

#ai-services-section .card p {
  font-size: 16px;
  color: #bdbdbd;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 0;
}

/* Card Image */
#ai-services-section .card img {
  width: 180px;
  height: 180px;
  margin: 30px auto;
  object-fit: cover;
  animation: verticalMove 3s infinite ease-in-out;
}

@keyframes verticalMove {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Media Queries */

/* For screens smaller than 1200px (tablets and small screens) */
@media (max-width: 1200px) {
  #ai-services-section .cards {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
  }

  #ai-services-section .card img {
    width: 150px; /* Reduce image size */
    height: 150px;
  }

  #ai-services-section .card h3 {
    font-size: 22px; /* Adjust text size */
  }
}

/* For screens smaller than 768px (small tablets and mobile devices) */
@media (max-width: 768px) {
  #ai-services-section .cards {
    grid-template-columns: 1fr; /* 1 column */
  }

  #ai-services-section .card img {
    width: 120px; /* Further reduce image size */
    height: 120px;
  }

  #ai-services-section .card h3 {
    font-size: 20px; /* Adjust text size */
  }

  #ai-services-section .card p {
    font-size: 14px; /* Reduce text size */
  }
}

/* For screens smaller than 480px (very small screens, like some smartphones) */
@media (max-width: 480px) {
  #ai-services-section .heading h2 {
    font-size: 1.8rem; /* Reduce heading font size */
  }

  #ai-services-section .heading p {
    font-size: 0.9rem; /* Adjust paragraph size */
  }

  #ai-services-section .card {
    height: auto; /* Allow cards to resize dynamically */
    padding: 15px;
  }

  #ai-services-section .card img {
    width: 120px; /* Further reduce image size */
    height: 120px;
  }

  #ai-services-section .card h3 {
    font-size: 23px; /* Adjust card title font size */
    padding-top: 23px;

  }

  #ai-services-section .card p {
    font-size: 16px; /* Further reduce text size */
  }
}

/*fourth section*/
#testimonal {
  padding: 50px 20px;
  text-align: center;
  background-color: #000;

}

#testimonal .heading {
  text-align: center;
  margin: 0 auto 80px auto;
  max-width: 1000px;
  padding: 0 20px;
}

#testimonal .heading h2 {
  font-size: 2.5rem;
  font-weight: 500;
  color: #dfd5fd;
  margin-bottom: 30px;
}

#testimonal .heading p {
  color: #bdbdbd;
  font-size: 1rem;
  line-height: 1.6;
  font-family: Arial, Helvetica, sans-serif;
}

.carousel-container {
  position: relative;
  max-width: 1100px;
  margin: 80px auto 5px auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  margin: 20px auto 5px auto;
}

#testimonal .card {
  min-width: 22%; /* Show 4 cards at a time */
  box-sizing: border-box;
  background: linear-gradient(90deg, #ffffff4a -50.34%, #fff0 91.75%);
  border-radius: 20px;
  padding: 30px;
  margin: 0 20px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#testimonal .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px #b98cff, 0 0 35px #b98cff;
}

.quote-image {
  width: 24px;
  height: auto;
  margin-bottom: 15px;
}

.text-content {
  margin-bottom: 25px;
  height: 140px;
  color: white;
}

.stars {
  color: #ffa500;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 10px;
}

.client-name {
  font-weight: bold;
  font-size: 16px;
  color: white;
}

.client-title {
  color: #aaa;
  font-size: 14px;
  color: white;
}

.reviewed {
  font-size: 14px;
  margin-top: 10px;
  color: white;
}

.carousel-buttons {
  display: flex;
  justify-content: space-between;
  max-width: 1300px; /* Slightly wider than carousel */
  margin: 0 auto;
  position: relative;
  top: -220px; /* Align vertically with the cards */
  z-index: 2;
  pointer-events: none;
}

.carousel-button {
  background: transparent;
  border: 2px solid #a259ff;
  border-radius: 50%;
  color: #a259ff;
  font-size: 20px;
  cursor: pointer;
  padding: 10px;
  pointer-events: auto;
}

.carousel-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: #666;
  color: #666;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
      #testimonal {
              padding-top: 100px;
              }
  #testimonal .card {
    min-width: 28%; /* Show 3 cards at a time */
  }
}

@media (max-width: 900px) {
  #testimonal .card {
    min-width: 45%; /* Show 2 cards at a time */
  }
}

@media (max-width: 600px) {
  #testimonal .card {
    min-width: 80%; /* Show 1 card at a time */
    margin: 10px auto; /* Add some space between cards */
  }

  .carousel-buttons {
    top: -150px; /* Adjust button positions for small screens */
  }

  .carousel-button {
    font-size: 18px; /* Smaller button size */
    padding: 8px;
  }

  #testimonal .heading h2 {
    font-size: 1.8rem; /* Adjust heading size for small screens */
  }

  #testimonal .heading p {
    font-size: 0.9rem; /* Smaller paragraph text */
  }
}
/*faq*/
section.faq {
  width: 100%;
  background-color: #000;
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section.faq h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #d4c8ff;
  margin-bottom: 1.5rem;
}

.accordion {
  margin-top: 1rem;
  max-width: 800px;
  width: 100%;
}

.accordion-item {
  background-color: #1b1333;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  overflow: hidden;
  border-bottom: 1px solid #8780ab;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 1.2rem;
  background: none;
  border: none;
  color: #d4c8ff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header::after {
  content: "▼";
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
  transform: rotate(180deg);
}
.accordion-header h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  background-color: hsl(255, 47%, 19%);
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 1.2rem;
  color: #bdbdbd;
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
}

.accordion-item.active .accordion-body {
  max-height: 200px;
  padding: 1.2rem;
}

/* ---------------------- */
/*        Responsive      */
/* ---------------------- */

@media (max-width: 768px) {
  section.faq {
    padding: 2.5rem 1rem;
  }

  section.faq h2 {
    font-size: 2rem;
  }

  .accordion-header {
    font-size: 1.05rem;
    padding: 1rem;
  }

  .accordion-body {
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  .accordion-item.active .accordion-body {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  section.faq h2 {
    font-size: 1.6rem;
  }

  .accordion-header {
    font-size: 1rem;
    padding: 0.9rem;
  }

  .accordion-header::after {
    font-size: 0.8rem;
  }

  .accordion-body {
    font-size: 0.9rem;
  }
}
/*footer*/
.footer {
  width: 100%;
  padding: 40px 100px;
  background-color: #0d0720;
}

.top-contact {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #1a1234;
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  color: #ffffff;
  font-size: 20px;
}

.contact-item a {
  font-size: 14px;
  color: #ccc;
  text-decoration: none;
  line-height: 1.6;
}

.contact-item img {
  width: 50px;
  height: 50px;
}
/* Responsive for tablets and below */
@media (max-width: 768px) {
.contact-item {
width: 45%; /* two items per row */
}
.contact-item a {
  font-size: 12px;
  color: #ccc;
  text-decoration: none;
  line-height: 1.6;
}
}

/* Responsive for smaller phones */
@media (max-width: 480px) {
.contact-item {
width: 45%; /* one item per row for very small screens */
}

.contact-item a {
  font-size: 12px;
  color: #ccc;
  text-decoration: none;
  line-height: 1.6;
}

}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1;
  margin: 10px;
  min-width: 200px;
}

.footer-title {
  display: block;
  font-size: 20px;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-section p,
.footer-section li,
.footer-section a {
  font-size: 12px;
  color: #ccc;
  text-decoration: none;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  margin-left: -20px;
}


.logo-description {
  display: flex;
  flex-direction: column;
}

.logo-description img {
  width: 200px;
  margin-bottom: 16px;
  margin-top: -10px;
  margin-left: -25px;
}
.social-icons {
    margin: 0 100px;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  margin: 0 10px;
  transition: transform 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.3);
}

.footer-section a:hover,
.contact-item a:hover {
  color: #aa90da;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 0.01rem solid #333;
  margin-top: 30px;
  font-size: 13px;
  color: #aaa;
  flex-wrap: wrap;
  gap: 10px;
}

/* ------------------ Media Queries ------------------ */

/* Tablets (<= 1024px) */
/* Medium Devices (Tablets: 769px - 1024px) */
/* Large screens (1200px and below) */
@media (max-width: 1200px) {
  .footer {
    padding: 40px 80px;
  }
}

/* Small screens (768px and below) */
@media (max-width: 768px) {
  .footer {
    padding: 40px 20px;
  }

  .footer-section {
    flex: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
}



/*Contact US */
.contact-us {
        background-color: #000;
        text-align: center;
        padding: 100px 20px;
        color: white;
        position: relative;
      }
      

.contact {
        background-color: #000;
        text-align: center;
        padding: 100px 20px;
        color: white;
        position: relative;
      }

     
   .contact h1 {
        font-size: 2.5rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: white;
      }

      .contact p {
        font-size: 1rem;
        line-height: 1.6;
        color: #a5a2a2;
        margin-bottom: 30px;
      }
      .main-content {
        background: #000;
        padding: 100px 20px 40px; /* Add top padding to allow room for floating cards */
        position: relative;
      }

      .contact-cards {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
        position: relative;
        margin-top: -150px; /* This makes cards cut into header */
        z-index: 10;
      }

      .card2 {
        background: linear-gradient(-67.12deg, #ffffff4a -26.34%, #fff0 91.75%),
          #000;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        max-width: 350px;
        flex: 1 1 300px;
        text-align: center;
        color: #fff; /* Ensures text is visible on black background */
      }

      .card2 .icon {
        font-size: 30px;
        color: white;
        background: white;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
      }

      .card2 h3 {
        margin-bottom: 15px;
        font-size: 22px;
      }

      .card2 p {
        font-size: 15px;
        margin-bottom: 15px;
        color: #5e5d5d;
      }

      .phone {
        color: white;
        font-size: 18px;
        text-decoration: none;
        font-weight: bold;
      }

      .direction-button {
        background: linear-gradient(to right, #d946ef, #9333ea);
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
      }

     .whatsapp2 {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: floatUpDown 2s ease-in-out infinite;
}

.whatsapp2 img {
  height: 60px;
  width: auto;
}

/* Keyframes for up-down movement */
@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* move upward */
  }
}

      /* Responsive */
      @media (max-width: 768px) {
        .contact-cards {
          flex-direction: column;
          align-items: center;
          margin-top: -120px;
        }

        .contact h1 {
          font-size: 32px;
        }
        .whatsapp2 img {
        height: 80px;
        width: auto;
      }
      }
      .final-cta {
        text-align: center;
        padding: 60px 20px;
        background-color: #000;
      }

      .final-cta p {
        font-size: 15px;
        max-width: 800px;
        margin: 0 auto 40px;
        line-height: 1.6;
        color: #5e5d5d;
      }

      .final-cta a {
        color: #007bff;
        text-decoration: none;
        font-weight: bold;
      }

      .map-container {
        max-width: 900px;
        margin: 0 auto;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      }

      /* Optional: Mobile Responsiveness */
      @media (max-width: 768px) {
        .final-cta p {
          font-size: 16px;
        }

        .map-container {
          width: 100%;
        }
  .whatsapp2 img {
    height: 60px;
    width: auto;
  }
}

      
      
      
      
       /*About page*/
      .about-container {
        background: #000;
        padding: 12rem 4rem 6rem 4rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 2rem;
      }

      .text-section {
        flex: 1;
        min-width: 280px;
        max-width: 600px;
        margin: 0 auto;
      }

      .text-section h1 {
        font-size: 2.5rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: white;
      }

      .text-section p {
        font-size: 1rem;
        line-height: 1.6;
        color: #a5a2a2;
        margin-bottom: 30px;
      }

      .text-section .btn {
        background: linear-gradient(to right, #a855f7, #ec4899);
  text-decoration: none;
  color: white;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-block;
  margin-top: 20px;
      }

      .text-section .btn:hover {
        background: #1b50c3;
      }

      .image-section {
        flex: 1;
        min-width: 280px;
        max-width: 500px;
        display: flex;
        justify-content: center;
      }

      .image-section img {
        width: 100%;
        border-radius: 16px;
        border: 3px solid #6b21a8;
      }
      

        @media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    padding: 8rem 2rem 4rem; /* Reduced from 15rem to 8rem */
    text-align: center;
  }

  .text-section {
    margin-top: 40px;
  }

  .text-section h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .text-section p {
    font-size: 0.95rem;
  }

  .text-section .btn {
    font-size: 0.9rem;
    padding: 10px 16px;
  }
}

      /* Mobile Devices */
      @media (max-width: 480px) {
        .text-section h2 {
          font-size: 1.5rem;
        }

        .text-section p {
          font-size: 0.9rem;
        }

        .cta {
          width: 120px;
          height: 40px;
          font-size: 14px;
        }

        .image-section img {
          max-width: 100%;
          height: auto;
        }
      }
      
      .about-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #000;
}

.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: white;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card3 {
  background-color: #fff;
  padding: 30px 20px;
  width: 300px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  background: linear-gradient(-67.12deg, #ffffff4a -26.34%, #fff0 91.75%),
          #000;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        color: #fff; /* Ensures text is visible on black background */
}

.card3:hover {
  transform: translateY(-10px);
}

.card3 img {
    padding-top: 23px;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.card3 h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: white;
}

.card3 p {
  font-size: 15px;
        max-width: 800px;
        margin: 0 auto 40px;
        line-height: 1.6;
        color: #5e5d5d;
}

/* Responsive media query */
@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .card3 {
    width: 90%;
    margin-bottom: 20px;
  }
} 
   /* T&C */
.t-and-c {
  background: #000;
  padding: 12rem 4rem 6rem 4rem;
  display: flex;
  justify-content: space-between;
}

.t-and-c-hero {
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 200px 20px 40px 20px;
}

.t-and-c-hero-content {
  max-width: 800px;
}

.t-and-c-hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
}

.t-and-c-hero p {
   color: #bdbdbd;
  font-size: 1rem;
  line-height: 1.6;
  font-family: Arial, Helvetica, sans-serif;
}

.t-and-c-container {
  background-color: #000;
  padding: 50px 280px;
}

.t-and-c-container h4 {
  font-size: 1rem;
  color: #e3e3e3;
}

.t-and-c-container p,
.t-and-c-container ul {
  margin: 20px 0;
  font-size: 1rem;
  color: #d1cece;
}

ul {
  padding-left: 20px;
}

.t-and-c-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.t-and-c-whatsapp img {
  height: 60px;
  cursor: pointer;
}

/* Media Queries */
@media (max-width: 992px) {
  .t-and-c-container {
    padding: 50px 100px;
  }
}

@media (max-width: 768px) {
  .t-and-c-hero {
    padding: 160px 20px 30px 20px;
  }

  .t-and-c-hero h1 {
    font-size: 2rem;
  }

  .t-and-c-hero p {
    font-size: 1rem;
  }

  .t-and-c-container {
    padding: 50px 20px;
  }
}

@media (max-width: 480px) {
  .t-and-c-hero h1 {
    font-size: 1.6rem;
  }

  .t-and-c-hero p {
    font-size: 0.95rem;
  }

  .t-and-c-container p,
  .t-and-c-container ul {
    font-size: 0.95rem;
  }

  .t-and-c-whatsapp img {
    height: 50px;
  }
}

/*Our client*/

#our-client {
  text-align: center;
  color: #fff;
  padding: 60px 20px;
  background-color: #000;
}



/* Heading & Paragraph Container */
.client-heading {
  max-width: 900px;
  margin: 0 auto 40px auto;
}

#our-client h2 {
   font-size: 2.5rem;
  font-weight: 500;
  color: #dfd5fd;
  margin-bottom: 30px;
}

.client-description {
  color: #bdbdbd;
  font-size: 1rem;
  line-height: 1.6;
  font-family: Arial, Helvetica, sans-serif;
}

/* Slider Container */
.slider-container {
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
    max-width: 1200px; /* Adjust this value as needed */
  margin: 0 auto;
}

.slider {
  overflow: hidden;
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.slide-track {
  display: flex;
  width: calc(250px * 10);
  animation: scroll 25s linear infinite;
}

.slide {
  height: 150px;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  margin: 0 10px;
  flex-shrink: 0;
}
.slide img {
width: 80%;
height: 80%;
object-fit: cover; /* or 'contain' if you want full visibility */
border-radius: 4px; /* optional: to match the slide's border radius */
}


@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Trust Section */
.trust-section {
  margin-top: 40px;
  font-size: 1.2rem;
  color: #fff;
}

.trust-badge {
  background-color: #facc15;
  color: #000;
  padding: 6px 16px;
  border-radius: 9999px;
  font-weight: bold;
  margin-right: 10px;
  display: inline-block;
}

/* Media Queries */
@media (max-width: 1024px) {
     #our-client {
    padding-top: 100px;
  }
  .slide-track {
    width: calc(200px * 10);
  }

  .slide {
    width: 200px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  #our-client h2 {
    font-size: 2rem;
  }

  .client-description {
    font-size: 1rem;
  }

  .slide-track {
    width: calc(160px * 10);
  }

  .slide {
    width: 160px;
    height: 100px;
    margin: 0 8px;
  }

  .trust-section {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  #our-client h2 {
    font-size: 1.8rem; /* Adjust heading size for small screens */
  }

  .client-description {
    font-size: 0.9rem; /* Smaller paragraph text */
  }
  
  .slide-track {
    width: calc(120px * 10);
  }

  .slide {
    width: 120px;
    height: 80px;
    margin: 0 6px;
  }

  .trust-section {
    font-size: 0.95rem;
  }

  .trust-badge {
    padding: 4px 12px;
    font-size: 0.85rem;
  }
}

.underline {
  display: inline-block;
  width: 120px;
  height: 10px;
  background: url("data:image/svg+xml;utf8,<svg width='120' height='10' xmlns='http://www.w3.org/2000/svg'><defs><linearGradient id='grad' x1='0%' y1='0%' x2='100%' y2='0%'><stop offset='0%' style='stop-color:white;stop-opacity:0.1' /><stop offset='50%' style='stop-color:white;stop-opacity:1' /><stop offset='100%' style='stop-color:white;stop-opacity:0.1' /></linearGradient></defs><path d='M0,10 Q60,0 120,10' stroke='url(%23grad)' stroke-width='2' fill='transparent'/></svg>")
    no-repeat center;
  background-size: 100% 100%;
  margin: 0 auto;
  transform: translateY(-15px); /* Shift upward */
}

/*Pricing*/
.pricing {
  background: linear-gradient(to bottom right, #0a0a0a, #111827);
  text-align: center;
  padding: 50px 20px;
  margin-top: 150px;
  color: white;
}

.pricing h1 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 40px; /* Increase from 20px to 40px */
}

.pricing-cards {
  display: flex;
  justify-content: center;
  align-items: stretch; /* All cards match height */
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 80px;
  text-align: center;
}

.card {
  background: linear-gradient(-67.12deg, #ffffff4a -26.34%, #fff0 91.75%), #000;
  width: 300px;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: auto;           /* Let content define height */
  color: white;
  position: relative;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 15px #b98cff, 0 0 35px #b98cff;
}

.card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 50px;
}

.price {
  font-size: 50px;
  font-weight: 700;
  margin-top: -20px; /* Adjust to position under h3 */
  margin-bottom: 20px;
  color: #7e6dfa;
  line-height: 1;
}

.card ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 10px;
  margin-bottom: 20px;
  flex-grow: 1; /* pushes button to bottom */
}

.card ul li {
  font-size: 14px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ddd;
}

.card ul li:last-child {
  border-bottom: none;
}

.card button {
  padding: 12px 20px;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background-color: #7e6dfa;
  color: #fff;
  transition: background 0.3s;
  margin-top: auto; /* Keeps button at the bottom */
}

.card button:hover {
  background-color: #6a5acd;
}

.card button a {
  color: #111;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 950px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
    max-width: 360px;
  }
}


/*Why choose us*/
/* Reset and base styles */


.why-choose-us {
  padding: 60px 20px;
  text-align: center;
 background: #000;
  color: white;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.subtitle {
  color: #7f8c8d;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.main-heading {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

.description {
  font-size: 18px;
  color: #a0a4b8;
  margin-bottom: 50px;
}

.features {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.feature-box {
  flex: 1 1 30%;
  background-color: #111;
  border-radius: 10px;
  padding: 40px 30px;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-box:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 30px;
  background: #4338ca;
  color: white;
  display: inline-block;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.feature-box h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 20px;
}

.feature-box p {
  color: #aaa;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature-box {
    width: 90%;
    margin-bottom: 20px;
  }

  .main-heading {
    font-size: 23px;
  }

  .description {
    font-size: 16px;
  }
}

