.a {
  display: flex;
  background-color: rgb(255, 255, 255);
  border-top: 0.5px solid grey;
  border-bottom: 0.5px solid grey;
  justify-content: center;
  align-items: center;

}

.a .logo {
  height: 120px;
  width: 180px;
  background-size: cover;
  background-image: url(Gemini_Generated_Image_l7qncbl7qncbl7qn-removebg-preview.png);
  background-repeat: no-repeat;
  background-position: center center;
  margin-top: -20px;
}

.text {
  height: 100px;
  width: 900px;
  text-align: center;
  padding-top: 20px;
  word-spacing: 10px;
  align-items: center;
  justify-content: center;
  display: flex;
  font-size: 30px;
  color: orangered;
  font-family: "Cinzel", serif;
  font-weight: 800;
 
}


.text h1 {

  margin: 0px;
}



.button {
  height: 45px;
  width: 300px;
  background-color: orangered;
  color: white;
  font-size: 30px;
  font-family: "Orelega One", serif;
  border-radius: 80px;
  border: none;
  text-align: center;
  padding-top: 10px;
  text-decoration: none;
}

.button:hover {
  cursor: pointer;
  background-color: white;
  color: orangered;
  border: 1px solid orangered;
  transition: 0.5s ease-in;
}

.navigation {
  display: flex;
  position: sticky;
  height: 60px;
  top: 0px;
  gap: 20px;
  background-color: white;
  z-index: 1000;
  justify-content: center;
}

@media (max-width:768px) {

  .text {
    font-size: 20px !important;
  }

  

  .text1 {
    font-size: 12px !important;
  }

  .text2 {
    font-size: 12px !important;
  }

  .text3 {
    font-size: 12px !important;
  }
}

.home {
  height: 60px;
  width: 100px;
  color: rgb(255, 255, 255);
  font-family: "Orelega One", serif;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: orangered;
}

