
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(50px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px 20px ;
    position: fixed;
    width: 100%;
    height: 80px;
    top: 0;
    left: 0;
    z-index: 1000;

}

/* Navigation container */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.nav-container a {
    text-decoration: none;
}

/* Logo */
.logo{
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo h2 {
    color:#F8F8F8;
    font-family: poppins;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 3%;    
}
.logo img {
    max-width: 55px;
    height: 56px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    color:#F8F8F8;
}

.nav-links a {
    text-decoration: none;
    color: #F8F8F8;
    font-weight: 400;
    font-family: inter;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #E1BA15;
}

/* Contact Button */
.nav-container button {
    background: #E1BA15;
    color:#090909;
    width: 167px;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.nav-container button a {
    color:#090909;
    font-size: 14px;
    font-family: poppins;
    font-weight: 600;
    line-height: 14px;
    text-align: center;
    text-decoration: none;
}

/* Hamburger Menu (Hidden by default) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle div {
    width: 30px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: 0.3s;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        text-align: center;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        padding: 15px 0;
    }

    .nav-links a {
        display: block;
        padding: 10px;
        color: #070707; 
    }

    .menu-toggle {
        display: flex;
        color: #E1BA15;
    }

    /* When menu is active */
    .nav-links.active {
        display: flex;
        background-color: #F8F8F8;
    }
    button{
        display: none;
    }
}



/* Hero Section */

/*  Make the hero section responsive */
.hero-section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/*  Responsive Background Image */
.swiper-slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}

/*  Hero Content - Default Styling (Desktop) */
.hero-content {
    width: 90%;
    max-width: 913px;
    height: 18rem;
    position: absolute;
    top: 90%; 
    left: 35%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 10px;
    text-align: start;
}

/*  Customize the hero content */
.hero-content h1 {
    color: #E1BA15;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.5rem;
    font-style: italic;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

/*  Text styling */
.hero-content p {
    font-family: Poppins, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #F8F8F8;
    margin-top: 10px;
}
@media screen and (max-width: 1400px) {
    .hero-content {
        width: 85%;
        top: 90%;
        left: 40%;
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-top: 3.5rem;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.5;
        margin-top: 1rem;
    }
    
}
/* above 1024  to 1200*/
@media screen and (max-width: 1200px) {
    .hero-content {
        width: 85%;
        top: 90%;
        left: 50%;
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-top: 3.5rem;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.5;
        margin-top: 1rem;
    }
    
}

/*  Tablet Screens (768px and below) */
@media screen and (max-width: 1024px) {
    .hero-content {
        width: 85%;
        top: 90%;
        left: 50%;
        padding: 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-top: 3.5rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-top: 1rem;
    }
}

/*  Mobile Screens (600px and below) */
@media screen and (max-width: 768px) {
    .hero-content {
        width: 90%;
        top: 85%;
        left: 50%;
        padding: 10px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-top: 3.5rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/*  Extra Small Devices (480px and below) */
@media screen and (max-width: 480px) {
    .hero-content {
        width: 95%;
        top: 90%;
        left: 50%;
        padding: 10px;
        border-radius: 5px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.85rem;
    }
}

/* end of hero section */

/* About us  */
#our-story{
    /*margin-top: 5rem;*/
    /*background-image: url(../assets/ten.png);*/
    /*background-position: center;*/
    /*background-size: cover;*/
    background: url(../assets/bg-story.jpg);
    background-position: center;
    background-size: cover;
    padding: 50px 0;
    text-align: center;
    margin-top: 50px;
}

.grid-content{
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-gap: 20px;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding:  40px;
}
.first-content , .second-content{
  display: flex;
  justify-content: space-between;
    align-items: center;
}
.item h2{
    font-size: 2.5rem;
    font-family:Sanchez;
    font-weight: 400;
    color: #F8F8F8;
}
.item span{
    font-size:2.5rem;
    font-family:Sanchez;
    font-weight: 400;
    color: #E1BA15;
}
.item p{
    font-size: 1.2rem;
    font-family:poppins;
    font-weight: 400;
    color: #F8F8F8;
    line-height: 28px;
    letter-spacing: 3%;
    max-width: 30.75rem;
    
}


/*  Image Styling */
.first-content img,
.second-content img {
    width: 45%; 
    height: auto;
    border-radius: 10px;
    margin-top: 1rem;
}

/*  **Tablet (768px and below)** */
@media screen and (max-width: 1024px) {
    .grid-content {
        padding: 20px;
    }

    .first-content,
    .second-content {
        flex-direction: column;
        text-align: center;
    }
    .second-content{
        flex-direction: column-reverse;
    }

    .first-content img,
    .second-content img {
        width: 70%; 
    }

    .item h2 {
        font-size: 2rem;
    }

    .item span {
        font-size: 2rem;
    }

    .item p {
        font-size: 1rem;
        max-width: 100%;
    }
}

/*  **Mobile (600px and below)** */
@media screen and (max-width: 768px) {
    .grid-content {
        width: 100%;
        padding: 15px;
    }

    .first-content,
    .second-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .second-content{
        flex-direction: column-reverse;
    }

    .first-content img,
    .second-content img {
        width: 90%; 
    }

    .item h2 {
        font-size: 1.8rem;
    }

    .item span {
        font-size: 1.8rem;
    }

    .item p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/*  **Small Mobile (480px and below)** */
@media screen and (max-width: 480px) {
    .grid-content {
        padding: 10px;
    }
    .second-content{
        flex-direction: column-reverse;
    }

    .first-content img,
    .second-content img {
        width: 100%;
    }

    .item h2 {
        font-size: 1.6rem;
    }

    .item span {
        font-size: 1.6rem;
    }

    .item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}


/*end of about us     */



/* production  */
#process{
    margin-top: 60px;
}
.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows:50vh 50vh;
}
.item1 {
    grid-row-start: 1;
    grid-row-end: 3;
    background-image: url(../assets/malik-skydsgaard-jY9rX-E7ztU-unsplash\ 1.jpg);
    background-size: cover;
    background-position: center;
  }
.grid-item1{
    display: flex;
    flex-direction: column;     
    align-items: start;
    padding: 20px;
    gap: 20px;
    margin-block: 50%;

  }  
  .item1 h1{
    color:#FFF;
    font-family: Cormorant Garamond;
    font-size: 40px;
    font-weight: 600;
    line-height: 59.8px;
    text-align: start;
    /* position: relative; */
  }
  .item1 .grid-item1 span{
    color:rgba(225, 186, 21, 1);
    font-family: Cormorant Garamond;
    font-size: 40px;
    font-weight: 600;
    line-height: 59.8px;
  }
  .item1 p{
    color: #FFF;
    font-family:Poppins;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 3%;
    text-align: start;

  }
.grid-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    gap: 25px;
    margin-block: 100px;
  }

