body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: #333;
}

/* Navbar */
.custom-navbar {
  background: #FFFFFF; /* Normal default */
  font-family: 'Poppins', sans-serif;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Sticky / Scroll Navbar */
.custom-navbar.sticky {
  background: #0D47A1; /* Dark Blue */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Brand / Logo */
.custom-brand span {
  color: #0D47A1; /* Logo Dark Blue matches */
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.collapse {
  padding-right: 10rem;
}

/* Navbar Links */
.navbar-nav .nav-link {
  color: #022c6b;
  margin: 0 15px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .dropdown:hover .nav-link {
  color: #FFC107; /* Hover Amber */
}


/* Dropdown Menu */
.dropdown-menu {
  background: rgba(16, 42, 67, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border-radius: 12px;
  padding: 10px 0;
  min-width: 250px;
  z-index: 999;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  color: #f0f4f8;
  padding: 12px 20px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background-color 0.3s ease, color 0.3s ease, padding-left 0.3s;
  border-radius: 0;
}

.dropdown-item:hover {
  background-color: rgba(255, 193, 7, 0.15);
  color: #FFC107;
  padding-left: 28px;
}

.dropdown-item::before {
  content: '➤';
  display: inline-block;
  margin-right: 10px;
  color: transparent;
  transition: color 0.3s;
}

.dropdown-item:hover::before {
  color: #FFC107;
}

/* Navbar Toggler */
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%230D47A1' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


/* Sticky / Mobile Hamburger */
@media (max-width: 768px) {
  .navbar-toggler {
    border: 2px solid #0D47A1 !important;
    border-radius: 6px;
    padding: 6px 10px;
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.1), rgba(1, 1, 68, 0.2));
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}


.hero-content {
  position: relative;
  width: 100%;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
  overflow: hidden;
}

/* Continuous Scrolling Text */
.hero-content h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 2rem;
  margin: 15px 0;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 100vw;
}

/* Duplicate spans for seamless scrolling */
.hero-content h5 span {
  display: inline-block;
  padding-right: 4rem;
}

/* Scroll Animations */
.slide-left span {
  display: inline-block;
  animation: marquee-left 18s linear infinite;
}

.slide-right span {
  display: inline-block;
  animation: marquee-right 18s linear infinite;
}

/* Keyframes — move across full width */
@keyframes marquee-left {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

@keyframes marquee-right {
  0% { transform: translateX(-100vw); }
  100% { transform: translateX(100%); }
}

/* Buttons */
.hero-buttons {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
}

.primary-btn {
  background: #0D47A1;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 170, 255, 0.4);
}

.primary-btn:hover {
  background: #1976D2;
  transform: translateY(-2px);
  box-shadow: 0 5px 52px rgba(0, 170, 255, 0.6);
}

.secondary-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h5 {
    font-size: 1.1rem;
  }

  .hero-buttons {
    margin-top: 40px;
  }
}

/*  Body */

.trusted,
.services,
.value,
.industries,
.case-study{
  padding: 3rem 2rem 0;
  text-align: center;
}

.trusted{
  background: #f9f9f9;
  padding: 6rem 0;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555555;
  max-width: 600px;
  margin: 0 auto;
}

.trusted h2{
  font-size: 1.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #0D47A1;
  padding-bottom: 1rem;
}

.value h2{
  font-size: 1.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding-bottom: 1rem;
  color: #0D47A1;
}

.services h2{
  font-size: 1.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding-bottom: 1rem;
  color: #0D47A1;
}
/* What we do */
.services {
  padding: 4rem 2rem;
  text-align: center;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem auto 0 auto;
  max-width: 1200px;
}

.card {
  flex: 0 1 calc(33% - 2rem);
  max-width: calc(33% - 2rem);
  background-color: rgb(224, 224, 224);
  border-radius: 16px;
  padding: 0;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.4s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.card-content {
  padding: 1.5rem;
}

.card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #0D47A1;
}

.card p {
  color: #555555;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: 1.6px solid #1976D2;
}

.see-all {
  display: inline-block;
  margin-top: 3rem;
  font-weight: 500;
  text-decoration: none;
  color: #1a73e8;
  transition: color 0.3s ease;
}

.see-all:hover {
  color: #0d47a1;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .service-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90% !important;
    max-width: 90% !important;
    flex: none !important;
  }
}


/* Why CloudInnovex */
.value {
  padding: 4rem 2rem;
  text-align: center;
  background: #f9f9f9;
  position: relative;
}

.value-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin: 2rem;
}

.value-item {
  background: rgb(255, 255, 255);
  border-radius: 16px;
  padding: 2rem;
  max-width: 320px;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.value h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #0D47A1;
}

.value-item p {
  color: #555555;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.value-item img {
  width: 70px;
  margin-bottom: 1rem;
  padding: 0.75rem;
}

/* industries */
.industries {
  padding: 5rem 2rem;
  text-align: center;
}

.industry-grids {
  margin: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.industry-cards {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 16px;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.industry-cards::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.industry-cards:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.industry-cards::after {
  content: attr(class);
  display: none;
}

.industry-cards.fintech {
  background-image: url("../img/industry-fintech.jpg");
}

.industry-cards.healthcare {
  background-image: url("../img/2149611211.jpg");
}

.industry-cards.retail {
  background-image: url("../img/37849.jpg");
}

.industry-cards.others {
  background-image: url("../img/120776.jpg");
}

.industry-cards span {
  z-index: 2;
}

.industry-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.industry-grid div {
  background: white;
  border: 1px solid #ddd;
  padding: 1rem;
  width: 200px;
  border-radius: 8px;
}

/* Footer */
.custom-footer {
  color: #dce6f7;
  padding: 40px 20px 20px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-brand img {
  height: 90px;
  margin-bottom: 10px;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 0.6rem;
  max-width: 240px;
  color: #555555;
}

.footer-links,
.footer-contact,
.footer-social {
  flex: 1;
  min-width: 200px;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  margin-bottom: 15px;
  color: #022c6b;
}

.footer-links a,
.footer-contact p,
.footer-social a {
  display: block;
  color: #555555;
  margin-bottom: 8px;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #FFC107;
}

.footer-social a {
  display: inline-block;
  font-size: 1.2rem;
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  font-size: 0.85rem;
  color: #7d7d7d65;
}

.footer-bottom a {
  color: #8faecf;
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom a:hover {
  color: #00d4ff;
}


.hamburger {
  display: none;
  cursor: pointer;
}


/* Services */
.hero-solutions {
  background-image: url('../img/108502.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay .container {
  text-align: left;
}

.hero-title {
  max-width: 600px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: .9;
  margin-bottom: 20px;
  margin-left: -30px;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  max-width: 600px;
  color: #d3e1f0;
  font-size: 1.3rem;
  margin-left: -30px;
  margin-bottom: 3px;
  opacity: 0.95;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .hero-overlay .container {
    text-align: center;
  }

  .hero-title,
  .hero-subtitle {
    margin-left: 0;
  }
}

/* Services cards*/
.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem auto 0 auto;
  margin-bottom: 3rem;
  max-width: 1200px;
}

.solutions-section h2{
  font-size: 1.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding-top: 10rem;
  color: #0D47A1;
}

.solutions-section p{
  max-width: 600px;
  margin: 0 auto;
  color: #555555;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
/* Services methodology */
.cloud-process-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.cloud-process-bg {
  background-image: url('../img/456324.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 4rem 2rem;
}

/* Section title */
.section-title {
  font-size: 2.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

/* Card container */
.cloud-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/* Glass effect cards */
.cloud-card {
  flex: 0 1 calc(33.333% - 2rem);
  max-width: calc(33.333% - 2rem);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cloud-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* Card content */
.card-content {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Step title */
.step-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: white;
}

/* Responsive: Tablet */
@media (max-width: 992px) {
  .cloud-card {
    flex: 0 1 calc(50% - 2rem);
    max-width: calc(50% - 2rem);
  }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .cloud-card {
    flex: 0 1 100%;
    max-width: 100%;
  }

  .section-title {
    font-size: 2rem;
  }

  .cloud-process-bg {
    background-attachment: scroll;
  }
}


/*services contact us*/
.contact-cta {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  margin-bottom: 5rem;
  text-align: center;
  color: white;
  overflow: hidden;
}

.contact-cta .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 10, 40, 0.6);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
  animation: fadeInUp 1s ease-in-out;
}

.cta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #0D47A1;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
  box-shadow: 0 0 20px rgba(35, 148, 218, 0.6);
}

.cta-btn:hover {
  background: #1976D2;
  box-shadow: 0 0 30px rgba(35, 148, 218, 0.8);
}

.wht-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #0D47A1;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
  margin-top: 20px;
}

.wht-btn:hover {
  background: #1976D2;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Animation */
@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/*About section*/
.hero-about-section {
  background-image: url('../img/454944.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-about-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6); /* overlay */
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  text-align: left;
  margin-left: -756px;
}

.about-hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 0.9;
  margin-bottom: 20px;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}

.about-hero-content p {
  color: #d3e1f0;
  font-size: 1.3rem;
  margin-bottom: 3px;
  opacity: 0.95;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

/* about.css */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
  color: #222;
}

.about-us-topic h2{
  font-size: 1.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding-top: 10rem;
  color: #0D47A1;
}

.about-us-topic p{
  max-width: 600px;
  margin: 0 auto;
  color: #555555;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.a-card{
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.c-card{
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.c-card-content{
  background: white;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.c-card-content h3{
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #0D47A1;
  font-size: 1.5rem;
}

.c-card-content h5{
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #0D47A1;
  font-size: 1.2rem;
  padding-top: 2rem;
}

.c-card-content h6{
  line-height: 1.4;
  color: #555555;
}

.a-card-content{
  background: white;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #0D47A1;
}

.a-card-content h3{
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #0D47A1;
  font-size: 1.5rem;
}

.a-card-content p{
  line-height: 1.6;
  color: #555555;
  margin-top: 1rem;
}

/* Ethos Section */
.ethos-section {
  background: url('../img/1336.jpg') center/cover fixed;
  padding: 5rem 2rem;
  color: white;
}

.ethos-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.ethos-card.glass-card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  width: 250px;
  transition: transform 0.3s ease;
}

.ethos-card:hover {
  transform: translateY(-10px);
}

.ethos-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #6ee7b7;
}

/* Leadership Section */
.team-section {
  padding: 4rem 2rem;
  background: white;
  text-align: center;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.team-member {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  width: 220px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: scale(1.05);
}

.team-member img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

/* Approach Section */
.approach-section.enhanced-approach {
  background: linear-gradient(to right, #0d1b2a, #1b263b);
  padding: 4rem 2rem;
  color: white;
}

.approach-section.enhanced-approach p{
  margin-top: 1rem;
  text-align: justify;
}

.space{
  padding: 1.5rem;
}

/* Core Values Section */
.core-values-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 5rem 2rem;
  text-align: center;
  background-color: rgb(255, 255, 255);
}

.core-values-section h2{
  font-size: 1.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #0D47A1;
}

.value-card p{
  max-width: 600px;
  margin: 0 auto;
  color: #555555;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.value-card h4{
  font-size: 1.1rem;
  font-weight: bold;
  color: #0D47A1;
}

.values-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.value-card {
  border-radius: 15px;
  padding: 2rem;
  width: 250px;
}

.value-card img {
  width: 70px;
  margin-bottom: 1rem;
  padding: 0.75rem;
}


/*about end*/

/*Contact page*/

/* Hero Section */
.hero-contact {
  background: url('../img/39249.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-contact .overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.hero-about h1 {
  text-align: start;
  max-width: 600px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: .9;
  margin-bottom: 20px;
  margin-left: -550px;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-about p{
  max-width: 600px;
  color: #d3e1f0;
  font-size: 1.3rem;
  margin-left: -519px;
  margin-bottom: 3px;
  text-align: start;
  opacity: 0.95;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

/* Hero Section end */

/* Contact Section */
.contact-section {
  padding: 5rem 1rem;
  color: #222;
  font-family: 'Poppins', sans-serif;
}

.contact-section h2 {
  text-align: center;
  color: #003366;
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.subheading {
  text-align: center;
  margin-bottom: 3rem;
  color: #555;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 800px;
  margin: auto;
  animation: fadeIn 1.2s ease-in-out;
}

.contact-form {
  flex: 1 1 55%;
  background: #ffffff;
  padding: 2rem 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.contact-info {
  flex: 1 1 35%;
  padding: 2rem;
  background: #d9f0fa;
  border-radius: 15px;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info h3,
.contact-info h4 {
  margin-top: 1.5rem;
  color: #005288;
  font-size: 1.2rem;
}

.contact-info i {
  margin-right: 8px;
  color: #14b8a6;
}

.contact-info p {
  line-height: 1.6;
}

.contact-info p a {
  color: #007acc;
  text-decoration: none;
}

.contact-info p a:hover {
  text-decoration: underline;
}

.social-links a {
  display: block;
  margin-top: 0.5rem;
  color: #005288;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: #003366;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #003366;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #007acc;
  outline: none;
}

.form-submit {
 width: 100%;
  margin-top: 1.2rem;
  background-color: #3124ca;
  color: #fff;
  padding: 13px 5px;
  border-radius: 0.375rem;
}

.form-submit:hover {
  background: #005fa3;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-form,
  .contact-info {
    width: 100%;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

/* ========================================
   NEW ROTATING BANNER STYLES
======================================== */

/* HERO BASE - Update existing */
.hero-fullscreen {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background matching logo color - Dark Navy */
 .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a2332 0%, #2c3e50 50%, #34495e 100%);
  z-index: 1;
  animation: gradientShift 15s ease infinite;
  background-size: 200% 200%;
} 

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.05;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.08;
  }
}

/* Overlay with pattern */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(100, 181, 246, 0.1) 0%, transparent 50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Road lines animation */
.road-lines {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 2;
  overflow: hidden;
}

.road-line {
  position: absolute;
  bottom: 60px;
  width: 100px;
  height: 5px;
  background: rgba(255, 193, 7, 0.3);
  animation: roadMove 2s linear infinite;
}

.road-line:nth-child(1) { left: 0%; animation-delay: 0s; }
.road-line:nth-child(2) { left: 20%; animation-delay: 0.4s; }
.road-line:nth-child(3) { left: 40%; animation-delay: 0.8s; }
.road-line:nth-child(4) { left: 60%; animation-delay: 1.2s; }
.road-line:nth-child(5) { left: 80%; animation-delay: 1.6s; }

@keyframes roadMove {
  0% {
    transform: translateX(0) scaleX(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-200px) scaleX(0.5);
    opacity: 0;
  }
}

/* Content area */
.hero-content {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 4;
}
@keyframes fadeInDownLogo {
  0% {
    opacity: 0;
    transform: translate(-50%, -30px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate(-50%, -30px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate(-50%, 30px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* Banner container for rotating slogans */
.banner-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 4;
}

/* Individual banner slide */
.banner-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.banner-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Slogan positioning - 2 slogans per banner - centered */
.slogan {
  position: absolute;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.6);
  color: #fff;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 90%;
  max-width: 1200px;
}

/* Banner 1 - Centered Top and Bottom */
.banner-slide:nth-child(1) .slogan:nth-child(1) {
  top: 30%;
  color: #FFC107;
  animation: fadeInDown 1s ease-out;
}

.banner-slide:nth-child(1) .slogan:nth-child(2) {
  top: 50%;
  color: #fff;
  animation: fadeInUp 1s ease-out 0.3s both;
}

/* Banner 2 - Centered Top and Bottom */
.banner-slide:nth-child(2) .slogan:nth-child(1) {
  top: 30%;
  color: #FFC107;
  animation: fadeInDown 1s ease-out;
}

.banner-slide:nth-child(2) .slogan:nth-child(2) {
  top: 50%;
  color: #fff;
  animation: fadeInUp 1s ease-out 0.3s both;
}

/* Banner 3 - Centered Top and Bottom */
.banner-slide:nth-child(3) .slogan:nth-child(1) {
  top: 30%;
  color: #FFC107;
  animation: fadeInDown 1s ease-out;
}

.banner-slide:nth-child(3) .slogan:nth-child(2) {
  top: 50%;
  color: #fff;
  animation: fadeInUp 1s ease-out 0.3s both;
}

/* Buttons - positioned at bottom center */
.hero-buttons {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 5;
}

.primary-btn {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  background: #FFC107;
  color: #1a2332;
  box-shadow: 0 5px 20px rgba(255, 193, 7, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeInButton 2s ease-out;
}

@keyframes fadeInButton {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.primary-btn:hover {
  background: #FFD54F;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 193, 7, 0.7);
}

/* Decorative elements */
.floating-icon {
  position: absolute;
  font-size: 3rem;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}

.icon-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.icon-3 {
  bottom: 35%;
  right: 20%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(10deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .slogan {
    font-size: 1.4rem !important;
    letter-spacing: 1px;
    max-width: 95% !important;
  }

  .banner-slide .slogan:nth-child(1) {
    top: 28% !important;
  }

  .banner-slide .slogan:nth-child(2) {
    top: 48% !important;
  }

  .hero-logo {
    width: 120px;
    top: 3%;
  }
 
 .logo-watermark {
    width: 300px;
  }

  .hero-buttons {
    bottom: 5%;
  }

  .primary-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .floating-icon {
    font-size: 2rem;
  }
}

/* ========================================
   NAVBAR STYLES
======================================== */

/* Navbar Base */
.custom-navbar {
  background: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  z-index: 9999;
  padding: 0.5rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  min-height: 80px;
  display: flex;
  align-items: center;
}

/* Navbar Logo - Static, no animations */
.navbar-logo {
  height: 130px;
  width: auto;
  border-radius: 10px;
  /* background: rgba(26, 35, 50, 0.05); */
  padding: 8px;
  transition: transform 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

/* Brand Container */
.custom-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0;
}

.custom-brand:hover {
  text-decoration: none;
}

/* Navbar Items Container */
.navbar-collapse {
  display: flex;
  align-items: center;
  min-height: 130px;
}

/* Navbar Links */
.navbar-nav {
  display: flex;
  align-items: center;
  margin: 0;
}

.navbar-nav .nav-item {
  display: flex;
  align-items: center;
  height: 60px;
}

.navbar-nav .nav-link {
  color: #022c6b;
  margin: 0 15px;
  padding: 8px 16px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  height: 100%;
  font-weight: 500;
  font-size: 1rem;
}

.navbar-nav .nav-link:hover {
  color: #FFC107;
  transform: translateY(-2px);
}

/* Active link underline */
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #FFC107;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
}

/* Sticky Navbar */
.custom-navbar.sticky {
  background: #0D47A1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.custom-navbar.sticky .nav-link {
  color: #ffffff;
}

.custom-navbar.sticky .nav-link:hover {
  color: #FFC107;
}

.custom-navbar.sticky .navbar-logo {
  background: rgba(255, 255, 255, 0.1);
}

/* Navbar Toggler (Mobile) */
.navbar-toggler {
  border: 2px solid #0D47A1;
  border-radius: 6px;
  padding: 6px 10px;
  height: 45px;
  display: flex;
  align-items: center;
}

.navbar-toggler:focus {
  box-shadow: none;
  border-color: #FFC107;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%230D47A1' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  width: 25px;
  height: 25px;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .custom-navbar {
    min-height: 70px;
    padding: 0.5rem 1rem;
  }

  .navbar-logo {
    height: 120px;
  }

  .navbar-collapse {
    background: #ffffff;
    margin-top: 10px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-height: auto;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .navbar-nav .nav-item {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #f0f0f0;
  }

  .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }

  .navbar-nav .nav-link {
    margin: 0;
    padding: 12px 15px;
    width: 100%;
    height: auto;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .custom-navbar.sticky .navbar-collapse {
    background: rgba(13, 71, 161, 0.98);
  }

  .custom-navbar.sticky .nav-item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 768px) {
  .navbar-logo {
    height: 120px;
  }

  .custom-navbar {
    min-height: 65px;
  }
}
