/* BIM Training Page Styles */

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

:root {
  --primary-blue: #344385;
  --primary-orange: #da6a43;
  --secondary-orange: #e06c43;
  --gradient-blue: #3a4583;
  --gradient-orange: #df6c43;
  --light-blue: #479ff8;
  --text-dark: #000000;
  --text-light: #939393;
  --white: #ffffff;
  --overlay-blue: rgba(52, 67, 133, 0.62);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow-x: hidden;
  color: var(--text-dark);
}

.bim-training-page {
  width: 100%;
  overflow: hidden;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1.5rem 0;
}

.navbar.scrolled {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 1rem 0;
  
}



.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 72px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-menu li {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu li:hover,
.nav-menu li.active {
  color: var(--light-blue);
}

.nav-menu li::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--light-blue);
  transition: width 0.3s ease;
}

.nav-menu li:hover::after,
.nav-menu li.active::after {
  width: 100%;
}
.scrolled .nav-menu li {color:#000!important;}
.scrolled .nav-menu li:hover, .scrolled .nav-menu li.active {color: var(--light-blue)!important;}



/* Hero Section */
.hero-section {
  position: relative;
  height: 850px;
  background: url('https://staging.bimtraining.net/wp-content/uploads/2026/04/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  margin-top: -50px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--overlay-blue);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 6rem;
  width: 100%;
}

.hero-title {
  font-size: 85px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  margin-top: 150px;
}

.hero-title .highlight {
  color: var(--primary-orange);
}

.hero-subtitle {
  font-size: 32px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  max-width: 711px;
  margin-bottom: 2.5rem;
}

.cta-button {
  background: linear-gradient(to right, var(--primary-blue), var(--secondary-orange));
  color: var(--white);
  border: none;
  padding: 16px 40px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.arrow-icon {
  width: 16px;
  height: 18px;
  /* transform: rotate(-90deg); */
}

.software-badges {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 6rem auto 0;
  padding: 2rem 3rem;
  background: var(--primary-blue);
  border-radius: 6px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  width: fit-content;
}

.software-badges img {
  height: 60px;
  width: auto;
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: start;
}

.experience-box {
  background: var(--white);
  border: 8px solid var(--secondary-orange);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  position: relative;
}

.experience-number {
  font-size: 85px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.experience-text {
  background: var(--white);
  padding: 0.5rem;
  position: relative;
  z-index: 1;
}

.experience-text p {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.since {
  font-size: 14px;
  color: var(--text-light);
}

.about-content {
  padding-top: 2rem;
}

.section-title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(to right, var(--gradient-blue), var(--gradient-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-description {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-dark);
}

.challenge-statement {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  max-width: 970px;
  margin: 0 auto;
}

/* Courses Section */
.courses-section {
  padding: 2rem 0 6rem 0;
  background: var(--white);
}

.section-title-main {
  font-size: 54px;
  font-weight: 500;
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-main.white {
  color: var(--white);
}

.course-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
  border: 1px solid #d2d2d2;
  border-radius: 6px;
  overflow: hidden;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.tab-button {
  flex: 1;
  padding: 1rem 2rem;
  font-size: 20px;
  font-weight: 700;
  border: none;
  background: var(--white);
  color: var(--primary-blue);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button:first-child {
  border-radius: 6px 0 0 6px;
}

.tab-button:last-child {
  border-radius: 0 6px 6px 0;
}

.tab-button.active {
  background: linear-gradient(to right, var(--primary-blue), var(--secondary-orange));
  color: var(--white);
}

.tab-button:hover:not(.active) {
  background: #f5f5f5;
}

.course-details {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: start;
}

.course-image {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.course-image img {
  width: 100%;
  height: auto;
  display: block;
}

.course-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 2rem;
}

.course-features {
  list-style: none;
}

.course-features li {
  font-size: 24px;
  font-weight: 300;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid #d2d2d2;
  padding-bottom: 1.5rem;
}

.course-features li .arrow {
  position: absolute;
  left: 0;
  color: var(--primary-blue);
}

.course-features li strong {
  font-weight: 600;
}

.subsection-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 4rem 0 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.benefit-card {
  text-align: center;
}

.benefit-icon {
  width: 117px;
  height: 117px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-orange) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-icon img {
  width: 60px;
  height: auto;
}

.benefit-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.benefit-card p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-dark);
}

/* Who Should Attend Section */
.who-should-attend-section {
  background: var(--primary-blue);
  padding: 2rem 0 0 0;
  background: url(https://staging.bimtraining.net/wp-content/uploads/2026/04/course-bg.jpg);
  background-size: cover;
}

.who-attend-grid {
  display: grid;
  grid-template-columns: 584px 1fr;
  gap: 4rem;
  align-items: center;
}

.who-attend-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.who-attend-content {
  color: var(--white);
}

.who-attend-intro {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.who-attend-list {
  list-style: none;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
 
}

.who-attend-list li {
  padding-left: 1.5rem;
  position: relative;
   margin-bottom:20px ;
}

.who-attend-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--secondary-orange);
  font-size: 24px;
}

/* What to Expect Section */
.what-to-expect-section {
  padding: 6rem 0;
  background: var(--white);

}

.expectations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
}

.expectation-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.expectation-number {
  width: 49px;
  height: 49px;
  background: linear-gradient(135deg, var(--secondary-orange) 0%, var(--secondary-orange) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.expectation-item p {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
  margin-top: 0.5rem;
}


/* project Section */
.project-section {
  padding: 6rem 0 16rem;
  background: var(--white);
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://staging.bimtraining.net/wp-content/uploads/2026/04/bg-project.jpg);
  background-position: bottom;
  background-repeat: repeat-x;
  background-attachment: fixed !important;

}
.project-section h2 {color: #fff;}
.project-grid
{display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 10% 0;}

.project-card {
  margin:0 2rem;
      box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    padding: 10px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px #262b34 solid;
}
.project-icon {with:100%;}

.project-icon img {width:100%; border-radius: 10px;}

.project-card h4 {font-size: 18px;
    font-weight: 600; padding-top: 10px; text-align: center; color: #000000;}


/* Contact Section */
.contact-section {
  background: var(--white);
    /* background: url(https://staging.bimtraining.net/wp-content/uploads/2026/04/contact-bg.jpg);
  background-position: bottom;
  background-repeat: repeat-x; */
}

.contact-header {
  background: linear-gradient(to left, var(--secondary-orange), var(--primary-blue) 38.942%);
  padding: 2.5rem 0;
  margin: 0 auto 50px;
  z-index: 1;
  width:45%;
  border-radius: 12px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact-info {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  color: var(--white);
}

.location-icon {
  width: 35px;
  height: 35px;
}

.address {
  flex: 1;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
   border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.address p {
  margin: 0.2rem 0;
}

.address strong {
  font-weight: 600;
}

.social-icons {
  margin-left: auto;
  padding-left: 1rem;
  padding-top: 3%;
 
}

.social-icons img {
  width: 70px;
  height: auto;
}

.contact-form-wrapper {
  position: relative;
  height: 680px;
}

.map-container {
  /* position: absolute;
  top: 19%;
  left: 0;
  right: 0; */
  height: 100%;
  z-index: 0;
  display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-container-map {width:100%; height:auto;}

.contact-form-container {
  /* position: absolute; */
  /* right: 5%;
  top: 10px;
  bottom: 10px; */
  background: var(--secondary-orange);
  padding: 3rem;
  border-radius: 12px;
  width: 80%;
  height: max-content;
  margin-top:15%;
  margin-left: 10%;

  z-index: 10;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.contact-form h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2rem;
}
.form-group-top {
  display: grid;
    grid-template-columns: 50% 1fr;
    width:100%;
    gap:2rem;
}

.form-group {
  margin-bottom: .5rem;
  
}

.form-group label {
  display: block;
  color: var(--white);
  font-size: 16px;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--white);
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  background: var(--white);
  color: var(--text-dark);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  width: 100%;
  padding: 1rem;
  background: var(--primary-blue);
  color: var(--white);
  border: 1px solid var(--primary-blue);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: #2a3666;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer {
  background: var(--primary-blue);
  padding: 2rem 0;
  text-align: center;
}

.footer p {
  color: var(--white);
  font-size: 14px;
  font-weight: 300;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1250px) {
  .hero-content {
    padding: 0 3rem;
  }
  
  .about-grid,
  .course-details,
  .who-attend-grid {
    /* grid-template-columns: 1fr; */
    gap: 2rem;
  }
  
  .experience-box {
    max-width: 400px;
  }
  
  .benefits-grid {
    /* grid-template-columns: 1fr; */
    gap: 2rem;
  }
  
  /* .contact-form-container {
    position: relative;
    right: auto;
    top: auto;
    margin: 2rem auto;
    width: 90%;
    max-width: 569px;
  } */
  
  .contact-form-wrapper {
    height: auto;
  }
  
  .map-container {
    position: relative;
    height: auto;
  }
  .hero-title {font-size: 65px;}
  .contact-header {width:75%;}
  .social-icons img {
    width: 45px;
    height: auto;
  
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0!important;
    margin: 2rem 3% 0;
}
.project-section {
    padding: 6rem 0 12rem;
}
  .contact-form-container {margin-top:25%;}
  .project-card {margin-bottom: 2rem;}
}





@media (max-width: 970px) {
.who-attend-grid {
    display: grid;
    grid-template-columns: none;

}
 .who-attend-content {order: -1; margin: 0 5%;}
 .map-container {        grid-template-columns: 1fr;
        }

            .contact-form-container {
        margin: 5%!important;
        width: 90%;
    }
    .section-title-main { margin: 0 5%;}
    .project-grid {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
   
}
}
@media (max-width: 768px) {
  .nav-menu {
    gap: 1rem;
    font-size: 14px;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .software-badges {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .software-badges img {
    height: 40px;
  }
  
  .section-title-main {
    font-size: 36px;
  }
  
  .course-tabs {
    flex-direction: column;
  }
  
  .tab-button {
    border-radius: 0 !important;
  }
  
  .expectations-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .logo img {
    height: 36px;
  }
  .contact-header {width:90%;}
    .about-grid,
  .course-details,
  .who-attend-grid {
    grid-template-columns: 1fr;

  }
  .experience-box {max-width: 100%;}
  .benefits-grid { grid-template-columns: 1fr;}
  .who-attend-image {display: none;}
  .who-should-attend-section {padding: 2rem 0;;}

    .section-title-main {
    font-size: 45px;
    margin-bottom: 2rem;
}
.project-grid {        grid-template-columns: 1fr;
        gap: 2rem; margin: 2rem 10%; }
        .project-card {margin-bottom: 2rem;}


 
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0 1.5rem;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .nav-menu {
    display: none; /* Implement mobile menu as needed */
  }
  .logo img {height: 70px;}
  .contact-info {display: block;}
  .address {border: none;}
  .map-container-map {margin-top:25%;}
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Animation on Scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefit-card,
.expectation-item {
  animation: fadeInUp 0.6s ease-out;
}
