
.banner-section {
  position: relative;
  width: 100%;
  height: auto; /* Full screen height */
  margin: auto;
  overflow: hidden;
}

.banner-section img {
  width: 100%;
  height: 100vh;
  object-fit: cover; /* Keeps image full height without distortion */
  display: block;
}

.banner-text {
  position: absolute;
  top: 40%;
  left: 5%;
  transform: translateY(-50%);
  color: #ffffff;
  max-width: 90%;
  font-family: 'Gautami', sans-serif;  

  z-index: 1;
}

/* Typewriter Animation */
.banner-text h1 {
  font-size: 3rem;
  margin-bottom: 20px; 
  font-weight: 2rem;
  overflow: hidden; /* Ensures the text is hidden initially */
  white-space: nowrap; /* Prevents text from wrapping */
  
  width: 0; /* Start with no width to hide the text */
  animation: typing 4s steps(40) 1s forwards, blink-caret 0.75s step-end infinite; 
  font-weight: 700; 
  font-family: 'Gautami', sans-serif;  
}

/* Typewriter effect */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Blinking caret */
@keyframes blink-caret {
  50% {
    border-color: transparent;
  }
}

.banner-text p {
  font-size: 20px;
  line-height: 1.6;
  max-width: 600px; 
  font-family: 'Gautami', sans-serif;  
}

/* Optional: Overlay for readability */
.banner-section::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent dark overlay */
  z-index: 0;
}
@media (max-width: 768px) { 
  .banner-text h1 {
    animation: none;
    white-space: normal;
  }
  .banner-section {
    height: auto;
  }

  .banner-section img {
    height: 411px;
  }

  .banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
    padding: 10px;
  }

  .banner-text h1 {
    font-size: 28px;
    width: 100%; /* Important for typewriter */
  }

  .banner-text p {
    font-size: 16px;
  }
}



.why-vtag-section {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 3rem 1.5rem;

  justify-content: center;
  align-items: center;  
 
}

@media (min-width: 1024px) {
  .why-vtag-section {
    flex-direction: row;
  }
}

