@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: #1a059f;
  --secondary-color: #4e6bf7;
}

body {
  font-family: "Roboto", sans-serif;
}
/* Navigation */
.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #1a2d451a;
  padding: 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.navbar-brand {
  width: 150px;
  height: auto;
}
.navbar-brand img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
  /* animation: logoSpin 3s infinite ease-in-out; */
}
/* @keyframes logoSpin {
  0% {
    transform: rotate(0deg) scale(0.8);
  }
  25% {
    transform: rotate(10deg) scale(1);
  }

  50% {
    transform: rotate(0deg) scale(0.8);
  }
  75% {
    transform: rotate(-10deg) scale(1);
  }
  100% {
    transform: rotate(0deg) scale(0.8);
  }
} */

.navbar-nav .nav-link {
  color: var(--primary-color);
  font-weight: 500;
  margin: 0 0.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.btn-cta {
  background: var(--secondary-color);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  z-index: 111;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(13, 3, 95, 0.3);
  transition: all 0.3s ease-in-out;
  transform: scale(1);
}

.btn-cta:hover {
  background: linear-gradient(to right, #1a059f, #4e6bf7);
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(13, 3, 95, 0.4);
}

.navbar-expand-lg::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  clip-path: polygon(10% 0%, 100% 0, 100% 50%, 0% 50%);
  background-color: #adc4db;
  width: 25vw;
  height: 202px;
}

@media (max-width: 992px) {
  .navbar-expand-lg::before {
    display: none;
  }
}

/* Dropdown styling */
.dropdown-menu {
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(13, 3, 95, 0.2);
  background: rgba(255, 255, 255, 0.98);
}

.dropdown-item {
  color: var(--primary-color);
  font-weight: 500;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: var(--secondary-color);
  color: white;
}

/* Hero section */
.hero-carousel {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-carousel.owl-carousel .owl-item {
  height: 100vh;
}

.hero-carousel .item {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-carousel .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.carousel-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.slide-1 {
  background: url("../images/home/hero-slide-digital.jpg") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
}

.slide-2 {
  background: url("../images/home/hero-slide-software.jpg") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.3rem;
  letter-spacing: 0.8px;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.hero-carousel .owl-nav [class*="owl-"] {
  position: absolute;
  background: rgba(255, 255, 255, 0.2) !important;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hero-carousel .owl-nav .owl-prev {
  left: 30px;
}

.hero-carousel .owl-nav .owl-next {
  right: 30px;
}

.hero-carousel .owl-nav [class*="owl-"]:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  transform: scale(1.1);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
  .hero-carousel .owl-nav [class*="owl-"] {
    width: 50px;
    height: 50px;
  }
  .hero-carousel .owl-nav .owl-prev {
    left: 15px;
  }
  .hero-carousel .owl-nav .owl-next {
    right: 15px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .hero-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

.section {
  padding: 60px 0;
}

/* aiml service section  */

.ai-services-section {
  background-color: #eff2ff;
}
.ai-service-card {
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  background-color: #ffffff;
  height: 100%;
}
.ai-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.ai-card-body {
  padding: 20px;
  text-align: center;
}
.ai-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 15px;
}
.ai-card-text {
  color: #6c757d;
  font-size: 1rem;
}
.ai-card-img-top {
  height: 200px;
  text-align: center;
  object-fit: cover;
  background-color: #e9ecef;
}
.ai-card-img-top img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .ai-service-offering-card {
    text-align: center;
  }
}
/* title headings  */
.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}
.section-title h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}

.section-title .highlight {
  color: var(--secondary-color);
}

.section-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 1000px;
  margin: 0 auto;
}
.section-subtitle-para {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto;
}

/* Solution overview section */
.solution-tabs-section {
  background-color: #f8fafc;
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.solution-tabs-section .section-title {
  margin-bottom: 3rem;
}

.solution-tabs-section .section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
}

.solution-tabs-section .section-subtitle-para {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Tab navigation */
.solution-tabs-section .nav-tabs {
  border: none;
  justify-content: center;
  position: relative;
  margin-bottom: 3rem;
  gap: 10px;
}

.solution-tabs-section .nav-item {
  position: relative;
}

.solution-tabs-section .tab-nav-link {
  color: #6b7280;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  background: transparent;
  transition: color 0.3s ease;
}

.solution-tabs-section .tab-nav-link:hover {
  color: var(--primary-color);
}

.solution-tabs-section .tab-nav-link.active {
  color: var(--primary-color);
}

.solution-tabs-section .tab-nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

/* Tab service card */
.tab-service-card {
  background: linear-gradient(145deg, #ffffff, #f1f5f9);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.tab-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.tab-service-icon {
  font-size: 2.8rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.tab-service-card:hover .tab-service-icon {
  transform: scale(1.15);
}

.tab-service-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.tab-service-card p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.tab-service-card .tab-view-btn {
  color: #ffffff;
  background-color: var(--secondary-color);
  border: none;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.tab-service-card .tab-view-btn:hover {
  background-color: #1565c0;
  transform: translateY(-2px);
}

/* Responsive design */
@media (max-width: 768px) {
  .solution-tabs-section {
    padding: 40px 0;
  }

  .solution-tabs-section .section-heading {
    font-size: 2rem;
  }

  .solution-tabs-section .tab-nav-link {
    font-size: 1rem;
    padding: 10px 16px;
  }

  .tab-service-card h3 {
    font-size: 1.4rem;
  }

  .tab-service-card p {
    font-size: 0.95rem;
  }

  .tab-service-icon {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .solution-tabs-section .nav-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }

  .solution-tabs-section .tab-nav-link {
    width: 100%;
    text-align: center;
  }
}

/* tailored section */
.homestay-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/home/homestay-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 80px 0;
}

.homestay-section .section-title {
  margin-bottom: 3rem;
  text-align: center;
}

.homestay-section .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.homestay-section .section-subtitle-para {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Homestay card */
.homestay-card {
  background: linear-gradient(145deg, #ffffff, #f1f5f9);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.homestay-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.homestay-card .tab-service-icon {
  font-size: 2.8rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.homestay-card:hover .tab-service-icon {
  transform: scale(1.15);
}

.homestay-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.homestay-card p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  flex-grow: 1;
}

/* Responsive design */
@media (max-width: 768px) {
  .homestay-section {
    padding: 40px 0;
  }

  .homestay-section .section-title h2 {
    font-size: 2rem;
  }

  .homestay-section .section-subtitle-para {
    font-size: 1rem;
  }

  .homestay-card h3 {
    font-size: 1.4rem;
  }

  .homestay-card p {
    font-size: 0.95rem;
  }

  .homestay-card .tab-service-icon {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .homestay-section .section-title h2 {
    font-size: 1.8rem;
  }

  .homestay-card {
    padding: 20px;
  }
}

/* Achievements section */
.achievements-section {
  background-color: #f8fafc;
  padding: 80px 0;
}

.achievements-section .section-title {
  margin-bottom: 3rem;
  text-align: center;
}

.achievements-section .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.achievements-section .section-subtitle-para {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Achievement card */
.achievement-card {
  background: linear-gradient(145deg, #ffffff, #f1f5f9);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.achievement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.achievement-card .achievement-icon {
  font-size: 2.8rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.achievement-card:hover .achievement-icon {
  transform: scale(1.15);
}

.achievement-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.achievement-card p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  flex-grow: 1;
}

/* Responsive design */
@media (max-width: 768px) {
  .achievements-section {
    padding: 40px 0;
  }

  .achievements-section .section-title h2 {
    font-size: 2rem;
  }

  .achievements-section .section-subtitle-para {
    font-size: 1rem;
  }

  .achievement-card h3 {
    font-size: 1.4rem;
  }

  .achievement-card p {
    font-size: 0.95rem;
  }

  .achievement-card .achievement-icon {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .achievements-section .section-title h2 {
    font-size: 1.8rem;
  }

  .achievement-card {
    padding: 20px;
  }
}

/* review section  */
.review-content {
  padding: 15px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* cta section  */
.cta-section {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(../images/home/footer-bg.jpg) no-repeat center;
  background-size: cover;
  color: #ffffff;
  padding: 60px 0;
}
.cta-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.cta-section-subtitle {
  color: #e0e7ff;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.cta-link {
  background: #ffffff;
  color: var(--primary-color);
  padding: 14px 32px;
  font-size: 1.1rem;
}
.cta-link-two {
  padding: 14px 32px;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

/* footer section */
footer {
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  background-size: cover;
  color: #b0b0b0;
}
.footer-logo {
  width: 150px;
  height: auto;
  background-color: aliceblue;
}
.footer-logo img {
  width: 100%;
  height: auto;
}
.footer-heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.footer-link {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: #ffffff;
}
.newsletter-input {
  background-color: #ffffff;
  border: 1px solid #444;
  color: #ffffff;
}
.newsletter-input::placeholder {
  color: #919191;
}
.newsletter-btn {
  background-color: #ffffff;
  border: none;
  color: var(--primary-color) !important;
  transition: background-color 0.3s ease;
  font-weight: 600;
}
.newsletter-btn:hover {
  background-color: var(--primary-color);
  color: #ffffff !important;
  font-weight: 600;
}
.social-icon {
  color: #b0b0b0;
  transition: color 0.3s ease;
}
.social-icon:hover {
  color: #ffffff;
}
.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .footer-heading {
    margin-top: 1.5rem;
  }
}

/* ==================================== about page ====================================== */

/* Hero Section */
.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/about/about-hero-bg.jpg") no-repeat center;
  background-size: cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  margin-top: 100px;
}

.about-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* About Us Section */
.about-us-section {
  background-color: #f8fafc;
}

.about-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.about-card i {
  font-size: 2.8rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.about-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.about-card p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
}

/* director profile  */
.director-profile-card{
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.director-profile-card:hover{
  transform: translateY(-10px);
}
.director-profile-card-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: auto;
  margin-bottom: 1rem;
}
.director-profile-card-img  img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Team Section */
.team-section {
  background-color: #eff2ff;
}

.team-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-card h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
}

.team-card p {
  font-size: 1rem;
  color: #6b7280;
}

/* Values Section */
.values-section {
  background: linear-gradient(145deg, #ffffff, #f1f5f9);
}

.value-card {
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.value-card i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
}

.value-card p {
  font-size: 1rem;
  color: #4b5563;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero {
    height: 50vh;
  }

  .about-hero h1 {
    font-size: 2.5rem;
  }

  .about-hero p {
    font-size: 1rem;
  }

  .about-card h3,
  .team-card h4,
  .value-card h3 {
    font-size: 1.3rem;
  }

  .about-card p,
  .team-card p,
  .value-card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .about-hero h1 {
    font-size: 2rem;
  }

  .team-card img {
    width: 100px;
    height: 100px;
  }
}

/* ========================================== contact page =========================================== */
/* Hero Section */
.contact-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/contact/contactBG.jpg") no-repeat center;
  background-size: cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  margin-top: 100px;
}

.contact-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Contact Form Section */
.contact-form-section {
  background: #ffffff;
  padding: 60px 0;
}

.contact-form {
  background: linear-gradient(145deg, #ffffff, #f1f5f9);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-form .form-control {
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  padding: 12px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border: 2px solid var(--secondary-color);
  box-shadow: 0 0 8px rgba(78, 107, 247, 0.5);
}

.contact-form .btn-cta {
  background: var(--secondary-color);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  border: none;
  transition: all 0.3s ease-in-out;
}

.contact-form .btn-cta:hover {
  background: linear-gradient(to right, #1a059f, #4e6bf7);
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(13, 3, 95, 0.4);
}

/* Contact Info Section */
.contact-form-section {
  background-image: url(../images/contact/contact-form-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.contact-info-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: center;
}

.contact-info-card:hover {
  transform: translateY(-8px);
}

.contact-info-card i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.contact-info-card h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 1rem;
  color: #4b5563;
  text-decoration: none;
}

.contact-info-card a:hover {
  color: var(--secondary-color);
}

/* Map Section */
.map-section {
  padding: 60px 0;
}

.map-placeholder {
  background: #e2e8f0;
  height: 400px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.2rem;
  color: #6b7280;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-hero {
    height: 40vh;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .contact-hero p {
    font-size: 1rem;
  }

  .section {
    padding: 40px 0;
  }
}

/* ===================================== aiml services ====================================== */
.aiml-services-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/aiml/aiml-banner_new.jpg") no-repeat center;
  background-size: cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  margin-top: 100px;
}

.aiml-services-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

.aiml-services-hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.typewriter-section {
  padding: 100px 0;
}
.typewriter-title {
  text-align: center;
}
.typewriter-title h2 {
  font-size: 3rem;
}
.typewrite {
  color: var(--secondary-color);
  text-decoration: none;
}

.bg-blue {
  background-color: #e7ecff;
}

.ai-case-std-card {
  height: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.ai-case-std-card-img {
  width: 100%;
  height: auto;
}
.ai-case-std-card-img img {
  width: 100%;
  height: auto;
}

/* ======================================== aiml augmented sdlc ============================================ */
.aiml-augmented-sdlc-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/aiml/ai-augmented-sdlc.webp") no-repeat center;
  background-size: cover;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  margin-top: 100px;
}

.aiml-augmented-sdlc-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

.aiml-augmented-sdlc-hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 1000px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* SERVICE SECTION  */
.ai-ml-services {
  background-color: #ced7ff;
}

.ai-ml-service-card {
  height: 100%;
  transition: all 0.3s ease;
}
.ai-ml-service-card:hover {
  background-color: var(--secondary-color);
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.ai-ml-service-card:hover .ai-ml-service-icon {
  color: var(--secondary-color);
  background-color: #ffffff;
  width: max-content;
  margin: 0 auto;
  margin-bottom: 1.2rem;
  padding: 0 10px;
  border-radius: 10px;
}
.ai-ml-service-card:hover p {
  color: #ffffff;
}

.ai-ml-service-icon {
  color: var(--secondary-color);
  font-size: 3rem;
  margin-bottom: 20px;
}

/* why ai augmented  */
.ai-flip-card {
  width: 100%;
  height: 300px;
  margin: 20px auto;
}

.ai-flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.ai-flip-card:hover .ai-flip-card-inner {
  transform: rotateX(180deg);
}

.ai-flip-card-front,
.ai-flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  /* border-radius: 10px; */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.ai-flip-card-front {
  display: grid;
  place-items: center;
}
.flip-card-one {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/aiml/ai-augmented-card-1.png) no-repeat center center;
  background-size: cover;
}
.flip-card-two {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/aiml/ai-augmented-card-2.png) no-repeat center center;
  background-size: cover;
}
.flip-card-three {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/aiml/ai-augmented-card-3.png) no-repeat center center;
  background-size: cover;
}
.flip-card-four {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/aiml/ai-augmented-card-4.png) no-repeat center center;
  background-size: cover;
}

.ai-flip-card-back {
  background-color: var(--secondary-color);
  color: #ffffff;
  transform: rotateX(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
}

.ai-flip-card-back h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.ai-flip-card-back p {
  font-size: 15px;
  margin-bottom: 10px;
}

/* our success story section  */
.ai-success-card {
  padding: 20px;
  border: 1px solid rgb(131, 131, 131);
  overflow: hidden;
}

.ai-success-card-img {
  width: 100%;
  height: auto;
}
.ai-success-card-img img {
  width: 100%;
  height: auto;
  transition: all 1.2s ease;
}
.ai-success-card-img img:hover {
  transform: scale(1.1);
}
.ai-success-card h4 {
  font-weight: 600;
  margin-top: 1.5rem;
}
.ai-success-card h4 a {
  text-decoration: none;
  color: var(--primary-color);
}

/* our ai insight section  */
.ai-insight-card-img {
  width: 100%;
  height: auto;
  position: relative;
  display: inline-block;
}
.ai-insight-card-img::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  transition: all 0.3s ease;
}
.ai-insight-card-img:hover::before {
  background-color: #0000007e;
}
.ai-insight-card-img img {
  width: 100%;
  height: auto;
}
.ai-insight-card h4 {
  padding-top: 1rem;
}
.ai-insight-card a {
  text-decoration: none;
}

/* aiml robotics page  */
.aiml-robotics-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/aiml/robot-hand-ai.webp") no-repeat center;
  background-size: cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  margin-top: 100px;
}

.aiml-robotics-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

.aiml-robotics-hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .key-benefit-aiml-robotic {
    text-align: start;
  }
}

/* cloud services  */

.cloud-service-card {
  height: 100%;
  transition: all 0.3s ease;
}

.cloud-service-card:hover {
  background-color: var(--secondary-color);
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.cloud-service-card:hover .cloud-service-icon {
  color: var(--secondary-color);
  background-color: #ffffff;
  width: max-content;
  margin: 0 auto;
  margin-bottom: 1.2rem;
  padding: 0 10px;
  border-radius: 10px;
}
.cloud-service-card:hover p {
  color: #ffffff;
}

.cloud-service-img {
  width: 25%;
  height: auto;
  margin: auto;
  margin-bottom: 0.5rem;
  padding: 10px;
  background-color: #ffffff;
  border-radius: 15px;
}
.cloud-service-img img {
  width: 100%;
  height: auto;
}

/* key benefits section  */

/* key benefits section  */
.why-choose-ai-img {
  width: 100%;
  height: auto;
}
.why-choose-ai-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.ai-key-benefits-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0.5rem;
}
.ai-key-benefits-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.25rem;
  color: var(--secondary-color);
  font-size: 1.5rem;
}

.aiml-cta {
  background-color: #ced7ff;
}

/* aiml consulting page  */
.aiml-consulting-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/aiml/AIML-HERO.jpg") no-repeat center;
  background-size: cover;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  margin-top: 100px;
}

.aiml-consulting-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

.aiml-consulting-hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 1000px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
  .why-choose-aiml-consulting-row {
    flex-direction: column-reverse;
  }
}
@media (min-width: 768px) {
  .why-choose-aiml-consulting-row h2 {
    text-align: start;
  }
  .aiml-key-benefit-heading {
    text-align: start;
  }
}

/* what we offer section  */

.ai-offer-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.5rem;
}
.ai-offer-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.25rem;
  color: var(--secondary-color);
  font-size: 1.5rem;
}

