/* ====== RESET ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Helvetica Now Display, sans-serif;
  
}
/* Animation*/

/* ===== Scroll Animations ===== */
.fade-left, .fade-right, .fade-up, .value-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.fade-left {
  transform: translateX(-50px);
}
.fade-right {
  transform: translateX(50px);
}
.fade-up {
  transform: translateY(40px);
}

.show-animate {
  opacity: 1;
  transform: translateX(0) translateY(0);
}






/* ====== HEADER ====== */
/* ====== RESET ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2E3192;
  --text-dark: #333333;
  --text-muted: #7D7D7D;
}

body {
  font-family: Helvetica Now Display, sans-serif;
}

/* ====== HEADER ====== */
.header {
  width: 100%;
  position: sticky;
  top: 0;
  background-color: #2E3192;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 60px;
  z-index: 1000;
  flex-wrap: nowrap;              /* prevent wrapping */
}

.logo img {
  height: 40px;
}

/* Navbar takes the flexible middle space */
.navbar {
  display: flex;
  align-items: center;
  flex: 1 1 auto;                 /* grow/shrink as needed */
  min-width: 0;                   /* allows flex children to shrink properly */
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;        /* center the menu in the available middle */
  gap: 45px;
  flex: 1 1 auto;
  min-width: 0;
}

.navbar .nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;            /* keep items on one line */
}

.navbar .nav-links li a:hover {
  color: #FFD700;
}

/* Hamburger sits at the end of navbar area */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-left: 12px;
  flex: 0 0 auto;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
}

/* ===== Call (desktop, right side) ===== */
.call-icon {
  margin-left: auto;              /* pushes this block to the far right */
  flex: 0 0 auto;
}

.call-icon a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  white-space: nowrap;
}

.call-icon img {
  height: 22px;
  width: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.call-icon img:hover {
  transform: scale(1.1);
  color: #FFD700;
  
}

.call-icon span {
  color: white;
}
.call-icon span:hover {
  color: #FFD700;
}

/* ===== Call item INSIDE hamburger ===== */
.mobile-call {
  display: none; /* hidden on desktop */
}

.mobile-call a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.mobile-call img {
  height: 20px;
  filter: invert(1) brightness(0); /* <-- makes white SVG look black */

}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .navbar .nav-links {
    gap: 28px; /* tighter gaps on medium screens to keep layout in one row */
  }
}

@media (max-width: 768px) {
  .navbar {
    justify-content: flex-end;
  }

  .navbar .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 30px;
    width: 220px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    justify-content: flex-start;  /* stack links */
    align-items: flex-start;
    gap: 14px;
  }

  .navbar .nav-links li a {
    color: #000;
  }

  .navbar .nav-links li a:hover {
    color: var(--primary);
  }

  .navbar .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  /* Hide desktop call on small screens */
  .call-icon {
    display: none;
  }

  /* Show call option inside hamburger */
  .mobile-call {
    display: block;
  }
}




/* ===== Layout for the top row (title) and second row (buttons + description) */
.hero-section {
  position: relative;
  width: 100%;
  /* height: 800px; */
  height: clamp(700px, 85vh, 780px);
  overflow: hidden;
  font-family: "Helvetica Now Display", sans-serif;
  display: flex;               /* FLEX CENTER */
  justify-content: center;     /* horizontal center */
  align-items: center;         /* vertical center */
  text-align: center;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.3),   /* top slightly dark */
    rgba(0, 0, 0, 0.3)    /* bottom slightly dark */
  );
  z-index: 0.5;
}


/* Background slider covers section */
.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  align-items: left;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 900ms ease-in-out;
}

.hero-slider .slide.active { opacity: 1; }

/* Content sits on top */
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 48px;
  row-gap: 16px;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 4vw 28px;
  color: white; /* text visible on images */
  height: 100%;              /* take full hero height */
  place-content: center;
}