.item3 , .item4{
    background-color: #E1BA15;
    font-family: Cormorant Garamond;

}  
.item2 ,.item5 {
        background-color: #070707;
    }
.grid-item .responsive-image{
        display: none;
    }

.grid-item p {
    display: none;
    font-size: 14px;
    font-family: DM Sans;
    font-weight: 400;
}
.grid-item h3{
    font-size: 24px;
    font-family: DM Sans;
    font-weight: 700;
    line-height: 31.25px;
}
.item2 ,.item5 h3{
    color: #E1BA15;
}

.item2 ,.item5 span{
    color: #E1BA15;
}
.item2:hover{
    background-image: url(../assets/co2.jpg);
    background-size: cover;
    background-position: center;
}
.item2:hover .grid-item p {
    display: block;
    width: 50%;
    color: #FFF;
    font-size: 14px;
    font-family:DM Sans;
  }

  .item5:hover{
    background-image: url(../assets/co4.jpg);
    background-size: cover;
    background-position: center;
}
.item5:hover .grid-item p {
    display: block;
    width: 50%;
    color: #FFF;
    font-size: 14px;
    font-family:DM Sans;
  }
  .item3:hover{
    background-image: url(../assets/co3.jpg);
    background-size: cover;
    background-position: center;
}
.item3:hover   .grid-item h3{
    color: #E1BA15;
  }
.item3:hover   .grid-item .basic-image{
    display: none;
  }
.item3:hover  .grid-item .responsive-image{
    display: block;
  }  
.item3 :hover span {
    color: #E1BA15;
}  
.item3:hover .grid-item p {
    display: block;
    width: 50%;
    color: #FFF;
    font-size: 14px;
    font-family:DM Sans;
  }

 .item4:hover{
    background-image: url(../assets/co1.jpg);
    background-size: cover;
    background-position: center;
}
.item4:hover   .grid-item h3{
    color: #E1BA15;
  }
.item4:hover   .grid-item .basic-image{
    display: none;
  }
.item4:hover  .grid-item .responsive-image{
    display: block;
  }  