/* cloud consulting page  */
.cloud-consulting-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/aiml/cloud-consulting-banner.jpg") no-repeat center;
  background-size: cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  margin-top: 100px;
}

.cloud-consulting-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

.cloud-consulting-hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* software solution page  */
.software-solution-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/images/software-solution/software-solution-hero.jpg") no-repeat center;
  background-size: cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  margin-top: 100px;
}

.software-solution-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

.software-solution-hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* resources page  */
.resources-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/resources/resources-hero.png") no-repeat left;
  background-size: cover;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  margin-top: 100px;
}

.resources-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

.resources-hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.short-line {
  position: relative;
  height: 3px;
  margin-bottom: 20px;
}
.short-line:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 3px;
  background-color: #016cd3;
  z-index: 11;
}
.short-line:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 132px;
  height: 3px;
  background-color: #bebebe;
  z-index: 1;
}

/* hire staffing page  */
.hire-staffing-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/staffing/staffing-hero.jpeg") no-repeat center;
  background-size: cover;
  /* height: 90vh; */
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  margin-top: 100px;
}

.hire-staffing-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

.hire-staffing-hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* form  */
.hiring-form {
  padding: 15px;
  border: 1px solid gray;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}
.hiring-form-control {
  width: 90%;
  background-color: rgb(255, 255, 255);
  padding: 5px 10px;
  outline: none;
  border: none;
  border-radius: 10px;
}
.hiring-card {
  padding: 15px;
  position: relative;
}
.hiring-card:before {
  content: "";
  position: absolute;
  right: -1px;
  top: 20%;
  bottom: 20%;
  width: 2px;
  background-color: #000;
  opacity: 0.1;
}