/* Title */
.hero-title {
  grid-column: 1;
  grid-row: 1;
  /*font-size: clamp(2rem, 4vw, 3.25rem);*/
  font-size: 3.6rem;
  line-height: 1.1;
  font-weight: 800;
  text-align: left;
  width: 700px;
  font-family: "Lora";
  margin-bottom: 20px;
}

/* Buttons */
.hero-buttons {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  gap: 16px;
}

.hero-desc {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  text-align: right;
  max-width: 420px;
  line-height: 1.6;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease;
}

.btn-primary {
  background: var(--primary, #4f46e5);
  color: #fff;
  box-shadow: 0 6px 14px rgba(79,70,229,0.25);
}
.btn-primary:hover { transform: translateY(-1px); }

.btn-secondary {
  background: rgba(255,255,255,0.9);
  color: #000;
  
}
.btn-secondary:hover { transform: translateY(-1px); }

/* Tablet */
/* ===== Tablet (max 992px) ===== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;   /* single column */
    grid-template-rows: auto auto auto; /* ✅ force stacking rows */
    text-align: center;
    row-gap: 24px;
    padding: 50px 5vw;
    max-width: 800px;
    justify-items: center;
  }

  .hero-title {
    grid-column: 1;
    grid-row: 1;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    font-size: clamp(1.9rem, 5vw, 2.6rem);
  }

  .hero-desc {
    grid-column: 1;
    grid-row: 2;   /* ✅ always below title */
    text-align: center;
    width: 100%;   /* ✅ full width */
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-buttons {
    grid-column: 1;
    grid-row: 3;   /* ✅ always below description */
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ===== Mobile (max 680px) ===== */
@media (max-width: 680px) {
  .hero-section {
    height: auto;
    min-height: 500px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 40px 5vw;
  }

  .hero-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .hero-desc {
    width: 100%;      /* ✅ make it responsive */
    max-width: 460px;  /* ✅ don’t restrict */
    margin: 0 auto;
    text-align: center;
    font-size: clamp(0.9rem, 4vw, 1rem);
    line-height: 1.6;
    padding: 0 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;

    grid-column: auto;
    grid-row: auto;
    justify-self: auto;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
  }

  .hero-buttons a {
    min-width: 160px;
    text-align: center;
  }
}



  



/* ===== Logo Section Styles ===== */
.logo-section {
  background: #ffffff;
  padding: 40px 20px;
  overflow: hidden;
  position: relative;

  background-image: url('Img/section2\ \ wall.svg'); /* your SVG file */
  background-repeat: no-repeat;
  background-size: cover; /* fills full width + height */
  background-position: center;
}

.logo-slider {
  width: 100%;
  overflow: hidden;
}

.logo-track {
  display: flex;
  width: calc(250px * 41); /* 12 logos (6 real + 6 duplicate) */
  animation: scroll 30s linear infinite;
}

.logo-track img {
  width: 150px;
  height: auto;
  margin: 0 30px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.logo-track img:hover {
  filter: grayscale(0%);
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .logo-track img {
    width: 120px;
    margin: 0 20px;
  }
}

@media (max-width: 768px) {
  .logo-track img {
    width: 90px;
    margin: 0 15px;
  }
}

@media (max-width: 480px) {
  .logo-track img {
    width: 70px;
    margin: 0 10px;
  }
}

/*Information section */

/* Info Section */
.info-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #ffffff;

  background-image: url('Img/section2\ \ wall.svg'); /* your SVG file */
  background-repeat: no-repeat;
  background-size: cover; /* fills full width + height */
  background-position: center;
}

.info-content {
  max-width: 900px;
  margin: 0 auto;
}

.info-section h2 {
  font-size: 2.6rem;
  margin-bottom: 15px;
  color: #333;
  font-family: "Lora";
}

.info-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555;
}


.info-image img {
  width: 100%;
  max-width: 1000%;
  height: auto;
  max-height: 800px;
  border-radius: 10px;
  
}

/* Responsive */
@media (max-width: 768px) {
  .info-section h2 {
    font-size: 1.6rem;
  }

  .info-section p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .info-image img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .info-section {
    padding: 40px 15px;
  }

  .info-section h2 {
    font-size: 1.4rem;
  }

  .info-section p {
    font-size: 0.9rem;
  }
}




/* feature Section */
.featured-projects {
  width: 100%;
  padding: 60px 0;

  background-image: url('Img/section2\ \ wall.svg'); /* your SVG file */
  background-repeat: no-repeat;
  background-size: cover; /* fills full width + height */
  background-position: center;
}

.featured-projects .projects-wrapper {
  max-width: 960px;  /* keep content readable */
  margin: 0 auto;
  padding: 0 20px;   /* side padding for small screens */
}

.projects-header {
  text-align: right;
  margin-bottom: 40px;
  
}

.projects-header h2 {
  font-size: 2.6rem;
  margin-bottom: 10px;
  color: #111;
  font-family: "Lora";
}

.projects-header p {
  color: #555;
  font-size: 1rem;
}

/* Cards */
.project-card {
  position: relative;
  margin-bottom: 30px;
  border-radius: 12px;
  width: 100%px;
  height: 350px;
  overflow: hidden;
  cursor: pointer;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.5s ease;
}

.project-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(0.6);
  transition: transform 0.4s ease;
}

