*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Poppins', sans-serif;
}

body{
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 26px;
  color: #5a5f61;
}

/* Navbar container */
.navbar {
  background: #003366;
  color: white;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

/* Logo with hover effect */
.logo {
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
  animation: bounceIn 1s ease-in-out;
}
.logo:hover {
  transform: scale(1.1);
  text-shadow: 0 0 10px #ffcc00, 0 0 20px #ffcc00;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}
.nav-links li {
  position: relative;
}
.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

/* Hover underline animation */
.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: #ffcc00;
  transition: width 0.3s ease;
}
.nav-links li a:hover::after {
  width: 100%;
}
.nav-links li a:hover {
  color: #ffcc00;
  transform: translateY(-2px);
}

/* Mobile menu */
.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #003366;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    padding: 20px;
  }
  .nav-links.active {
    display: flex;
  }
  .menu-icon {
    display: block;
  }
}

/* Logo entry animation */
@keyframes bounceIn {
  0% {
    transform: scale(0.5) translateY(-30px);
    opacity: 0;
  }
  60% {
    transform: scale(1.2) translateY(10px);
    opacity: 1;
  }
  100% {
    transform: scale(1) translateY(0);
  }
}



/* Slider Container */
.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Slider Styling */
.slider {
  width: 100%;
  height: 600px;
  position: relative;
}

/* Slides */
.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.3;
  transition: opacity 0.5s ease-in-out;
  object-fit: cover;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Navigation Arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px;
  cursor: pointer;
  user-select: none;
  z-index: 2;
  border-radius: 5px;
}
.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
.prev {
  left: 20px;
}
.next {
  right: 20px;
}



/* Why Us Section */
.why-us {
  background: #f8f8f8;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #003366;
}

/* Main Layout */
.why-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Image Section */
.why-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
}

/* Text Section */
.why-text {
  flex: 1;
  max-width: 500px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  animation: fadeIn 1s ease-in-out;
}

.why-text:hover {
  transform: translateY(-10px);
}

.why-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  text-align: justify;
  letter-spacing: 0.5px;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .why-content {
    flex-direction: column;
    gap: 30px;
  }

  .section-title {
    font-size: 28px;
  }

  .why-text p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .why-text {
    padding: 15px;
  }

  .section-title {
    font-size: 24px;
  }

  .why-text p {
    font-size: 15px;
  }
}

.services-section {
  padding: 60px 20px;
  background: #f4f4f4;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #003366;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.7s ease-in-out;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 70px;
  height: auto;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.service-card img:hover {
  transform: scale(1.2) rotate(5deg);
}

.service-card h3 {
  font-size: 20px;
  color: #003366;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

/* Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


 /* custom Brand title */

 .custom-brand-title {
  text-align: center;
  padding: 60px 20px 30px;
  background: linear-gradient(to right, #f0f8ff, #ffffff);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  position: relative;
}

.custom-brand-title h1 {
  font-size: 36px;
  font-weight: bold;
  color: #003366;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.custom-brand-title p {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.brand-icon {
  width: 60px;
  height: auto;
  margin-bottom: 15px;
  animation: bounce 2s infinite;
}

/* Bounce animation for the icon */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Fade-in animation */
.animate-fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease-in-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Section Layout */
  .brand-section {
    padding: 50px 20px;
    background: #f9f9f9;
    text-align: center;
  }

  .custom-brand-title {
    margin-bottom: 40px;
  }

  .custom-brand-title h1 {
    font-size: 32px;
    color: #003366;
    margin: 15px 0 10px;
  }

  .custom-brand-title p {
    font-size: 18px;
    color: #555;
  }

  .brand-icon {
    width: 60px;
    animation: bounce 2s infinite;
  }

  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
  }

  .animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s ease-in-out forwards;
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Brand Slider */
  .brand-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: transparent;
  }

  .brand-track {
    display: flex;
    width: calc(200px * 18);
    animation: scroll 10s linear infinite;
  }

  .brand-slider:hover .brand-track {
    animation-play-state: paused;
  }

  .brand-track img {
    width: 140px;
    height: auto;
    margin: 0 25px;
    filter: grayscale(0);
    transition: filter 0.3s ease;
    background: transparent;
    border: none;
  }

  .brand-track img:hover {
    filter: grayscale(0%);
  }

  @keyframes scroll {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .brand-track img {
      width: 90px;
      margin: 0 15px;
    }

    .custom-brand-title h1 {
      font-size: 26px;
    }

    .custom-brand-title p {
      font-size: 16px;
    }
  }





/* footer */

/* Modern Footer Styling */
.modern-footer {
  background-color: #101820;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-brand {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #f2c94c;
}

.footer-logo {
  width: 50px;
  margin-right: 10px;
  animation: floatLogo 3s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.footer-section h3 {
  margin-bottom: 15px;
  color: #f2c94c;
  font-size: 1.3rem;
}

.footer-section p, .footer-section ul li a {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #f2c94c;
}

.footer-contact i {
  color: #f2c94c;
  margin-right: 8px;
}
.footer-contact p a {
  color: white;
  text-decoration: none;
}


.social-icons a {
  font-size: 1.8rem;
  margin-right: 15px;
  color: #ccc;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #f2c94c;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px; /* thoda gap dono side se */
  background-color: #003366; /* optional background */
  color: white;
}

.footer-bottom .left,
.footer-bottom .right {
  margin: 0;
}
.footer-bottom .right a {
  color: white;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand {
    font-size: 1.5rem;
  }

  .footer-logo {
    width: 40px;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    width: 35px;
  }

  .footer-section h3 {
    font-size: 1.1rem;
  }

  .footer-section p, .footer-section ul li a {
    font-size: 0.88rem;
  }
}