.staffing-service-box {
  padding: 15px;
  border: 1px solid #f9f9f9;
  border-radius: 10px;
  transition: all 0.3s ease;
  min-height: 100%;
  position: relative;
  background-color: #f6f6f6;
}
.staffing-service-box:hover {
  transform: translateY(-5px);
}
.staffing-box-body h3 {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 24px;
}
.staffing-box-body h3 i {
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 36px;
}

/* hiring cta  */
.hiring-cta {
  background: linear-gradient(
    to right,
    var(--secondary-color),
    var(--primary-color)
  );
  padding: 55px 40px;
  border-radius: 20px;
  position: relative;
}
.hiring-cta img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 125%;
}
@media (max-width: 767px) {
  .hiring-cta img {
    height: 40%;
  }
}
@media (max-width: 991px) {
  .hiring-cta img {
    height: 70%;
  }
}
@media (max-width: 767px) {
  .hiring-cta img {
    height: 35%;
  }
}
@media (min-width: 992px) {
  .hiring-cta img {
    height: 110%;
  }
}
.hiring-cta a {
  background-color: #ffffff;
  color: var(--primary-color);
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
}

/* hiring tab section  */
.hiring-tab-card {
  padding: 15px;
}
.hiring-tab-img {
  width: 60px;
  height: auto;
  margin-bottom: 1rem;
}
.hiring-tab-img img {
  width: 100%;
  height: auto;
}

