* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;

}

html {
    scroll-behavior: smooth;
    width: 100%;
}

body {
    background-color: #F5F0E8;
    ;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C9A84C;
    padding-top: 5px;
    padding-left: 20px;

}

h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #3D2B1F;
    margin-bottom: 0.5rem;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
}

body, p, button, input, select, textarea {
    font-family: 'Poppins', sans-serif;
}

#about,
#choice,
#projects,
#testimonials,
#contact {
    padding: 5rem 6%;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #C9A84C, transparent);
    margin: 0 6%;
}

/* Navigation Bar */

.nav {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    box-sizing: border-box;
    z-index: 999;

}

.nav-logo img {
    width: 80px;
    height: 80px;
}

.nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
    font-size: 1rem;

}


.nav li a {
    text-decoration: none;
    color: rgb(233, 225, 225);
    padding: 5px;
    font-size: 14px;
    transition: color 0.2s, transform 0.2s;
}

.nav li a:hover {
    color: #C9A84C;
}


.btn-call-now {
    background-color: #C9A84C;
    border-color: #b6890f;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s, border-color 0.2s;
    animation: pulse-btn 2s infinite;
}

.btn-call-now:hover {
    border-color: #b6890f;
    background-color: #b6890f;
    transform: translateY(4px);
}


/* Hero */