.home:hover {
  background-color: orangered;
  color: white;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.services {
  height: 60px;
  width: 120px;
  color: rgb(127, 96, 85);
  font-family: "Orelega One", serif;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.services:hover {
  background-color: orangered;
  color: white;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}


.projects {
  height: 60px;
  width: 100px;
  color: rgb(127, 96, 85);
  font-family: "Orelega One", serif;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.projects:hover {
  background-color: orangered;
  color: white;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}


.about {
  height: 60px;
  width: 100px;
  color: rgb(127, 96, 85);
  font-family: "Orelega One", serif;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about:hover {
  background-color: orangered;
  color: white;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}


.contact {
  height: 60px;
  width: 100px;
  color: rgb(138, 92, 76);
  font-family: "Orelega One", serif;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact:hover {
  background-color: orangered;
  color: white;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.image1 {
  background-image: url(HEROsection.jpg);
  height: 100vh;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  /* margin-top: -40px; */
  display: flex;
  position: relative;
}

.black {
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.484);
  backdrop-filter: blur(2px);
}

.text1 {
  font-size: 40px;
  font-family: cinzel;
  letter-spacing: 2px;
  font-weight: 100;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeup 1.5s ease forwards;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  position: absolute;
  top: 30%;
  left: 10%;
  transform: translate(-30%, -10%);
}

.text2 {
  font-size: 40px;
  font-family: cinzel;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateX(30px);
  animation: fadeUp1 1.5s ease forwards;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  position: absolute;
  top: 40%;
  left: 20%;
  transform: translate(-30%, -10%);
}

.text3 {
  font-size: 40px;
font-family: cinzel;  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp2 1.5s ease forwards;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-30%, -10%);
}

/* Animation */
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateX(-90px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUp1 {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUp2 {
  from {
    opacity: 0;
    transform: translateX(-110px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.services-section {
  background-color: #fff;
  padding: 100px 0;
  text-align: center;
  font-family: "Cinzel", serif;
}

.section-title {
  font-size: 45px;
  font-weight: 700;
  color: orangered;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* Underline style (animated center-out) */
.section-title::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background-color: orangered;
  margin: 10px auto 0;
  border-radius: 2px;
  transform-origin: center;
  transition: width 0.5s ease;
}

/* Hover effect — line expands from center */
.section-title:hover::after {
  width: 60%;
  background-color: orangered;
  color: #fff;
}



/* ---------- SERVICE BOXES ---------- */
.services-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-box {
  background: #f8f8f8;
  width: 320px;
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;

}

.service-box .icon {
  font-size: 50px;
  margin-bottom: 20px;
  color: orangered;
}

.service-box:hover {
  background: orangered;
  color: white;
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(255, 69, 0, 0.5);
  cursor: pointer;
}

.service-box:hover .icon {
  color: white;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === OUR PROJECTS SECTION === */
.projects-section {
  padding: 120px 60px;
  background: radial-gradient(circle at top, #fff 0%, #f9f9f9 40%, #f2f2f2 100%);
  position: relative;
  overflow: hidden;
}

/* Floating gradient glow behind section */
.projects-section::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.15), transparent 70%);
  filter: blur(80px);
  animation: floatGlow 10s infinite alternate ease-in-out;
  z-index: 0;
}

@keyframes floatGlow {
  from {
    transform: translate(0, 0);
    opacity: 0.7;
  }

  to {
    transform: translate(100px, 80px);
    opacity: 1;
  }
}

/* Heading */
.projects-section h2 {
  font-size: 3.5rem;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  background: linear-gradient(90deg, orangered, #ff7a00, #ff4500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  margin-bottom: 70px;
  z-index: 2;
}

/* Center underline that expands from middle */
.projects-section h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, orangered, transparent);
  transition: transform 0.8s ease;
}

.projects-section:hover h2::after {
  transform: translateX(-50%) scaleX(1);
}

/* Flex grid */
.projects-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  z-index: 2;
  position: relative;
}

/* === PROJECT CARD === */
.project-card {
  position: relative;
  width: 340px;
  height: 420px;
  background: #ffffff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.3, 1);
  cursor: pointer;
  isolation: isolate;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg, rgba(255, 69, 0, 0.3), rgba(255, 255, 255, 0.05)); */
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}

.project-card:hover::before {
  opacity: 1;
}

.project-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease, filter 0.7s ease;
  z-index: 0;
}

.project-card:hover .project-img {
 
  filter: brightness(0.65);
}

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: rgba(0, 0, 0, 0.55);
  color: white;
  backdrop-filter: blur(5px);
  transform: translateY(100%);
  transition: transform 0.6s ease;
  z-index: 2;
}

.project-card:hover .project-info {
  transform: translateY(0);
}

.project-info h3 {
  margin-bottom: 10px;
  font-size: 1.6rem;
  color: orangered;
  font-family: "Orelega One", serif;
}

.project-info p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #eaeaea;
}

/* Floating lift effect */
.project-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
  .projects-section {
    padding: 90px 40px;
  }

  .project-card {
    width: 280px;
    height: 380px;
  }
}

@media (max-width: 768px) {
  .projects-wrap {
    gap: 30px;
  }

  .project-card {
    width: 90%;
    height: 360px;
  }
}

/* Entrance Animation */
@keyframes fadeUpSmooth {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.projects-section {
  animation: fadeUpSmooth 1.5s ease forwards;
}

/* ===============================
   ⚡ HIGH-END ABOUT US SECTION
================================*/
.about-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff, #f7f7f7);
  overflow: hidden;
  padding: 100px 20px;
}

/* background gradient glow */
.about-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.15), transparent 60%);
  top: -100px;
  left: -100px;
  filter: blur(80px);
  z-index: 1;
}

.about-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.15), transparent 70%);
  bottom: -150px;
  right: -150px;
  filter: blur(100px);
  z-index: 1;
}

/* layout wrapper */
.about-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  z-index: 2;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUpBoth 1.5s ease forwards;
}

/* image side */
.about-img {
  width: 50%;
  flex: 1 1 450px;
  height: 480px;
  background: url("about.jpg") center/cover no-repeat;
  border-radius: 25px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .about-img {
    width: 450px !important;
  }

}


.about-img {
  flex-direction: column;
}

