@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geologica:wght,CRSV@100..900,0&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Questrial&display=swap');


.geologica-<uniquifier> {
  font-family: "Geologica", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "CRSV" 0,
    "SHRP" 0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: linear-gradient(180deg, #fff 0%, #388f8f23 49.04%);

}

body img {
  width: 100%;
}

/* HAMBURGER */
.hamburger {
  font-size: 28px;
  background: var(--primaycolor);
  color: white;
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  z-index: 1001;
  user-select: none;
  display: none; /* Show only in mobile */
}

.hamburger::before {
  content: "☰";
}

.hamburger.open::before {
  content: "✖";
}

/* NAVIGATION BAR (Desktop Default) */
nav {
  background: var(--primaycolor);
  margin: 0px auto;
  margin-top: 10px;
  color: white;
  border-radius: 15px;
  text-transform: uppercase;
  padding: 10px 1rem;
}


.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.1rem 1.5rem;
}

.logo img {
  height: 90px;
  /* width: auto; */
  border-radius: 5px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
}

nav a:hover {
  color: #ffd700;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* ================= MOBILE HEADER ================= */
.mobile-header {
  display: none;
}

/* MOBILE VIEW STYLES */
@media (max-width: 768px) {
  /* Sticky Mobile Header */
  .mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--primaycolor);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    z-index: 1002;
  }

  /* Mobile Logo */
  .mobile-logo img {
    height: 70px;
    width: auto;
    border-radius: 7px;
  }

  /* Show hamburger in mobile header */
  .hamburger {
    position: static;
    margin-left: auto;
    display: block;
  }

  /* Hide desktop logo in mobile */
  .desktop-logo {
    display: none;
  }

  /* Slide-in Navigation */
  nav {
    position: fixed;
    top: 70px; /* below mobile-header */
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--primaycolor);
    z-index: 1000;
    transition: right 0.3s ease;
    padding-left: 0;
  }

  nav.open {
    right: 0;
  }

  .nav-container {  
    flex-direction: column;
    align-items: flex-start;
    padding-top: 2rem;
  }

  .logo {
    padding-left: 2rem;
    margin-bottom: 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    align-items: flex-start;
    width: 100%;
  }
}

/* ========BODY SECTION START ============== */