/* our impact section  */
.hiring-impact {
  background: linear-gradient(
    to right,
    var(--secondary-color),
    var(--primary-color)
  );
}

.hiring-impact-card {
  padding: 15px;
  position: relative;
}
.hiring-impact-card:before {
  content: "";
  position: absolute;
  right: -1px;
  top: 20%;
  bottom: 20%;
  width: 2px;
  background-color: #ffffff;
  opacity: 0.5;
}

/* rewards carousel  */
.rewards-carousel-container {
  background: #0082ff;
  padding: 20px;
  /* max-width: 800px; */
  margin: 0 auto;
  border-radius: 15px;
}
.hiring-rewards-carousel .item {
  background-color: #ffffff;
  border-radius: 15px;
  width: 200px;
  height: 100px;
  margin: 0 auto;
}
.hiring-rewards-carousel .item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
}

/* Responsive design */
@media (max-width: 768px) {
  .hiring-rewards-carousel .item img {
    width: 150px;
    height: 75px;
  }
}

@media (max-width: 480px) {
  .hiring-rewards-carousel .item img {
    width: 100px;
    height: 50px;
  }
}

/* staffing partner section */
.staffing-partner-card {
  padding: 10px;
  background-color: #fafafa;
  transition: all 0.3s ease;
}
.staffing-partner-card:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
.staffing-partner-card-list {
  font-size: 20px;
  line-height: 2;
}
.staffing-partner-img {
  width: 100%;
  height: auto;
}
.staffing-partner-img img {
  width: 100%;
  height: auto;
}
.staffing-partner-card-list li::marker {
  color: var(--secondary-color);
}

