@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 */
}

.featured-work {
  position: relative;
  padding: 100px 20px;
  background: #111;
  color: white;
  min-height: 100vh;
  overflow: hidden;
}

.featured-heading {
  font-size: 4.5rem;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 60px auto;
  position: relative; /* sticky hata diya */
  z-index: 2;
  transition: all 0.5s ease;
}

/* Agar background-style heading chahiye ho to pseudo-element use karein */
.featured-work::before {
  content: "Featured Work";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.07);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.cards {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Default: 2 cards per row */
  gap: 40px;
  position: relative;
  z-index: 1;
}

.card {
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  backdrop-filter: blur(6px);
  transition: transform 0.3s;
  
}

.card:hover {
  transform: translateY(-8px);
  cursor: pointer;
}

.image-box {
  width: 100%;
  height: 300px; /* responsive ke liye height chhoti ki */
  overflow: hidden;
  border-radius: 8px;
  margin: 0 auto;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 8px;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.image-box:hover img {
  transform: rotate(2deg) scale(1.05);
  filter: blur(3px);
}

.card h2 {
  margin-top: 24px;
  text-decoration: underline;
  text-underline-offset: 8px;
  transition: color 0.3s;
}

.card:hover h2 {
  color: rgb(255, 31, 0);
  text-decoration: underline rgb(255, 31, 0);
}

.card p {
  margin-top: 15px;
  font-size: 16px;
  color: white;
}

/* Tablet view */
@media (max-width: 1024px) {
  .cards {
    gap: 30px;
  }

  .image-box {
    height: 250px;
  }
}

/* Mobile view */
@media (max-width: 768px) {
  .cards {
    grid-template-columns: 1fr; /* 1 card per row */
    gap: 20px;
  }

  .image-box {
    height: 220px;
  }

  .featured-heading {
    font-size: 2.5rem;
  }

  .featured-work::before {
    font-size: 4rem;
  }
}

/* 🔹 Mobile adjustments */
@media (max-width: 768px) {
    .image-section {
        height: 35vh;
        /* mobile pe thodi chhoti */
    }
}

/* 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;
}
@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;
  }
}