/* General Styles */
:root {
--heading-color :#273036;
--background : #f3f4f5;
--primaycolor : #058686;
--white : #fff;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primaycolor);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}


body {
    font-family: "Geologica", sans-serif;
    scroll-behavior: smooth;
      -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

h1,h2,h3,h4,h5,h6 {
    margin: 0;
    font-family: "Geologica", sans-serif;
}
h1,h2,h3 {
    font-weight: 600 !important;
}
h4,h5,h6 {
    font-weight: 400 !important;
}

a{
    text-decoration: none;
    color: var(--primaycolor);
}
p{
    color: #6c757d;
    font-family: "Geologica", sans-serif;
}
.bttn {
    background-color: var(--primaycolor);
    box-shadow: 5px 5px #31335a4e;
    color: #fff;
    transition: 0.5s all ease-in-out;
}
.bttn:hover {
    background-color: var(--primaycolor);
    color: #fff;
    transform: translateY(5px);
    box-shadow: none;
}


/*=========================button start ================================*/
/* From Uiverse.io by satyamchaudharydev */ 
.button {
  position: relative;
  transition: all 0.3s ease-in-out;
  /*box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);*/
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  /*background-color: rgb(0 107 179);*/
  background-color: var(--primaycolor);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffff;
  gap: 10px;
  /*font-weight: bold;*/
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
  cursor: pointer;
}

.icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.button:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.button:hover .icon {
  transform: translate(4px);
}

.button:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

/*=========================button ends================================*/
/* ===========preloadrer========= */
/* Pre-loader styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid var(--primaycolor);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===========preloadrer========= */

.title {
    /* width: 30%; */
    background-color: var(--primaycolor);
    color: var(--white) !important;
    font-size: 22px;
    font-weight: bold;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 5px 10px 1px  #16161714;
    /* border-bottom: 2px solid var(--primaycolor);
    border-bottom-style: dotted; */
    text-align: center;
    text-transform: uppercase;
}


/* ============ hero section =================== */
.hero-section {
  width: 100%;
  height: 80vh;
  padding: 10px;
}
.hero-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}





/* ===============================about section start ==================== */
.about-section {
  padding: 50px 1.5rem;
}
.about-section img {
  /* border-radius: 20px; */
}
.about-txt {
  /* border: 2px solid red; */
}
.about-txt h4 , .project-box h4 {
  background-color: var(--heading-color);
  box-shadow: 2px 5px #0586863e;
  width: 25%;
  font-size: 1rem;
  border-radius: 10px;
  color: var(--white);
  padding: 10px 20px;
  margin-bottom: 1.1rem;
}
.project-box h4 {
  width: 25%;
}
.aminities-section .project-box h4 {
  width: 25%;
}
.about-txt ul li , .config-box ul li{
  list-style: none;
  line-height: 30px;
}
.about-txt ul, .config-box ul  {
  padding-left: 0;
}
.about-txt ul li i, .config-box ul li i {
  color: var(--primaycolor);
  margin-right: 5px;
}
.btn {
  width: 250px;
  height: 50px;
  background-color: var(--primaycolor);
  color: var(--white);
  border-radius: 12px;
  transition: 0.2s all ease-in-out;
}
.btn i {
  margin-left: 8px;
}
.btn:hover {
  background-color: var(--heading-color) !important;
  color: var(--white);
}
.btn:hover  i {
  margin-left: 9px;
}
/* ===============================about section ends ==================== */
.project-section {
  padding: 0px  1.2rem;
}
.project {
  /* background-color: #fff; */
  border-radius: 15px;
  /* margin: 50px auto; */
  padding: 50px 1.5rem;
}
.project-image img {
  border-radius: 10px;
  height: 555px;
}
.project-details {
  background-color: #fff;
  box-shadow: 2px 5px #058686;
  padding: 30px 20px;
  border-radius: 15px;
  border: 1px solid var(--heading-color);
}
.project-status-box {
  margin-bottom: 15px;
  border-radius: 15px;
}
.project-status-box h5 {
  font-size: 1rem;
  font-weight: 500 !important;
  color: var(--heading-color);
  margin-bottom: 5px;
}
.project-status-box p {
  margin-bottom: 0;
}

/* ============development section start=================== */
.development-heading h4 {
  width: 30%;
}
.development-approach {
  padding: 50px  2rem;
}
.development-box {
  background-color: #fff;
  padding: 1rem;
  border-radius: 15px;
  border-bottom: 2px solid var(--primaycolor);
  transition: 0.2s all ease-in-out;
}
.development-box:hover {
 transform: translateY(10px);
 cursor: pointer;
 border-bottom: none;
}
.development-box:hover img {
  width: 72px;
  height: 72px;
}
.development-box:hover  h5 {
  color: var(--primaycolor) !important;
}

.development-box img {
  width: 70px;
  height: 70px;
  /* border-radius: 50px; */
 margin-top: 10px;
 margin-bottom: 1rem;
}
.development-box h5 {
   font-weight: 500 !important;
   color: var(--heading-color);
   margin-bottom: 10px;
}
/* ============development section ends=================== */

/* =============gallrey section start ========================== */
.gallery-section{
padding: 50px  2rem;
/* border: 2px solid red; */
margin: auto;
}
.gallery-inner {
  background-color: var(--white);
  padding: 50px 20px;
  border-radius: 15px;
}
.gallrey-box img {
  border-radius: 15px;
}
/* =============gallrey section ends ========================== */


/* ==========contact us section start=================== */
.contact-section {
   padding: 50px 1.25rem;
   padding-bottom: 10px;
}
.contact-box {
  background-color: var(--white);
  padding: 1.5rem 1rem ;
  border-radius: 1rem;
  border-bottom: 2px solid var(--primaycolor);
  transition: 0.2s all ease-in-out;
  cursor: pointer;
}
.contact-box:hover {
  border-bottom: none;
  transform: translateY(8px);
}
.contact-box:hover.contact-box .i-box i {
  font-size: 1.3rem;
  transform: rotate(360deg) !important;
}
.contact-information {
  padding: 50px 1rem;
}
.contact-box .i-box {
  background-color: var(--heading-color);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  margin-bottom: 1rem;
  transition: 0.3s all ease-in;
}
.contact-box .i-box i {
  color: var(--white);
  font-size: 1.2rem;
}
.contact-box a {
  color: #6c757d !important;
}
.contact-box h4 {
  font-weight: 500 !important;
  color: var(--primaycolor);
  font-size: 1.3rem;
  margin-bottom: 10px;
}
/* ==========contact us section ends=================== */

/* ==========contact form ================= */
.contact-form-section {
  padding: 0px 1.25rem;
  padding-bottom: 50px;
}
.contact-form {
  background-color: var(--white);
  border-radius: 15px;
  padding: 30px 20px;
}
.contact-form input , textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #0586867e;
  padding: 8px;
  /* border-radius: 7px; */
  /* padding-left: 10px; */
}
.contact-form ::placeholder {
  color: #6c757dec;
}
.form-box {
  margin-bottom: 15px;
}
.contact-form label {
  font-weight: 500 !important;
  color: var(--heading-color);
}