/* Image */
.image-container {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.image {
  width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 10;
}

/* Text */
.text-content {
  max-width: 640px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.5rem; 
  font-family: 'Gautami', sans-serif;  
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  transition: all 0.5s ease; 
  font-family: 'Gautami', sans-serif;  
}

.section-heading:hover {
  letter-spacing: 0.05em;
}

.highlight {
  color: #299899; /* text-teal-400 */ 
  font-size: 3rem;
}

.brand {
  color: white;  
  font-size: 3rem;
}

.intro {
  font-size: 1.125rem;
  color: black;
}

.bold-text {
  font-weight: 600;
  color: black; 
  font-family: 'Gautami', sans-serif;  
}

.benefits-list {
  font-size: 1.125rem;
  color: black;
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefits-list li {
  transition: transform 0.3s ease;
}

.benefits-list li:hover {
  transform: translateX(0.5rem);
}

.subtext {
  font-size: 1.125rem;
  color: black;
  line-height: 1.75rem; 
  font-family: 'Gautami', sans-serif;  
} 


.benefits-list li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
}

.diamond {
  color: #299899; /* Choose your preferred color */
  margin-right: 8px;
  font-weight: bold;
}




/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-500 {
  animation-delay: 0.5s;
}

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  .float-anim {
    animation: float 3s ease-in-out infinite;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
  }

  .glow {
    box-shadow: 0 0 25px rgba(20, 184, 166, 0.5);
  }

  @keyframes slideInUp {
    0% {
      transform: translateY(30px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .slide-in-up {
    animation: slideInUp 0.8s ease-out forwards;
  }  


  @keyframes slideInUp {
    0% {
      transform: translateY(30px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .animate-up {
    animation: slideInUp 0.8s ease-out forwards;
    opacity: 0;
  }
  
  /* Section */
  .industries-wrapper {
  
    color: white;
    padding: 5rem 1.5rem;
  }
  
  .industries-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
  
  /* Heading */
  .industries-heading {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;

    font-family: 'Gautami', sans-serif;  
  }
  
  @media (min-width: 768px) {
    .industries-heading {
      font-size: 3rem; 
    }
  }
  
  .industries-highlight {
    color: #299899; 
    font-family: 'Gautami', sans-serif;  
  }
  
  /* Grid */
  .industries-grid {
    display: grid;
    gap: 2.5rem;
  }
  
  @media (min-width: 768px) {
    .industries-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .industries-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* Card */
  .industry-card {
    background-color: #1f2937;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 255, 255, 0.05);
    transition: box-shadow 0.3s ease; 
    font-family: 'Gautami', sans-serif;  
  }
  
  .industry-card:hover {
    box-shadow: 0 30px 65px rgba(45, 212, 191, 0.3);
  }
  
  .industry-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
  }
  
  .industry-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .industry-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #299899; 
    font-family: 'Gautami', sans-serif;  
  }
  
  .industry-text {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.6;
  }

.navbar a {

  font-size: 18px;  
  font-family: 'Gautami', sans-serif;  
  color: black;


}



.vtag-edge-section {
margin-top: 50px;
  color: black;
  padding: 60px 20px; 
  font-family: 'Gautami', sans-serif;  
} 

.vtag-container {
  max-width: 1250px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center; 
  font-family: 'Gautami', sans-serif;  
}

.vtag-video {
  flex: 1;
  min-width: 200px; 

}

.vtag-video img {
  width: 100%;
  border-radius: 10px;
  max-width: 500px; /* adjust this size to look better on desktop */ 
  font-family: 'Gautami', sans-serif;  
}

.vtag-text {
  flex: 1;
  min-width: 300px; 
  font-family: 'Gautami', sans-serif;  
}

.vtag-text h2 {
  color: #299899;
  font-weight: 700;
  margin-bottom: 10px; 
  font-size: 3rem; 
  font-family: 'Gautami', sans-serif;  
}

.vtag-text h3 {
  margin: 0 0 20px;
  font-size: 22px;  
  font-weight: 700;  
  font-family: 'Gautami', sans-serif;   
  color: black;

}

.vtag-text ul {
  list-style: none;
  padding-left: 0;
  font-size: 16px;
  line-height: 1.6;
  font-family: 'Gautami', sans-serif;  
  color: black;  

}

.vtag-text li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px; 
  font-family: 'Gautami', sans-serif;   
  color: black;  
}

.vtag-text li span {
  color: #299899;
  position: absolute;
  left: 0; 
  font-family: 'Gautami', sans-serif;  
}



.why-vtag {
  background: url('background.jpg') no-repeat center center;
  background-size: cover;
  padding: 40px 20px; 
  background-color: #ebf8ff;   
  font-family: 'Gautami', sans-serif;  
}

.why-vtag .container {
  max-width: 1450px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between; 
  font-family: 'Gautami', sans-serif;  
  gap: 40px;
}

.left-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;  
  font-family: 'Gautami', sans-serif;  
}

.left-side img {
  width: 100%;
  max-width: 700px;
  padding: 20px;
}

.right-side {
  flex: 2;
  max-width: 700px;
}

.right-side h2 {
  font-size: 2rem;
  margin-bottom: 20px; 
  font-family: 'Gautami', sans-serif;   
  color: #1e3a8a; 
  font-weight: 700;
}

.right-side .highlight {
  color: #00bfa5;
}

.right-side p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px; 
  font-family: 'Gautami', sans-serif;   
}

.right-side ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px; 
  font-family: 'Gautami', sans-serif;  
}

.right-side ul li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px; 
  font-family: 'Gautami', sans-serif;  
}

/* 📱 Mobile View: Stack image on top, text below */
@media (max-width: 768px) {
  .why-vtag .container {
    flex-direction: column;
    text-align: center;
  }  
  
  .logo-img {
    height: 40px;
    width: auto;
    }
  .industries-wrapper {
  
    color: white;
    padding: 0rem 10px;
  }
  
  .vtag-text li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px; 
  font-family: 'Gautami', sans-serif;   
  color: black; 
  font-size: 16px;
}
  
  .intro {
    font-size: 16px;
    color: black;
}   

.benefits-list {
    font-size: 16px;
    color: black;
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.subtext {
    font-size: 16px;
    color: black;
    line-height: 1.75rem;
    font-family: 'Gautami', sans-serif;
}

  .highlight {
    color: #299899; /* text-teal-400 */ 
    font-size: 28px;
  }  
  .industries-highlight {
    color: #299899;
    font-family: 'Gautami', sans-serif;
    font-size: 28px;
} 
.vtag-text h2 {
  color: #299899;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 28px;
  font-family: 'Gautami', sans-serif;
}

  .left-side img {
    max-width: 100%;
  }

  .right-side {
    max-width: 100%;
  }

  .right-side h2 {
    font-size: 28px; 
    font-family: 'Gautami', sans-serif;  
  }
}

.text-blue-700 {
  --tw-text-opacity: 1;
  color: rgb(42 152 154);
}

  
  /* Responsive Layout */
  @media (min-width: 768px) {
      .logo-img {
    height: 60px; /* or any value you prefer */
    width: auto;  /* keeps aspect ratio */
  }     
  

  } 
  
  