html,body{
  scroll-behavior: smooth;
}

*{
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}


/* Special effect for Services tab */
    a.highliter {
      font-weight: bold;
      font-size: xx-large;
      animation: pulseGlow 2s infinite;
    }
    /* Glow animation */
    @keyframes pulseGlow {
      0%, 100% {
        text-shadow: 0 0 4px rgba(255,255,255,0.6), 0 0 8px rgba(255,255,255,0.4);
        transform: scale(1);
      }
      50% {
        text-shadow: 0 0 8px rgba(255,255,255,1), 0 0 16px rgba(255,255,255,0.8);
        transform: scale(1.5);
      }
    }


    
.video-header {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-header .z-2 {
  z-index: 2;
  position: relative;
}


/* Our Services Section */
.services-section {
  background-color: #ffffff;
  color: #003063; 
  margin-left: 50px;
  margin-right: 50px;
}

.services-heading {
  
  font-weight: 700;
  font-size: 3rem;
  line-height: 0.9;
}


.text-orange {
  color: #ff9914 ;
}

.text-blue {
  color: #003063;
}

.text-black {
  color: #003063;
}

.services-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

.container3 {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  padding: 40px;
  max-width: 1000px;
  margin: auto;
}

.card {
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card i {
  font-size: 40px;
}

.card h3 {
  font-size: 18px;
  margin: 0;
  line-height: 1.4;
}

.card a {
  background-color: white;
  color: #003063;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
}

.card.dark {
  background-color: #003063;
}

.card.light {
  background-color: #ff9914 ;
}

.show-all {
  text-align: center;
  margin: 20px 0 40px 0;
}

.show-all a {
  background-color: #ff9914 ;
  padding: 12px 30px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
}

.header-section {
  background-color: #003063;
}


.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: transparent;
  padding: 20px 0;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 50px;
  animation: scroll 20s linear infinite;
}

.logo-track img {
  height: 100px;
  width: auto;
  flex-shrink: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.tech-logo-marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  padding: 20px 0;
  position: relative;
}

.tech-logo-track {
  display: flex;
  align-items: center;
  gap: 50px;
  animation: scroll-tech-logos 15s linear infinite;
}

.tech-logo-track img {
  height: 100px;
  width: auto;
  flex-shrink: 0;
}


@keyframes scroll-tech-logos {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}




.text-orange {
  color:#ff9914 ;
}

h1 {
  font-size: 2.5rem;
}

.img1 {
  max-height: 80px;
  object-fit: contain;
}

.text-orange {
  color:#ff9914 ;
}

.text-dark-blue {
  color: #003063;
}

.partner-header h1 {
  font-size: 2.5rem;
}

.partner-header p {
  max-width: 800px;
  margin: auto;
  font-size: 1rem;
  color: #003063;
}

.partner-cards {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.partner-card {
  min-height: 100%;
  color: white;
}



.tech-card {
  background-color: #ff9914 ;
}

.biz-card {
  background-color: #003063;
}

.partner-card h3 {
  font-size: 1.8rem;
  line-height: 1.4;
}

.partner-card p {
  font-size: 1rem;
  line-height: 1.6;
}

.partner-card .btn {
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 4px;
}

.read-more {
  font-size: 0.95rem;
}

.text-orange {
  color:#ff9914 ;
}

.text-dark-blue {
  color: #003063;
}

.bg-dark-blue {
  background-color: #003063;
}

.news-section h2 {
  font-size: 2.3rem;
}

.news-section p {
  color: #003063;
}

.news-card {
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin: 5px;
 
}

.news-card img {
  width: 100%;
  height: 100%;
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
}

.news-title {
  background-color: rgba(2, 44, 67, 0.95); 
  color: #fff;
  padding: 15px 20px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 0 0 20px 20px;
  width: 120%;
  box-sizing: border-box;
  z-index: 2;
}

/* Section Title Styles */
.section-title {
  font-size: 2rem;
  font-weight: normal;
}

.text-orange {
  color:#ff9914 ;
}

.text-dark {
  color: #003063;
}

/*pop up*/





/* Custom Colors */
.bg-dark-blue {
  background-color: #003063;
}

.bg-orange {
  background-color: #ff9914 ;
}

.text-orange {
  color: #ff9914 ;
}