/* ==========contact form ================= */
/* ==========footer start================ */
.footer {
   padding: 10px;
   color: #fff;
}
.footer a {
  color: var(--white);
}
.footer-box div h4 {
  font-weight: bold;
}
.footer-box{
  width: 100%;
  padding: 50px 30px;
  background-color: var(--primaycolor);
  border-radius: 20px;
}

.footer-nav h4 , .footer-address h4 {
  margin-bottom: 1.5rem;
}
.footer .all-icons .social-box {
 display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  background-color: white;
  width: 50px !important;
  height: 50px !important;
  border-radius: 15px;
  box-shadow: 2px 5px 1px #07312f90;
}
.footer .all-icons .social-box i {
  font-size: 21px;
  color: var(--primaycolor);
}
.footer-about {
   /* border: 2px solid red; */
   padding-right: 3rem;
}
.footer-about p {
  color: var(--white);
  margin-top: 1rem;
}


.footer-nav {
  /* border: 2px solid red; */
}
.footer-nav h4 {
  font-weight: bold;
}
.footer-nav ul {
  padding-left: 0;
}
.footer-nav ul li {
  list-style: none;
  line-height: 50px;
 
}
.footer-nav ul li a {
 color: var(--white) !important;
 transition: 0.2s all ease-in;
}
.footer-nav ul li a:hover {
  letter-spacing: 1.1px;
}

.footer-icon-box{
    /* border: 2px solid red; */
    margin-bottom: 1rem;
    align-items: center;
}

.footer-icon-box .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  background-color: white;
  width: 50px !important;
  height: 50px !important;
  border-radius: 15px;
  box-shadow: 2px 5px 1px #07312f90;
}
.footer-icon-box .icon i {
  font-size: 21px;
  color: var(--primaycolor);
}

.copyright {
  color: var(--white) !important;
  background-color: var(--heading-color);
  padding: 10px 15px;
  border-radius: 15px;
  margin-top: 10px;
  border: 2px solid var(--heading-color);
}
.copyright a {
  color: var(--white);
}
/* ==========footer ends================ */


/* ==================RESPONSIVNESS START HERE========================== */

/* ==================RESPONSIVNESS ENDS HERE========================== */




/* =============heading section ===================== */

.heading-section {
  width: 98%;
  height: 50vh;
  background-image: url("./images/contact.webp");
  background-position: top center;
  padding: 10px 1.2rem;
  border-radius: 15px;
  margin-top: 10px;
}

/* =============heading section ===================== */


