/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

/* Header */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
}

.logo img {
  width: 150px;
  margin-right: 8px;
}

.navbar-collapse {
  list-style: none;
  display: flex;
  gap: 25px;
  justify-content: space-around;
}

.navbar-collapse a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.navbar-collapse a:hover {
  color: #f15b2a;

}

/* Hero Section */
.hero {

  background: linear-gradient(to right, #ffe9e1, #fff);
  

}


.hero-text h1 {
  font-size: clamp(2rem, 2vw + 1rem, 3.8rem);
  font-weight: bold;
  margin-bottom: 15px;
  font-family: "Rufina", serif;
}

.highlight-orange {
  color: #e94e1b;
  font-family: "Rufina", serif;
}

.hero-text p {
  margin-bottom: 20px;
  font-size: 18px;
  color: #000000;
  font-family: "Rufina", serif;
}


/* Buttons */
.buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.button-1 {
  background: #e94e1b;
  color: #fff;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
}

.button-1:hover {
  background: #c63c10;
}

.button-2 {
  background: #e94e1b;
  color: #fff;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
}

.button-2:hover {
  background: #b5381a;
}

/* Hero Image */
.hero-image img {
  height: auto;
  max-width: 100%;
}

.about_us {
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}
#about > div > div > div.col-lg-2 > img{
  width: 100%;
}
.content {
  position: relative;
  z-index: 1;
  /* keeps text above the curve */
}

.curve-shape {
  position: absolute;
  top: 45%;
  right: 0;
  transform: translateY(-50%);
  width: 100px;
  height: auto;
  z-index: 0;
}

.about_us h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 32px;
  letter-spacing: 8px;
  position: relative;
}

.about_us h3::after {
  position: absolute;
  content: "";
  background-color: #e94e1b;
  top: 0;
  bottom: 0;
  left: -13px;
  right: 0;
  height: 160px;
  width: 4px;
}

.about_us h2 {
  font-family: "Rufina", serif;
  font-weight: 700;
  font-size: clamp(2rem, 2vw + 1rem, 3rem);
  margin-bottom: 40px;
  /* max-width: 300px; */
}

.about_us p {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 18px;
}

.service {
  margin-top: 50px;
  padding: 80px 0;
}

.service h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 32px;
  letter-spacing: 8px;
  position: relative;
}

.service h2 {
  font-family: "Rufina", serif;
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 40px;
  /* max-width: 300px; */
}

.service p {
  margin-bottom: 20px;
  font-size: 18px;
  color: #000000;
  font-family: "Rufina", serif;
}

.service_button {
  text-decoration: none;
  padding: 15px 25px;
  background-color: #C72E1A;
  line-height: 100px;
  border-radius: 5px;
  color: white;
}

.service_button:hover {
  color: #C72E1A;
  background-color: transparent;
  border: 2px solid #C72E1A;
}

.tab-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #f05a28;
  background: #fff5ef;
  display: flex;
  align-items: center;
  justify-content: center;

}

.tab-icon:hover img {
  filter: brightness(0) invert(1);
}

.tab-icon:hover {
  background: #f05a28;
  cursor: pointer;

}

.tab-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.service .tab-1 {
  display: flex;
  margin-bottom: 30px;
  justify-content: center;
  align-items: start;

}

.tab-text h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 28px;
  margin-left: 15px;
}

.tab-text p {
  font-family: "Lato", sans-serif;
  font-weight: 200;
  font-size: 20px;
  margin-left: 15px;
}

.why-us {
  padding: 120px 0;
  background-image: url(../images/why_us_banner.png);
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.why-us h2 {
  text-align: center;
  font-family: "Rufina", serif;
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 190px;
  color: #fff;
}

.why-us h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 32px;
  letter-spacing: 8px;
  position: relative;
  text-align: center;
  color: #ffffff;
  margin-bottom: 40px;
}

.why-us .card {
  background-color: #FF914C;
  margin-right: 20px;
  height: 400px;
  position: relative;
  width: 282px;
  display: inline-block;
  vertical-align: top;
  flex: none !important;
}

.why-us .card:hover {
  background-color: #FFE0C5;

}

.why-us h6 {
  position: absolute;
  left: 0;
  top: 16px;
  font-size: 150px;
  font-weight: 800;
  font-family: Montserrat, sans-serif;
  line-height: 72px;
  color: #FFA770;
}

.why-us .card-title {
  position: absolute;
  left: 10px;
  top: 170px;
  font-size: 45px;
  font-weight: 800;
  font-family: "Roboto", sans-serif;
  line-height: 50px;
  text-align: center;
  color: #fff;
}

.why-us .card-title:hover {
  color: #F85F00;
  cursor: pointer;
}

.card-group {
  position: absolute;
  bottom: -140px;
}

.line {
  padding: 100px 0 0 0;
  background-color: #F85F00;
  margin-top: 263px;
  position: relative;
  height: 653px;
  overflow: hidden;
  margin-bottom: 100px;
}

.line .girl {
  position: absolute;
  top: 14px;
  left: 300px;
  z-index: 2;
}

.line .girl img {
  width: 100%;
  height: auto;
}

.line .back-line {
  font-size: 120px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  color: white;
  position: absolute;
  bottom: 351px;
  left: 0;
  z-index: 1;
  
}

.line .front-line {
  font-size: 120px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  color: rgb(0, 0, 0);
  position: absolute;
  bottom: 120px;
  left: 0;
  z-index: 3;

}

.box {
  margin-top: 50px;
  cursor: pointer;
}