/* why choose staffing  */
.why-choose-staffing {
  position: relative;
}
.why-choose-staffing::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 450px;
  background: #141e30;
  background: -webkit-linear-gradient(to right, #243b55, #141e30);
  background: linear-gradient(to right, #243b55, #141e30);
  z-index: -1;
}
.why-choose-staffing-card-img {
  background: url(../images/staffing/Experience-based-Recruitment.webp)
    no-repeat center;
  background-size: cover;
  height: 320px;
  border-radius: 15px;
}
.why-choose-staffing-card-img-last {
  background: url(../images/staffing/Complete-Control.webp) no-repeat center;
  background-size: cover;
  height: 320px;
  border-radius: 15px;
}
.why-choose-staffing-card {
  height: 100%;
  border: 1px solid rgb(199, 199, 199);
  border-radius: 15px;
  background-color: #ffffff;
  position: relative;
}
.why-choose-staffing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -5px;
  bottom: 0;
  height: 100px;
  width: 10px;
  background-color: var(--secondary-color);
  margin-bottom: auto;
  margin-top: auto;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
}

.why-choose-staffing-card-content {
  padding: 2rem 1.5rem;
}
.why-choose-staffing-card-content h3 {
  font-weight: 600;
}
.why-choose-staffing-card-content p {
  font-size: 18px;
  line-height: 1.5;
}

/* industries page  */
.industries-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/industries/Serving-Industries-Empowering-Innovation1.webp")
      no-repeat center;
  background-size: cover;
  /* height: 90vh; */
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-top: 100px;
}

.industries-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: start;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

.industries-hero p {
  text-align: start;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  .industries-hero h1 {
    text-align: center;
  }
  .industries-hero p {
    text-align: center;
  }
  .industries-hero .industries-hero-btn {
    text-align: center;
  }
}
/* Custom styles for tabs and transitions */
.industries-tabs {
  background-color: #000;
  border-radius: 20px;
  padding: 2rem;
}
.industries-tabs .nav-link {
  color: #fff;
}
.industries-tab-container {
  position: relative;
  /* Removed min-height to allow dynamic sizing */
  height: auto;
}

.industries-tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  background-color: #4e6bf7;
  top: 0;
  left: 0;
  width: 100%;
}
.industries-tab-content.active {
  display: flex;
  opacity: 1;
  position: relative; /* Ensure active tab content flows naturally */
}
.industries-tab-button.active {
  background-color: #0d6efd; /* Bootstrap primary blue */
  color: white;
  border-bottom: 2px solid #0a58ca; /* Darker blue border */
}
/* Center the tabs */
.industries-nav-tabs {
  display: flex;
  justify-content: center;
}

/* Standardize image height for consistency */
.industries-tab-content img {
  height: 16rem; /* Consistent height for all images */
  object-fit: cover;
}

/* speciality section  */
.speciality-section {
  background: linear-gradient(
    to right,
    var(--secondary-color),
    var(--primary-color)
  );
  padding: 100px 0;
}
.speciality-section a {
  background-color: #ffffff;
  color: var(--primary-color);
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
}
.speciality h3 {
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
}
.speciality p {
  color: #ffffff;
  font-size: 18px;
  text-align: center;
}
.speciality-img {
  width: 120px;
  height: auto;
  margin: auto;
}
.speciality-img img {
  width: 100%;
  height: auto;
}

/* rewards carousel  */
.industries-carousel-container {
  background: #0082ff;
  padding: 20px;
  /* max-width: 800px; */
  margin: 0 auto;
  border-radius: 15px;
}
.industries-carousel .item {
  background-color: #ffffff;
  border-radius: 15px;
  width: 200px;
  height: auto;
  margin: 0 auto;
}
.industries-carousel .item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

/* Responsive design */
@media (max-width: 768px) {
  .industries-carousel .item img {
    width: 150px;
    height: 75px;
  }
}

@media (max-width: 480px) {
  .industries-carousel .item img {
    width: 100px;
    height: 50px;
  }
}

.innovative-section a {
  background-color: var(--secondary-color);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
}
.innovate-img {
  width: 100%;
  height: auto;
}
.innovate-img img {
  width: 100%;
  height: auto;
}

/* ========================================== ai page ============================================ */

/* AI Hero Section */
.ai-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../images/ai/ai-development-company.webp) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  margin-top: 100px;
  position: relative;
  overflow-x: hidden; /* Prevent horizontal overflow */
}

@media (max-width: 557px) {
  .ai-hero {
    height: 800px;
    overflow-x: hidden;
  }
}

.ai-hero-title h1 {
  font-size: 48px;
  font-weight: bolder;
  letter-spacing: 1.8px;
  line-height: 1.1;
}

.ai-hero-title p {
  font-size: 18px;
  line-height: 1.1;
  margin: auto;
  max-width: 1000px;
}

