body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0d0d0d;
    color: white;
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: black;
}
nav a.active {
  color: #00ccff;
  font-weight: 1000;
  
}

.logo {
    font-size: 20px;
    font-weight: bold;
}

.menu a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

.menu a:hover {
    color: gray;
}

/* HERO SECTION */
.hero {
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url("images/photo.JPEG") no-repeat center/cover;
    text-align: center;
}

.hero h1 {
    font-size: 40px;
    background: rgba(0,0,0,0.5);
    padding: 5px;
}

.hero p {
    font-size: 18px;
}

/* Conatct HERO SECTION */
.hero1 {
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url("images/photo5.JPEG") no-repeat center/cover;
    text-align: center;
}

.hero1 h1 {
    font-size: 40px;
    background: rgba(0,0,0,0.5);
    padding: 5px;
}

.hero1 p {
    font-size: 18px;
}

/* CONTENT */
.content {
    padding: 40px;
    text-align: center;
    height: 450px;
}
.content h1 {
    margin-bottom: 20px;
}

.content h2 {
    margin-bottom: 10px;
    font-size: 35px;
}
.content p {
    margin-bottom: 10px;
    font-size: 17px;
    max-width: 900px;
    margin: 10px auto;
    line-height: 1.6;
}

/* CONTENT1 */
.content1 {
    padding: 40px;
    text-align: center;
    height: 800px;
}
.content1 h1 {
    margin-bottom: 20px;
}

.content1 h2 {
    margin-bottom: 10px;
    font-size: 35px;
}
.content1 p {
    margin-bottom: 10px;
    font-size: 17px;
    max-width: 900px;
    margin: 10px auto;
    line-height: 1.6;
}



.services {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background-color: #1a1a1a;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
}

.card h2 {
    margin-bottom: 10px;
}

.card:hover {
    transform: scale(1.05);
    transition: 0.3s;
}


.card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}




.contact-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-card {
    background-color: #1a1a1a;
    padding: 25px;
    width: 220px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333;
}

.contact-card i {
    font-size: 30px;
    margin-bottom: 10px;
    color: white;
}

.contact-card h3 {
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 14px;
    color: #ccc;
}

.contact-card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}


.btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    color: black;
    text-decoration: none;
    border-radius: 30px;
    font-size: 20px;
    font-weight: bold;
    transition: 0.3s;
    margin-top: 100px;
    margin-left: 20px;
    margin-right: 20px;
}

/* Hover effect */
.btn:hover {
    background: linear-gradient(45deg, #aeaeae, #ffffff);
    transform: scale(1.05);
}


/* Footer */
footer {
  background: #222222;
  padding: 30px 20px;
  font-family: 'inter', sans-serif;
  text-align: center;
  gap: 20px;
  color: white;
  flex-shrink: 0;
  border-top: 30px solid #000000;
}

.footer-logos {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.footer.logo {
  max-height: 60px;
  object-fit: contain;
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  font-size: 12px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-contact i {
  color: #38bdf8;
  font-size: 13px;
}

.footer-contact a:hover {
  color: white;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icon {
  font-size: 1.0rem;
  color: white;
  transition: transform 0.3s, color 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  color: #38bdf8;  /* highlight color */
  transform: scale(1.2);
}

footer p {
  margin-top: 20px;
  font-size: 10px;
  font-weight: lighter;
}
.footer-copy {
  font-size: 10px;
  opacity: 0.8;
}
.footer-credit {
  margin-top: 6px;
  font-size: 11px;
  opacity: 0.9;
}
.footer-credit span {
  color: #77c0ff;
  font-weight: 500;
}

.footer-credit i {
  color: #e11d48;
  font-size: 12px;
  margin: 0 3px;
}
 