.box .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;

}

.course {
  background-image: url(../images/course.jpg);
  width: 600px;
  height: 300px;
  padding: 20px;
  color: #000000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.5s
}

.blog {
  background-image: url(../images/blog.jpg);
  width: 600px;
  height: 300px;
  padding: 20px;
  color: #000000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.5s
}

.course:hover,
.blog:hover {
  transform: scale(1.05);
}

.box h2 {
  text-align: center;
  font-family: "Rufina", serif;
  font-weight: 700;
  padding-top: 86px;
  font-size: 48px;

}

.modal-content {
  background: linear-gradient(to right, rgba(250, 198, 149, 1) 0%, rgba(245, 171, 102, 1) 47%, rgba(239, 141, 49, 1) 100%);

}

.modal-title {
  text-align: center !important;
  font-family: "Rufina", serif;
  font-weight: 700;
  font-size: 34px;
}

/* Footer */
.footer {
  margin-top: 20px;
  text-align: center;
  padding: 50px;
  background-image: url(../images/fotter\ banner.png);
}

.footer-logo img {
  height: 100px;
  width: 200px;
}

.footer-links {
  margin: 15px 0;
}

.footer-links a {
  margin: 0 10px;
  color: #292626;
  text-decoration: none;
}

.footer-contact {
  margin: 15px 0;
  font-size: 14px;
  display: flex;
  justify-content: space-around;
}

hr {
  background-color: #d1422c;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 14px;
  color: #292626;
}

/* -----------------WORKSHOP---------------- */
.workshop-box {
  margin-top: 50px;
  cursor: pointer;
}

.workshop-box .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;

}
.up-coming {
  background-image: url(../images/workshoppp.jpg);
  width: 600px;
  height: 300px;
  padding: 20px;
  color: #000000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.5s
}

.previous {
  background-image: url(../images/workshoppp.jpg);
  width: 600px;
  height: 300px;
  padding: 20px;
  color: #000000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.5s
}
.up-coming:hover,
.previous:hover {
  transform: scale(1.05);
}

.workshop-box h2 {
  text-align: center;
  font-family: "Rufina", serif;
  font-weight: 700;
  padding-top: 70px;
  font-size: 42px;
color: rgb(255, 255, 255);
}








/* ==================------------------- RESPONSIVE FIXES----------------------- ================== */

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;

  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
    margin: 20px auto 0;
    display: block;
  }

  .about_us .row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about_us h2 {
    font-size: 36px;
  }

  .service h2 {
    font-size: 36px;
  }

  .why-us h2 {
    font-size: 36px;
    margin-bottom: 100px;
  }

  /* === Why Us Fixes === */
  .why-us .card-group {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
  }

  .why-us .card {
    width: 45%;
    height: auto;
    margin: 0;
  }

  .why-us h6 {
    font-size: 80px;
    line-height: 1;
  }

  .why-us .card-title {
    font-size: 24px;
    top: auto;
    position: relative;
    margin-top: 20px;
  }

  /* === End Why Us Fixes === */

  .line .back-line,
  .line .front-line {
    font-size: 60px;
  }

  .line .girl {
    position: relative;
    left: 0;
    text-align: center;
  }

  .box .container {
    flex-direction: column;
  }

  .course,
  .blog {
    width: 100%;
    height: 220px;
  }

  .box h2 {
    font-size: 32px;
    padding-top: 50px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 10px;
  }
}

/* ---------------Medium devices (≤ 768px)---------------- */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 36px;
    text-align: center;
  }

  .hero-text p {
    font-size: 16px;
    text-align: center;
  }

  .hero-image img {
    max-width: 100%;
    margin: 20px auto;
    display: block;
    height: auto;
  }

  .buttons {
    justify-content: center;
  }

  .about_us .row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about_us h2 {
    font-size: 32px;
  }

  .service h2 {
    font-size: 32px;
  }

  .why-us h2 {
    font-size: 32px;
    margin-bottom: 60px;
  }

  .why-us .card-group {
    justify-content: center;
    gap: 15px;
  }

  .why-us .card {
    width: 48%;
    height: auto;
  }

  .box .container {
    flex-direction: column;
    gap: 20px;
  }

  .course,
  .blog {
    width: 100%;
    height: 250px;
  }

  .box h2 {
    font-size: 28px;
  }
}

/* Mobiles (≤ 576px) */
@media (max-width:576px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    margin-top: 10px;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .buttons {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .about_us h2,
  .service h2,
  .why-us h2 {
    font-size: 28px;
  }

  .service .tab-text h4 {
    font-weight: 600;
    font-size: 24px;
  }

  .tab-icon img {
    width: 56px;
    object-fit: contain;
  }

  .tab-icon {
    width: 167px;
    height: 86px;
  }

  /* === About Us Fixes === */
  .about_us {
    padding: 20px;
  }

  .about_us .row {
    text-align: start;
    padding: 0 20px;
  }

  .about_us p {
    font-size: 14px;
    line-height: 1.6;
    word-break: break-word;
  }

  /* === End About Us Fixes === */

  /* Why Us Mobile */
  .why-us .card {
    width: 100%;
  }

  .why-us h6 {
    font-size: 60px;
  }

  .why-us .card-title {
    font-size: 20px;
    margin-top: 15px;
  }

  .line {
    height: auto;
    padding: 50px 0;
  }

  .line .back-line,
  .line .front-line {
    font-size: 32px;
  }

  .box h2 {
   font-size: 31px;
        padding-top: 70px;
  }
}