* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* --primary-color: #094065; */
  --primary-color: #1e2941;
  --primary-bg-color: #f1f1f1;
  --secondary-color: #2a3d67;
  --dark-light-color: #5c5c5c;
  --text-primary: #fff;
  --text-secondary: #000;
  --dark-bg: #1a1a1a;
  --card-bg: #242424;
  --border-color: #2e2b2b;
  --text-primary: #ffffff;
  --text-secondary: #1e1a1a;
}

body {
  background-image: url("../assets/images/project_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  height: 100vh;
  width: 100%;
  backdrop-filter: brightness(0.8);
}

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: transparent;
  background-image: url("../assets/images/nihal.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-primary);
  height: 8rem;
  border-bottom: 1px solid rgba(128, 128, 128, 0.3); /* semi-transparent grey */
  width: 100%;
  position: absolute; /* Changed to relative positioning */
  z-index: 1000;
  background-blend-mode: multiply;
}

/* Ensure body doesn't create scroll issues */
body {
  padding-top: 0; /* Remove padding-top completely */
  height: 100vh;
  width: 100%;
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  margin: 0;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo-image {
  max-height: 120px;
  width: 140px;
  position: relative;
  top: 12px;
}

.nav-menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 48px;
  margin: 0;
  padding: 0;
}

.nav-menu ul li a {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu ul li a:hover {
  color: var(--secondary-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background-color: var(--text-primary);
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

/* Media query for responsive behavior */
@media (max-width: 768px) {
  .navbar {
    background-image: none;
    background-color: rgba(255, 255, 255, 0.9); /* semi-transparent white for mobile */
    position: relative; /* Changed to relative */
    height: 80px;
  }

  body {
    padding-top: 0; /* Removed padding completely */
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 100px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 30px;
    padding: 20px;
  }

  .logo-image {
    max-height: 80px;
    width: 100px;
    top: 0;
  }
}
/* Navbar Ends */


.contactUs-hero {
  display: flex;
  background-color: transparent;
  background-image: linear-gradient(270deg, #ffffff00 0.02%, #1e1e1ebf 100%);
  justify-content: flex-start;
  align-items: center;
  padding-left: 160px;
  height: 60vh;
  width: 100%;
  padding-bottom: 6rem;
  color: var(--text-primary);
}

.contactUs-hero .main-heading h1 {
  font-size: 4rem;
  font-weight: 100;
  padding-top: 6rem;
  font-family: "Manrope", sans-serif;
}

/* contact us main starts  */

.contactus-main {
  display: flex;
  background-color: var(--text-primary);
  justify-content: flex-start;
  align-items: center;
  padding: 0px 160px;
  height: 120vh;
  width: 100%;
  padding-top: 6rem;
  color: var(--text-secondary);
}

.contactus-main-container {
  display: flex;
  width: 100%;
  height: 100%;
}

.contact-left-side {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  padding-right: 2rem;
}

.contact-right-side {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  padding-left: 2rem;
}

/* New styles for the design */
.contact-heading {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-family: "Manrope", sans-serif;
}

.contact-icon {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.contact-heading h3 {
  font-size: 1rem;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  
}

.contact-left-side h1 {
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: "Manrope", sans-serif;
}

.text-dark {
  color: #000;
  font-weight: 600;
}

.contact-desc {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 90%;
}

.contact-info-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
}

.info-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.info-icon i {
  font-size: 2rem;
  color: #fff;
}

.info-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.info-content p {
  color: #666;
}

/* Right side - form */
.contact-right-side h2 {
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.form-row {
  display: flex;
  gap: 1rem;
  width: 100%;
}

.form-input {
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
}

.full-width {
  width: 100%;
}

.phone-input-container {
  position: relative;
  width: 100%;
}

.orange-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  z-index: 1;
}

.phone-input-container .form-input {
  padding-left: 40px;
}

.form-textarea {
  width: 100%;
  height: 150px;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
  resize: none;
}

.submit-btn {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--text-secondary);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

/* MAP stars  */
.map {
  background-color: var(--text-primary);
  width: 100%;
  .container-map {
    width: 100%;
    height: 400px;

    iframe {
      width: 100%;
      height: 100%;
      border-radius: 10px;
    }
  }
}

/* MAP End */


  
/*  footer Starts */
/*  footer Starts */

.footer {
  display: flex;
  flex-direction: column;
  background-color: var(--dark-bg);
  justify-content: flex-start;
  padding: 0px 160px;
  height: 100vh;
  width: 100%;
  color: var(--text-primary);
  background-image: linear-gradient(
      rgba(26, 26, 26, 0.85),
      rgba(26, 26, 26, 0.85)
    ),
    url("https://via.placeholder.com/1920x1080");
  background-size: cover;
  background-position: center;
  position: relative;
}

.contact-button {
  position: absolute;
  top: 100px;
  right: 100px;
  background-color: var(--primary-color);
  color: white;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: visible;
}

.rotating-container {
  position: relative;
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}

.circular-text {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 0;
  left: 0;
}

.circular-text text {
  fill: white;
  font-size: 6.5px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}

.arrow {
  position: absolute;
  z-index: 2;
  width: 30px;
  height: 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

.header-section {
  margin-top: 100px;
  margin-bottom: 50px;
}
.header-section h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-family: "Manrope", sans-serif;
}
.header-section p {
  font-size: 18px;
  font-family: "Lora", serif;
}
.divider {
  width: 100%;
  height: 1px;
  background-color: #333;
  margin: 20px 0;
  font-family: "Lora", serif;
}
.main-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
  font-family: "Lora", serif;
}
.logo-section {
  display: flex;
  flex-direction: column;
  width: 25%;
}
.logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.logo-icon {
  width: 150px;
  height: 80px;
  background-color: transparent;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.logo-icon img {
  max-width: 100%;
  height: auto;
  display: block;
}
.logo-text {
  margin-bottom: 20px;
  font-size: 16px;
}
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  font-family: "Lora", serif;
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  cursor: pointer;
}
.links-section {
  display: flex;
  gap: 100px;
  flex-grow: 1;
  justify-content: center;
  font-family: "Lora", serif;
}
.link-column {
  display: flex;
  flex-direction: column;
}
.link-column h3 {
  font-size: 20px;
  margin-bottom: 30px;
  font-family: "Lora", serif;
}
.link-column a {
  color: var(--text-primary);
  text-decoration: none;
  margin-bottom: 20px;
  font-size: 16px;
}
.contact-section {
  width: 25%;
}
.contact-section h3 {
  font-size: 20px;
  margin-bottom: 30px;
  font-family: "Lora", serif;
}
.contact-section p {
  margin-bottom: 20px;
  font-size: 16px;
}
.copyright {
  margin-top: auto;
  padding-bottom: 30px;
  padding-top: 30px;
  text-align: center;
  border-top: 1px solid #333;
  font-family: "Manrope", sans-serif;
} /* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .footer {
    padding: 0 20px;
    height: auto;
  }
  .contact-button {
    position: static;
    margin: 30px auto;
    width: 100px;
    height: 100px;
  }
  .circular-text {
    width: 100px;
    height: 100px;
  }
  .circular-text text {
    font-size: 5.5px;
  }
  .header-section {
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: center;
  }
  .header-section h1 {
    font-size: 32px;
  }
  .header-section p {
    font-size: 16px;
  }
  .main-content {
    flex-direction: column;
    align-items: center;
  }
  .logo-section,
  .links-section,
  .contact-section {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .links-section {
    flex-direction: column;
    gap: 30px;
  }
  .link-column {
    align-items: center;
  }
  .social-icons {
    justify-content: center;
  }
  .copyright {
    padding: 20px 10px;
  }
} /* footer Ends */
/* footer Ends */
  
  /* footer Ends */