/* ==========project page start==================== */
.project-hero {
  width: 98%;
  height: 50vh;
  border-radius: 15px;
  background-color: var(--heading-color);
  color: var(--white);
  margin: 10px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.title-box {
  /* border: 2px solid red; */
  padding: 20px;
  position: relative;
}
.title-box img {
  width: 550px;
  position: absolute;
  right: 0;
  top: 0;
}

.title-box p {
  color: #f1f1f1cd;
}

.configuration-section {
  width: 98%;
  margin: 10px auto;
}
.configuration-section .project-box h4 {
  width: 18%;
}
.config-box {
  background-color: var(--white);
  border-radius: 15px;
  padding: 1.5rem 1rem;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
  border: 2px solid transparent;
}

.config-box:hover {
   background: linear-gradient(45deg, #fff 0%, #6ebdbd12 49.04%);
   border: 2px solid var(--heading-color);
   transform: scale(0.99);
   /* color: var(--whi); */
}

.config-box h3 {
  font-size: 1.5rem;
  color: var(--primaycolor);
}
.config-box h5 {
  font-size: 1rem;
  margin-top: 5px;
  margin-bottom: 1rem;
}


.aminity-box {
  background-color: var(--white);
  padding: 1.5rem 1.2rem;
  border-radius: 15px;
  box-shadow: 2px 5px 1px #05868620;
  transition: 0.3s all ease;
}
.aminity-box:hover {
  background-color: var(--primaycolor);
  color: var(--white) !important;
  box-shadow: none;
  cursor: pointer;
  transition: 0.3s all ease;
  transform: translateY(5px);
}
.aminity-box:hover.aminity-box p {
  color: var(--white) !important;
}
.aminity-box img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}
.aminity-box h4 {
  font-weight: 500 !important;
}
.aminity-box p {
  width: 80%;
  margin-top: 10px;
}
/* ==========project page ends==================== */


/* ================about page start here================== */
.mobile-break {
  display: inline;
}
.why-box {
  padding: 2.7rem 2rem;
  transition: 0.3s all ease-in-out;
}
.why-box h3 {
  font-size: 3rem;
  color: var(--primaycolor);
  text-shadow: 2px 5px #2730362c;
}
.why-box p {
    width: 80%;
}
.why-box:hover h3 {
  color: var(--white) !important;
  text-shadow: none;
  font-size: 3.25rem;
}
.why-box h4 {
  text-transform: uppercase;
  
}

/* ================about page ends here================== */


/* ==============responsive start here ================= */
@media screen and (max-width: 768px) {
  .hero-section {
    padding: 15px;
    margin-top: 95px;
  }
  .about-txt {
      margin-top: 1.5rem;
  }
  .about-txt h4, .project-box h4 {
    width: 35% !important;
  }
  .project {
    padding: 50px 0rem;
  }
  .project-box h4 {
    width:50% !important;
  }
  .project-image img { 
    height: auto ;
    margin-bottom: 1rem;
  }
  .development-approach {
    padding: 50px 1rem;
  }
  .development-heading h4 {
  width: 70% !important;
 }
 .d-box{
  margin-bottom: 1.5rem;
 }
 .gallery-section {
  padding: 30px 1rem;
 }
 .gallery-inner p {
  width: 100% !important;
 }
 .contact-section {
padding: 30px 0.5rem;
 }
 .c-box{
  margin-bottom: 1.5rem;
 }
 /* .contact-information{
  padding: 30px 1rem;
 } */
 .contact-form-section {
    padding: 0px 1rem;
  }
  .contact-map  {
    padding: 0.5rem;
  }
  .contact-form {
    margin: 2rem 0rem;
    margin-bottom: 5rem;
  }
  .footer-nav h4 {
    margin-bottom: 1rem;
  }
  .footer-nav , .footer-address {
    margin: 1rem 0;
  }
  .copyright {
    flex-direction: column;
    text-align: center;
  }
  .title-box {
    padding-bottom: 0;
  }
  .title-box img {
    position: relative;
    width: 80%;
  }
}

@media screen and (max-width: 500px) {
    .hero-section video {
        border: 1px solid var(--heading-color);
    }
    .title-box img {
    position: relative;
    width: 95%;
  }
  .btn {
    width: 95%;
  }

   .about-txt h4, .project-box h4 {
    width: 60% !important;
  }
   .mobile-break {
    display: block;   /* forces line break */
    margin-top: 4px;  /* optional spacing */
  }

  .why-box {
        padding: 2.7rem 1.5rem;
  }
  .why-box h4 {
      font-size: 1.2rem;
  }
  .why-box p {
      width: 100% !important;
  }
  
  .footer-icon-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-icon-box .icon {
   margin-bottom: 0.5rem;
  }
  .footer-icon-box {
    margin-bottom: 1.3rem !important;
  }
.copyright a {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 400px) {

  .development-heading h4 {
    width: 90% !important;
  }
   .copyright a {
    font-size: 0.7rem;
  }
}

@media screen and (max-width: 350px) {
  .project-box h4 {
    width: 80% !important;
  }
  .development-heading h4 {
    font-size: 0.9rem;
    width: 95% !important;
  }
  .contact-box a {
    font-size: 0.8rem;
  }
  .footer-box {
        padding: 50px 20px;
  }
}
/* ==============responsive ends here ================= */


/* ============project page responsive start here================== */
@media screen and (max-width: 768px) {
  .project-hero {
    width: 95%;
    height: 75vh;
    margin-top: 7.5rem;
  }
  .g-heading {
    width: 70%;
  }

  .project-hero p {
    width: 100% !important;
  }
  .configuration-section .project-box h4 {
    width: 85% !important;
  }
  .config-box {
    margin-bottom: 1rem;
    border: 2px solid var(--heading-color);
  }
  .config-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .aminity-p {
    width: 95% !important;
  }
  .aminities-section .project-box h4 {
    width: 85% !important;
  }
  .contact-map {
    padding: 0.5rem 0rem;
  }
}
@media screen and (max-width: 500px) {}
@media screen and (max-width: 400px) {}
@media screen and (max-width: 350px) {}

/* ============project page responsive ends here================== */

/* ============contact page responsive start here================== */
@media screen and (max-width: 768px) {
  .heading-section {
    margin-top: 7rem;
    width: 95%;
  }
}
/* ============contact page responsive end here================== */