@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Fjalla One", sans-serif;
}

body {
    font-family: Arial, sans-serif;
    background-color: #111;
}

/* Navbar container */
.navbar {
    width: 100%;
    background: #222;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    height: 100px;
    z-index: 1000;
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: rgb(255, 31, 0);
    /* 🔥 bright red-orange on hover */
}

/* Logo center */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.logo img {
    height: 100px;
    width: auto;
}

/* Fullscreen Menu */
.menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 0;
    background: #222;
    /* normal dark background */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: height 0.5s ease;
    z-index: 999;
    gap: 35px;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-size: 2.5rem;
    /* h1 size approx */
    font-weight: bold;
    transition: color 0.3s;
}

.menu a:hover {
    color: rgb(255, 31, 0);
    transition: color 0.3s ease;
    text-decoration: underline;
    transform: ease;
}

.menu.active {
    height: 100vh;
    /* fullscreen */
}

/* Toggle button */
.toggle-btn,
.close-btn {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.toggle-btn:hover ,
.close-btn:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
    color: rgb(255, 31, 0);
}

.toggle-btn span {
    width: 25px;
    height: 3px;
    background: #fff;
}

.close-btn {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
}

/* banner */

.banner {
    position: relative;
    height: 70vh;
    background: url('../images/secbg.png');
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding: 20px;
}

.banner h1 {
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: bold;
    color: white;
    line-height: 1.2;
    max-width: 90%;
    margin: 0 auto;
}

.banner h1 span,
#description span {
    color: rgb(255, 31, 0);
}

#description {
    position: absolute;
    bottom: 20px;
    left: 30px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: white;
    text-align: left;
    max-width: 80%;
}

.cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: white;
    margin-left: 3px;
    animation: blink 0.7s steps(1) infinite;
    vertical-align: bottom;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.watermark {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: bold;
    color: rgba(255, 255, 255, 0.2);
    user-select: none;
}

@media (max-width: 768px) {
    .banner {
        height: 50vh;
        padding: 15px;
    }

    .banner h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .description {
        font-size: 1rem;
        left: 15px;
        bottom: 15px;
    }

    .watermark {
        font-size: 1rem;
        right: 15px;
        top: 15px;
    }
}

.image-section {
    height: 50vh;
    /* default for wide screens */
    overflow: hidden;
    position: relative;
    background-color: black;
}

.image-section img {
    width: 100%;
    padding: 20px 40px 20px 40px;
    border-radius: 70px;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.3s ease-out;
}

/* 🔹 Mobile adjustments */
@media (max-width: 768px) {
    .image-section {
        height: 35vh;
        /* mobile pe thodi chhoti */
    }
}

.image-section img:hover {
    transform: scale(1.1);
    /* zoom effect on hover */
}

.contact-section {
  padding: 100px 10%;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 60%),
              radial-gradient(circle at bottom right, rgba(255,255,255,0.05), transparent 60%),
              #000;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-heading {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: rgb(255, 31, 0);
  animation: fadeDown 1s ease-out;
}

.contact-subtext {
  color: white;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
  animation: fadeDown 1.2s ease-out;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  animation: fadeUp 1.3s ease-out;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ddd;
  font-size: 1.1rem;
  transition: 0.3s;
}

.info-item i {
  font-size: 1.3rem;
  color: #00b4ff;
  transition: transform 0.3s ease;
}

.info-item:hover {
  color: #fff;
  transform: scale(1.05);
}

.info-item:hover i {
  transform: rotate(15deg);
  color: #00ffcc;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeUp 1.5s ease-out;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px #00b4ff;
}

.contact-btn {
  background: linear-gradient(135deg, #111, #fff);
  color: #000;
  font-weight: 700;
  border: none;
  padding: 15px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.4s ease;
}

.contact-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #fff, #555);
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 80px 5%;
  }

  .contact-heading {
    font-size: 2.5rem;
  }

  .contact-info {
    flex-direction: column;
    gap: 20px;
  }
}

/* Footer Section */
.footer {
  background: url('../images/secbg.png');
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-heading {
  flex: 1;
  min-width: 200px;
  margin-top: 60px;  
  font-size: 8.5rem;
  font-weight: 700;
  color: rgb(255, 31, 0);
  padding: 40px;
}

.footer-right {
  text-align: right;
  flex: 1;
  min-width: 200px;
  padding: 40px;
}

.socials {
  margin-bottom: 20px;
}

.social-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: rgb(255, 31, 0); /* Golden highlight */
}

.socials ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.socials ul li {
  margin: 8px 0;
}

.socials ul li a {
  color: #ddd;
  text-decoration: none;
  font-size: 2rem;
  transition: color 0.3s ease;
}

.socials ul li a:hover {
  color: rgb(255, 31, 0);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.footer-links {
  text-align: center;
  margin-bottom: 25px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
 color: rgb(255, 31, 0);
}

.footer-bottom {
  text-align: center;
  font-size: 1.3rem;
  color: #888;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-heading {
    font-size: 5rem;
    margin-top: 20px;
    padding: 20px 0;
  }

  .footer-right {
    text-align: center;
    padding: 20px 0;
  }

  .social-title {
    font-size: 2rem;
  }

  .socials ul li a {
    font-size: 1.5rem;
  }

  .footer-links ul {
    flex-direction: column;
    gap: 10px;
  }

  .footer-links ul li a {
    font-size: 1.2rem;
  }
}