.ai-hero-title .ai-hero-btn {
  position: relative;
  display: inline-block;
  padding: 20px 30px;
  color: var(--secondary-color);
  text-transform: uppercase;
  overflow: hidden;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: none;
  transition: 0.5s;
}

.ai-hero-btn span {
  position: absolute;
  display: block;
}

.ai-hero-btn span:first-child {
  top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--secondary-color));
  animation: 1s linear infinite btn-anim1;
}

.ai-hero-btn span:nth-child(2) {
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--secondary-color));
  animation: 1s linear infinite btn-anim2;
  animation-delay: 0.25s;
}

.ai-hero-btn span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, var(--secondary-color));
  animation: 1s linear infinite btn-anim3;
  animation-delay: 0.5s;
}

.ai-hero-btn span:nth-child(4) {
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, var(--secondary-color));
  animation: 1s linear infinite btn-anim4;
  animation-delay: 0.75s;
}

@keyframes btn-anim1 {
  0% {
    left: -100%;
  }
  100%,
  50% {
    left: 100%;
  }
}

@keyframes btn-anim2 {
  0% {
    top: -100%;
  }
  100%,
  50% {
    top: 100%;
  }
}

@keyframes btn-anim3 {
  0% {
    right: -100%;
  }
  100%,
  50% {
    right: 100%;
  }
}

@keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }
  100%,
  50% {
    bottom: 100%;
  }
}

/* Carousel Styling */
.ai-hero-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
}

.ai-hero-carousel {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.ai-hero-carousel .owl-stage {
  width: 100%;
  overflow: hidden;
}

.ai-hero-item {
  text-align: center;
  padding: 0 33%;
  box-sizing: border-box;
}

.ai-hero-item img {
  max-width: 100px;
  height: 40px;
  object-fit: contain;
}

/* Mobile-specific carousel styles */
@media (max-width: 767px) {
  .ai-hero-carousel {
    padding: 0 10px;
  }

  /* .ai-hero-item {
          padding: 5px;
        } */

  .ai-hero-item img {
    max-width: 80px;
    height: 30px;
  }

  .ai-hero-bottom {
    width: 100%;
    padding: 0 10px;
    transform: translateX(-50%);
  }
}

/* opportunity section  */
.ai-opportunity-card {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 25px;
  border-radius: 28px;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}
.ai-opportunity-card:hover {
  background-color: var(--secondary-color);
}
.ai-opportunity-card:hover .ai-opportunity-card-icon {
  background-color: var(--secondary-color);
  transform: rotate(45deg);
}
.ai-opportunity-card-icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 22px;
  padding: 10px;
  background-color: var(--primary-color);
  border: 6px solid #ffffff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* ai development services section  */
.ai-dev-service {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../images/ai/AI-Development-Services.webp) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}
.ai-tabs .nav-link {
  color: #ffffff;
  text-align: start;
  position: relative;
}
.ai-tabs .nav-link::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  opacity: 0.3;
}
.ai-tabs .nav-pills .nav-link {
  border-radius: 0;
}
.ai-tabs .nav-pills .nav-link.active {
  background-color: var(--secondary-color);
}
.tab-pane {
  color: #ffffff;
}
.tab-content .tab-content-card {
  background-color: transparent;
  backdrop-filter: blur(2px);
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 2rem;
}
.tab-content-card img {
  width: 100px;
  height: auto;
}
.tab-content-card-title {
  letter-spacing: 2px;
}

/* ai expertise section  */

.ai-expertise-card {
  height: 100%;
  border: 1px solid rgba(128, 128, 128, 0.3);
  transition: all 0.3s ease;
}
.ai-expertise-card:hover {
  background-color: #0084ff11;
}
.ai-expertise-card img {
  width: 100px;
  height: auto;
}
.ai-expertise-card-last {
  display: grid;
  padding: 100px 0;
  place-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/ai/AI-Development-Services.webp) no-repeat center;
  background-size: cover;
  transition: all 0.3s ease;
}
.ai-expertise-card-last:hover {
  background: linear-gradient(rgba(59, 99, 160, 0.5), rgba(57, 95, 151, 0.5)),
    url(../images/ai/AI-Development-Services.webp) no-repeat center;
  background-size: cover;
}
.ai-expertise-card-last-btn {
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  border: 2px solid #ffffff;
  color: #000;
  background-color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
}
.ai-expertise-card-last-btn:hover {
  background-color: var(--secondary-color);
  border: 2px solid #ffffff;
  color: #ffffff;
}

/* ai business benefits section  */
.ai-benefit-card {
  height: 100%;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.ai-benefit-card:hover {
  transform: translateY(-5px);
}
.ai-benefit-card .ai-benefit-card-icon {
  background-color: var(--secondary-color);
  color: #ffffff;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  font-size: 36px;
}
@media (max-width: 767px) {
  .ai-benefit-card .ai-benefit-card-icon {
    margin: 1.5rem auto;
  }
}
@media (max-width: 768px) {
  .ai-benefit-card{
    text-align: center;
  }
}

/* ai portfolio section  */
.ai-portfolio-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/ai/ai-portfolio-bg.webp) no-repeat center;
  background-size: cover;
}

