/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
* {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6,
button,
a,
.tab,
.menu-toggle {
    -webkit-user-select: none;
    user-select: none;
}

body{
    font-family: 'Poppins', sans-serif;
    background-color: #f8f5f1;
    color: #1f1f1f;
}

/* NAVBAR */
nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo img{
    height: 60px;
}

/* MENU */
nav ul{
    display: flex;
    gap: 35px;
    list-style: none;
}

nav ul li a{
    text-decoration: none;
    color: white;
    font-size: 17px;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

nav ul li a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background-color: #c19a6b;
    transition: 0.3s;
}

nav ul li a:hover{
    color: #c19a6b;
}


nav ul li a:hover::after{
    width: 100%;
}

.menu-toggle{
    display:none;
    font-size:32px;
    font-weight:700;
    color:white;
    cursor:pointer;
    user-select:none;
    transition:0.3s;
}

.menu-toggle:hover{
    color:#c19a6b;
}
/* HERO */
/* .about-hero{
    height: 60vh;
    background-color: #1f1f1f;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.about-hero h1{
    font-size: 60px;
    margin-bottom: 20px;
}

.about-hero p{
    font-size: 16px;
    max-width: 700px;
} */

/* ABOUT COMPANY */
.about-company{
    padding: 100px 10%;
    background-color: #f8f5f1;
}

/* HEADING */
.about-heading{
    text-align: center;
    margin-bottom: 80px;
}

.about-heading h2{
    font-size:50px;
    color:#222;
    position:relative;
    margin-bottom:0;
}

.about-heading h2::after{
    content:"";
    width:70px;
    height:2px;
    background:#c8a97e;
    display:block;
    margin:20px auto 0;
}

.about-heading p{
    max-width:650px;
    margin:20px auto 0;
    line-height:1.7;
}

/* STORY */
.company-story{
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    flex-wrap: wrap;
}

.story-image{
    flex: 1;
}

.story-image img{
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.story-text{
    flex: 1;
}

.story-text h3{
    font-size: 40px;
    margin-bottom: 35px;
    position: relative;
}

.story-text h3::after{
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    background: #c8a97e;
    margin-top: 12px;
}
.story-text p{
    margin-bottom: 24px;
    line-height: 1.9;
    color: #666;
    font-size: 17px;
}

/* GOALS */
.goals-section{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 30px;
    margin-bottom: 120px;
}

.goal-card{
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.goal-card:hover{
    transform: translateY(-10px);
}

.goal-card h3{
    margin-bottom: 25px;
    color: #c19a6b;
    position: relative;
}

.goal-card h3::after{
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: #c8a97e;
    margin: 10px auto 0;
}

/* TEAM */
.team-section{
    margin-bottom: 120px;
}

.team-section h2{
    text-align: center;
    font-size: 45px;
    margin-bottom: 60px;
    position: relative;
}

.team-section h2::after{
    content: "";
    width: 70px;
    height: 2px;
    background: #c8a97e;
    display: block;
    margin: 12px auto 0;
}

.team-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 30px;
}

.team-card{
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.team-card:hover{
    transform: translateY(-10px);
}

.team-card img{
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #c19a6b;
}

.team-card h3{
    margin-bottom: 10px;
}

.team-card span{
    color: #c19a6b;
    font-weight: 500;
}

.team-card p{
    margin-top: 15px;
    color: #666;
    line-height: 1.7;
}

/* CULTURE */
.culture-section{
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.culture-text{
    flex: 1;
}

.culture-text h2{
    font-size: 45px;
    margin-bottom: 35px;
    position: relative;
}

.culture-text h2::after{
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    background: #c8a97e;
    margin-top: 12px;
}

.culture-text p{
    margin-bottom: 20px;
    line-height: 1.9;
    color: #666;
}

.culture-gallery{
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
}

.culture-gallery img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    transition: 0.3s;
}

.culture-gallery img:hover{
    transform: scale(1.05);
}
/* Floating Social Icons */

.social-float {
  position: fixed;
  right: 25px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.social-float a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  font-size: 22px;
  transition: all 0.3s ease;
}

.social-float a:hover {
  transform: translateY(-4px) scale(1.08);
}

.social-float a:nth-child(1):hover {
  color: #e1306c;
}

.social-float a:nth-child(2):hover {
  color: #1877f2;
}

.social-float a:nth-child(3):hover {
  color: #ff0000;
}
.social-float a {
  position: relative;
}

.follow-label {
  position: absolute;
  right: 65px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);

  width: 160px; /* Same width for all */
  text-align: center;

  background: #c8a97e;
  color: #fff;
  padding: 8px 14px;
  border-radius: 25px;

  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;

  opacity: 0;
  visibility: hidden;

  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.social-float a:hover .follow-label {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}
.social-float a:nth-child(1) .follow-label {
  background: #E1306C;
}

.social-float a:nth-child(2) .follow-label {
  background: #1877F2;
}

.social-float a:nth-child(3) .follow-label {
  background: #FF0000;
}
/*  FOOTER */

footer{
    background: linear-gradient(135deg,#181818,#222);
    border-top:3px solid #c19a6b;
    color:#ddd;
    margin-top:80px;
}

.footer-container{
    max-width:none;
    width:90%;
    margin:auto;
    padding:70px 5%;
    display:grid;
    grid-template-columns:1.2fr 1fr 1.2fr 1fr;
    gap:50px;
    align-items:start;
}

.footer-logo{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.footer-logo img{
    width:110px;
    margin-bottom:15px;
}

.footer-note{
    max-width:280px;
    line-height:1.8;
    color:#aaa;
}

.footer-column h3{
    color:#c19a6b;
    margin-bottom:25px;
    font-size:22px;
    position:relative;
}

.footer-column h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:40px;
    height:2px;
    background:#c19a6b;
}

.footer-column{
    display:flex;
    flex-direction:column;
}

.footer-column a,
.footer-form-link{
    display:inline-block;
    width:fit-content;
    color:#cfcfcf;
    text-decoration:none;
    margin-bottom:14px;
    transition:.3s ease;
}

.footer-column a:hover,
.footer-form-link:hover{
    color:#c19a6b;
    transform:translateX(5px);
}

.footer-social{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.footer-social a{
    display:inline-flex;
    align-items:center;
    gap:12px;
    width:fit-content;
}

.footer-social i{
    width:20px;
    text-align:center;
    color:#c19a6b;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    padding:25px;
}

.footer-bottom p:first-child{
    margin-bottom:8px;
    color:#fff;
}

.footer-bottom p:last-child{
    color:#999;
    font-size:14px;
}

/* RESPONSIVE */
@media(max-width:900px){

    /* NAVBAR MOBILE */
    nav{
        padding:10px 20px;
    }

    .logo img{
        height:45px;
    }

    .menu-toggle{
        display:block;
        font-size:28px;
        font-weight:700;
        cursor:pointer;
        color:white;
    }

    nav ul{
        display:none;
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:rgba(0,0,0,0.95);
        flex-direction:column;
        text-align:center;
        gap:0;
        padding:20px 0;
    }

    nav ul.active{
        display:flex;
    }

    nav ul li{
        margin:12px 0;
    }

    nav ul li a{
        font-size:17px;
        display:inline-block;
        padding:8px 0;
    }

    /* HERO */
    .about-hero h1{
        font-size:32px;
        line-height:1.2;
    }

    .about-hero p{
        font-size:15px;
        line-height:1.7;
    }

    /* HEADINGS */
    .about-heading h2,
    .team-section h2,
    .culture-text h2{
        font-size:28px;
    }

    .story-text h3{
        font-size:24px;
    }

    /* TEXT */
    .story-text p,
    .culture-text p{
        font-size:15px;
        line-height:1.8;
    }
/* MOBILE LAYOUT */
.company-story{
    flex-direction:column;
    gap:25px;
}

.story-image,
.story-text{
    width:100%;
}

.story-image img{
    width:100%;
    height:380px;
    object-fit:cover;
    object-position:center top;
    border-radius:20px;
}

.culture-section{
    display:block;
}

.culture-text{
    width:100%;
    margin-bottom:30px;
}

.culture-gallery{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.culture-gallery img{
    width:100%;
    height:220px;
    object-fit:cover;
    object-position:center;
    border-radius:16px;
    display:block;
}

    /* TEAM */
    .team-card h3{
        font-size:18px;
    }

    .team-card p{
        font-size:14px;
    }
    .social-float {
    right: 15px;
    bottom: 80px;
  }

  .social-float a {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

    .footer-container{
        grid-template-columns:1fr;
        gap:40px;
        padding:50px 25px;
        text-align:center;
    }

    .footer-logo{
        align-items:center;
    }

    .footer-logo img{
        width:90px;
    }

    .footer-note{
        max-width:320px;
        margin:auto;
    }

    .footer-column{
        align-items:center;
    }

    .footer-column h3{
        font-size:20px;
        margin-bottom:20px;
    }

    .footer-column h3::after{
        left:50%;
        transform:translateX(-50%);
    }

    .footer-column a,
    .footer-form-link{
        font-size:16px;
        margin-bottom:12px;
    }

    .footer-social{
        align-items:center;
    }

    .footer-bottom{
        padding:20px 15px;
    }

}