.about-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: 
  opacity: 0;
  animation: fadeUpOverlay 1.8s ease forwards 0.3s;
}

/* content side */
.about-content {
  flex: 1 1 500px;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.about-content h2 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ff4500, #ff8800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  position: relative;
}

.about-content h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff4500, #ff8800);
  border-radius: 2px;
  animation: lineExpand 1.2s ease forwards 1s;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #555;
}

.highlight {
  color: #ff4500;
  font-weight: 600;
}

.about-btn {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(90deg, #ff4500, #ff8800);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
}

.about-btn:hover {
  background: white;
  color: #ff4500;
  border: 2px solid #ff4500;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.3);
}

/* animations */
@keyframes fadeUpBoth {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpOverlay {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineExpand {
  from {
    width: 0;
  }

  to {
    width: 140px;
  }
}

/* responsive */
@media (max-width: 992px) {
  .about-inner {
    flex-direction: column;
    text-align: center;
    animation: fadeUpBoth 1s ease forwards;
  }

  .image1 {  height: 300px !important;
  width: 100%;
  }

  .black {  height: 300px !important;
  width: 100%;
  }

  .about-content h1 {
    font-size: 2.3rem;
  }

  .about-content h1::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-btn {
    margin-top: 20px;
  }

  .about-img {
    width: 100%;
    height: 380px;
  }
}

/* optional smooth scroll for navbar */
html {
  scroll-behavior: smooth;
}

/* contact us section */

/* .contact-Us {
  display: flex;
  height: 100vh;
  width: 100%;
  background-color: #ff4500;
}
.mahakali{
  width: 100%;
}
.mahakali .mk  { 
  font-size: 30px;
  color: #ffffff;
  background-color: #ff4500;
  word-spacing: 10px;
  font-family: "Cinzel", serif;
  text-align: center;
  position: relative;
}
.details{
  display: flex;
}

 .d {font-size: 20px;
  color: #ffffff;
   text-align: center;
font-weight: 600;
  font-family: "Cinzel", serif;
padding-top: 20px;

}

.phone { color: #ffffff;
font-size: 30px;
margin-left: 150px;
margin-top: 40px;
}

.icon {font-size: 20px;}

.address {font-size: 20px;
color: #ffffff;
margin-left: 40px;
font-family: raleway;
margin-top: 40px
}

.no {margin-top: -6px;} */

/* 🌟 CONTACT SECTION */
.contact-section {
  background:rgb(247, 79, 18);
  color: white;
  padding: 100px 8%;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px)
  z-index: 0;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
  animation: fadeUp 1.2s ease forwards;
}

/* LEFT INFO SECTION */
.contact-info {
  flex: 1 1 45%;
  animation: slideInLeft 1.2s ease forwards;
}

.contact-info h2 {
  font-size: 42px;
  font-family: "Cinzel", serif;
  border-left: 6px solid white;
  padding-left: 20px;
  margin-bottom: 25px;
}

.contact-info p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #f4f4f4;
}

.contact-details p {
  margin: 10px 0;
  font-size: 16px;
  color: #fff;
}



@media (max-width: 600px) {
  .contact-section {
    padding: 70px 6%;
  }

  .contact-info h2 {
    font-size: 32px;
  }


  
  .services {font-size: 12px;}
  
}

.icon .i {background-color: #ff4500;
height: 60px;
width: 60px;
border-radius: 40px;
color: white;
position: fixed;
right: 30px;
bottom:30px;
display: flex;
align-items: center;
justify-content: center;
font-size: 30px;
z-index: 99;
animation: pulse 2s infinite ease-in-out;
  box-shadow: 0 0 15px rgba(255, 69, 0, 0.5);
}

.icon .i:hover {background-color: #f9f9f9;
color: #ff4500;
transition: ease-in 0.8s;
border: solid orangered 1px;
cursor: pointer;
box-shadow: 0 0 25px rgba(255, 69, 0, 0.8);
}

@media (max-width:768px)

{
  .icon.i {height: 40px;
width: 30px;

}

}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 69, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 69, 0, 0);
  }
}
