@import url("https://fonts.googleapis.com/css2?family=Anek+Devanagari:wght@100..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Italianno&display=swap");
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

:root {
  --primary-color: #4f46e5;
  --secondary-color: #5d5fef;
  --dark-color: #111827;
  --light-color: #f9fafb;
  --success-color: #10b981;
  --accent-color: #7c3aed;
}
body {
  overflow-x: hidden;
}
/* Navbar */

.nav-contaner {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 0 35px 0 35px;
}
.navbar-dropped {
  height: 16%;

  display: flex;
  background-color: rgba(6, 6, 6, 0.63) !important;

  justify-content: space-around;

  transition: all 0.6s cubic-bezier(0.17, 0.04, 0.03, 0.94);

  align-items: center;
  width: 100%;
  background-color: var(--light);
  position: fixed;
  padding: 0rem 0.1rem 0.4rem 0.1rem;
  z-index: 10;
  animation: 1.5s cubic-bezier(0.25, 1, 0.3, 1) wipe-in-down both;
}

@keyframes wipe-in-down {
  from {
    clip-path: inset(0 0 100% 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

[transition-style="in:wipe:down"] {
  animation: 2.5s cubic-bezier(0.25, 1, 0.3, 1) wipe-in-down both;
}

.nav-link ul li a {
  text-decoration: none;
  color: #ffff;
  font-family: "Noto Serif", serif;
  font-size: 1.1rem;
}

.nav-link ul {
  list-style: none;
  align-items: center;
  display: flex;
  gap: 4rem;
}

/* From Uiverse.io by alexmaracinaru */
button {
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s;
  padding: 10px 20px;
  border-radius: 100px;
  background: #cfef00;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  font-size: 15px;
}

button:hover {
  background: #c4e201;
}

button > svg {
  width: 34px;
  margin-left: 10px;
  transition: transform 0.3s ease-in-out;
}

button:hover svg {
  transform: translateX(5px);
}

button:active {
  transform: scale(0.95);
}

/* Navbar */

/* Hero section */
header {
  position: relative; /* Needed for ::before positioning */
  width: 100%;
  height: auto; /* Consider using min-height instead if content height is dynamic */
  min-height: 100vh; /* Adjust as needed */
  overflow: hidden; /* Prevent ::before overflow issues */
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(/assets/images/HOMEPAGE.png) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.about-container {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(/assets/images/about-bg.png) no-repeat center / cover;
  height: 90vh;
  border-radius: 68px 0 68px 0;
  margin: 1.2rem;
}

.about-project-container {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(/assets/images/aboutproject.png) no-repeat center / cover;
  /* height: 90vh; */
  border-radius: 0px 60px 0px 60px;
  margin: 1.2rem;
}

.about-project {
  display: flex;
  height: 100%;
  padding: 3rem;
  gap: 7rem;
  justify-content: flex-end;
  flex-direction: column;
}

.about-project .about-txt {
  align-self: flex-start;
  margin: 0;
}

.about-content h1,
.about-project h1 {
  margin: 3rem 0 0 0rem;
  font-family: "Anek Devanagari", sans-serif;
  color: #ffff;
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); */
}

.about-content .high-light,
.about-project .high-light,
.cmplt-project-content .high-light,
.on-going-project-content .high-light {
  font-family: "Italianno", cursive;
  font-size: 4.2rem;
  color: yellow !important;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}
.high-light {
  font-family: "Italianno", cursive;
  font-size: 5.2rem;
  color: black !important;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.about-txt {
  font-family: "Anek Devanagari", sans-serif;
  margin: 3rem 5rem 0 3rem;
  font-size: 20px;
  font-weight: 600;
  color: #ffff;
  text-align: justify;
}

/* Hero section */
swiper-container {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
  height: 300px;
}

swiper-slide img {
  display: block;
  width: 100%;
}

.amini-head {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}

.cmplt-project-content h1 {
  color: black;
  padding: 3rem;
}
.project-container {
  position: relative;
  display: inline-block;
  overflow: hidden; /* Prevents image from overflowing during scaling */
}

.project-img {
  position: relative;
  transition: transform 0.5s ease; /* Smooth scaling transition for the image */
}

.project-img img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease, transform 0.5s ease; /* Smooth transition for both opacity and scale */
}

.overlay {
  position: absolute;
  border-radius: 10px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Black overlay with opacity */
  opacity: 0;
  transition: opacity 0.3s ease; /* Smooth transition for the overlay */
}

.project-text {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  font-weight: bold;
  opacity: 0;
  transform: translateY(
    20px
  ); /* Start the text slightly below its normal position */
  transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth transition for the text */
}

.project-container:hover .project-img img {
  opacity: 0.7; /* Dim the image slightly on hover */
  transform: scale(1.1); /* Scale up the image on hover */
}

.project-container:hover .overlay {
  opacity: 1; /* Show the overlay on hover */
  border-radius: 10px;
}

.project-container:hover .project-text {
  opacity: 1; /* Show the text on hover */
  transform: translateY(0); /* Move the text to its normal position */
}

/* Start gallery */
.gallery-container {
  width: 1200px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
h2 {
  line-height: 1.1;
}
.gallery-slider {
  width: 100%;
  height: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
}

@media (max-width: 991px) {
  .gallery-slider {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .gallery-slider {
    height: 500px;
  }
}

.gallery-slider .swiper-slide {
  overflow: hidden;
  color: #fff;
}

.gallery-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.gallery-slider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.gallery-slider .swiper-button-prev,
.gallery-slider .swiper-button-next {
  background: transparent;
  width: 55px;
  height: 55px;
  line-height: 53px;
  margin-top: -30px;
  text-align: center;
  border: 2px solid #d4d3d3;
  border-radius: 55px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.gallery-slider:hover .swiper-button-prev,
.gallery-slider:hover .swiper-button-next {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

@media (max-width: 767px) {
  .gallery-slider .swiper-button-prev,
  .gallery-slider .swiper-button-next {
    display: none;
  }
}

.gallery-slider .swiper-button-prev {
  left: 25px;
  transform: translateX(50px);
}

.gallery-slider .swiper-button-prev ::before {
  font-family: "Font Awesome 5 Free";
  content: "\f060";
  font-size: 15px;
  color: #d4d3d3;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}

.gallery-slider .swiper-button-next {
  right: 25px;
  transform: translateX(-50px);
}

.gallery-slider .swiper-button-next ::before {
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-size: 15px;
  color: #d4d3d3;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}

.gallery-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  text-align: left;
  line-height: 12px;
  font-size: 12px;
  color: #000;
  opacity: 0.3;
  background: #fff;
  transition: all 0.2s ease;
}

.gallery-slider .swiper-pagination-bullet-active {
  opacity: 1;
}

.gallery-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.gallery-slider .swiper-pagination-custom,
.gallery-slider .swiper-pagination-fraction {
  bottom: 30px;
}

.swiper-pagination {
  text-align: left;
}

.gallery-slider .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 50px;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 767px) {
  .gallery-slider .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 30px;
  }
}

/* Video */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Makes the video nicely cover the container */
}

/* Video */
/*--------------------------------------------------------------
	#gallery-style
--------------------------------------------------------------*/
.gallery-style {
  height: 850px;
  transition: all 0.4s ease;
}

@media (max-width: 991px) {
  .gallery-style {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .gallery-style {
    height: 500px;
  }
}

@media screen and (min-width: 992px) {
  .gallery-style .container {
    padding-top: 95px;
  }
}

.gallery-style .slide-title,
.gallery-style .slide-text,
.gallery-style .slide-btns {
  max-width: 690px;
}

.gallery-style .slide-title h2 {
  font-size: 100px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  margin: 0 0 40px;
  text-transform: capitalize;
  transition: all 0.4s ease;
}

@media (max-width: 1199px) {
  .gallery-style .slide-title h2 {
    font-size: 75px;
  }
}

@media (max-width: 991px) {
  .gallery-style .slide-title h2 {
    font-size: 50px;
    margin: 0 0 35px;
  }
}

@media (max-width: 767px) {
  .gallery-style .slide-title h2 {
    font-size: 35px;
    margin: 0 0 30px;
  }
}

.gallery-style .slide-text p {
  opacity: 0.8;
  font-family: Rajdhani;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: normal;
  color: #ffffff;
  margin: 0 0 40px;
  transition: all 0.4s ease;
}

@media (max-width: 767px) {
  .gallery-style .slide-text p {
    font-size: 16px;
    font-size: 1rem;
    font-weight: normal;
    margin: 0 0 30px;
  }
}

.gallery-style .slide-btns > a:first-child {
  margin-right: 10px;
}

/*--------------------------------------------------------------
	#button-style
--------------------------------------------------------------*/
.theme-btn,
.theme-btn-s2 {
  background-color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  color: #2b3b95;
  padding: 9px 32px;
  border: 0;
  border-radius: 3px;
  text-transform: uppercase;
  display: inline-block;
  line-height: initial;
  transition: all 0.4s ease;
}
a {
  text-decoration: none;
  transition: all 0.2s ease;
}
.theme-btn-s2 {
  background-color: rgba(255, 255, 255, 0.9);
  color: #131e4a;
}
.theme-btn:hover,
.theme-btn-s2:hover,
.theme-btn:focus,
.theme-btn-s2:focus,
.theme-btn:active,
.theme-btn-s2:active {
  background-color: #2b3b95;
  color: #fff;
}
.theme-btn-s3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  text-transform: uppercase;
}
i.fa-chevron-circle-right {
  height: 22px;
  width: 22px;
}
a:hover {
  text-decoration: none;
}
@media (max-width: 991px) {
  .theme-btn,
  .theme-btn-s2,
  .theme-btn-s3 {
    font-size: 13px;
    padding: 15px 25px;
  }
}
@media (max-width: 767px) {
  .theme-btn,
  .theme-btn-s2 {
    padding: 13px 20px;
    font-size: 13px;
  }
}

/* Map */
.responsive-map {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}
.responsive-map iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

/* contact */
.form-container {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
  margin-bottom: 60px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.form-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.form-title {
  margin-bottom: 30px;
  padding-bottom: 20px;
  position: relative;
}

.form-title h3 {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-title h3 i {
  color: var(--primary-color);
}

.form-section-title {
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.form-control,
.form-select {
  border-radius: 8px;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  background-color: #f9fafb;
  transition: all 0.2s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  padding: 1rem 0.75rem;
}

.form-floating > label {
  padding: 1rem 0.75rem;
}

.btn {
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--primary-color)
  );
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-success {
  background: linear-gradient(90deg, var(--success-color), #059669);
  border: none;
}

.btn-success:hover {
  background: linear-gradient(90deg, #059669, var(--success-color));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.form-check-input:checked {
  background-color: #4f46e5;
  border-color: #4f46e5;
}

.form-text {
  color: #6b7280;
}

textarea.form-control {
  min-height: 120px;
}

.card-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  opacity: 0.05;
  background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
  background-size: 16px 16px;
  z-index: 0;
}

@media (max-width: 768px) {
  .form-container {
    padding: 25px;
  }
}

/* footer */

.footer {
  padding: 0 0 40px 0px;
  background-color: #0d1117;
  color: white;
}

.footer ul {
  padding: 0;
  list-style: none;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer li {
  display: inline-block; /* Change to inline-block for horizontal layout */
  padding: 0 10px;
}

.footer ul a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
}

.footer ul a:hover {
  opacity: 1;
}

.footer .social {
  text-align: center;
}

.footer .social > a {
  font-size: 24px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #ccc;
  margin: 0 8px;
  color: inherit;
  opacity: 0.75;
}

.footer .social > a:hover {
  opacity: 0.9;
}

.footer .copyright {
  margin-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
  margin-bottom: 0;
}
.footer .footer-break {
  height: 2px;
  border-width: 0;
  color: gray;
  background-color: white;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  position: relative;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

.res-nav {
  display: none;
}

.res-btn {
  padding: 50px 24px;
}

/* responsive navbar */
@media screen and (max-width: 900px) {
  .nav-contaner {
    display: none;
  }

  .res-nav {
    display: flex;
    justify-content: space-between;
    padding: 0px 30px;
    position: fixed;
    width: 100vw;
    background-color: rgba(6, 6, 6, 0.63) !important;
  }
}
/* responsive navbar */

/* Pop Up form */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 300px;
  border-radius: 10px;
}

.close {
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 8px;
  margin: 8px 0;
}

.pop-btn {
  background-color: #4caf50;
  color: white;
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.pop-btn:hover {
  background-color: #45a049;
}
/* Pop Up form */