.card-content {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 20px;
  color: #fff;
}

/* Left content */
.card-left h3 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.p-btn {
  background: #fff;
  color: #111;
  padding: 10px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.p-btn:hover {
  background: #ddd;
  transform: scale(1.05);
}

/* Right description */
.card-right {
  background: rgba(0, 0, 0, 0.6);
  padding: 12px;
  border-radius: 8px;
  max-width: 45%;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Hover Effect */
.project-card:hover img {
  transform: scale(1.05);
}

/* Scroll Animation */
.project-card.show {
  transform: translateY(0);
  opacity: 1;
}

/* Reverse only on desktop (above 1024px) */
.project-card.reverse .card-content {
  flex-direction: row-reverse;
}

/* On tablet & mobile (1024px and below), stack & align right */
@media (max-width: 1024px) {
  .project-card.reverse .card-content {
    flex-direction: column;
    align-items: flex-end; /* align content to right */
    text-align: right;     /* align text right */
  }

  .project-card.reverse .card-left,
  .project-card.reverse .card-right {
    width: 100%;   /* keep full width */
  }
}





/* Responsive */
@media (max-width: 992px) {
  .projects-header {
    text-align: center;
  }
  .card-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .card-right {
    margin-top: 12px;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .projects-header h2 {
    font-size: 1.6rem;
  }
  .card-left h3 {
    font-size: 1.2rem;
  }
  .card-right {
    font-size: 0.85rem;
  }
}


/* Section Styling */
.values-section {
  position: relative;
  padding: 60px 0;
  max-width: 100%;
  margin: 0;
  z-index: 1;
}

.values-section::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; left:0; right:0; bottom:0 */
  background-image: url('Img/section2\ \ wall.svg');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.values-wrapper {
  max-width: 1200px;   /* keeps content from going full width */
  margin: 0 auto;      /* centers content */
  padding: 60px 20px;  /* restores spacing inside */
}


.values-header {
  text-align: left;
  margin-bottom: 40px;
}

.values-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Lora";
}

.values-header p {
  font-size: 1rem;
  color: #555;
  max-width: 400px;
  line-height: 1.6;
}

/* Content Layout */
.values-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Image */
.values-image {
  flex: 1 1 45%;
}

.values-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.values-image img:hover {
  transform: scale(1.03);
}

/* Values List */
.values-list {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value-item {
  border-left: 3px solid #007BFF;
  padding-left: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.value-item.show-animate {
  opacity: 1;
  transform: translateY(0);   /* move to normal position */
}

.value-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.value-item p {
  color: #666;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .values-content {
    flex-direction: column;
  }

  .values-image, .values-list {
    flex: 1 1 100%;
  }
}

/*

.testimonial-section {
  display: flex;
  flex-direction: column;
  padding: 60px 20px;
  background: #ffffff;
  gap: 40px;
}

.testimonial-content {
  max-width: 1200px;
  text-align: right;
  margin-bottom: 40px;   
  margin-right: 120px;      
        
}

.testimonial-content h2 {
  font-size: 2.6rem;          
  margin-bottom: 10px;
  color: #111;
  font-family: "Lora";
}

.testimonial-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}


.testimonial-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}

.testimonial-row {
  display: flex;
  gap: 20px;
  animation: scroll 20s linear infinite;
}

.testimonial-row:nth-child(2) {
  animation-direction: reverse;
}

.testimonial-card {
  background: #F0F4FA; 
  border-radius: 12px;
  padding: 15px;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  align-items: stretch;
  gap: 15px;
  flex-shrink: 0;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card img {
  min-width: 60px;
  max-width: 80px;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  justify-content: center; 
  height: 100%;
}


.testimonial-info h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
}

.testimonial-info .rating {
  color: #f4c150;
  font-size: 0.9rem;
  margin: 3px 0;
}

.testimonial-info .desc {
  font-size: 0.85rem;
  color: #333;
  line-height: 1.2rem;
}


@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


@media (max-width: 768px) {
  .testimonial-content {
    align-items: center;
    text-align: center;
    margin-left: 0;
  }
  .testimonial-card {
    min-width: 200px;
  }
}

*/

/* Contact Section */
/* Contact Section */
.contact-section {
  padding: 60px 20px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;

  background-image: url('Img/section2\ \ wall.svg'); /* your SVG file */
  background-repeat: no-repeat;
  background-size: cover; /* fills full width + height */
  background-position: center;
}

/* Title and Description */
.contact-header {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto 40px auto;
  text-align: left;
  box-sizing: border-box;
}

.contact-header h2 {
  font-size: 2.6rem;
  margin-bottom: 10px;
  font-family: "Lora", serif;
}

.contact-header p {
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Form and Map Container */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  align-items: stretch;
  justify-content: space-between;
  box-sizing: border-box;
}

/* Form */
.contact-left {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-left form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  height: 100%;
}

.contact-left input,
.contact-left textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}

.contact-left textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-left button {
  padding: 12px;
  background-color: #007BFF;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-left button:hover {
  background-color: #0056b3;
}

/* Map */
.contact-right {
  flex: 1;
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
}

.contact-right iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-left, .contact-right {
    width: 100%;
    height: 300px; /* map height on mobile */
  }

  .contact-header {
    max-width: 100%;
  }
}




/* ===== Footer ===== */
.footer {
  background: #fff;
  padding: 60px 60px 60px;
  font-family: "Space Grotesk", sans-serif;
  color: #000;

}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}


