* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #ffffff;
}

.navbar{
    width: 100%;
    height: 14vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgb(59, 58, 58);
    box-shadow: 4px 3px 10px rgb(64, 116, 149);

    /* background:rgb(224, 116, 39); */
}

.navbar nav{
    width: 100%;
    display: flex;
    justify-content:space-around;
    align-items: center;
}

.logo{
    width: 48px;
    /* height: 30px; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}


.logo img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

nav ul{
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul li{
    list-style: none;
    margin: 8px;
}

ul li a{
    text-decoration: none;
    color: wheat;
    font-family: Arial, Helvetica, sans-serif;
    font-size:90%;
    font-weight: bold;
}

ul li::after{
    content: '';
    position: relative;
    height: 3px;
    width: 0%;
    bottom: -4px;
    background: red;
    display: block;
    transition: 0.5s;
}

 ul li:hover::after{
    width: 100%;
}

ul li a:hover{
    color: orangered;
}

nav .fa{
    display: none;
}

.headerr{
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    animation-iteration-count:infinite;
    animation-play-state:running;
    animation-timing-function:ease-in-out; 
}

.header{
    position: relative;
}

/* responsive==================================================== */

@media(max-width:600px){
    .navbar nav{
        padding: 0px 25px 0px 70px;
        display: flex;
        justify-content: space-between;
    }

    .header{
        overflow: hidden;               
    }
    
    .nav-links ul li{
        display: block;
    }

    .nav-links ul li a{
        color:burlywood;
        font-weight: bold;
        font-family: Georgia, 'Times New Roman', Times, serif;
    }

    .nav-links{
        position: absolute;
        height: 80vh;
        width: 200px;
        top: 0%;
        right: -200px;
        text-align:left;
        z-index: 2;
        background-color:rgb(79, 79, 74);
        transition: 0.2s;
    }


    nav .fa{
        display: block;
        margin: 10px;
        color:rgb(223, 188, 138);
        font-size: 33px;
        font-weight: bolder;
        cursor: pointer;
    }
    nav .fa:hover{
        transform: scale(1.1);
        color: red;
    }

    .nav-links ul{
        padding: 32px;
        display: flex;
        flex-direction: column;
    }

    .nav-links ul li::after{
        content: '';
        position: relative;
        height: 3px;
        width: 0%;
        bottom: -4px;
        background: red;
        display: block;
        transition: 0.5s;
    }
    
    .nav-links ul li:hover::after{
        width: 100%;
    }
    
    .nav-links ul li a:hover{
        color: orangered;
    }

    .header .info{
        max-width: 62%;
        left: 5%;
        position: absolute;
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-direction: column;
    }

    .header .info p{
        font-size: medium;
    }
}


.contact-container {
  padding: 40px 5%;
  max-width: 1200px;
  margin: auto;
}

/* Contact Form Section */
.contact-form-section {
  background: linear-gradient(to right, #141e30, #243b55);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.contact-form-section h2 {
  color: #00ffff;
  margin-bottom: 20px;
  font-size: 1.8rem;
  text-align: center;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
}

form textarea {
  resize: vertical;
  min-height: 100px;
}

form button {
  background-color: #00ffff;
  color: #1c1c1c;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1rem;
  width: 100%;
}

form button:hover {
  background-color: #00caca;
}

/* Info + Map Section */
.info-map-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: linear-gradient(to right, #232526, #414345);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.info,
.map {
  flex: 1 1 48%;
  min-width: 280px;
}

.info h3 {
  color: #00ffff;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.info p {
  margin: 5px 0;
  color: #e0e0e0;
  line-height: 1.5;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .info-map-section {
    flex-direction: column;
    padding: 20px;
  }

  .contact-form-section,
  .info-map-section,
  .info,
  .map {
    padding: 20px;
    flex: 1 1 100%;
  }

  .map iframe {
    height: 250px;
  }

  form button {
    font-size: 1rem;
  }
}

@media (max-width:600px) {
    html,body{
        overflow-x: hidden;
    }
    /* .box */
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0 20px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-section p,
.footer-section ul {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li i {
    margin-right: 10px;
    color: #fff;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 10px;
}
.social-icons li{
    list-style: none;
}

.social-icons a {
    color: #ccc;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444;
    margin-top: 20px;
    font-size: 14px;
    color: #ccc;
}
