html {
  scroll-behavior: smooth;
}
/* Logo styling */

/* Logo */
.logo {
  margin: 0; /* no margin around logo */
  padding: 0; /* no padding around logo */
}
.logo img {
  max-height: 55px; /* fits inside 75px header */
  /*  width: auto; keeps aspect ratio */
  max-width: 200px; /* optional: prevents logo from stretching too wide */
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Header */
header {
  height: 45px;
  background: #035076;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

/* Logo placeholder 
.logo {
  width: 75px;
  height: 50px;
  background: #035076;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
}*/

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 5px;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  transition: background 0.3s;
}

nav ul li a:hover {
  background: #fff;
  border-radius: 0px;
  color: #035076;
}

/* Dropdown */
nav ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: #035076;
  display: none;
  min-width: 150px;
  flex-direction: column;
  z-index: 1000;
}

nav ul li ul li a {
  padding: 5px;
}

nav ul li:hover ul {
  display: flex;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    height: auto;
    padding: 10px;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  nav ul li a {
    text-align: center;
    width: 100%;
  }
}

/* Footer */
footer {
  background: #035076;
  color: #fff;
  padding: 40px 20px;
  margin-top: 40px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin: 20px;
}

.footer-column h3 {
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 2px solid #555;
  padding-bottom: 5px;
}

.footer-column p {
  margin: 5px 0;
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 15px;
  font-size: 13px;
  color: #aaa;
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    margin: 10px 0;
    text-align: center;
  }
}

/* Social media section */
.footer-social {
  text-align: left;
  margin-top: 20px;
}

.footer-social a {
  color: #444; /* LinkedIn blue */
  text-decoration: none;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #fff; /* highlight on hover */
}

.footer-social i {
  font-size: 22px;
}

/* Hero Section */
.hero {
  width: 100%;
  height: 400px; /* adjust height */
  overflow: hidden;
  position: relative;
}

.slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide-track {
  display: flex;
  width: calc(400px * 6); /* width = slide width × number of slides */
  animation: scroll 18s linear infinite;
}

.slide {
  width: 100%;
  flex: 0 0 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills box */
  object-position: center; /* adjust which part is visible */
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  33% {
    transform: translateX(-100%);
  }
  66% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}

/*****AboutUS PAGE STYLING**************/
.about-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  max-height: auto;
}

.about-title {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  border-left: 5px solid #035076;
  padding-left: 15px;
  margin-bottom: 25px;
}

.about-container p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.about-container strong {
  color: #035076;
}

.about-tagline {
  margin-top: 10px;
  font-size: 22px;
  color: #035076;
  font-weight: 600;
  text-align: center;
  font-style: italic;
}

.about-tagline-div {
  border: 2px solid #035076;
  border-radius: 8px;
  padding: 15px;
  margin-top: 30px;
}

.main {
  margin-bottom: 0;
  padding-bottom: 0;
}

.seperator-line {
  height: 2px;
  width: 800px;
  background-color: #035076;
  margin-top: 25px;
  margin-left: 200px;
}

.seperator-tilter {
  width: 150px;
  height: 50px;
  margin-left: 191px;
  background-color: #035076;
  transform: skewX(-20deg); /* Tilt along width */
  color: white;
  align-items: center;
  display: flex;
  justify-content: center;
  font-family: sans-serif;
}

.vision-section p {
  margin-top: 10px;
  margin-left: 350px;
  width: 600px;
  border: 2px;
  border-radius: 8px;
  background-color: whitesmoke;
  color: black;
  font-family: Lato;
  font-style: oblique;
  font-size: 1.3rem;
  text-align: justify;
}

.mission-section p {
  margin-top: 10px;
  margin-left: 350px;
  width: 600px;
  border-radius: 8px;
  background-color: whitesmoke;
  color: black;
  font-family: Lato;
  font-style: oblique;
  font-size: 1.3rem;
  text-align: justify;
}