.hero {
    padding-top: 80px;
    height: 100vh;
    min-height: 600px;
    background-image: url('images/hero_back.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}



.hero>* {
    color: white;
    z-index: 2;
    position: relative;
}

.hero-title {
    padding: 0px 20px;
}

.title h1 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.title p {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.btn-hero {
    font-size: 14px;
    border-radius: 5px;
    padding: 10px 0px;
    display: flex;
    gap: 10px;
}

.btn-exp {
    background-color: #C9A84C;
    border-color: #b6890f;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s, background-color 0.2s;
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.2);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
}

.btn-exp:hover {
    border-color: #b6890f;
    background-color: #b6890f;
    transform: translateY(4px);
}

.btn-cont {
    background: transparent;
    color: rgb(243, 237, 237);
    border: 2px solid rgb(244, 241, 241);
    padding: 12.5px 28px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
}

.btn-cont:hover {
    border-color: #b6890f;
    transform: translateY(4px);
}

/* About */

#about {
    background-color: #FDFAF5;

}

.about h2 {
    padding-top: 10px;
    padding-left: 20px;
}

.about-left p {
    padding-left: 20px;
    margin-top: 0.5rem;
}


.about-reveal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-right-c{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stats-card {
    border: 1px solid #C9A84C;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    padding: 14px 6%;
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

.stats-card:hover {
    transform: translateY(4px);
    background-color: #423205;
}

.stats-num {
    color: #C9A84C;
    padding: 14px 6%;
    font-size: 2rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.stats-text {
    font-size: 0.85rem;
    color: #edede0;
}

/* Choice */
#choice {
    background-color: #F0EAD6;
}

.choice-text h2 {
    padding-top: 10px;
    padding-left: 20px;
}

.choice-card {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 40px;

}



.choice-card {
    text-align: center;
    gap: 20px;
}

.choose-card {
    border: 1px solid #C9A84C;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    padding: 16px 6%;
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

.choose-card:hover {
    transform: translateY(4px);
    background-color: #423205;
}

.choose-icon {
    margin-bottom: 10px;
}

.choose-title {
    color: #C9A84C;
    padding: 12px 4%;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.choose-text {
    font-size: 0.85rem;
    color: #edede0;
}

/* Projects */

#projects {
    background-color: #FDFAF5;
}

.pro-texts-container h2 {
    padding-top: 10px;
    padding-left: 20px;

}

.pro-btn {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    padding-left: 20px;

}



.pro-cards-container {
    padding-left: 20px;
}

.btn-pro {
    border: 1px solid #C9A84C;
    background-color: rgba(16, 15, 15, 0.6);
    color: #fdf6e3;
    border-radius: 8px;
    padding: 16px 6%;
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

.btn-pro:hover {
    transform: translateY(4px);
    background-color: #423205;
}

.btn-pro:active {
    background-color: #C9A84C;
}

.btn-pro-active {
    background-color: #C9A84C;
    border-color: #b6890f;
    color: white;
}

.know-more-btn {
  display: inline-block;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  background: transparent;
  border: 1px solid #C9A84C;
  color: #C9A84C;
  padding: 6px 15px;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.know-more-btn:hover {
  background: #C9A84C;
  color: white;
}

#past,
#present,
#future {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 20px;
    gap: 20px;
}

.pro-img img {
    width: 100%;
    margin-bottom: 0.2rem;
    border-radius: 16px 16px 0px 0px;
    object-fit: cover;
}

.pro-texts {
    padding-left: 1rem;
}
.pro-tags{
    font-size: 1.2rem;
    padding-bottom: 5px;
}
.pro-head{
    font-size: 0.9rem;
    padding-bottom: 5px;
}

.pro-stats {
    font-size: 0.85rem;
    color: #4ade80;
    padding-bottom: 5px;
}

.pro-cards {
    border-radius: 16px;
    border: 2px solid #C9A84C;
    width: 100%;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
}

.pro-cards:hover {
    transform: translateY(4px);
    border-color: #b6890f;
}

.pr-br {
    border: 1px solid rgba(212, 175, 55, 0.6);
    height: 4px;
    border-radius: 8px;
    margin-top: 8px;
    margin-bottom: 0.8rem;
    width: 90%;
}

.pr-br-in-1 {
    background-color: #C9A84C;
    height: 4px;
    width: 90%;
    border-radius: 8px;
}

.pr-br-in-2 {
    background-color: #C9A84C;
    height: 4px;
    width: 50%;
    border-radius: 8px;
}

.pr-br-in-3 {
    background-color: #C9A84C;
    height: 4px;
    width: 20%;
    border-radius: 8px;
}

/* Project tab transition */
.pro-cards-container {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Old tab going out */
.pro-cards-container.tab-exit {
    opacity: 0;
    transform: translateX(-40px);
}

/* New tab coming from right */
.pro-cards-container.tab-enter-right {
    animation: slideInRight 0.45s ease forwards;
}

/* New tab coming from left */
.pro-cards-container.tab-enter-left {
    animation: slideInLeft 0.45s ease backwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Testimonials */

.test-container h2 {
    padding-top: 10px;
    padding-left: 20px;
}

.yt {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    padding-left: 20px;
}

.video-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: 1rem;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
    transition: transform 0.2s, border-color 0.2s;
}

.video-container iframe:hover {
    transform: translateY(4px);
    border-color: black;
}


/* Contact */

.contact-us {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 20px;
}



.contact h2 {
    padding-top: 10px;
    padding-left: 20px;
}

.contact-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 8px;
    padding: 0.4rem;
    margin: 0.8rem 0px;
    width: 80%;
    transition: tranform 0.2s, border-color 0.2s;
}

.address, .ph{
    cursor: pointer;
}

.ph a{
    text-decoration: none;
    color: black;
}

.contact-left:hover {
    transform: translateX(5px);
    border-color: #b6890f;
}

.contact-email a {
    text-decoration: none;
    color: black;
}

.contact-wa a {
    text-decoration: none;
    color: black;
}

.contact-form input {
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background-color: #e4e4f5;
    color: white;
    border-radius: 8px;
    padding: 0.4rem;
    margin: 0.8rem 0px;
    width: 80%;
}

.contact-form select {
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background-color: #e4e4f5;
    color: rgb(20, 16, 16);
    border-radius: 8px;
    padding: 0.4rem;
    margin: 0.8rem 0px;
    width: 80%;
}


.contact-form textarea {
    width: 80%;
    height: 8rem;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background-color: #ececf4;
    color: white;
    border-radius: 8px;
    padding: 0.4rem;
    margin: 0.8rem 0px;
}

.contact-form button {
    width: 82.5%;
    gap: 0.5rem;
    color: #e8e8f0;
    background-color: #C9A84C;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s, border-color 0.2s;
    animation: pulse-btn 2s infinite;

}

.form-btn button:hover {
    border-color: #b6890f;
    background-color: #b6890f;
    transform: translateY(4px);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background-color: #F5F0E8;
    color: #3D2B1F;
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #C9A84C;
    outline: none;
}

/* What'sapp Button */

.wa {
    padding-left: 40px;
    padding-bottom: 20px;
    position: fixed;
    bottom: 80px;
    animation: pulse-wa 2s infinite;
}



/* Footer */

#footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    border-top: 2px solid #C9A84C;
}

.foot-left {
    display: flex;
    align-items: center;
    justify-self: start;
    padding-right: 20px;
}

.foot-logo img {
    width: 80px;
    height: 80px;
}

.foot-center {
    justify-self: center;
}

.foot-links ul {
    display: flex;
    gap: 20px;
}

.foot-links ul li {
    list-style: none;
    text-decoration: none;

}

.foot-links a {
    text-decoration: none;
    color: black;
    transition: color 0.2s, transform 0.2s;
}

.foot-links a:hover {
    color: #b6890f;
}

.foot-right {
    justify-self: end;
    padding-right: 20px;
}

.cw {
    display: flex;
    gap: 5px;
    align-items: center;
}

/* Responsiveness */

/* Mobile */

@media (max-width: 768px) {
  
    .pro-cards-container {
    padding: 0 4%;
  }
  
  #past, #present, #future {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  
  
    .nav li {
    display: none;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .about-reveal {
    grid-template-columns: 1fr;
  }

  .about-right{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-right-c{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .choice-card {
    grid-template-columns: 1fr 1fr;
  }

  #past, #present, #future {
    grid-template-columns: 1fr;
  }

  #projects{
    display: flex;
    flex-direction: column;
    justify-self:center;
}

  .pro-btn{
    padding-right: 80px;
    width: 50%;
  }

  .yt {
    grid-template-columns: 1fr;
  }

  .contact-us {
    grid-template-columns: 1fr;
  }

  #footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.foot-left{
    justify-self: center;
}
.foot-center{
    justify-self: center;
    padding-left: 20px;
}
.foot-right{
    justify-self: center;
    padding-left: 20px;
}


@media (max-width: 480px) {
  .choice-card {
    grid-template-columns: 1fr;
  }

  .about-right {
    grid-template-columns: 1fr 1fr;
  }
}
