body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    /* background-color: black; */
}

h1,
h2,
h3,
h4,
h4,
h6,
p {
    margin: 0;
    padding: 0;
}

/* --------------- Hero Section ------------- */

section {
  padding: 0rem 5rem;
}

.hero-title {
  font-size: 6rem;
  font-family: 'Jura', sans-serif;
  text-align: center;
}

.hero-subtitle {
  font-size: 3rem;
  font-family: 'Jura', sans-serif;
  text-align: center;
}

.hero-media {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  border-radius: 20px;
  margin-top: 1rem;
}

.hero-media video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.info-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.info-project-img img {
  height: 75px;
  width: 75px;
  border-radius: 10px 10px 0 10px;
  border: solid 3px white;
}

.info-project-img .img2 {
  margin-bottom: -1.5rem;
  margin-left: -1.5rem;
}

.info-project-text h2 {
  font-size: 2.5rem;
  font-family: 'Aboreto', cursive;
}

.info-services {
  border-radius: 50px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  padding: 0.5rem 0rem 0.5rem 1.5rem;
}

.info-block h4{
  font-size: 1.3rem;
  font-family: 'Aboreto', cursive;
}

.info-block p{
  color: grey;
}

.services-image{
  height: 80px;
  width: 80px;
}

.services-image img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.story-btn{
  background: #1664F8;
  color: white;
  border: none;
  font-size: 2rem;
  padding: 1.5rem 0.7rem;
  border-radius: 10px 10px 0px 10px;
}


@media (max-width: 1200px) {
  section {
    padding: 0rem 3.5rem;
  }
  .hero-title {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 2.2rem;
  }

  .hero-info {
    flex-direction: row;
    justify-content: center;
    gap: 5rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 2rem;
  }

  .hero-media {
    height: 45vh;
  }

  .hero-cta-btn {
    font-size: 1.1rem;
    padding: 0.6rem 1.2rem;
  }

  .info-project-img img {
    height: 65px;
    width: 65px;
  }

  .services-image {
    height: 65px;
    width: 65px;
  }

  .story-btn {
    font-size: 1.5rem;
    padding: 1.2rem 0.6rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 0rem 2rem;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-media {
    height: 40vh;
    margin-top: 1.5rem;
  }

  .services-text p, .story-text p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  section {
    padding: 0rem 1rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-cta-btn {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }

  .story-btn {
    font-size: 1.2rem;
    padding: 1rem 0.5rem;
  }

  .hero-info {
    gap: 3rem;
}

 .info-block {
    width: 90%;
  }

  .info-project-img img {
    height: 55px;
    width: 55px;
  }

  .services-image {
    height: 55px;
    width: 55px;
  }
}


.services {
  margin-top: 3rem;
  padding: 0 1rem;
}

/* Tabs */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.tab {
  padding: 10px 20px;
  border: none;
  background: #fff;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s;
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.tab.active {
  background-color: #2a7ae4;
  color: white;
  box-shadow: none;
}

/* Content Boxes */
.content {
  display: none;
}

.content.active {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  background: #fff;
  border-radius: 8px;
  margin: 3rem 0;
  padding: 1rem;
}

/* Service Box */
.service-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 10px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
  transition: transform 0.2s;
}

.service-box i {
  margin-bottom: 12px;
  color: #2a7ae4;
  font-size: 2rem;
}

.service-box p {
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Hover effect */
.service-box:hover {
  transform: translateY(-5px);
}

/* Media Queries for extra small screens */
@media (max-width: 480px) {
  .tab {
    font-size: 0.9rem;
    padding: 8px 16px;
  }

  .service-box {
    padding: 20px 10px;
  }

  .service-box p {
    font-size: 0.85rem;
  }
  .arrow {
    transform: rotate(90deg);
}
}


.proceses {
  padding: 3rem 1rem 5rem;
  background-color: #fdfdfd;
}

.proceses h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 30px;
  font-family: 'Aboreto', cursive;
}

.proceses h2 span {
  color: #2a7ae4;
}

/* Process Flow Layout */
.process-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Step Box */
.step {
  background-color: #f4f8ff;
  border: 1px solid #d6e2ff;
  border-radius: 10px;
  padding: 20px 15px;
  width: 200px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step i {
  color: #2a7ae4;
  margin-bottom: 10px;
}

.step p {
  font-size: 1em;
  font-weight: 500;
  margin: 0;
}

/* Arrows Between Steps */
.arrow {
  font-size: 2em;
  color: #2a7ae4;
  display: flex;
  align-items: center;
}

/* Tablet View: Adjust width and spacing */
@media (max-width: 992px) {
  .step {
    width: 180px;
  }

  .arrow {
    font-size: 1.5em;
  }
}

/* Mobile View: Stack steps vertically */
@media (max-width: 768px) {
  .process-flow {
    flex-direction: column;
  }

  .arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }

  .step {
    width: 100%;
    max-width: 300px;
  }

  .proceses h2 {
    font-size: 1.5rem;
  }
}


/* --------------------partner-------------------- */

.partner {
  margin: 5rem 0;
  overflow: hidden;
}

.partner .head {
  width: 100%;
}

.partner .head h6 {
  text-align: center;
  font-size: 1.5rem;
  color: black;
  margin-bottom: 2rem;
  font-family: 'Aboreto', cursive;
}

.ourpartners {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
}

.slide-track {
  display: flex;
  white-space: nowrap;
  animation: scroll 50s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(10%);
  }

  100% {
    transform: translateX(-10%);
  }
}

.slide-track:hover {
  animation-play-state: paused;
}

.slide {
  height: 80px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.slide img {
  max-width: 100%;
  height: auto;
  transition: transform 1s;
}

.slide img:hover {
  transform: scale(1.1);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .partner {
    padding: 0 1rem;
  }

  .slide {
    width: 120px;
  }
}

@media screen and (max-width: 480px) {
  .slide {
    width: 100px;
  }

  .partner .head h6 {
    font-size: 1.2rem;
  }
}

.project-section {
  padding: 5rem 2rem;
  background-color: #f9f9f9;
}

.project-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  color: #2a7ae4;
  letter-spacing: 1px;
}

/* Project Grid Container */
.project-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Each Project Item */
.project-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  background-color: white;
  transition: transform 0.3s ease;
}

.project-item:hover {
  transform: translateY(-5px);
}

/* Image Styling */
.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.project-item:hover img {
  transform: scale(1.05);
}

/* "Explore More" Card */
.project-item-container {
  height: 100%;
  width: 100%;
  min-width: 400px;
  background-color: #2a7ae4;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 1.2rem;
  text-align: center;
  padding: 1rem;
  transition: background-color 0.3s;
  cursor: pointer;
}

.project-item-container:hover {
  background-color: #1a5dc8;
}

/* Tablet */
@media (max-width: 992px) {
  .project-section h2 {
    font-size: 2rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .project-section {
    padding: 3rem 1rem;
  }

  .project-section h2 {
    font-size: 1.8rem;
  }

  .project-item-container {
    font-size: 1rem;
  }
}




