@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=SN+Pro:ital,wght@0,200..900;1,200..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Roboto';
}
.img {
    width: 100%;
    height: 400px;
    background-image: url(./img/gettyimages-1284286824-1024x1024.jpg);
    position: relative;
    background-size: cover;

    h1 {
        position: absolute;
        top: 200px;
        bottom: 0;
        right: 0;
        left: 800px;
        color: white;
        z-index: 2;
        font-size: 70px;
    }
}
.img button{
    width: 100px;
    height: 30px;
    background-color: blue;
    border-radius: 5px;
    color: orange;
    border: none;
}

.img::after {
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    width: 100%;
    height: 100%;
    opacity: 0.4;
    position: absolute;

}

.nobar {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    .left {
        width: 200px;
        height: 50px;
        margin-left: 80px;
        z-index: 2;
    }

    .left img {
        width: 100%;
        height: 100%;
        
    }

    .right {
        display: flex;
        gap: 80px;
        margin-right: 80px;
        color: orange;
        z-index: 2;
    }
}
.p{
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    .left2{
        span{
            color: orange;
            text-decoration: underline;
        }
        width: 650px;
        height: 50px;
        margin-left: 80px;
        h1{
            font-size: 70px;
        }
    }
    .right2{
        height: 300px;
        width: 400px;
        margin-right: 80px;
        line-height: 40px;
    }
}
.ut{
    justify-content: center;
    display: flex;
}
.tabs {
  display: inline-flex;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 80px;
  
}

.tab {
  padding: 12px 24px;
  border: none;
  background-color: #f2f2f2;
  cursor: pointer;
  font-size: 14px;
  border-right: 1px solid #ccc;

}

.tab:last-child {
  border-right: none;
}

.tab:hover {
  background-color: #e6e6e6;
}

.tab.active {
  background-color: #1e40ff; /* Blue */
  color: white;
  font-weight: 500;
}


.sc {
    margin-top: 80px;
  gap: 30px;
}
.g1{
    margin-bottom: 30px;
}
.g1, .g2{
    display: flex;
    gap: 80px;
    justify-self: center;
}

.card {
  background: #fff;
  border-radius: 6px;
  
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  width: 400px;
  height: 400px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.card-img img {
  width: 420px;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
}

.card-body {
  padding: 20px;
}

.meta {
  font-size: 12px;
  color: #f39c12;
  margin-bottom: 10px;
}

.card-body h3 {
  font-size: 18px;
  margin: 0 0 20px;
  color: #333;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #777;
}

.card-footer i {
  margin-right: 6px;
  color: #f39c12;
}