.item4 :hover span {
    color: #E1BA15;
}  
.item4:hover .grid-item p {
    display: block;
    width: 50%;
    color: #FFF;
    font-size: 14px;
    font-family:DM Sans;
  }
 
  @media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto; /* Remove the 50vh restriction */
    
    }
    .grid-item1{
        margin-block: 50px;
    }
    .grid-item{
        margin-block: 70px;
        
    }
    .item2{
        background-image:url(../assets/co2.jpg);
        background-size: cover;
        background-position: center;
    }
    .item3{
        background-image:url(../assets/co3.jpg);
        background-size: cover;
        background-position: center;
    }
    .item4{
        background-image:url(../assets/co4.jpg);
        background-size: cover;
        background-position: center;
    }
    .item5{
        background-image:url(../assets/co1.jpg);
        background-size: cover; 
        background-position: center;
    }
  .grid-item h3{
    color: #E1BA15;
  }
  .grid-item p {
    display: block;
    width: 50%;
    color: #FFF;
    font-size: 14px;
    font-family:DM Sans;
  }
  .grid-item .basic-image{
    display: none;
  }
  .grid-item .responsive-image{
    display: block;
 
  }
  .grid-item span{
    display: none;
  }


}
/* end of production */



/* Heighlights  */
.highlights {
    background: url(../assets/ten.png);
    background-position: center;
    background-size: cover;
    padding: 50px 0;
    text-align: center;
    margin-top: 50px;
}

.highlights .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/*  Title */
.highlights h1 {
    font-size: 40px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    color: #fff;
    margin-bottom: 64px;
    text-align: center;
}

/*  Grid Layout for Responsive Design */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}

/*  Individual Highlight Item */
.highlight-item {
    background: #1a1a1a;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

.highlight-item:hover {
    transform: translateY(-10px);
}

.highlight-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    
}

.highlight-item h2 {
    font-family: Inter;
    font-weight: 700;
    font-size: 21px;
    margin-bottom: 10px;
    color: #E1BA15;
}

.highlight-item p {
    font-family: Inter;
    font-weight: 400;
    font-size: 12.91px;
    line-height: 21px;
    text-align: center;
}

/*  Mobile Adjustments */
@media (max-width: 900px) {
    .highlights {
        padding: 30px 0;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    

    .highlight-item {
        padding: 15px;
    }

    .highlights h1 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .highlights-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .highlights h1 {
        font-size: 28px;
    }

    .highlight-item h2 {
        font-size: 20px;
    }

    .highlight-item p {
        font-size: 14px;
    }
}

/* end of highlights */


/* Card (CEO Info) */
.card {

    margin-block: 60px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 100px;
    background-color:#2a2a2a ;/* Darker card */
    backdrop-filter: blur(50px);
    padding: 20px 200px;
    /* border-radius: 10px; */
    text-align: center;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2);
     /* Gold Glow */
}

.card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 5px solid #E1BA15;
}

.card h1 {
color: #E1BA15;
font-family: Inter;
font-weight: 600;
}

.card span {
    font-size: 16px;
    font-family: Inter;
    font-weight: 600;
    color: #E1BA15;
    margin-bottom: 20px;
}

.card p {
    width: 70%;
    margin: auto;
    font-size: 18px;
    font-family: DM Sans;
    font-weight: 400;
    line-height: 1.6;
    color: #ddd;
    font-style: italic;
}
@media (max-width: 768px) {
    .card {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 667px) and (min-width: 320px) {
    .card {
        flex-direction: column;
        text-align: center;
        flex-wrap: wrap;
        padding: 5px;
    }
}

/* Responsive Design */

/* Tablet View (Max 1024px) */
@media (max-width: 1024px) {
    .ceo .container {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .content-left {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        padding: 30px;
    }
}

/* Mobile View (Max 768px) */
@media (max-width: 768px) {
    .ceo {
        padding: 40px 10px;
    }

    .comma {
        width: 60px;
        height: 50px;
    }

    .card {
        padding: 20px;
        width: 100%;
    }

    .card h1 {
        font-size: 24px;
    }

    .card p {
        font-size: 16px;
    }
}





/* footer*/
.custom-footer {
    background-color: black;
    color: white;
    text-align: center;
    
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: auto;
    flex-wrap: wrap;
    padding: 40px;
}
.footer-container h3{
    margin-bottom: 20px;    
    color:#F8F8F8;
    font-family: Poppins;
    font-weight: 600;
    font-size: 18px;
    line-height: 6px;
}
.footer-logo{
    min-width: 45%;

}
.footer-logo img{
    width: 11rem;
    height: 11rem;
}

.company,
.reach-us {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: start;
}
.reach-us .info-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.company a {
    font-family: Poppins;
    font-weight: 400;
    font-size: 1rem;
    line-height: 24px;
    display: block;
    color: #F8F8F8;
    text-decoration: none;
}

/* Responsive*/
@media (max-width: 768px) {
    .custom-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        
    }

    .input-group {
        flex-direction: column;
    }

    button {
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    
    }
    .footer-container{
        gap: 20px;
    }
    
    .footer-container h3{
        text-align: center;
        margin-block: 20px;
        color: #E1BA15;
    }


}