.footer-about {
  flex: 1 1 250px;
}

.footer-logo {
  max-width: 120px;
  margin-bottom: 15px;
}

.footer-about p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-socials a {
  font-size: 1.2rem;
  margin-right: 12px;
  color: #000;
  transition: color 0.3s;
}
.footer-socials a img {
  width: 32px;  
  height: 32px;  
}

.footer-contact img {
  width: 22px;   
  height: 22px;
}


.footer-socials a:hover {
  color: #007BFF;
}

/* Links */
.footer-links {
  flex: 1 1 180px;
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #007BFF;
}

/* Contact */
.footer-contact {
  flex: 1 1 250px;
}

.footer-contact p {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.footer-contact i {
  color: #007BFF;
  min-width: 18px;
}

/* Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
}

.footer-policy a {
  margin-left: 20px;
  text-decoration: none;
  color: #000;
  transition: color 0.3s;
}

.footer-policy a:hover {
  color: #007BFF;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .footer {
    padding: 50px 60px 60px;
  }

  .footer-container {
    gap: 30px;
  }

  .footer-bottom {
    padding-top: 15px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 60px;
  }

  .footer-container {
    flex-direction: column;
    text-align: left;
    gap: 25px;
  }

  .footer-about, .footer-links, .footer-contact {
    flex: 1 1 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-policy a {
    margin: 0 10px;
  }
}
