/* === Global Styles === */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fefefe;
  color: #333;
}

h2 {
  font-size: 2rem;
  color: #002147;
  text-align: center;
  margin-bottom: 30px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* === Header Background === */
.site-header {
  background-image: url('back.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  color: white;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* === Navbar === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: rgba(0, 33, 71, 0.85);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #f4b400;
}

.logo img {
  height: 60px;   /* Adjust logo size */
  width: auto;    /* Keep proportions */
  display: block;
}
.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}


.nav-links a {
  color: white;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 5px 10px;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #f4b400;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #f4b400;
}

.nav-links a:hover::after {
  width: 100%;
}

.quote-btn {
  background-color: #f4b400;
  color: #002147;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.quote-btn:hover {
  background-color: #e0a800;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

/* === Hero Content === */
.hero-content {
  text-align: center;
  padding: 100px 20px;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #f4f4f4;
}

.cta-btn {
  background-color: #f4b400;
  color: #002147;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #e0a800;
}

/* === Responsive Navbar === */
@media (max-width: 768px) {
.nav-links {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 33, 71, 0.95);
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.nav-links.active {
    display: flex;
}

.menu-toggle {
    display: block;
}

.quote-btn {
    margin-top: 10px;
}
}

/* === Services Section === */
.services-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
}

.service-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card i {
  color: #f4b400;
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.service-card h3 {
  color: #002147;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
}

/* === Featured Projects Section === */
.projects-section {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.projects-wrapper {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  max-width: 1000px;
  margin: auto;
}

.swiper-slide {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px;
}

.swiper-slide img {
  width: 45%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.project-info {
  width: 45%;
  text-align: left;
}

.project-info h3 {
  color: #f4b400;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.project-info p {
  font-size: 1rem;
}

@media (max-width: 768px) {
.swiper-slide {
    flex-direction: column;
}

.swiper-slide img,
.project-info {
    width: 100%;
}

.project-info {
    text-align: center;
}
}

/* === Footer === */
.site-footer {
  background-color: #002147;
  color: white;
padding: 40px 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: bold;
}

.footer-links a {
  color: white;
  margin: 0 10px;
  font-weight: 500;
}

.footer-contact p {
  margin: 5px 0;
}

.footer-contact i {
  margin-right: 8px;
}

.footer-bottom {
  font-size: 0.9rem;
  border-top: 1px solid #ffffff33;
  padding-top: 10px;
}
 
 /*=====contact us====*/
 .form-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

form input, form textarea {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background: linear-gradient(to right, #00bfff, #004d99);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

form button:hover {
  background: linear-gradient(to right, #004d99, #00bfff);
}.info-card,.service-card {
  background: #fff;
  border-radius: 12px;
 box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  padding: 20px;
  max-width: 300px;
  transition: transform 0.3s ease;
}

.info-card:hover,.service-card:hover {
  transform: translateY(-10px);
}

.info-card img,.service-card img {
  width: 60px;
  margin-bottom: 15px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1 1 calc(33.333% - 20px); /* 3 per row with spacing */
  min-width: 200px;
}

.phone-combined.phone-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
}

.country-select {
  display: flex;
  align-items: center;
  gap: 6px;
}


.phone-input {
  display: flex;
  align-items: center;
}


#country-code {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
  min-width: 30px; /* Adjust the minimum width as needed */
  max-width: 70px; /* Optional: set a maximum width */
}


#phone {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 0 5px 5px 0;
}

.flag-icon {
  width: 20px;
  height: 15px;
  margin-right: 5px;
}

.info-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  padding: 25px;
  max-width: 320px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-card:hover {
  transform: translateY(-10px);
}

.info-card img {
  width: 60px;
  margin-bottom: 20px;
  align-self: center;
}

.info-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #004080;
}

.info-card p {
  text-align: justify;
  line-height: 1.8;
  letter-spacing: 0.5px;
  word-spacing: 1px;
  margin-bottom: 10px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
}

.form-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.form-group label {
  width: 80px;
  font-weight: bold;
}

.form-group input {
  flex: 1;
  min-width: 120px;
  padding: 6px;
}

#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.heroSwiper img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 10px;
}
#formStatus {
  margin-top: 10px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.section {
  padding: 60px 20px;
  text-align: center;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}                                   