* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
  letter-spacing:1px ;
}

body {
  line-height: 1.6;
  background-color: #ddeeff;
}

.navbar {
  background-color: #ffffff;
  color: #000000;
  padding: 10px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 1px 0px 15px rgba(0, 0, 0, 0.616);
  width: 100%;
  position: fixed;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img{
    height: 50px;
    width: 50px;
    border-radius: 100px;
}

.logo h2{
    font-size: 25px;
    font-weight: 500;
    color: rgba(0, 166, 216, 0.884);
}

.logo span{
    color: #ff7c02;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: #000000;
  text-decoration: none;
  padding: 5px;
  transition: 1s;
  font-size: 14px;
}

.nav-links li a:hover {
  letter-spacing: 0.5px;
  font-size: 16px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
  background: linear-gradient(rgba(0, 0, 0, 0.459) , rgba(0, 0, 0, 0.13)) , url(IMG_20250927_113250_755.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 2rem;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0px 0px 15px black;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  text-shadow: 0px 0px 1px black;
}

.btn {
  padding: 10px 35px;
  background: rgb(255, 208, 0) ;
  color: #2b2b2b;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.562);
  border: none;
  margin: 5px;
  border-radius: 35px;
  text-decoration: none ;
  transition: 1s;
}

.btn:hover{
  background:rgba(255, 208, 0, 0.719) ;
  color: rgb(0, 0, 0);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: rgba(0, 0, 0, 0.822);
  cursor: pointer;
}


/* Responsive layout */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #ffffffe8;
    position: absolute;
    top: 70px;
    right: 0;
    width: 150px;
    padding: 1rem;
    border-bottom-left-radius: 15PX;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

footer {
  position: relative;
  background: linear-gradient(135deg, #000b20c7, #000000cb);
  color: #f0f0f0;
  padding: 60px 10%;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 8s infinite alternate ease-in-out;
}
@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(30px); }
}

/* -------- GRID CONTAINER -------- */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* -------- LOGO SECTION -------- */
.footer-logo h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #00bcd4;
  font-weight: 700;
  letter-spacing: 1px;
}
.footer-logo p {
  font-size: 16px;
  color: #ddd;
  line-height: 1.6;
  text-align: justify;
}

/* -------- LINKS SECTION -------- */
.footer-links h3 {
  margin-bottom: 20px;
  color: #00bcd4;
  font-size: 18px;
  text-transform: uppercase;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li {
  margin: 10px 0;
}
.footer-links ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}
.footer-links ul li a:hover {
  color: #fff;
  margin-left: 6px;
}

/* -------- SOCIAL SECTION -------- */
.footer-social h3 {
  color: #00bcd4;
  margin-bottom: 20px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50%;
  margin: 5px;
  transition: all 0.3s ease;
  font-size: 18px;
  text-decoration: none;
}
.footer-social a:hover {
  background: #fff;
  color: #1e3c72;
  transform: translateY(-5px);
}

/* -------- BOTTOM SECTION -------- */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
  padding-top: 20px;
  color: #ccc;
  font-size: 14px;
  position: relative;
}

/* -------- SCROLL TO TOP BUTTON -------- */
#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #2a5298;
  color: #fff;
  border: none;
  outline: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: 0.3s;
  z-index: 999;
}
#scrollTop:hover {
  background: #4f7ce6;
  transform: translateY(-3px);
}

/* -------- GLASS EFFECT -------- */
.footer-container {
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(5px);
}

/* Contact Section */
.contact-container {
    display: flex;
    align-items: center;
    width: 90%;
    margin: 50px auto;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
    overflow: hidden;
    padding: 40px;
    box-sizing: border-box;
}

/*gallery section*/

.gallery{
        width:100%;
        display:flex;
        flex-wrap: wrap;
        padding: 40px;
        justify-content: center;
    }
    .card{
        width: 530px;
        margin: 15px;
        background:white;
        border-radius:15px;
        overflow:hidden;
        box-shadow:0 5px 25px rgba(0,0,0,0.08);
        transition:.3s;
    }
    .card:hover{
      transform:translateY(-7px);
      background-color: rgb(0, 247, 255);
    }
    .card img{
      width:100%;
      height:300px;
      object-fit:cover;
    }
    .card h3{
      text-align:center;
      text-transform: capitalize;
      padding:15px;
      font-size:19px;
      color:#222;
      font-weight: 500;
    }

/*Contact-Form-Section*/

.contact-form-section {
    flex: 1;
    padding-right: 40px;
}

.contact-form-section h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.input-field {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none; 
    background-color: #e6f5ff;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    box-sizing: border-box;
    outline: none;
}

.input-field:focus {
    box-shadow: 0 0 0 3px rgba(0, 150, 180, 0.2);
}

.input-field::placeholder {
    color: #777; 
}

.message-field {
    height: 120px; 
    resize: vertical; 
}

.send-button {
    background-color: #00bcd4; 
    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.send-button:hover {
    background-color: #00a0b3; 
}

.rocket-emoji {
    margin-left: 8px;
    font-size: 20px;
}

/*Image Section*/
.contact-illustration {
    flex: 1; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration-image {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        padding: 20px;
    }
    
    .contact-form-section {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .contact-illustration {
        order: -1;
        margin-bottom: 20px;
    }
}


/* About Section*/

.about-section {
    display: flex;
    align-items: center;
    width: 90%;
    margin: 50px auto;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
    overflow: hidden;
    padding: 40px;
    box-sizing: border-box;
}

.about-image-container {
    flex: 1;
    margin: 25px;
}

.about-img {
    width: 100%; 
    height: auto;
    border-radius: 8px;
}

.about-content {
    flex: 1.5; 
    margin: 25px;
}

.about-title {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
    border-bottom: 3px solid #007bff;
    display: inline-block;
    padding-bottom: 5px;
}

.about-subtitle {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 20px;
}

.about-text {
    margin-bottom: 15px;
    color: #666;
    text-align: justify; 
}

.btn-contact {
    display: inline-block;
    background-color: #007bff; 
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.btn-contact:hover {
    background-color: #0056b3;
}


@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        gap: 20px;
        margin: 40px 20px;
        padding: 15px;
    }
    
    .about-content {
        padding-right: 0;
    }

    .about-title {
        font-size: 2em;
    }
}

.button-box{
  display: flex;
  align-items: center;
  background-color: white;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.425);
  padding: 2px 20px;
  border-radius: 50px;
  cursor: pointer;
}

.icon img{
  height: 30px ;
  width: 30px;
  margin-right: 7px;
  margin-top: 5px;
}

.text a{
  text-decoration: none;
  font-size: 18px;
  color: rgb(0, 120, 218);
  font-weight: 500;
}