.ai-process-box {
  padding: 30px 70px 30px 50px;
  height: 100%;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #e0e0e0;
  -webkit-border-radius: 20px 40px 20px 20px;
  -moz-border-radius: 20px 40px 20px 20px;
  -ms-border-radius: 20px 40px 20px 20px;
  border-radius: 20px 40px 20px 20px;
}
.ai-process-box h3 {
  color: var(--secondary-color);
}
.ai-process-box:hover {
  border: 1px solid var(--secondary-color);
}
.ai-process-box:hover .ai-step {
  color: var(--secondary-color);
}
.ai-process-box .ai-step {
  background-color: #fff;
  padding: 0 10px;
  height: 85px;
  display: inline-block;
  color: #000;
  font-size: 62px;
  transition: all 0.3s ease;
  position: absolute;
  left: -26px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.why-choose-staffing-card-ai-img {
  background: url(../images/ai/Advanced-AI-Expertise.webp) no-repeat center;
  background-size: cover;
  height: 320px;
  border-radius: 15px;
}
.why-choose-staffing-card-ai-second-last-img {
  background: url(../images/ai/AI-Free-Consultation.webp) no-repeat center;
  background-size: cover;
  height: 320px;
  border-radius: 15px;
}
.why-choose-staffing-card-ai-third-first-img {
  background: url(../images/ai/AI-Maintenance-and-Support.webp) no-repeat center;
  background-size: cover;
  height: 320px;
  border-radius: 15px;
}

/* ai sofwaRE DEVELOPMENT JOURNEY section */
.ai-dev-journey {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../images/ai/ai-scroll-bg.webp) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}

/* rewards carousel  */
.ai-dev-journey-carousel-container {
  background: #0084ffa8;
  padding: 20px;
  /* max-width: 800px; */
  margin: 0 auto;
  border-radius: 15px;
}
.ai-dev-journey-carousel .item {
  background-color: #ffffff;
  border-radius: 15px;
  width: 200px;
  height: 100px;
  margin: auto;
}
.ai-dev-journey-carousel .item img {
  width: 200px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto;
}

/* Responsive design */
@media (max-width: 768px) {
  .ai-dev-journey-carousel .item img {
    width: 150px;
    height: 75px;
  }
}

@media (max-width: 480px) {
  .ai-dev-journey-carousel .item img {
    width: 100px;
    height: 50px;
  }
}

/* best ai company section  */
.best-ai-company-list li::marker {
  color: var(--secondary-color);
}

.best-ai-company-lists li::marker {
    color: white;
}
.best-ai-company-lists li{
    color: white;
}

.ai-form {
  background-color: var(--secondary-color);
  padding: 1.5rem;
  border-radius: 30px;
}
.ai-form-control {
  width: 100%;
  padding: 10px 15px;
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background-color: transparent;
  margin-bottom: 1.5rem;
}
.ai-form-control:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.2);
}
.ai-form-control::placeholder {
  color: rgb(206, 206, 206);
}
.ai-form button {
  padding: 0.5rem 2rem;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.8px;
  border-radius: 30px;
  color: #fff;
  border: 2px solid #fff;
  background-color: transparent;
  transition: all 0.3s ease;
}
.ai-form button:hover {
  background-color: #fff;
  color: var(--secondary-color);
}

/* ai for business excellence  */
.ai-for-business-excellence {
  background-color: var(--secondary-color);
  border-radius: 30px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.ai-for-business-excellence a {
  padding: 1rem 1.5rem;
  background-color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  color: #000;
  font-weight: 600;
  transition: all 0.3s ease;
}
.ai-scroll-box {
  max-height: 550px;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ai-scroll-box-image {
  padding: 1rem;
  padding-bottom: 0;
  width: 100px;
  height: auto;
}
@media (max-width: 767px) {
  .ai-scroll-box-image {
    margin: auto;
  }
}

.ai-scroll-box-image img {
  width: 100%;
  height: auto;
}

/* qa testing page  */
.qa-testing-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../images/qa-testing/qa-testing.jpg") no-repeat center;
  background-size: cover;
  /* height: 90vh; */
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-top: 100px;
}
.qa-testing-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: start;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}
.qa-testing-hero p {
  text-align: start;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.qa-core-testing-service-list {
  line-height: 1.5;
}
.qa-core-testing-service-list li {
  margin-bottom: 1rem;
  border: none;
}
.qa-core-testing-service-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.qa-core-testing-service-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.qa-consulting-card {
  background-color: #ffffff;
  padding: 0.8rem;
  border-radius: 10px;
  height: 100%;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.qa-consulting-card:hover {
  transform: translateY(-10px);
}
.qa-consulting-card-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}
.qa-consulting-card-img img {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}

.engagement-model {
  background-color: #adc4db;
}

.qa-consulting-section {
  background-color: #adc4db;
}

.qa-home-section {
  background-color: #adc4db;
}

.qa-testing-redirect-btn a {
  background-color: var(--secondary-color);
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  transition: all 0.3s ease;
}
.qa-testing-redirect-btn a:hover {
  background-color: var(--primary-color);
}

/* our tam page  */
.our-team-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/team/our-team-bg-min.jpg") no-repeat top;
  background-size: cover;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-top: 100px;
}
.our-team-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: start;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}
.our-team-hero p {
  text-align: start;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.team-profile-card {
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}
.team-profile-card:hover {
  transform: translateY(-10px);
}
.team-profile-card-content {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  width: 80%;
  padding: 0.6rem;
}
.team-profile-card-img {
  width: 100%;
  height: auto;
  margin: auto;
  border-radius: 5%;
  margin-bottom: 0.5rem;
  position: relative;
}
.team-profile-card-img img {
  width: 100%;
  height: 100%;
  border-radius: 5% 5% 0 0;
}

.team-counter-section {
  background: linear-gradient(var(--primary-color), var(--secondary-color));
}
.company-culture-card {
  height: 100%;
  transition: all 0.3s ease;
}
.company-culture-card:hover .company-culture-card-icon {
  transform: translateY(-10px);
}
.company-culture-card-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  font-size: 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.ar-vr-mr-hero {
  position: relative;
  width: 100%;
  height: 90vh; 
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-top: 100px;
  overflow: hidden; 
}

.ar-vr-mr-hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; 
}

.ar-vr-mr-hero-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.3)
  ); 
  z-index: 0; 
}

.ar-vr-mr-hero-content video {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: center; 
  z-index: -1; 
}

.ar-vr-mr-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

.ar-vr-mr-hero p {
  text-align: center;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Optional: Ensure responsiveness for smaller screens */
@media (max-width: 768px) {
  .ar-vr-mr-hero {
    height: 80vh; 
  }

  .ar-vr-mr-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .ar-vr-mr-hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
  }
  .responsive-reverse{
    flex-direction: column-reverse;
  }
}

.ui-template-img{
  width: 100%;
  height: auto;
}
.ui-template-img img{
  width: 100%;
  height: auto;
}

.augmented-card{
  background-color: #adc4db;
}
.augmented-card-img{
  width: 100%;
  height: auto;
}
.augmented-card-img img{
  width: 100%;
  height: auto;
}
.ar-success-story-img{
  width: 100%;
  height: auto;
}
.ar-success-story-img img{
  width: 100%;
  height: auto;
}

.ar-success-story-card{
  padding: 1rem;
  border: 1px solid var(--secondary-color);
  height: 100%;
}

.ar-vr-mr-cta{
  background: linear-gradient(var(--primary-color), var(--secondary-color));
}
.ar-vr-mr-cta-btn{
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  background-color: #fff;
  border: 2px solid #fff;
  font-weight: 600;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}
.ar-vr-mr-cta-btn:hover{
  border: 2px solid #fff;
  color: #fff;
  font-weight: 500;
  background-color: transparent;
}

.why-ar-card{
  background-color: #fff;
  padding: 1rem;
  transition: all 0.3s ease;
  height: 100%;
}
.why-ar-card:hover{
  transform: translateY(-10px);
}
.why-ar-card-icon{
  padding: 10px;
  margin: auto;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--secondary-color);
}
.why-ar-card-icon i{
  font-size: 24px;
  color: #fff;
}


.career-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/career/career-hero.png") no-repeat top;
  background-size: cover;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-top: 100px;
}
.career-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: start;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}
.career-hero p {
  text-align: start;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.career-job-card{
  /* text-align: center; */
  padding: 1rem;
  border-radius: 15px;
  border: 2px solid var(--secondary-color);
}
.career-job-card-icon{
  background-color: var(--secondary-color);
  width: 80px;
  margin: auto;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
}
.career-job-card-icon i{
  font-size: 24px;
  color: #fff;
}
.career-about-card-icon i{
  color: var(--secondary-color);
}
.career-about-card .desc{
  color: var(--secondary-color);
}

.career-institute{
  background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url(/images/career/architecture-independence-palace-ho-chi-minh-city-min.jpg) no-repeat center;
  background-size: cover;
}

.institute-card{
  padding: 2rem;
  border-radius: 5px;
  display: grid;
  place-items: center;
  height: 100%;
}
.institute-card p{
  margin-bottom: 0;
  color: #fff;
  text-align: center;
  font-size: 20px;
}
.institute-card-one{
  background-color: #a40e0e;
}
.institute-card-two{
  background-color: #780e78;
}
.institute-card-three{
  background-color: #176817;
}
.institute-card-four{
  background-color: #0e0ebe;
}

.why-choose-career{
  background: linear-gradient(var(--primary-color), var(--secondary-color));
  padding: 2rem;
  border-radius: 20px;
}
.why-choose-career-card{
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
}
.why-choose-career-card h5{
  letter-spacing: 1px;
}


.apply-form-section{
  background-color: #adc4db;
  margin-top: 50px;
}

/* apply form  */

.apply-form-control{
  width: 100%;
  padding: 0.5rem;
  border-radius: 5px;
  outline: none;
  background-color: #fff;
  border:3px solid transparent;
  outline:3px solid transparent;
  color: #000;
}
.apply-form-control:focus{
  border: 3px solid rgba(78, 107, 247,0.6);
}
.apply-form-submit{
  text-align: center;
}
.apply-form-submit-btn{
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  background-color: var(--secondary-color);
  color: #fff;
  border: 2px solid var(--secondary-color);
  transition: all 0.3s ease;
}
.apply-form-submit-btn:hover{
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
}



.term-condition-hero{
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/term-cond-privacy-policy/term-condition.jpg") no-repeat center;
  background-size: cover;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  margin-top: 100px;
}
.term-condition-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: start;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}
.term-condition-hero p {
  text-align: start;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.term-steps{
  margin-bottom: 2.5rem;
}
.term-steps p{
  padding-left: 2rem;
  font-size: 17px;
}
.term-steps ul{
  list-style-type: none;
  padding-left: 2rem;
  line-height: 2;
}
.term-cta-row{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width:767px){
  .term-cta-row{
    gap: 1rem;
    justify-content: center;
    flex-direction: column;
  }
  .terms-cta-content{
    text-align: center;
  }
}
.terms-cta-content{
  font-size: 28px;
  font-weight: 600;
}
.terms-cta-btn{
  background-color: var(--secondary-color);
  padding: 0.8rem 1.5rem;
  /* float: right; */
  transition: all 0.3s ease;
  transform: scale(0.9);
}
.terms-cta-btn:hover{
  transform: scale(1);
}
.terms-cta-btn a{
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.privacy-policy-hero{
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/term-cond-privacy-policy/privacy-policy.jpg") no-repeat top;
  background-size: cover;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-top: 100px;
}
.privacy-policy-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: start;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}
.privacy-policy-hero p {
  text-align: start;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}