*{
margin:0;
padding:0;
box-sizing:border-box;
}

/* FIX: prevents mobile white-line / horizontal scroll bug.
   This must live OUTSIDE any @media block so it always applies. */
html, body{
  overflow-x: hidden;
  width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    padding-top: 80px;
}

h1 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 32px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 5px;
}
p {
  line-height: 1.6;
  font-size: 15px;
}
ul {
  max-width: 900px;
  margin: auto;
  padding: 0 40px;
}

li {
  margin-bottom: 8px;
}

/* NAVBAR */

  header{
display:flex;
justify-content:space-between;
padding:15px 60px;
background:#000;
position:fixed;
width:100%;
z-index:1000;
top: 0;
left: 0;
flex-wrap: wrap;
align-items: center;

}

.logo{
height: 50px;
}

nav a{
color:#fff;
text-decoration:none;
margin:0 12px;
font-size: 15px;
}

/* HERO */

.hero{
height:100vh;
position:relative;
overflow:hidden;

}

.hero video{
position:absolute;
top: 0;
left: 0;
width:100%;
height:100%;
object-fit:cover;
z-index: -2;
}

.hero-overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
color:#fff;
text-align:center;
z-index: 2;

}



.hero-content h1{
font-size:48px;
font-weight:700;
}

.hero-content p{
margin:15px 0;
}

.primary{
background:#00cfff;
color:#fff;
padding:10px 20px;
border:none;
border-radius: 6px;
transition: 0.3s;
}
.primary:hover{
    background: #009ec3;
    transform: scale(1.05);
}

.secondary{
background:#fff;
color:#000;
padding:10px 20px;
border:none;
margin-left:10px;
border-radius: 6px;
transition:0.3s; /* FIX: was invalid "transform:0.3s;" */
}
.secondary:hover{
    transform: scale(1.05);
}

/* SLIDER */
.slider{
background:#19a7c9;
overflow:hidden;
padding:30px 0;

}

.slide-track{
display:flex;
width: max-content;
animation: scroll 60s linear infinite;
will-change: transform;
}

.slide-track img{
width:250px;
height:80px;
object-fit:contain;
margin:0 20px;
filter:brightness(0) invert(1);

}

/* ANIMATION */
@keyframes scroll{
0%{transform:translateX(0)}
100%{transform:translateX(-50%)}
}

.hero-overlay h1{
font-size:50px;
}

.hero-overlay button{
margin-top:20px;
padding:12px 25px;
background:#00c3ff;
border:none;
}

/* PARTNERS */
.partners{
background: linear-gradient(to right, #19a7c9, #19a7c9);
padding:40px 20px;
display:flex;
justify-content:center;
align-items:center;
gap:60px;
flex-wrap:nowrap;
overflow: hidden;

}
.partners-track {
    display: flex;
    gap: 60px;
    width: max-content;

    animation: scroll 50s linear infinite;
    will-change: transform;
}


.partners img{
height:60px;
object-fit:contain;
filter:none;   /* IMPORTANT */
opacity:0.8;
transition:0.3s;

background: none;
}

.partners img:hover{
opacity:1;
transform:scale(1.1);
}

/* WHITE */
.white{
    padding:120px 8%;
    background:
    radial-gradient(circle at top right,
    rgba(212,175,55,.12),
    transparent 25%),
    radial-gradient(circle at bottom left,
    rgba(212,175,55,.08),
    transparent 25%),
    #f8f9fc;
}

.section-heading{
    text-align:center;
    max-width:850px;
    margin:auto;
    margin-bottom:80px;
}

.tag{
    display:inline-block;
    padding:10px 22px;
    background:linear-gradient(
    135deg,
    #d4af37,
    #f5d76e
    );
    color:#fff;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
    box-shadow:0 8px 25px rgba(212,175,55,.25);
}

.section-heading h2{
    font-size:clamp(2.5rem,5vw,4rem);
    font-weight:700;
    color:#1b2d4d;
    line-height:1.2;
    margin-bottom:25px;
}

.section-heading p{
    font-size:18px;
    color:#666;
    line-height:1.9;
}

.services{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    max-width:1300px;
    margin:auto;
}

.card{
    background:#fff;
    border-radius:24px;
    padding:45px 35px;
    position:relative;
    overflow:hidden;
    transition:all .4s ease;
    border:1px solid rgba(0,0,0,.05);
    min-height:280px;
}

.card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(
    90deg,
    #d4af37,
    #f5d76e
    );
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s;
}

.card:hover::before{
    transform:scaleX(1);
}

.card:hover{
    transform:translateY(-12px);
    box-shadow:0 30px 60px rgba(0,0,0,.12);
}

.number{
    position:absolute;
    top:20px;
    right:25px;
    font-size:60px;
    font-weight:700;
    color:#f3f3f3;
    line-height:1;
}

.card i{
    font-size:48px;
    color:#d4af37;
    margin-bottom:25px;
    transition:.4s;
}

.card:hover i{
    transform:scale(1.15) rotate(5deg);
}

.card h3{
    font-size:30px;
    color:#1b2d4d;
    margin-bottom:18px;
    font-weight:700;
}

.card p{
    color:#666;
    line-height:1.9;
    font-size:16px;
}

@media(max-width:992px){
    .services{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .white{
        padding:80px 20px;
    }

    .services{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:2.3rem;
    }

    .card{
        min-height:auto;
    }
}
/* WORKS */
.works{
    background:
    radial-gradient(circle at top left,
    rgba(212,175,55,.12),
    transparent 25%),
    linear-gradient(
    135deg,
    #0f2027,
    #203a43,
    #2c5364
    );

    padding:120px 40px;
    text-align:center;
    color:#fff;
    overflow:hidden;
}

.works h2{
    font-size:clamp(2.5rem,5vw,4rem);
    margin-bottom:15px;
    font-weight:700;
}

.works > p{
    color:#cfd8dc;
    max-width:700px;
    margin:0 auto 70px;
    line-height:1.8;
}
.work-btn{
   text-align:center;
   margin-top:60px;
}

.work-btn a{
   background:#d4af37;
   color:#fff;
   padding:15px 35px;
   border-radius:50px;
   text-decoration:none;
   font-weight:600;
   transition:.3s;
}

.work-btn a:hover{
   transform:translateY(-5px);
}
/* STATS */

.stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    max-width:1200px;
    margin:70px auto;
}

.stat{
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:40px 25px;
    transition:.4s;
}

.stat:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.stat h3{
    font-size:56px;
    color:#ffffff;
    margin-bottom:12px;
    font-weight:700;
}

.stat p{
    color:#d5d5d5;
    font-size:15px;
    margin:0;
}

/* GALLERY */

.gallery{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    max-width:1400px;
    margin:auto;
}

/* CARD */

.work-card{
    position:relative;
    height:300px;
    border-radius:22px;
    overflow:hidden;
    cursor:pointer;
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.work-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s ease;
}

.work-card:hover img{
    transform:scale(1.12);
}

/* OVERLAY */

.work-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
    to top,
    rgba(0,0,0,.92),
    rgba(0,0,0,.15)
    );

    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:flex-start;

    padding:30px;
    opacity:0;
    transition:.4s;
}

.work-card:hover .work-overlay{
    opacity:1;
}

.work-overlay h3{
    font-size:24px;
    margin-bottom:8px;
    color:#fff;
    font-weight:700;
    transform:translateY(20px);
    transition:.4s;
}

.work-overlay p{
    color:#d4af37;
    font-size:15px;
    margin:0;
    transform:translateY(20px);
    transition:.4s;
}

.work-card:hover .work-overlay h3,
.work-card:hover .work-overlay p{
    transform:translateY(0);
}

/* MOBILE */

@media(max-width:992px){

    .stats{
        grid-template-columns:1fr;
    }

    .gallery{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .works{
        padding:80px 20px;
    }

    .gallery{
        grid-template-columns:1fr;
    }

    .work-card{
        height:260px;
    }

    .stat h3{
        font-size:42px;
    }
}

/* CONTACT (Home page CTA – cyan/blue gradient version) */
.contact{
padding:60px;
text-align:center;
}

.contact input,
.contact textarea{
display:block;
margin:10px auto;
padding:10px;
width:300px;
}

/* FLOAT */
.float{
position:fixed;
bottom:20px;
right:20px;
display:flex;
flex-direction:column;
gap:10px;
}

.float a{
background:#25D366;
padding:10px;
border-radius:50%;
color:#fff;
text-decoration:none;
}

/* MOBILE */
@media(max-width:768px){
.hero-overlay h1{
font-size: 26px; /* FIX: was invalid "font: size 26px;" */
   line-height:1.2;
}
}
.hero-slider{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:0;
    overflow:hidden;
    display: none;
}

.hero-slider img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    opacity:0;
    animation:slider 30s infinite;
}

.hero-slider img:nth-child(1){animation-delay:0s;}
.hero-slider img:nth-child(2){animation-delay:6s;}
.hero-slider img:nth-child(3){animation-delay:12s;}
.hero-slider img:nth-child(4){animation-delay:18s;}
.hero-slider img:nth-child(5){animation-delay:24s;}
.hero-slider img:nth-child(6){animation-delay:30s;}
.hero-slider img:nth-child(7){animation-delay:36s;}
.hero-slider img:nth-child(8){animation-delay:42s;}
@keyframes slider{
    0%{
        opacity:0;
    }
    5%{
        opacity:1;
    }
    20%{
        opacity:1;
    }
    25%{
        opacity:0;
    }
    100%{
        opacity:0;
    }
}
/* overlay upar rahe */
.about{
    padding:120px 8%;
    background:#fff;
    overflow:hidden;
}

.about-top,
.about-bottom{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    max-width:1400px;
    margin:auto;
}

.about-bottom{
    margin-top:80px;
}

/* HEADINGS */

.about-text-left h2{
    font-size:clamp(2.5rem,5vw,4rem);
    color:#1b2d4d;
    margin-bottom:25px;
    font-weight:700;
}

.about-text-left p{
    color:#666;
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

/* LIST */

.about-text-left ul{
    list-style:none;
    padding:0;
}

.about-text-left li{
    margin-bottom:18px;
    font-size:18px;
    color:#333;
    font-weight:500;
}

/* IMAGES */

.about-big-img img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:28px;
    transition:.5s;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.about-big-img img:hover{
    transform:scale(1.03);
}

.about-images{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.about-images img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:24px;
    transition:.5s;
    box-shadow:0 15px 40px rgba(0,0,0,.1);
}

.about-images img:hover{
    transform:translateY(-10px);
}

/* TEXT RIGHT */

.about-text h3{
    font-size:38px;
    line-height:1.3;
    color:#1b2d4d;
    margin-bottom:25px;
}

.about-text p{
    color:#666;
    font-size:17px;
    line-height:1.9;
    margin-bottom:15px;
}

/* BUTTON */

.about-btn{
    display:inline-block;
    margin-top:25px;
    padding:16px 35px;
    background:linear-gradient(
    135deg,
    #d4af37,
    #f5d76e
    );
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
    box-shadow:0 10px 30px rgba(212,175,55,.3);
}

.about-btn:hover{
    transform:translateY(-5px);
}


/* MOBILE */
@media(max-width:768px){
   .about-top,
    .about-bottom{
        grid-template-columns:1fr;
        gap:40px;
    }

    .about{
        padding:80px 20px;
    }

    .about-big-img img{
        height:350px;
    }

    .about-images{
        grid-template-columns:1fr;
    }

}
.process{
    padding:120px 8%;
    background:#fff;
}

.section-title{
    text-align:center;
    margin-bottom:80px;
}

.section-title span{
    color:#d4af37;
    font-weight:600;
    letter-spacing:2px;
}

.section-title h2{
    font-size:52px;
    color:#14213d;
    margin:15px 0;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
}

.timeline{
    position:relative;
    max-width:900px;
    margin:auto;
}

.timeline::before{
    content:'';
    position:absolute;
    left:50%;
    top:0;
    width:2px;
    height:100%;
    background:#d4af37;
    transform:translateX(-50%);
}

.timeline-item{
    display:flex;
    align-items:center;
    margin-bottom:60px;
    position:relative;
}

.timeline-item:nth-child(even){
    flex-direction:row-reverse;
}

.timeline-number{
    width:90px;
    height:90px;
    background:#d4af37;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    font-weight:700;
    z-index:2;
    box-shadow:0 15px 40px rgba(212,175,55,.3);
}

.timeline-content{
    width:45%;
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.timeline-content h3{
    color:#14213d;
    margin-bottom:10px;
}

.timeline-content p{
    color:#666;
    line-height:1.7;
}

.process-btn{
    display:block;
    width:max-content;
    margin:60px auto 0;
    padding:16px 35px;
    background:#d4af37;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

.process-btn:hover{
    transform:translateY(-5px);
}

@media(max-width:768px){

.timeline::before{
display:none;
}

.timeline-item,
.timeline-item:nth-child(even){
flex-direction:column;
text-align:center;
}

.timeline-content{
width:100%;
margin-top:20px;
}


}
.cta{
    padding:120px 20px;
    background:linear-gradient(135deg,#0f2027,#203a43,#19a7c9);
    text-align:center;
    position:relative;
    overflow:hidden;
}

/* glow circles */
.cta::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-150px;
    left:-120px;
    filter:blur(20px);
}

.cta::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,.06);
    border-radius:50%;
    bottom:-120px;
    right:-100px;
    filter:blur(20px);
}

.cta-content{
    max-width:850px;
    margin:auto;
    position:relative;
    z-index:2;
}

.cta-badge{
    display:inline-block;
    padding:10px 22px;
    background:#d4af37;
    color:#fff;
    border-radius:50px;
    font-size:13px;
    letter-spacing:1px;
    margin-bottom:25px;
    font-weight:600;
}

.cta h2{
    color:#fff;
    font-size:56px;
    line-height:1.2;
    margin-bottom:20px;
}

.cta p{
    color:#dbefff;
    font-size:18px;
    line-height:1.8;
    margin-bottom:40px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.cta-buttons a{
    padding:16px 35px;
    border:2px solid rgba(255,255,255,.4);
    border-radius:60px;
    text-decoration:none;
    color:#fff;
    font-weight:600;
    transition:.4s;
    backdrop-filter:blur(10px);
}

.cta-buttons a:hover{
    background:#fff;
    color:#0f2027;
    transform:translateY(-4px);
}
/* MOBILE */
@media(max-width:768px){

.cta{
    padding:90px 20px;
}

.cta h2{
    font-size:34px;
}

.cta p{
    font-size:16px;
}

.cta-buttons a{
    width:100%;
}
}


/* INFO SECTION */
.info-section{
    padding:100px 20px;
    background:#fff;
}

.info-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.info-tag{
    display:inline-block;
    background:#d4af37;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    margin-bottom:20px;
}

.info-container h2{
    font-size:48px;
    color:#1b2d4d;
    margin-bottom:25px;
}

.info-container > p{
    max-width:850px;
    margin:auto;
    color:#666;
    line-height:1.9;
    margin-bottom:60px;
}

.info-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.info-card{
    background:#f8f9fc;
    padding:35px;
    border-radius:20px;
    transition:.4s;
}

.info-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.info-card h3{
    color:#1b2d4d;
    margin-bottom:12px;
}

.info-card p{
    color:#666;
    line-height:1.8;
}
/* FOOTER */
.footer{
    background:#050505;
    color:#fff;
    padding:80px 8%;
    position:relative;
    overflow:hidden;
       margin-top:0;
}

.footer::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:2px;
    background:linear-gradient(
        90deg,
        transparent,
        #d4af37,
        transparent
    );
}

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
}

.footer h2,
.footer h3{
    color:#d4af37;
    margin-bottom:20px;
}

.footer a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

.footer a:hover{
    color:#d4af37;
    padding-left:5px;
}

.socials{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.socials a{
    width:45px;
    height:45px;
    border:1px solid #d4af37;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.socials a:hover{
    background:#d4af37;
    color:#000;
}

.footer-bottom{
    margin-top:50px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.1);
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* MOBILE */
@media(max-width:768px){
   .footer{
      padding:50px 25px;
  }

  .footer-container{
      display:grid;
      grid-template-columns:1fr;
      gap:35px;
      text-align:center;
  }

  .footer-col{
      width:100%;
  }

  .socials{
      justify-content:center;
  }

  .footer-bottom{
      flex-direction:column;
      gap:15px;
      text-align:center;
  }

  .footer-bottom div{
      display:flex;
      flex-direction:column;
      gap:10px;
  }
.footer a{
    display:inline-block;
}

}
html{
  scroll-behavior: smooth;
}
a, a:hover, a:focus {
  text-decoration: none;
}
/* NOTE: The two ".contact" blocks below both target class "contact".
   The second definition (contact-section / grid layout) will win where both
   are loaded on the same page. Consider renaming one, e.g. ".contact-cta"
   vs ".contact-page", if they are meant to look different. */
.contact {
  padding: 120px 0;
  background: linear-gradient(to right, #00cfff, #0066ff);
  color: white;
}

.contact .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  padding: 20px;
}

.contact-left {
  flex: 1;
}

.contact-left h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.contact-left p {
  font-size: 16px;
  line-height: 1.6;
  color: #e8e8e8;
}

.contact-right {
  flex: 1;
}

.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-right input,
.contact-right textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
}

.contact-right textarea {
  height: 120px;
  resize: none;
}

.contact-right button {
  padding: 12px;
  background: #fff;
  color: #0066ff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.contact-right button:hover {
  background: #e0e0e0;
}

/* MOBILE */
.contact-section {
    padding: 80px 0;
    background: #f8f9fb;
}

.contact-container{
    max-width:1400px;
    width:95%;
    margin:auto;
    display:grid;
    grid-template-columns:320px 1fr;
    gap:60px;
    align-items:start;
}

.contact-column {
    flex: 1;
    min-width: 300px;
}

.contact-column h3 {
    font-size: 36px;
    font-weight: 700;
    color: #1b1b1b;
    margin-bottom: 25px;
}

.heading {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d4af37;
    margin-top: 28px;
    margin-bottom: 8px;
}
.contact-column p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.contact-column a {
    color: #333;
    transition: .3s;
}

.contact-column{
    width:100%;
}

.office-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:35px;
    padding:30px 0;
    border-bottom:1px solid #eee;
}

.office{
    flex:1;
}

.office h4{
    color:#d4af37;
    font-size:20px;
    margin-bottom:12px;
    font-weight:700;
}

.office p{
    color:#555;
    line-height:1.9;
    margin:0;
}

.office-map{
    width:340px;
    flex-shrink:0;
}

.office-map iframe{
    width:100%;
    height:200px;
    border:0;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}
/* NAVBAR */
.navbar {
    width: 100%;
    padding: 15px 40px;
    background: #fff;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-left: auto;
}

.menu li {
    position: relative;
}

.menu a {
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    color: #333;
    padding: 8px 0;
    display: block;
}

.menu a:hover {
    color: #0090e3;
}

/* FIRST DROPDOWN */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    width: 250px;
    padding: 15px 0;
    border-radius: 5px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.1);
    display: none;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* FIRST LEVEL ITEMS */
.dropdown-menu li {
    padding: 10px 20px;
    white-space: nowrap;
}

.dropdown-menu li:hover {
    background: #f7f7f7;
}

/* SECOND DROPDOWN (RIGHT SIDE) */
.dropdown-right {
    position: relative;
}

.sub-menu {
    position: absolute;
    left: 250px;
    top: 0;
    width: 250px;
    padding: 15px 0;
    background: white;
    border-radius: 5px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.1);
    display: none;
}

.dropdown-right:hover .sub-menu {
    display: block;
}

.sub-menu li {
    padding: 10px 20px;
}

.sub-menu li:hover {
    background: #f7f7f7;
}

/* CONTACT BUTTON */
.contact-btn {
    background: #3b60ff;
    padding: 8px 22px;
    border-radius: 25px;
    color: #fff !important;
}

.contact-btn:hover {
    background: #2a4ddb;
}
#musicBtn{
position:fixed;
top:80px;
right:20px;
background:#00cfff;
border:none;
padding:10px;
border-radius:50%;
cursor:pointer;
z-index: 10;
}
.floating-icons{
    position: fixed;
    bottom: 10px;
    left: 20px;

    display: flex;
    flex-direction: column;
    gap: 10px;

    width: fit-content;
    height: fit-content;

    pointer-events: none;
    z-index: 9999;
}

.floating-icons a{
  width:50px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:22px;
  color:#fff;
  text-decoration:none;
  transition:0.3s;
   pointer-events: auto;
}

/* WhatsApp */
.whatsapp{
  background:#25D366;
}

/* WeChat */
.wechat{
  background:#09b83e;
}

/* Hover effect */
.floating-icons a:hover{
  transform:scale(1.1);
}
/* HERO */
.about-hero{
  padding:180px 20px 120px;
  text-align:center;
  position:relative;
  overflow:hidden;
  background:
  linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),
  url("https://www.trioexhibitions.com/hero.jpg") center/cover;
}

.about-hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top right,
  rgba(25,167,201,.4),transparent 40%);
}

.about-hero h1{
  font-size:72px;
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
}

.about-hero p{
  font-size:18px;
  max-width:700px;
  margin:auto;
}
/* STORY */
.story{
  display:flex;
  align-items:center;
  gap:80px;
  padding:120px 10%;
  flex-wrap:wrap;

}

.story img{
  width:500px;
  border-radius:20px;
   
  box-shadow:0 25px 50px rgba(0,0,0,.15);
  transition:.5s;
}


.story-text{
  flex:1;
}

.story-text h2{
  font-size:36px;
  margin-bottom:15px;
}

.story-text p{
  color:#666;
}
.story img:hover{
  transform:scale(1.03);
}

/* VALUES */
.core-values{
  background: linear-gradient(135deg, #0f2027, #203a43, #19a7c9);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.core-values h2{
  font-size: 42px;
  margin-bottom: 10px;
}

.core-values .sub{
  color: #ccc;
  margin-bottom: 50px;
  font-size: 15px;
}

/* GRID */
.values-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.value-card{
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.15);
  color:#fff;
  padding:45px 30px;
  border-radius:25px;
  transition:.4s;
}

/* ICON (important) */
.value-card i{
  width:90px;
  height:90px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:auto auto 20px;

  font-size:35px;
  color:white;

  background:linear-gradient(
  135deg,
  #19a7c9,
  #00d4ff
  );

  box-shadow:
  0 10px 30px rgba(25,167,201,.5);
}

/* HEADING */
.value-card h3{
  margin-bottom: 10px;
  color: #19a7c9;
  font-size: 20px;
}

/* TEXT */
.value-card p{
  color:#e5e5e5;

  font-size: 14px;
  line-height: 1.6;
}

/* HOVER EFFECT */
.value-card:hover{
  transform:translateY(-15px);
  box-shadow:0 25px 60px rgba(0,0,0,.3);
}
/* MOBILE */
@media(max-width:768px){
  .core-values h2{
    font-size: 30px;
  }
}

/* STATS */
.about-stats{
  display:flex;
  justify-content:space-around;
  padding:120px 20px;
  text-align:center;
  flex-wrap:wrap;
   background:#fff;
}

.about-stats h3{
  font-size:70px;
  font-weight:800;
  background:linear-gradient(
  135deg,
  #19a7c9,
  #0f2027
  );

}
.about-stats div{
  padding:40px;
}
/* FAQ */
.faq-section {
padding: 100px 80px;
background: #0a0a0a;
color: #fff;
}

/* LAYOUT */
.faq-container {
display: flex;
gap: 50px;
align-items: center;
max-width: 1200px;
margin: auto;
 
}

/* IMAGE FIX */
.faq-img{
  width:450px;
}
.faq-img video{
  width:100%;
  height:500px;
  object-fit:contain;
  background:#000;
  border-radius:10px;
}

/* TITLE */
.faq-content h2 {
font-size: 36px;
margin-bottom: 20px;
}

.faq-content span {
color: red;
}

/* FAQ BOX */
.faq-item {
background: #1a1a1a;
padding: 15px;
margin-bottom: 10px;
border-radius: 15px;
cursor: pointer;
border-left: 4px solid red;
border: none;
transition: 3s;
}

.faq-question {
font-weight: bold;
}

.faq-answer {
display: none;
margin-top: 10px;
color: #ccc;
}

.faq-item.active .faq-answer {
display: block;
}
.faq-item:hover{
  background:#1f1f1f;
  transform:translateX(10px);
}

.faq-item.active{
  border-left:5px solid #19a7c9;
  box-shadow:0 10px 30px rgba(25,167,201,.2);
}
.core-values{
  position:relative;
  overflow:hidden;
}

.core-values::before{
  content:'';
  position:absolute;
  width:400px;
  height:400px;
  border-radius:50%;
  background:rgba(255,255,255,.05);
  top:-150px;
  right:-150px;
}

.core-values::after{
  content:'';
  position:absolute;
  width:300px;
  height:300px;
  border-radius:50%;
  background:rgba(255,255,255,.05);
  bottom:-100px;
  left:-100px;
}

.page-content {
  max-width: 1000px;
  margin: 100px auto 50px; /* top space navbar ke liye */
  padding: 20px 40px;
}

/* headings */
.page-content h1 {
  text-align: center;
  margin-bottom: 30px;
}

/* paragraph */
.page-content p {
  text-align: left;
}

/* list */
.page-content ul {
  padding-left: 20px;
}
.nav-item {
  position: relative;
  display: inline-block;
}
.mega-menu{
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%) translateY(10px);

    width:620px;
    display:flex;
    gap:40px;
    padding:25px;

    background:rgba(18,18,18,.96);
    backdrop-filter:blur(18px);

    border:1px solid rgba(212,175,55,.25);
    border-radius:14px;

    box-shadow:0 20px 50px rgba(0,0,0,.45);

    opacity:0;
    visibility:hidden;
    transition:.35s ease;
    z-index:9999;
}

.dropdown:hover .mega-menu{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
}

.menu-column{
    display:flex;
    flex-direction:column;
    flex:1;
}

.menu-column a{
    color:#f5f5f5;
    text-decoration:none;
    padding:12px 15px;
    border-radius:8px;
    transition:.3s;
    font-size:16px;
    font-weight:500;
}

.menu-column a:hover{
    background:rgba(212,175,55,.15);
    color:#d4af37;
    padding-left:22px;
}

.menu-column a::before{
    content:"›";
    color:#d4af37;
    margin-right:10px;
    opacity:0;
    transition:.3s;
}

.menu-column a:hover::before{
    opacity:1;
}
.section {
  padding: 80px 20px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 20px;
  margin-top: 30px;
}

.grid img {
  width: 100%;
  border-radius: 10px;
  height: 250px;
  object-fit: cover;
}

ul {
  max-width: 700px;
  margin: auto;
  text-align: left;
}
.inner-hero{
  padding:140px 20px 80px;
  text-align:center;
  background: linear-gradient(135deg,#0f2027,#203a43,#19a7c9);
  color:#fff;
}

.inner-hero h1{
  font-size:40px;
}

.inner-hero p{
  margin-top:10px;
  color:#ddd;
}
.info-section {
  padding: 60px 20px;
}

.miami-container {
  display: flex;
  gap: 50px;
  max-width: 1100px;
  margin: auto;
}

.left, .right {
  flex: 1;
}

.box {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}
.miami-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 40px auto;
}

.miami-card {
  background: white;
  padding: 25px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card i {
  font-size: 30px;
  color: #f4a300;
  margin-bottom: 10px;
}

.card:hover {
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* DUBAI (renamed to avoid clashing with Thailand/Germany .process-section, .process-card, .services-grid, .service-box) */
.dubai-section{
  padding:100px 8%;
  background:#f8f9fc;
}

.dubai-head{
  text-align:center;
  max-width:800px;
  margin:auto;
  margin-bottom:60px;
}

.dubai-head span{
  display:inline-block;
  background:#d4af37;
  color:#fff;
  padding:10px 20px;
  border-radius:30px;
  font-size:13px;
  margin-bottom:20px;
}

.dubai-head h2{
  font-size:42px;
  color:#1b2d4d;
  margin-bottom:20px;
}

.dubai-head p{
  color:#666;
  line-height:1.8;
}

.dubai-grid-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  margin-bottom:60px;
}

.dubai-card{
  background:#fff;
  padding:35px;
  text-align:center;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.3s;
}

.dubai-card:hover{
  transform:translateY(-8px);
}

.dubai-card h3{
  font-size:34px;
  color:#d4af37;
  margin-bottom:10px;
}

.dubai-card p{
  color:#1b2d4d;
  font-weight:600;
}

.dubai-process-section{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.dubai-process-card{
  background:#fff;
  padding:30px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.dubai-process-card span{
  width:50px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#d4af37;
  color:#fff;
  border-radius:50%;
  font-weight:700;
  margin-bottom:20px;
}

.dubai-process-card h4{
  color:#1b2d4d;
  margin-bottom:10px;
}

.dubai-process-card p{
  color:#666;
  line-height:1.7;
}

.dubai-services-premium{
  padding:100px 8%;
}

.dubai-services-premium .title{
  text-align:center;
  margin-bottom:60px;
}

.dubai-services-premium .title span{
  color:#d4af37;
  font-weight:600;
  letter-spacing:1px;
}

.dubai-services-premium .title h2{
  font-size:42px;
  color:#1b2d4d;
  margin-top:10px;
}

.dubai-services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.dubai-service-box{
  background:#fff;
  padding:40px;
  text-align:center;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.3s;
}

.dubai-service-box:hover{
  transform:translateY(-8px);
}

.dubai-service-box i{
  font-size:40px;
  color:#d4af37;
  margin-bottom:20px;
}

.dubai-service-box h4{
  color:#1b2d4d;
}

/* Mobile */

@media(max-width:992px){

  .dubai-grid-stats,
  .dubai-process-section,
  .dubai-services-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .dubai-head h2{
    font-size:30px;
  }

  .dubai-grid-stats,
  .dubai-process-section,
  .dubai-services-grid{
    grid-template-columns:1fr;
  }

}

/* THAILAND (renamed) */
.thailand-section{
  padding:100px 8%;
  background:#f8f9fc;
}

.thailand-head{
  text-align:center;
  max-width:800px;
  margin:auto;
  margin-bottom:60px;
}

.thailand-head span{
  display:inline-block;
  background:#d4af37;
  color:#fff;
  padding:10px 20px;
  border-radius:30px;
  font-size:13px;
  margin-bottom:20px;
}

.thailand-head h2{
  font-size:42px;
  color:#1b2d4d;
  margin-bottom:20px;
}

.thailand-head p{
  color:#666;
  line-height:1.8;
}

.thailand-grid-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  margin-bottom:60px;
}

.thailand-card{
  background:#fff;
  padding:35px;
  text-align:center;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.3s;
}

.thailand-card:hover{
  transform:translateY(-8px);
}

.thailand-card h3{
  font-size:34px;
  color:#d4af37;
  margin-bottom:10px;
}

.thailand-card p{
  color:#1b2d4d;
  font-weight:600;
}

.thailand-process-section{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.thailand-process-card{
  background:#fff;
  padding:30px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.thailand-process-card span{
  width:50px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#d4af37;
  color:#fff;
  border-radius:50%;
  font-weight:700;
  margin-bottom:20px;
}

.thailand-process-card h4{
  color:#1b2d4d;
  margin-bottom:10px;
}

.thailand-process-card p{
  color:#666;
  line-height:1.7;
}

.thailand-services-premium{
  padding:100px 8%;
}

.thailand-services-premium .title{
  text-align:center;
  margin-bottom:60px;
}

.thailand-services-premium .title span{
  color:#d4af37;
  font-weight:600;
  letter-spacing:1px;
}

.thailand-services-premium .title h2{
  font-size:42px;
  color:#1b2d4d;
  margin-top:10px;
}

.thailand-services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.thailand-service-box{
  background:#fff;
  padding:40px;
  text-align:center;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.3s;
}

.thailand-service-box:hover{
  transform:translateY(-8px);
}

.thailand-service-box i{
  font-size:40px;
  color:#d4af37;
  margin-bottom:20px;
}

.thailand-service-box h4{
  color:#1b2d4d;
}

/* Mobile */

@media(max-width:992px){

  .thailand-grid-stats,
  .thailand-process-section,
  .thailand-services-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .thailand-head h2,
  .thailand-services-premium .title h2{
    font-size:30px;
  }

  .thailand-grid-stats,
  .thailand-process-section,
  .thailand-services-grid{
    grid-template-columns:1fr;
  }

}
.why-trio{
  max-width:1400px;
  margin:100px auto;
  padding:0 40px;
}

.why-trio h2{
  text-align:center;
  font-size:42px;
  font-weight:700;
  color:#0d2b52;
  margin-bottom:60px;
}

/* MAIN LAYOUT */
.trio-container{
  display:flex;
  gap:60px;
  align-items:flex-start;
}

/* LEFT SIDE */
.trio-left{
  width:55%;
}

.trio-left table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.trio-left th{
  background:linear-gradient(135deg,#0d3b66,#1565c0);
  color:#fff;
  padding:18px;
  font-size:16px;
  font-weight:600;
}

.trio-left td{
  padding:18px;
  border-bottom:1px solid #eee;
  font-size:15px;
  color:#444;
}

.trio-left tr:last-child td{
  border-bottom:none;
}

.trio-left tr:hover{
  background:#f8fbff;
  transition:.3s;
}

/* RIGHT SIDE */
.trio-right{
  width:45%;
}

.trio-right h3{
  font-size:34px;
  color:#0d2b52;
  margin-bottom:20px;
  line-height:1.3;
}

.trio-right p{
  color:#666;
  line-height:1.9;
  font-size:16px;
}

.trio-right ul{
  margin:25px 0;
  padding-left:0;
  list-style:none;
}

.trio-right li{
  margin-bottom:18px;
  padding-left:28px;
  position:relative;
  color:#444;
  line-height:1.8;
}

.trio-right li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#0d3b66;
  font-weight:700;
}

/* STATS */
.trio-stats{
  display:flex;
  gap:40px;
  margin:35px 0;
  flex-wrap:wrap;
}

.trio-stats div{
  background:#fff;
  padding:20px 25px;
  border-radius:12px;
  box-shadow:0 8px 25px rgba(0,0,0,.06);
  min-width:130px;
}

.trio-stats h4{
  margin:0;
  font-size:32px;
  color:#0d3b66;
  font-weight:700;
}

.trio-stats span{
  color:#777;
  font-size:14px;
}

/* FINAL TEXT */
.trio-final{
  margin-top:20px;
  padding:20px;
  background:#f5f8fc;
  border-left:4px solid #0d3b66;
  border-radius:10px;
}

/* MOBILE */
@media(max-width:991px){

  .trio-container{
    flex-direction:column;
  }

  .trio-left,
  .trio-right{
    width:100%;
  }

  .why-trio h2{
    font-size:34px;
  }

  .trio-right h3{
    font-size:28px;
  }

  .trio-stats{
    justify-content:center;
  }
}
.booth-info{
  max-width:1400px;
  margin:100px auto;
  padding:0 40px;
}

.booth-container{
  display:flex;
  align-items:center;
  gap:70px;
}

.booth-left{
  width:55%;
}

.booth-right{
  width:45%;
}

.booth-tag{
  display:inline-block;
  padding:8px 18px;
  background:#0d3b66;
  color:#fff;
  border-radius:30px;
  font-size:12px;
  letter-spacing:1px;
  margin-bottom:20px;
}

.booth-left h2{
  font-size:42px;
  color:#0d2b52;
  margin-bottom:20px;
  line-height:1.3;
}

.booth-left p{
  color:#666;
  line-height:1.9;
  margin-bottom:18px;
}

.booth-left ul{
  list-style:none;
  padding:0;
  margin-top:25px;
}

.booth-left li{
  margin-bottom:16px;
  padding-left:28px;
  position:relative;
  line-height:1.8;
  color:#444;
}

.booth-left li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:#0d3b66;
  font-weight:700;
}

.booth-highlight{
  margin-top:30px;
  padding:20px;
  background:#f5f8fc;
  border-left:4px solid #0d3b66;
  border-radius:10px;
}

.booth-right img{
  width:100%;
  border-radius:20px;
  box-shadow:0 20px 50px rgba(0,0,0,.12);
}

@media(max-width:991px){

  .booth-container{
    flex-direction:column;
  }

  .booth-left,
  .booth-right{
    width:100%;
  }

  .booth-left h2{
    font-size:32px;
  }
}
.faq-section {
    max-width: 1100px;
    margin: auto;
    padding: 50px 20px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.faq-item {
    background: #fff;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}

.faq-question {
    padding: 15px;
    font-weight: 600;
    background: #f5f5f5;
}

.faq-answer {
    display: none;
    padding: 15px;
    color: #555;
}

.faq-item.active .faq-answer {
    display: block;
}
.faq-contact-btn{
  text-align:center;
  margin-top:30px;
}

.faq-contact-btn a{
  display:inline-block;
  padding:12px 25px;
  background:#00cfff;
  color:#fff;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.faq-contact-btn a:hover{
  background:#009ec3;
  transform:scale(1.05);
}
@media(max-width:768px){

header{
  flex-direction:column;
  align-items:center;
}

nav{
  width:100%;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:10px;
}

.logo{
  height:40px;
}

}

.design-section{
  max-width:1200px;
  margin:80px auto;
  padding:80px 50px;
  display:flex;
  gap:70px;
  align-items:center;
  background:#fff;
  border-radius:30px;
  box-shadow:0 20px 60px rgba(0,0,0,.08);
}

/* LEFT */
.left{
  flex:1;
}

.left h1{
  font-size:52px;
  line-height:1.1;
  font-weight:700;
  color:#0d3b66;
  margin-bottom:25px;
}

.left p{
  font-size:17px;
  line-height:1.9;
  color:#555;
  margin-bottom:20px;
}

.left h3{
  font-size:28px;
  margin:35px 0 15px;
  color:#0d3b66;
}

.left ul{
  margin-top:25px;
  padding:0;
}

.left ul li{
  list-style:none;
  margin-bottom:18px;
  font-size:17px;
  font-weight:500;
  color:#333;
}

/* FORM CARD */
.right{
  flex:1;
}

.contact-form{
  background:#fff;
  padding:40px;
  border-radius:25px;
  border:1px solid #eee;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.form-row{
  display:flex;
  gap:15px;
  margin-bottom:18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  padding:16px 18px;
  border:1px solid #e4e4e4;
  border-radius:12px;
  font-size:15px;
  transition:.3s;
  background:#fafafa;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:#0d3b66;
  background:#fff;
  box-shadow:0 0 0 4px rgba(13,59,102,.1);
}

.contact-form textarea{
  height:150px;
  resize:none;
}

.contact-form button{
  width:100%;
  border:none;
  padding:18px;
  border-radius:12px;
  background:linear-gradient(135deg,#0d3b66,#00cfff);
  color:#fff;
  font-size:17px;
  font-weight:600;
  cursor:pointer;
  transition:.4s;
}

.contact-form button:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 35px rgba(13,59,102,.25);
}
.form-badge{
  display:inline-block;
  background:#d4af37;
  color:#fff;
  padding:8px 18px;
  border-radius:30px;
  font-size:13px;
  font-weight:600;
  margin-bottom:20px;
}
/* MOBILE */
@media(max-width:768px){

  .design-section{
    flex-direction:column;
    padding:30px 20px;
    margin:40px 15px;
    gap:40px;
  }

  .left h1{
    font-size:36px;
  }

  .form-row{
    flex-direction:column;
  }

  .contact-form{
    padding:25px;
  }
}
.trio-section{
  padding:80px 20px;
  background:#fff;
}

.trio-row{
  display:flex;
  align-items:center;
  gap:50px;
  max-width:1100px;
  margin:60px auto;
}

.trio-row.reverse{
  flex-direction:row-reverse;
}

.trio-text{
  flex:1;
}

.trio-text h2{
  font-size:28px;
  margin-bottom:15px;
  color:#2c3e50;
}

.trio-text p{
  color:#666;
  line-height:1.7;
  margin-bottom:15px;
}

.trio-img{
  flex:1;
}

.trio-img img{
  width:100%;
  border-radius:10px;
}

/* BUTTON */
.trio-btn{
  text-align:center;
  margin-top:50px;
}

.trio-btn a{
  padding:12px 30px;
  border:2px solid #19a7c9;
  color:#19a7c9;
  border-radius:30px;
  text-decoration:none;
  transition:0.3s;
}

.trio-btn a:hover{
  background:#19a7c9;
  color:#fff;
}

/* MOBILE */
@media(max-width:768px){
  .trio-row{
    flex-direction:column;
    text-align:center;
  }

  .trio-row.reverse{
    flex-direction:column;
  }
}
.stand-section{
    max-width:1300px;
    margin:auto;
    padding:100px 30px;
}

.stand-row{
    display:flex;
    align-items:center;
    gap:70px;
    margin-bottom:120px;
}

.stand-row.reverse{
    flex-direction:row-reverse;
}

/* IMAGE */

.stand-img{
    flex:1;
    position:relative;
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.stand-img img{
    width:100%;
    height:520px;
    object-fit:cover;
    display:block;
    transition:0.7s ease;
}

.stand-img:hover img{
    transform:scale(1.08);
}

.stand-img::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.15),
        transparent
    );
}

/* CONTENT */

.stand-text{
    flex:1;
}

.section-badge{
    display:inline-block;
    padding:10px 20px;
    background:#f4c542;
    color:#111;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    border-radius:50px;
    margin-bottom:20px;
}

.stand-text h2{
    font-size:42px;
    line-height:1.2;
    margin-bottom:20px;
    color:#0d3b66;
    font-weight:700;
}

.stand-text h4{
    margin-top:25px;
    margin-bottom:10px;
    font-size:22px;
    color:#0d3b66;
}

.stand-text p{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:16px;
}

/* STORY CARDS */

.story-card{
    background:#fff;
    padding:22px;
    margin-top:20px;
    border-radius:18px;
    border-left:5px solid #0d3b66;
    box-shadow:0 10px 35px rgba(0,0,0,0.06);
    transition:.3s;
}

.story-card:hover{
    transform:translateY(-5px);
}

.story-card h4{
    margin-top:0;
}

/* LIST */

.premium-list{
    list-style:none;
    padding:0;
    margin-top:25px;
}

.premium-list li{
    position:relative;
    padding-left:35px;
    margin-bottom:18px;
    color:#444;
    line-height:1.8;
    font-size:16px;
}

.premium-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    width:24px;
    height:24px;
    border-radius:50%;
    background:#0d3b66;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
}

/* BUTTON */

.contact-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:30px;
    padding:16px 32px;
    background:#0d3b66;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
    box-shadow:0 10px 30px rgba(13,59,102,.25);
}

.contact-btn:hover{
    transform:translateY(-3px);
    background:#124b84;
}

/* MOBILE */

@media(max-width:992px){

    .stand-row,
    .stand-row.reverse{
        flex-direction:column;
        gap:40px;
        margin-bottom:80px;
    }

    .stand-img,
    .stand-text{
        width:100%;
    }

    .stand-img img{
        height:350px;
    }

    .stand-text h2{
        font-size:32px;
    }
}

@media(max-width:768px){

    .stand-section{
        padding:60px 20px;
    }

    .stand-text h2{
        font-size:28px;
    }

    .stand-text p{
        font-size:15px;
    }

    .stand-img img{
        height:260px;
    }

    .contact-btn{
        width:100%;
        justify-content:center;
    }
}
/* EXHIBITION PAGE */
.hero-expo{
height:90vh;
background:url("stall3.png") center/cover;
position:relative;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.hero-expo::before{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,.55);
}

.hero-content{
position:relative;
z-index:2;
max-width:800px;
color:#fff;
padding:20px;
}

.hero-content span{
letter-spacing:3px;
font-size:14px;
}

.hero-content h1{
font-size:58px;
margin:20px 0;
}

.hero-content p{
font-size:18px;
line-height:1.8;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
margin-top:30px;
}

.hero-buttons a{
padding:14px 30px;
border-radius:40px;
text-decoration:none;
background:#00cfff;
color:#fff;
}

.expo-stats{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
padding:80px 8%;
background:#fff;
}

.expo-stats .stat{
text-align:center;
padding:30px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.expo-stats .stat h3{
font-size:42px;
color:#0d0d0e;
}

.booth-types{
padding:100px 8%;
background:#f8f9fa;
}

.booth-types h2{
text-align:center;
margin-bottom:50px;
}

.type-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.type-card{
background:#ffffff;
padding:30px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.expo-process{
padding:100px 8%;
}

.expo-process-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.expo-process-grid .process-card{
background:#0f0f0f;
padding:35px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
text-align:center;
}

.expo-process-grid .process-card span{
font-size:42px;
font-weight:bold;
color:#121313;
}

.expo-cta{
padding:100px 20px;
text-align:center;
background:linear-gradient(135deg,#0d3b66,#00cfff);
color:#000000;
}

.expo-cta h2{
font-size:42px;
margin-bottom:20px;
}

.expo-cta a{
display:inline-block;
margin-top:25px;
padding:14px 30px;
background:#fff;
color:#0d3b66;
border-radius:40px;
text-decoration:none;
}

@media(max-width:768px){

.hero-content h1{
font-size:36px;
}

.expo-stats{
grid-template-columns:1fr 1fr;
}

.type-grid{
grid-template-columns:1fr;
}

.expo-process-grid{
grid-template-columns:1fr;
}

.hero-buttons{
flex-direction:column;
}

}
@media(max-width:768px){
  .hero-content h1{
    font-size:28px;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
   will-change:transform,opacity ;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* SECTION */
.project-detail {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

/* CONTAINER */
.project-container {
    max-width: 1100px;
    width: 100%;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* TITLE */
.project-container h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

/* LOCATION */
.project-location {
    color: #777;
    margin-bottom: 20px;
}

/* DESCRIPTION */
.project-desc {
    line-height: 1.6;
    margin-bottom: 25px;
}

/* INFO BOX */
.project-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.project-info div {
    background: #f1f3f6;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
}

/* GALLERY */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.project-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
    cursor: pointer;
}

/* HOVER EFFECT */
.project-gallery img:hover {
    transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
    .project-info {
        grid-template-columns: 1fr;
    }

    .project-container {
        padding: 20px;
    }
}
/* Botpress chat left side */
#bp-web-widget-container {
    left: 20px ;
    right: auto ;
}
/* HERO SECTION */
.interior-hero{
  position:relative;
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  overflow:hidden;
}

.interior-video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-2;
}

.interior-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
  z-index:-1;
}

/* CONTENT */
.interior-left{
  max-width:750px;
}

/* TITLE */
.interior-title{
  font-size:60px;
  font-weight:600;
  margin-bottom:20px;
  color:#fff;
}

/* TEXT */
.interior-text{
  color:#ddd;
  margin-bottom:30px;
  line-height:1.6;
  font-size:16px;
}

/* BUTTON */
.interior-btn{
  background:#2c2c2c;
  color:#fff;
  padding:12px 30px;
  border:none;
  cursor:pointer;
  margin-bottom:50px;
  border-radius:5px;
  transition:0.3s;
}

.interior-btn:hover{
  background:#fff;
  color:#000;
}

/* STATS */
.interior-stats{
  display:flex;
  justify-content:center;
  gap:70px;
}

.interior-stats h2{
  font-size:34px;
  color:#fff;
}

.interior-stats p{
  font-size:14px;
  color:#ccc;
  margin-top:5px;
}
.interior-services{
  padding:100px 20px;
  text-align:center;
  background:#f9f9f9;
}

.section-title{
  font-size:36px;
  margin-bottom:10px;
  color:#2c3e50;
}

.section-subtitle{
  color:#777;
  margin-bottom:50px;
}

/* GRID */
.interior-services-grid{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
}

/* CARD */
.service-card{
  background:#fff;
  width:300px;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.3s;
}

.service-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.service-card h3{
  margin:15px 0 5px;
}

.service-card p{
  padding:0 15px 20px;
  color:#666;
  font-size:14px;
}

.service-card:hover{
  transform:translateY(-10px);
}
.projects-section{
  padding:100px 20px;
  text-align:center;
  background:#fff;
}

/* GRID */
.projects-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
  max-width:1200px;
  margin:auto;
}

/* CARD */
.project-card{
  position:relative;
  overflow:hidden;
  border-radius:12px;
  cursor:pointer;
}

.project-card img{
  width:100%;
  height:250px;
  object-fit:cover;
  transition:0.5s;
}

.project-card:hover img{
  transform:scale(1.1);
}

/* OVERLAY */
.project-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  opacity:0;
  transition:0.4s;
}

.project-card:hover .project-overlay{
  opacity:1;
}
.view-more{
  margin-top:40px;
}

.view-more a{
  display:inline-block;
  padding:12px 25px;
  border:2px solid #19a7c9;
  border-radius:30px;
  color:#19a7c9;
  text-decoration:none;
  font-weight:500;
  transition:0.3s;
}

.view-more a:hover{
  background:#19a7c9;
  color:#fff;
  transform:translateX(5px);
}

.luxury-showcase{
  position:relative;
  min-height:100vh;
  overflow:hidden;
}

.showcase-image img{
  width:100%;
  height:100vh;
  object-fit:cover;
  transform:scale(1.2);
  transition:1.5s;
}

.luxury-showcase.active img{
  transform:scale(1);
}

.showcase-content{
  position:absolute;
  left:8%;
  top:50%;
  transform:translateY(-50%);
  max-width:600px;
  color:#fff;
}

.text-motion-section{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  background:#111;
  overflow:hidden;
}

.motion-title{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.motion-title span{
  font-size:7vw;
  font-weight:800;
  color:white;
  transition:.5s;
  cursor:pointer;
}

.motion-title span:hover{
  transform:translateX(40px);
  letter-spacing:10px;
  color:#c9a46c;
}
.interior-marquee-showcase{
  padding:100px 0;
  background:#0f0f0f;
  overflow:hidden;
}

.interior-marquee-track{
  display:flex;
  gap:30px;
  width:max-content;

  animation: interiorScroll 30s linear infinite;
}

.interior-marquee-item{
  min-width:350px;
  position:relative;
  overflow:hidden;
  border-radius:20px;
}

.interior-marquee-item img{
  width:350px;
  height:450px;
  object-fit:cover;
  transition:.5s;
}

.interior-marquee-item:hover img{
  transform:scale(1.08);
}

.interior-marquee-item h3{
  position:absolute;
  bottom:20px;
  left:20px;
  color:white;
  font-size:24px;
}
@keyframes interiorScroll{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}

.trio-advantages{
  padding:120px 20px;
  background:#111;
  text-align:center;
  color:white;
}

.trio-advantages h2{
  font-size:50px;
  margin-bottom:70px;
}

.advantages-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  max-width:1200px;
  margin:auto;
}

.adv-card{
  background:#1b1b1b;
  padding:50px 20px;
  border-radius:20px;
  transition:.4s;
}

.adv-card:hover{
  transform:translateY(-15px);
}

.adv-card h3{
  font-size:60px;
  color:#c9a46c;
}

.adv-card p{
  font-size:18px;
}

/* SECTION */
.why-trio-new{
  padding:100px 20px;
  background:#f8f8f8;
  text-align:center;
}

/* TITLE */
.why-title-new{
  font-size:36px;
  margin-bottom:10px;
  color:#2c3e50;
}

/* SUBTITLE */
.why-subtitle-new{
  color:#777;
  margin-bottom:50px;
}

/* GRID */
.why-grid-new{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  max-width:1100px;
  margin:auto;
}

/* CARD */
.why-card-new{
  background:#fff;
  padding:30px 20px;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.3s;
}

.why-card-new:hover{
  transform:translateY(-10px);
}

/* ICON */
.why-icon-new{
  font-size:40px;
  margin-bottom:15px;
}

/* TEXT */
.why-card-new h3{
  margin-bottom:10px;
  color:#2c3e50;
}

.why-card-new p{
  font-size:14px;
  color:#666;
}
.process-new {
  padding: 100px 20px;
  background: linear-gradient(135deg,#0f2027,#203a43,#19a7c9);
  text-align: center;
  color: #fff;
}

.process-new h2 {
  font-size: 42px;
  margin-bottom: 50px;
}

.process-wrap {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD */
.process-card-new {
  background: #fff;
  color: #333;
  width: 260px;
  padding: 30px 20px;
  border-radius: 20px;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.process-card-new:hover {
  transform: translateY(-10px);
}

/* IMAGE CIRCLE */
.circle-img {
  width: 140px;
  height: 140px;
  margin: auto;
  margin-bottom: 20px;
  border-radius: 50%;
  overflow: hidden;
}

.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */
.process-card-new h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #19a7c9;
}

.process-card-new p {
  font-size: 14px;
  color: #666;
}

/* MOBILE */
@media(max-width:768px){
  .process-wrap {
    flex-direction: column;
    align-items: center;
  }
}
.testi-pro{
  padding:100px 20px;
  background:linear-gradient(135deg,#0f2027,#203a43,#19a7c9);
  text-align:center;
  color:#fff;
}

.testi-pro h2{
  font-size:40px;
  margin-bottom:50px;
}

/* SLIDER */
.testi-slider{
  overflow:hidden;
  max-width:900px;
  margin:auto;
  position:relative;
}

/* TRACK */
.testi-track{
  display:flex;
  animation: slide 30s infinite ease-in-out;
}

/* CARD */
.testi-item{
  min-width:100%;   /* IMPORTANT FIX */
  padding:40px 20px;
  text-align:center;
}

/* AUTO SLIDE ANIMATION (SMOOTH)
   NOTE: this keyframe is hard-coded for exactly 4 testimonial items.
   If the number of .testi-item cards changes, update the percentages
   and translateX steps below (or better, drive this with JS instead). */
@keyframes slide{
  0%, 20% { transform: translateX(0); }

  25%, 45% { transform: translateX(-100%); }

  50%, 70% { transform: translateX(-200%); }

  75%, 95% { transform: translateX(-300%); }

  100% { transform: translateX(0); }
}

/* IMAGE */
.testi-item img{
  width:80px;
  height:80px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:15px;
}

/* STARS */
.stars{
  color:gold;
  margin:10px 0;
  font-size:18px;
}

/* TEXT */
.testi-item p{
  max-width:600px;
  margin:auto;
  font-size:15px;
  color:#ddd;
}

/* BONUS (hover pe pause) */
.testi-slider:hover .testi-track{
  animation-play-state: paused;
}
/* Desktop */
#nav-menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Hamburger hidden */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}
@media (max-width:768px){

/* RESET (overflow-x fix moved to top of file, global scope) */
*{
  box-sizing:border-box;
}

/* HEADER */
header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:70px;
  background:#000;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:0 15px;
  z-index:9999;
}
.logo{
  height:40px;
   margin-right:auto;
}

/* HAMBURGER */
.hamburger{
  display:block;
  font-size:28px;
  color:#fff;
  cursor:pointer;
  margin-left: auto;
}
@media (max-width:768px){
  #nav-menu{
    display:none;
    flex-direction: column;
    width:100%;
    background:#000;
    position:absolute;
    top:70px;
    left:0;
    padding:15px;
        overflow-y: auto;
    max-height: calc(100vh - 70px);
  }

  #nav-menu.active{
    display:flex;
  }
}

#nav-menu a{
  color:#fff;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,0.1);
}

/* DROPDOWN FIX */
.dropdown{
  width:100%;
}

.mega-menu{
    display:none;
    position:relative;
    width:100%;
    max-width:100%;
    background:#111;
    padding:10px;
    opacity:1;
    visibility:visible;
    transform:none;
    box-sizing:border-box;
}
.dropdown.open .mega-menu{
  display:block;
}

/* REMOVE HOVER */
.dropdown:hover .mega-menu{
  display:none;
}

/* HERO FIX */
.hero{
  margin-top:70px;
  height:75vh;
}

.hero h1{
  font-size:26px;
}

.hero p{
  font-size:14px;
}

/* FLEX FIX */
.design-section,
.booth-container,
.expo-row,
.expo-wrap,
.stand-row,
.trio-row,
.about-top,
.about-bottom,
.contact .container{
  flex-direction:column;
  text-align:center;
}

/* WIDTH FIX */
.left,.right,
.booth-left,.booth-right{
  width:100%;
}

/* GRID FIX */
.gallery,
.projects-grid{
  grid-template-columns:1fr;
}

/* CARD WIDTH */
.card,
.service-card{
  width:90%;
  margin:auto;
}

/* TEXT */
h1{font-size:26px;}
h2{font-size:22px;}
h3{font-size:18px;}

/* FOOTER */
.footer-container{
  flex-direction:column;
  text-align:center;
}

.footer-bottom{
  flex-direction:column;
  gap:10px;
}

/* DESKTOP */
@media(min-width:769px){
  .dropdown:hover .mega-menu{
    display:flex;
  }
}

/* MOBILE */
@media(max-width:768px){
  .dropdown.open .mega-menu{
    display:block;
  }
}
}
.review-form {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #0f2027, #2c5364);
}

.review-form form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.review-form h2 {
  margin-bottom: 10px;
  margin-left: 20px;
}

.review-form input,
.review-form textarea,
.review-form select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.review-form textarea {
  height: 100px;
}

.review-form button {
  background: #ff7a18;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.review-form button:hover {
  background: #e56700;
}



/* SECTION LAYOUT */
.ratings-section{
    padding:100px 8%;
    background:#f8f9fc;
    display:grid;
    grid-template-columns:350px 1fr;
    gap:50px;
    align-items:start;
}

.small-tag{
    display:inline-block;
    background:#d4af37;
    color:#fff;
    padding:8px 16px;
    border-radius:30px;
    font-size:12px;
    margin-bottom:20px;
}

.ratings-left h2{
    font-size:42px;
    color:#1b2d4d;
    margin-bottom:15px;
}

.ratings-left p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.review-btn{
    display:inline-block;
    padding:14px 28px;
    background:#0d3b66;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    transition:.3s;
}

.review-btn:hover{
    background:#d4af37;
}

.ratings-right{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.google-rating{
    background:#fff;
    padding:30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.rating-stars{
    color:#d4af37;
    font-size:28px;
    margin-bottom:10px;
}

.google-rating h3{
    color:#1b2d4d;
    font-size:30px;
    margin-bottom:10px;
}

.google-rating p{
    color:#666;
}

.review-slider{
    position:relative;
    background:#fff;
    padding:35px;
    border-radius:20px;
    min-height:220px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.review-slide{
    display:none;
    animation:fade .5s ease;
}

.review-slide.active{
    display:block;
}

.review-slide p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.review-slide h4{
    color:#1b2d4d;
}

@keyframes fade{
    from{opacity:0;}
    to{opacity:1;}
}

@media(max-width:768px){

    .ratings-section{
        grid-template-columns:1fr;
    }

    .ratings-left h2{
        font-size:34px;
    }

}



.bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.bar:hover {
  transform: scale(1.03);
}

.progress {
  flex: 1;
  height: 8px;
  background: #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.fill {
  width: 0%;
  height: 100%;
  background: #0d3b66;
  transition: 0.4s;
}

.bar.active .fill {
  background: #ff9800;
}
/* MAIN CONTAINER */
#reviews-container {
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding: 80px 20px;
}

/* EACH ITEM ROW */
.testimonial-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
}

/* LEFT SIDE FRAME */
.frame-left {
  width: 120px;
  height: 220px;
  border: 12px solid #8B4513;
  border-right: none;
  border-radius: 20px 0 0 20px;
  pointer-events: none;
}

/* RIGHT SIDE CONTENT */
.testimonial-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* IMAGE */
.testimonial-image img {
  width: 260px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

/* CARD */
.testimonial-card {
  margin-top: 15px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 260px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: center;
}

/* ZIGZAG EFFECT (ALTERNATE) */
.testimonial-container:nth-child(even) {
  flex-direction: row-reverse;
}

.testimonial-container:nth-child(even) .frame-left {
  border-left: none;
  border-right: 12px solid #8B4513;
  border-radius: 0 20px 20px 0;
}

@media(max-width:768px){
  .interior-hero{
    margin-top: 70px;
    padding: 100px 20px;
  }
}
@media(max-width:768px){
  .interior-title{
    font-size: 36px;
    line-height: 1.2;
  }
}
@media(max-width:768px){
  .interior-stats{
    flex-direction: column;
    gap: 20px;
  }
}
.trio-project-showcase{
    max-width:1400px;
    margin:0 auto;
    padding:80px 20px;
}

.trio-project-showcase h1{
    text-align:center;
    font-size:48px;
    margin-bottom:50px;
    color:#222;
}

.trio-project-grid{
    display:grid !important;
    grid-template-columns:repeat(4,minmax(0,1fr)) !important;
    gap:25px !important;

    width:100% !important;
    transform:none !important;
}

.trio-project-box{
    display:block;
    position:relative;
    overflow:hidden;
    border-radius:15px;
    background:#fff;
    box-shadow:0 4px 15px rgba(0,0,0,.1);
}

.trio-project-box img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.trio-project-box:hover img{
    transform:scale(1.05);
}

.trio-project-hover{
    position:absolute;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,.55);
    color:#fff;
    opacity:0;
    transition:.3s;
}

.trio-project-box:hover .trio-project-hover{
    opacity:1;
}

@media(max-width:992px){
    .trio-project-grid{
        grid-template-columns:repeat(2,1fr) !important;
    }
}

@media(max-width:600px){
    .trio-project-grid{
        grid-template-columns:1fr !important;
    }

    .trio-project-showcase h1{
        font-size:34px;
    }
}
/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .trio-project-showcase{
    padding: 20px 15px;
  }

  .trio-project-showcase h1{
    font-size: 40px;
    margin: 20px 0 30px;
    text-align: center;
  }

  .trio-project-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .trio-project-box{
    width: 100%;
  }

  .trio-project-box img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
  }

  .trio-project-hover h3{
    font-size: 18px;
  }

  /* Footer */
  .footer-container{
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 30px 20px;
  }

  .footer-col{
    width: 100%;
  }

  .footer-bottom{
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 15px;
  }

  /* Floating buttons */
  .floating-icons{
    bottom: 15px;
    left: 15px;
  }

  .whatsapp,
  .wechat{
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  /* Music button */
  #musicBtn{
    width: 40px;
    height: 40px;
    font-size: 18px;
    top: 80px;
    right: 15px;
  }

}
/* ================= MOBILE VIEW ================= */

@media screen and (max-width: 768px) {

  header{
    flex-direction: column;
    padding: 15px;
    text-align: center;
  }
@media (max-width: 768px) {
  .logo {
    max-width: 120px;
    width: 100%;
    height: auto;
    display: block;
  }
}
  nav{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  nav a{
    font-size: 14px;
    padding: 6px;
  }



  .trio-container,
  .booth-container,
  .footer-container{
    flex-direction: column;
  }

  .trio-left,
  .trio-right,
  .booth-left,
  .booth-right,
  .footer-col{
    width: 100%;
  }

  .why-trio,
  .booth-info{
    padding: 20px 15px;
  }

  h2{
    font-size: 28px;
    line-height: 1.3;
  }

  h3{
    font-size: 22px;
  }

  p,
  li{
    font-size: 15px;
    line-height: 1.8;
  }

  table{
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .booth-right img{
    width: 100%;
    height: auto;
    margin-top: 20px;
  }

  .faq-item{
    margin: 10px;
  }

  .faq-question{
    font-size: 16px;
  }

  .faq-answer{
    font-size: 14px;
  }

  .faq-contact-btn a{
    width: 90%;
    display: block;
    margin: auto;
    text-align: center;
  }

  .footer{
    text-align: center;
  }

  .footer-bottom{
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom div{
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .floating-icons{
    right: 15px;
    bottom: 20px;
  }

  #musicBtn{
    bottom: 90px;
    right: 15px;
  }

}
@media(max-width:768px){

.faq-img,
.faq-content{
   width:100% !important;
}

}
@media (max-width:768px){

.faq-container{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.faq-img{
    width:100% !important;
}

.faq-img iframe{
    width:100% !important;
    height:250px !important;
    border-radius:15px;
}

.faq-content{
    width:100% !important;
}

}
/* CONTACT PAGE MOBILE */
@media (max-width:768px){

  .contact-container{
    display:flex;
    flex-direction:column;
    gap:30px;
    padding:20px;
  }

  .contact-column{
    width:100% !important;
  }

  .contact-map{
    width:100% !important;
  }

  .contact-map iframe{
    width:100% !important;
    height:300px !important;
    display:block;
  }

  .contact-column h3{
    font-size:28px;
    margin-bottom:15px;
  }

  .contact-column p{
    font-size:16px;
    line-height:1.8;
  }

  .contact-column .heading{
    font-size:18px;
    font-weight:700;
  }

}
/* CONTACT MEDIA YAHI CLOSE HOGA */


.executive-showcase{
    padding:80px 0;
    background:#f8f8f8;
}

.executive-heading{
    text-align:center;
    margin-bottom:40px;
}

.executive-heading h2{
    font-size:42px;
    margin-bottom:10px;
}

.executive-heading p{
    color:#666;
}

.executive-slider{
    width:100%;
    padding:10px 0;
}

.swiper-slide{
    width:280px !important;
}

.swiper-slide img{
    width:100%;
    height:340px;
    object-fit:cover;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    display:block;
    transition:.4s;
}

.swiper-slide img:hover{
    transform:scale(1.05);
}

@media(max-width:768px){

    .swiper-slide{
        width:220px !important;
    }

    .swiper-slide img{
        height:280px;
    }

    .executive-heading h2{
        font-size:30px;
    }

}
 
@media (max-width: 768px) {
  .hero-content {
    top: 42%;
    transform: translateY(-42%);
  }
}
.ai-design-section{
    background:#0a0a0a;
    padding:80px 20px;
}

.ai-design-section h2{
    text-align:center;
    color:#fff;
    font-size:42px;
    margin-bottom:40px;
    font-weight:700;
}

.ai-form{
    max-width:700px;
    margin:auto;
    padding:35px;
    background:#111;
    border:1px solid #222;
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,0.4);
}

.ai-form input,
.ai-form select{
    width:100%;
    height:55px;
    margin-bottom:20px;
    padding:0 18px;
    background:#1a1a1a;
    border:1px solid #333;
    border-radius:12px;
    color:#fff;
    font-size:16px;
    transition:.3s;
}

.ai-form input::placeholder{
    color:#888;
}

.ai-form input:focus,
.ai-form select:focus{
    border-color:#d4af37;
    box-shadow:0 0 10px rgba(212,175,55,0.3);
}

.ai-form select{
    cursor:pointer;
}

.ai-form option{
    background:#111;
    color:#fff;
}

.ai-form button{
    width:100%;
    height:60px;
    border:none;
    border-radius:12px;
    background:#d4af37;
    color:#000;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.4s;
}

.ai-form button:hover{
    background:#f5c842;
    transform:translateY(-2px);
}

@media(max-width:768px){

    .ai-design-section{
        padding:60px 15px;
    }

    .ai-design-section h2{
        font-size:30px;
    }

    .ai-form{
        padding:20px;
    }

    .ai-form input,
    .ai-form select{
        height:50px;
        font-size:15px;
    }

    .ai-form button{
        height:55px;
        font-size:16px;
    }

}
.ai-design-section,
.ai-form,
.ai-form input,
.ai-form select{
    opacity:1 !important;
}
.review-stars{
  font-size:24px;
  color:#f4b400;
  margin-bottom:12px;
  letter-spacing:3px;
}
.bpChatContainer{
    z-index: 2147483647 !important;
    position: fixed !important;
}
/* Main Cursor */
.cursor{
  position:fixed;
  width:30px;
  height:30px;
  border-radius:50%;
  pointer-events:none;
  z-index:999999;

  backdrop-filter:blur(10px);
  background:rgba(200,169,106,.2);
  border:1px solid rgba(200,169,106,.5);

  box-shadow:
  0 0 20px rgba(200,169,106,.8),
  0 0 40px rgba(200,169,106,.5);

  transform:translate(-50%,-50%);
}

/* Sparkles */
.sparkle{
  position:fixed;
  pointer-events:none;
  color:#C8A96A;
  font-size:14px;
  z-index:999998;
  animation:sparkle 1s linear forwards;
}

@keyframes sparkle{
  to{
    opacity:0;
    transform:translateY(-20px) scale(0);
  }
}

/* Click Explosion */
.explosion{
  position:fixed;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#C8A96A;
  pointer-events:none;
  z-index:999998;
}
@media(max-width:768px){
  .cursor{
    display:none;
  }

  body{
    cursor:auto;
  }
}
.germany-section{
    max-width:1200px;
    margin:auto;
    padding:100px 20px;
}

.germany-head{
    text-align:center;
    max-width:800px;
    margin:auto;
}

.germany-head span{
    color:#c8a45d;
    font-weight:600;
    letter-spacing:2px;
}

.germany-head h2{
    font-size:48px;
    margin:15px 0;
    color:#0d1b2a;
}

.germany-head p{
    color:#666;
    line-height:1.8;
}

.germany-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:60px;
}

.germany-card{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.germany-card:hover{
    transform:translateY(-10px);
}

.germany-card h3{
    font-size:42px;
    color:#c8a45d;
}

.germany-process-section{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:80px;
}

.germany-process-card{
    background:#f8f9fa;
    padding:30px;
    border-radius:20px;
    position:relative;
}

.germany-process-card span{
    font-size:55px;
    font-weight:700;
    color:rgba(200,164,93,.15);
}

.germany-process-card h4{
    margin:10px 0;
    font-size:24px;
}

.germany-process-card p{
    color:#666;
    line-height:1.7;
}

/* SERVICES */

.germany-services-premium{
    padding:100px 20px;
    background:#f8fafc;
}

.germany-services-premium .title{
    text-align:center;
    margin-bottom:60px;
}

.germany-services-premium span{
    color:#c8a45d;
    letter-spacing:2px;
    font-weight:600;
}

.germany-services-premium h2{
    font-size:42px;
    margin-top:10px;
}

.germany-services-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.germany-service-box{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.germany-service-box:hover{
    transform:translateY(-10px);
}

.germany-service-box i{
    font-size:40px;
    color:#c8a45d;
    margin-bottom:20px;
}

.germany-service-box h4{
    margin-bottom:10px;
    font-size:24px;
}

.germany-service-box p{
    color:#666;
    line-height:1.7;
}

@media(max-width:768px){

.germany-grid,
.germany-process-section,
.germany-services-grid{
    grid-template-columns:1fr;
}

.germany-head h2{
    font-size:34px;
}

.germany-services-premium h2{
    font-size:34px;
}

}
/* ===========================
   MAXIMA & OCTONORM PAGE
=========================== */

.maxima-hero{
    height:100vh;
    position:relative;
    background:url("imptex.png") center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    overflow:hidden;
}

.maxima-video-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.maxima-hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    padding:20px;
    color:#fff;
}

.maxima-tag{
    display:inline-block;
    letter-spacing:3px;
    font-size:14px;
    margin-bottom:20px;
    color:#d4af37;
}

.maxima-hero-content h1{
    font-size:72px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:700;
}

.maxima-hero-content h1 span{
    display:block;
    color:#00d4ff;
}

.maxima-hero-content p{
    font-size:18px;
    line-height:1.8;
    max-width:750px;
    margin:auto;
}

.maxima-hero-buttons{
    margin-top:35px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.maxima-btn-primary,
.maxima-btn-secondary{
    padding:14px 32px;
    border-radius:50px;
    text-decoration:none;
    transition:.4s;
    font-weight:600;
}

.maxima-btn-primary{
    background:#00d4ff;
    color:#000;
}

.maxima-btn-primary:hover{
    transform:translateY(-5px);
}

.maxima-btn-secondary{
    border:2px solid #fff;
    color:#fff;
}

.maxima-btn-secondary:hover{
    background:#fff;
    color:#000;
}

/* Stats */

.maxima-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    padding:80px 8%;
    background:#111;
}

.maxima-stat-box{
    text-align:center;
    padding:30px;
    color:#fff;
    border:1px solid rgba(255,255,255,.1);
    transition:.4s;
}

.maxima-stat-box:hover{
    transform:translateY(-10px);
}

.maxima-stat-box h2{
    font-size:50px;
    color:#00d4ff;
}

/* About */

.maxima-container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.maxima-about-section{
    padding:120px 0;
}

.maxima-about-section .maxima-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.maxima-about-image img{
    width:100%;
    border-radius:20px;
    transition:.6s;
}

.maxima-about-image img:hover{
    transform:scale(1.05);
}

.maxima-small-title{
    color:#00d4ff;
    font-weight:600;
    letter-spacing:2px;
}

.maxima-about-content h2{
    font-size:48px;
    margin:20px 0;
}

.maxima-about-content p{
    line-height:1.9;
    color:#666;
    margin-bottom:20px;
}

/* Showcase */

.maxima-showcase{
    padding:120px 0;
    background:#f8f8f8;
}

.maxima-showcase-card{
    width:90%;
    max-width:1300px;
    margin:0 auto 100px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.maxima-showcase-card.reverse{
    direction:rtl;
}

.maxima-showcase-card.reverse *{
    direction:ltr;
}

.maxima-showcase-image img{
    width:100%;
    border-radius:20px;
    transition:.6s;
}

.maxima-showcase-image img:hover{
    transform:scale(1.06);
}

.maxima-showcase-content span{
    color:#00d4ff;
    font-weight:600;
}

.maxima-showcase-content h2{
    font-size:45px;
    margin:15px 0;
}

.maxima-showcase-content p{
    color:#666;
    line-height:1.8;
}

.maxima-showcase-content ul{
    margin-top:20px;
}

.maxima-showcase-content li{
    margin-bottom:12px;
}

/* Heading */

.maxima-heading{
    text-align:center;
    margin-bottom:70px;
}

.maxima-heading span{
    color:#00d4ff;
    font-weight:600;
}

.maxima-heading h2{
    font-size:50px;
    margin-top:10px;
}

/* Features */

.maxima-features-section{
    padding:120px 8%;
}

.maxima-features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.maxima-feature-card{
    background:#fff;
    padding:40px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.maxima-feature-card:hover{
    transform:translateY(-10px);
}

.maxima-feature-card i{
    font-size:40px;
    color:#00d4ff;
    margin-bottom:20px;
}

.maxima-feature-card h3{
    font-size:22px;
}

/* Gallery */

.maxima-gallery-section{
    padding:100px 8%;
    background:#fff;
}

.gallery-title{
    text-align:center;
    font-size:55px;
    font-weight:700;
    margin-bottom:60px;
}

.maxima-gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.maxima-gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;
}

.maxima-gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    transition:.4s;
}

.overlay h3{
    color:#fff;
    font-size:26px;
    font-weight:700;
    transform:translateY(20px);
    transition:.4s;
}

.maxima-gallery-item:hover img{
    transform:scale(1.08);
}

.maxima-gallery-item:hover .overlay{
    opacity:1;
}

.maxima-gallery-item:hover .overlay h3{
    transform:translateY(0);
}

@media(max-width:1200px){
    .maxima-gallery-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:900px){
    .maxima-gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .maxima-gallery-grid{
        grid-template-columns:1fr;
    }

    .maxima-gallery-item img{
        height:230px;
    }

    .gallery-title{
        font-size:40px;
    }
}
/* Process */

.maxima-process-section{
    padding:120px 8%;
}

.maxima-process-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.maxima-process-card{
    text-align:center;
    padding:40px 20px;
    background:#fff;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.maxima-process-card:hover{
    transform:translateY(-10px);
}

.maxima-process-card h3{
    font-size:50px;
    color:#00d4ff;
}

/* CTA */

.maxima-cta-section{
    background:url("LEAD.jpg") center/cover no-repeat;
    position:relative;
    padding:150px 20px;
}

.maxima-cta-overlay{
    background:rgba(0,0,0,.75);
    padding:100px 40px;
    text-align:center;
    color:#fff;
}

.maxima-cta-overlay h2{
    font-size:60px;
    max-width:900px;
    margin:auto;
}

.maxima-cta-overlay p{
    max-width:700px;
    margin:25px auto;
    line-height:1.8;
}

/* Responsive */

@media(max-width:991px){

.maxima-stats{
    grid-template-columns:repeat(2,1fr);
}

.maxima-about-section .maxima-container,
.maxima-showcase-card{
    grid-template-columns:1fr;
}

.maxima-features-grid{
    grid-template-columns:repeat(2,1fr);
}

.maxima-process-grid{
    grid-template-columns:repeat(2,1fr);
}

.maxima-hero-content h1{
    font-size:50px;
}

.maxima-heading h2{
    font-size:38px;
}

}

@media(max-width:768px){

.maxima-stats,
.maxima-features-grid,
.maxima-process-grid{
    grid-template-columns:1fr;
}

.maxima-gallery-grid{
    columns:1;
}

.maxima-hero-content h1{
    font-size:38px;
}

.maxima-about-content h2,
.maxima-showcase-content h2{
    font-size:32px;
}

.maxima-cta-overlay h2{
    font-size:34px;
}

}
.maxima-faq-section{
    padding:120px 8%;
    background:#f8f8f8;
}

.maxima-faq-heading{
    text-align:center;
    margin-bottom:60px;
}

.maxima-faq-heading span{
    color:#00d4ff;
    font-weight:600;
    letter-spacing:2px;
}

.maxima-faq-heading h2{
    font-size:48px;
    margin-top:10px;
}

.maxima-faq-item{
    background:#fff;
    padding:30px;
    margin-bottom:20px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.maxima-faq-item:hover{
    transform:translateY(-5px);
}

.maxima-faq-item h3{
    color:#00d4ff;
    margin-bottom:15px;
    font-size:22px;
}

.maxima-faq-item p{
    color:#666;
    line-height:1.8;
}
/* ==========================
FURNITURE RENTAL PAGE
========================== */

.furni-hero{
height:100vh;
background:url("bed1.jpg") center/cover;
position:relative;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
}

.furni-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.65);
}

.furni-content{
position:relative;
z-index:2;
color:#fff;
max-width:800px;
padding:20px;
}

.furni-tag{
color:#00d4ff;
letter-spacing:3px;
}

.furni-content h1{
font-size:75px;
margin:20px 0;
}

.furni-content p{
font-size:20px;
line-height:1.8;
}

.furni-btn{
display:inline-block;
margin-top:30px;
padding:15px 35px;
background:#00d4ff;
color:#000;
text-decoration:none;
border-radius:40px;
font-weight:600;
transition:.4s;
}

.furni-btn:hover{
transform:translateY(-6px);
}

.furni-services{
padding:120px 8%;
text-align:center;
}

.furni-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:60px;
}

.furni-card{
padding:40px;
background:#fff;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.4s;
}

.furni-card:hover{
transform:translateY(-12px);
}

.furni-card i{
font-size:40px;
margin-bottom:15px;
color:#00d4ff;
}

.furni-about{
padding:120px 8%;
background:#f8f8f8;
}

.furni-about-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.furni-image img{
width:100%;
border-radius:20px;
transition:.5s;
}

.furni-image img:hover{
transform:scale(1.05);
}

.furni-text h2{
font-size:48px;
margin:20px 0;
}

.furni-text span{
color:#00d4ff;
font-weight:600;
}

.furni-text p{
line-height:1.8;
}

.furni-text li{
margin:12px 0;
}
.furni-gallery{
    padding:120px 8%;
    text-align:center;
}

.furni-gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:50px;
}

.furni-gallery-item{
    display:block;
    text-decoration:none;
    overflow:hidden;
    border-radius:16px;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    transition:.4s;
}

.furni-gallery-item img{
    width:100%;
    height:300px;
    object-fit:contain;
    background:#f8f8f8;
    display:block;
    transition:.5s;
}

.furni-gallery-item span{
    display:block;
    padding:18px;
    font-size:18px;
    font-weight:600;
    color:#222;
    text-align:center;
}

/* Hover */
.furni-gallery-item:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.2);
}

.furni-gallery-item:hover img{
    transform:scale(1.05);
}

/* Tablet */
@media(max-width:991px){
    .furni-gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */
@media(max-width:576px){
    .furni-gallery-grid{
        grid-template-columns:1fr;
    }

    .furni-gallery-item img{
        height:250px;
    }
}
.furni-stats{
padding:100px 8%;
background:#111;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.furni-stat{
text-align:center;
color:#fff;
}

.furni-stat h3{
font-size:55px;
color:#00d4ff;
}

.furni-process{
padding:120px 8%;
text-align:center;
}

.furni-process-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:50px;
}

.furni-step{
padding:40px;
background:#fff;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
}

.furni-step:hover{
transform:translateY(-10px);
}

.furni-step span{
font-size:45px;
font-weight:700;
color:#00d4ff;
}

.furni-cta{
background:url("hap5.jpg") center/cover;
padding:150px 20px;
}

.furni-cta-overlay{
background:rgba(0,0,0,.7);
padding:100px 40px;
text-align:center;
color:#fff;
}

.furni-cta-overlay h2{
font-size:60px;
}

@media(max-width:991px){

.furni-grid,
.furni-stats,
.furni-process-grid{
grid-template-columns:repeat(2,1fr);
}

.furni-about-container{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.furni-grid,
.furni-stats,
.furni-process-grid{
grid-template-columns:1fr;
}

.furni-gallery-grid{
columns:1;
}

.furni-content h1{
font-size:42px;
}

.furni-cta-overlay h2{
font-size:34px;
}

}
.furni-faq{
    padding:120px 8%;
    background:#f8f8f8;
}

.furni-faq h2{
    text-align:center;
    font-size:48px;
    margin-bottom:60px;
}

.furni-faq-item{
    background:#fff;
    padding:30px;
    border-radius:20px;
    margin-bottom:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.furni-faq-item:hover{
    transform:translateY(-5px);
}

.furni-faq-item h3{
    color:#00d4ff;
    margin-bottom:12px;
    font-size:22px;
}

.furni-faq-item p{
    line-height:1.8;
    color:#666;
}
.pavilion-insights{
padding:120px 8%;
background:#f8f8f8;
}

.pavilion-insights-wrap{
max-width:1000px;
margin:auto;
}

.pavilion-question{
background:#fff;
margin-bottom:20px;
border-radius:15px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.pavilion-question summary{
padding:22px 25px;
cursor:pointer;
font-size:18px;
font-weight:600;
list-style:none;
position:relative;
}

.pavilion-question summary::-webkit-details-marker{
display:none;
}

.pavilion-question summary::after{
content:"+";
position:absolute;
right:25px;
font-size:24px;
}

.pavilion-question[open] summary::after{
content:"−";
}

.pavilion-question p{
padding:0 25px 25px;
line-height:1.8;
color:#666;
}
/* ==========================
   COUNTRY PAVILION PAGE
========================== */

.pavilion-hero{
height:100vh;
background:url("stall2.png") center/cover no-repeat;
position:relative;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
overflow:hidden;
}

.pavilion-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.65);
backdrop-filter:blur(2px);
}

.pavilion-content{
position:relative;
z-index:2;
max-width:900px;
padding:20px;
color:#fff;
}

.pavilion-tag{
display:inline-block;
letter-spacing:3px;
font-size:14px;
color:#00d4ff;
margin-bottom:20px;
}

.pavilion-content h1{
font-size:75px;
line-height:1.1;
margin-bottom:25px;
}

.pavilion-content p{
font-size:20px;
line-height:1.8;
max-width:700px;
margin:auto;
}

.pavilion-btn{
display:inline-block;
margin-top:35px;
padding:15px 35px;
background:#00d4ff;
color:#000;
text-decoration:none;
font-weight:600;
border-radius:50px;
transition:.4s;
}

.pavilion-btn:hover{
transform:translateY(-6px);
}

/* Intro */

.pavilion-intro{
padding:120px 8%;
}

.pavilion-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.pavilion-image img{
width:100%;
border-radius:20px;
transition:.6s;
}

.pavilion-image img:hover{
transform:scale(1.05);
}

.pavilion-text span{
color:#00d4ff;
font-weight:600;
}

.pavilion-text h2{
font-size:48px;
margin:20px 0;
}

.pavilion-text p{
line-height:1.9;
color:#666;
margin-bottom:20px;
}

/* Stats */

.pavilion-stats{
background:#111;
padding:90px 8%;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.pavilion-stat-box{
padding:30px;
text-align:center;
color:#fff;
border:1px solid rgba(255,255,255,.1);
transition:.4s;
}

.pavilion-stat-box:hover{
transform:translateY(-10px);
}

.pavilion-stat-box h3{
font-size:55px;
color:#00d4ff;
}

/* Heading */

.pavilion-heading{
text-align:center;
margin-bottom:70px;
}

.pavilion-heading span{
color:#00d4ff;
font-weight:600;
letter-spacing:2px;
}

.pavilion-heading h2{
font-size:50px;
margin-top:10px;
}

/* Services */

.pavilion-services{
padding:120px 8%;
}

.pavilion-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.pavilion-card{
background:#fff;
padding:45px;
border-radius:20px;
text-align:center;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.4s;
}

.pavilion-card:hover{
transform:translateY(-10px);
}

.pavilion-card i{
font-size:40px;
margin-bottom:20px;
color:#00d4ff;
}

.pavilion-card h3{
font-size:22px;
}

/* Countries */

.pavilion-countries{
padding:120px 8%;
background:#f8f8f8;
}

.pavilion-country-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.country-box{
background:#fff;
padding:30px;
text-align:center;
font-weight:600;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
}

.country-box:hover{
background:#00d4ff;
transform:translateY(-8px);
}

/* Gallery */

.pavilion-gallery{
padding:120px 8%;
}

.pavilion-gallery-grid{
columns:3;
column-gap:20px;
}

.pavilion-gallery-grid img{
width:100%;
margin-bottom:20px;
border-radius:15px;
transition:.5s;
cursor:pointer;
}

.pavilion-gallery-grid img:hover{
transform:scale(1.04);
}

/* Process */

.pavilion-process{
padding:120px 8%;
background:#f8f8f8;
}

.pavilion-process-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:25px;
}

.pavilion-step{
background:#fff;
padding:40px 20px;
text-align:center;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
}

.pavilion-step:hover{
transform:translateY(-10px);
}

.pavilion-step span{
font-size:50px;
font-weight:700;
color:#00d4ff;
display:block;
margin-bottom:15px;
}

/* CTA */

.pavilion-cta{
background:url("stall2.png") center/cover no-repeat;
padding:150px 20px;
position:relative;
}

.pavilion-cta::before{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,.75);
}

.pavilion-cta-content{
position:relative;
z-index:2;
text-align:center;
color:#fff;
max-width:900px;
margin:auto;
}

.pavilion-cta-content h2{
font-size:60px;
margin-bottom:25px;
}

.pavilion-cta-content p{
line-height:1.8;
margin-bottom:30px;
}

/* Responsive */

@media(max-width:991px){

.pavilion-container{
grid-template-columns:1fr;
}

.pavilion-grid{
grid-template-columns:repeat(2,1fr);
}

.pavilion-country-grid{
grid-template-columns:repeat(2,1fr);
}

.pavilion-process-grid{
grid-template-columns:repeat(2,1fr);
}

.pavilion-stats{
grid-template-columns:repeat(2,1fr);
}

.pavilion-content h1{
font-size:50px;
}

}

@media(max-width:768px){

.pavilion-grid,
.pavilion-country-grid,
.pavilion-process-grid,
.pavilion-stats{
grid-template-columns:1fr;
}

.pavilion-gallery-grid{
columns:1;
}

.pavilion-content h1{
font-size:38px;
}

.pavilion-heading h2{
font-size:34px;
}

.pavilion-text h2{
font-size:32px;
}

.pavilion-cta-content h2{
font-size:36px;
}

}


.country-gallery-section{
    width:90%;
    max-width:1400px;
    margin:100px auto;
}

.country-gallery-title{
    text-align:center;
    font-size:48px;
    font-weight:700;
    color:#222;
    margin-bottom:60px;
}

.country-gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.country-gallery-item{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:18px;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    transition:.4s;
    text-decoration:none;
}

.country-gallery-item img{
    width:100%;
    height:300px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

/* Overlay */

.country-gallery-item::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    opacity:0;
    transition:.4s;
    z-index:1;
}

/* Project Name */

.country-gallery-item span{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    color:#fff;
    font-size:28px;
    font-weight:700;
    text-align:center;
    width:85%;
    line-height:1.4;
    opacity:0;
    transition:.4s;
    z-index:2;
    text-shadow:0 3px 10px rgba(0,0,0,.5);
}

/* Hover */

.country-gallery-item:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.country-gallery-item:hover img{
    transform:scale(1.08);
}

.country-gallery-item:hover::before{
    opacity:1;
}

.country-gallery-item:hover span{
    opacity:1;
}

/* Tablet */

@media(max-width:992px){

    .country-gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .country-gallery-title{
        font-size:38px;
    }

    .country-gallery-item span{
        font-size:22px;
    }

}

/* Mobile */

@media(max-width:768px){

    .country-gallery-section{
        width:95%;
        margin:70px auto;
    }

    .country-gallery-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .country-gallery-title{
        font-size:30px;
        margin-bottom:40px;
    }

    .country-gallery-item img{
        height:240px;
    }

    .country-gallery-item span{
        font-size:20px;
    }

}
/* ==========================
   WAREHOUSE PAGE
========================== */

.warehouse-hero{
height:100vh;
background:url("warehouse.png") center/cover no-repeat;
position:relative;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
overflow:hidden;
}

.warehouse-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.7);
}

.warehouse-content{
position:relative;
z-index:2;
max-width:900px;
padding:20px;
color:#fff;
animation:warehouseFade 1.5s ease;
}

@keyframes warehouseFade{
from{
opacity:0;
transform:translateY(60px);
}
to{
opacity:1;
transform:translateY(0);
}
}

.warehouse-tag{
display:inline-block;
color:#00d4ff;
letter-spacing:3px;
font-size:14px;
margin-bottom:20px;
}

.warehouse-content h1{
font-size:75px;
line-height:1.1;
margin-bottom:25px;
}

.warehouse-content p{
font-size:20px;
line-height:1.8;
max-width:700px;
margin:auto;
}

.warehouse-btn{
display:inline-block;
margin-top:35px;
padding:15px 35px;
background:#00d4ff;
color:#000;
text-decoration:none;
font-weight:600;
border-radius:50px;
transition:.4s;
}

.warehouse-btn:hover{
transform:translateY(-5px);
}

/* About */

.warehouse-about{
padding:120px 8%;
}

.warehouse-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.warehouse-image img{
width:100%;
border-radius:20px;
transition:.5s;
}

.warehouse-image img:hover{
transform:scale(1.05);
}

.warehouse-text span{
color:#00d4ff;
font-weight:600;
}

.warehouse-text h2{
font-size:50px;
margin:20px 0;
}

.warehouse-text p{
line-height:1.9;
color:#666;
margin-bottom:20px;
}

/* Stats */

.warehouse-stats{
background:#111;
padding:90px 8%;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.warehouse-stat{
text-align:center;
padding:30px;
border:1px solid rgba(255,255,255,.1);
color:#fff;
transition:.4s;
}

.warehouse-stat:hover{
transform:translateY(-10px);
}

.warehouse-stat h3{
font-size:55px;
color:#00d4ff;
}

/* Heading */

.warehouse-heading{
text-align:center;
margin-bottom:70px;
}

.warehouse-heading span{
color:#00d4ff;
letter-spacing:2px;
font-weight:600;
}

.warehouse-heading h2{
font-size:50px;
margin-top:10px;
}

/* Services */

.warehouse-services{
padding:120px 8%;
}

.warehouse-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.warehouse-card{
background:#fff;
padding:45px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 40px rgba(0,0,0,.08);
transition:.4s;
}

.warehouse-card:hover{
transform:translateY(-10px);
}

.warehouse-card i{
font-size:40px;
color:#00d4ff;
margin-bottom:20px;
}

/* Features */

.warehouse-features{
padding:120px 8%;
background:#f8f8f8;
}

.warehouse-feature-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.warehouse-feature{
background:#fff;
padding:30px;
text-align:center;
font-weight:600;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
}

.warehouse-feature:hover{
background:#00d4ff;
transform:translateY(-8px);
}

/* Gallery */

.warehouse-gallery{
padding:120px 8%;
}

.warehouse-gallery-grid{
columns:3;
column-gap:20px;
}

.warehouse-gallery-grid img{
width:100%;
margin-bottom:20px;
border-radius:15px;
transition:.5s;
cursor:pointer;
}

.warehouse-gallery-grid img:hover{
transform:scale(1.05);
}

/* Process */

.warehouse-process{
padding:120px 8%;
background:#f8f8f8;
}

.warehouse-process-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:25px;
}

.warehouse-step{
background:#fff;
padding:40px 20px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
}

.warehouse-step:hover{
transform:translateY(-10px);
}

.warehouse-step span{
display:block;
font-size:50px;
font-weight:700;
color:#00d4ff;
margin-bottom:15px;
}

/* CTA */

.warehouse-cta{
padding:150px 20px;
background:url("trio-website/Projects/w1/1.png") center/cover no-repeat;
position:relative;
}

.warehouse-cta::before{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,.75);
}

.warehouse-cta-content{
position:relative;
z-index:2;
max-width:900px;
margin:auto;
text-align:center;
color:#fff;
}

.warehouse-cta-content h2{
font-size:60px;
margin-bottom:25px;
}

.warehouse-cta-content p{
line-height:1.8;
margin-bottom:30px;
}

/* Responsive */

@media(max-width:991px){

.warehouse-container{
grid-template-columns:1fr;
}

.warehouse-grid,
.warehouse-feature-grid{
grid-template-columns:repeat(2,1fr);
}

.warehouse-process-grid{
grid-template-columns:repeat(2,1fr);
}

.warehouse-stats{
grid-template-columns:repeat(2,1fr);
}

.warehouse-content h1{
font-size:50px;
}

}

@media(max-width:768px){

.warehouse-grid,
.warehouse-feature-grid,
.warehouse-process-grid,
.warehouse-stats{
grid-template-columns:1fr;
}

.warehouse-gallery-grid{
columns:1;
}

.warehouse-content h1{
font-size:38px;
}

.warehouse-heading h2{
font-size:34px;
}

.warehouse-text h2{
font-size:34px;
}

.warehouse-cta-content h2{
font-size:38px;
}

}
.warehouse-knowledge{
padding:120px 8%;
background:#f8f8f8;
}

.warehouse-knowledge-wrap{
max-width:1000px;
margin:auto;
}

.warehouse-query{
background:#fff;
margin-bottom:20px;
border-radius:15px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.warehouse-query summary{
padding:22px 25px;
cursor:pointer;
font-size:18px;
font-weight:600;
list-style:none;
position:relative;
}

.warehouse-query summary::-webkit-details-marker{
display:none;
}

.warehouse-query summary::after{
content:"+";
position:absolute;
right:25px;
font-size:24px;
font-weight:700;
}

.warehouse-query[open] summary::after{
content:"−";
}

.warehouse-query p{
padding:0 25px 25px;
line-height:1.8;
color:#666;
}
/* ===========================
   WHY JOIN TRIO
=========================== */

.careers-why-section{
    padding:100px 8%;
    background:#fff;
}

.careers-wrapper{
    max-width:1300px;
    margin:auto;
}

.careers-heading{
    text-align:center;
    margin-bottom:70px;
}

.careers-tag{
    display:inline-block;
    padding:8px 22px;
    background:#111;
    color:#fff;
    border-radius:30px;
    letter-spacing:2px;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}

.careers-heading h2{
    font-size:48px;
    font-weight:700;
    color:#111;
    margin-bottom:20px;
}

.careers-heading p{
    max-width:760px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:17px;
}

/* Cards */

.careers-cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

}

.careers-card{

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    transition:.4s;

    border:1px solid #ececec;

    position:relative;

    overflow:hidden;

}

.careers-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:#d4af37;

    transform:scaleX(0);

    transition:.4s;

}

.careers-card:hover::before{

    transform:scaleX(1);

}

.careers-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.careers-icon{

    width:85px;

    height:85px;

    border-radius:50%;

    background:#111;

    color:#d4af37;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    margin-bottom:25px;

    font-size:34px;

    transition:.4s;

}

.careers-card:hover .careers-icon{

    background:#d4af37;

    color:#111;

    transform:rotateY(180deg);

}

.careers-card h3{

    font-size:25px;

    margin-bottom:15px;

    color:#111;

}

.careers-card p{

    color:#666;

    line-height:1.8;

    font-size:16px;

}

/* Responsive */

@media(max-width:992px){

.careers-heading h2{

font-size:38px;

}

}

@media(max-width:768px){

.careers-why-section{

padding:70px 25px;

}

.careers-heading h2{

font-size:30px;

}

.careers-heading p{

font-size:15px;

}

.careers-card{

padding:30px 22px;

}

.careers-icon{

width:70px;

height:70px;

font-size:28px;

}

}

@media(max-width:480px){

.careers-heading h2{

font-size:26px;

}

.careers-tag{

font-size:11px;

letter-spacing:1px;

}

}
/* ===========================
CAREER HERO
=========================== */

.career-hero{
    min-height:100vh;
    background:linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url("career1.jpg") center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:120px 8%;
}

.career-overlay{
    max-width:850px;
}

.career-tag{
    display:inline-block;
    padding:10px 24px;
    border-radius:30px;
    background:#d4af37;
    color:#111;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:25px;
}

.career-overlay h1{
    color:#fff;
    font-size:62px;
    line-height:1.2;
    margin-bottom:25px;
}

.career-overlay p{
    color:#ddd;
    font-size:20px;
    line-height:1.8;
}

.career-buttons{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{

    padding:16px 35px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    transition:.4s;

}

.primary-btn{

    background:#d4af37;

    color:#111;

}

.primary-btn:hover{

    background:#fff;

}

.secondary-btn{

    border:2px solid #fff;

    color:#fff;

}

.secondary-btn:hover{

    background:#fff;

    color:#111;

}
/* ===========================
CURRENT OPENINGS
=========================== */

.jobs{

padding:100px 8%;

background:#f8f8f8;

}

.jobs .container{

max-width:1300px;

margin:auto;

}

.jobs h2{

text-align:center;

font-size:48px;

margin-bottom:70px;

}

.job-list{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:35px;

}

.job-card{

background:#fff;

padding:35px;

border-radius:20px;

transition:.4s;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.job-card:hover{

transform:translateY(-10px);

}

.job-card h3{

font-size:28px;

margin-bottom:15px;

}

.job-card p{

color:#777;

margin-bottom:25px;

}

.job-card a{

display:inline-block;

padding:12px 25px;

background:#111;

color:#fff;

text-decoration:none;

border-radius:30px;

transition:.4s;

}

.job-card a:hover{

background:#d4af37;

color:#111;

}
@media(max-width:768px){

.career-overlay h1{

font-size:42px;

}

.jobs h2{

font-size:34px;

}

}
/*======================================
      EMPLOYEE BENEFITS
======================================*/

.benefits-section{
    padding:100px 8%;
    background:#ffffff;
}

.benefits-container{
    max-width:1300px;
    margin:auto;
}

.benefits-heading{
    text-align:center;
    margin-bottom:70px;
}

.benefits-heading span{
    display:inline-block;
    padding:8px 24px;
    background:#111;
    color:#fff;
    border-radius:30px;
    font-size:13px;
    letter-spacing:2px;
    font-weight:600;
    margin-bottom:18px;
}

.benefits-heading h2{
    font-size:48px;
    color:#111;
    margin-bottom:20px;
}

.benefits-heading p{
    max-width:760px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:17px;
}

/*=========================
      GRID
=========================*/

.benefits-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

}

/*=========================
      CARD
=========================*/

.benefit-card{

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    border:1px solid #ececec;

    transition:.4s ease;

    position:relative;

    overflow:hidden;

}

.benefit-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:#d4af37;

    transform:scaleX(0);

    transition:.4s;

}

.benefit-card:hover::before{

    transform:scaleX(1);

}

.benefit-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

/*=========================
      ICON
=========================*/

.benefit-card i{

    width:85px;

    height:85px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    border-radius:50%;

    background:#111;

    color:#d4af37;

    font-size:34px;

    margin-bottom:25px;

    transition:.4s;

}

.benefit-card:hover i{

    background:#d4af37;

    color:#111;

    transform:rotateY(180deg);

}

/*=========================
      TEXT
=========================*/

.benefit-card h3{

    font-size:24px;

    margin-bottom:18px;

    color:#111;

}

.benefit-card p{

    color:#666;

    line-height:1.8;

    font-size:16px;

}

/*=========================
      RESPONSIVE
=========================*/

@media(max-width:992px){

.benefits-heading h2{

font-size:38px;

}

}

@media(max-width:768px){

.benefits-section{

padding:70px 25px;

}

.benefits-heading h2{

font-size:30px;

}

.benefits-heading p{

font-size:15px;

}

.benefit-card{

padding:30px 22px;

}

.benefit-card i{

width:70px;

height:70px;

font-size:28px;

}

}

@media(max-width:480px){

.benefits-heading h2{

font-size:26px;

}

.benefits-heading span{

font-size:11px;

letter-spacing:1px;

}

}
/*==============================
      HIRING PROCESS
==============================*/

/*=====================================
      CAREER PROCESS SECTION
======================================*/

.career-process-section{
    background:#111;
    padding:100px 8%;
}

.career-process-container{
    max-width:1300px;
    margin:auto;
}

.career-process-heading{
    text-align:center;
    margin-bottom:70px;
}

.career-process-tag{
    display:inline-block;
    background:#d4af37;
    color:#111;
    padding:10px 24px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.career-process-heading h2{
    color:#fff;
    font-size:48px;
    font-weight:700;
    margin-bottom:20px;
}

.career-process-heading p{
    color:#bdbdbd;
    max-width:700px;
    margin:auto;
    line-height:1.8;
    font-size:17px;
}

/*==========================
        GRID
===========================*/

.career-process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/*==========================
        CARD
===========================*/

.career-process-card{
    background:#1b1b1b;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    transition:.35s ease;
}

.career-process-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 15px 35px rgba(212,175,55,.18);
}

/*==========================
        ICON
===========================*/

.career-process-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#d4af37;
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    transition:.35s;
}

.career-process-card:hover .career-process-icon{
    transform:rotate(360deg);
    background:#fff;
    color:#d4af37;
}

/*==========================
        TEXT
===========================*/

.career-process-card h3{
    color:#fff;
    font-size:24px;
    margin-bottom:15px;
}

.career-process-card p{
    color:#bdbdbd;
    font-size:16px;
    line-height:1.8;
}

/*==========================
      TABLET
===========================*/

@media(max-width:992px){

.career-process-grid{
    grid-template-columns:repeat(2,1fr);
}

.career-process-heading h2{
    font-size:38px;
}

}

/*==========================
      MOBILE
===========================*/

@media(max-width:768px){

.career-process-section{
    padding:70px 25px;
}

.career-process-grid{
    grid-template-columns:1fr;
    gap:25px;
}

.career-process-heading h2{
    font-size:30px;
}

.career-process-heading p{
    font-size:15px;
}

.career-process-card{
    padding:30px 22px;
}

.career-process-icon{
    width:70px;
    height:70px;
    font-size:26px;
}

.career-process-card h3{
    font-size:22px;
}

}

@media(max-width:480px){

.career-process-heading h2{
    font-size:26px;
}

.career-process-tag{
    font-size:11px;
    letter-spacing:1px;
}

}
/*====================================
        LIFE AT TRIO
====================================*/

.career-life-section{
    padding:100px 8%;
    background:#f8f8f8;
}

.career-life-container{
    max-width:1300px;
    margin:auto;
}

.career-life-heading{
    text-align:center;
    margin-bottom:70px;
}

.career-life-tag{
    display:inline-block;
    background:#111;
    color:#fff;
    padding:10px 24px;
    border-radius:30px;
    font-size:13px;
    letter-spacing:2px;
    margin-bottom:20px;
}

.career-life-heading h2{
    font-size:48px;
    color:#111;
    margin-bottom:20px;
}

.career-life-heading p{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.career-life-gallery{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.career-life-item{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    cursor:pointer;

}

.career-life-item img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.5s;

    display:block;

}

.career-life-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to top,rgba(0,0,0,.85),transparent);

    display:flex;

    align-items:flex-end;

    padding:25px;

}

.career-life-overlay h3{

    color:#fff;

    font-size:24px;

}

.career-life-item:hover img{

    transform:scale(1.08);

}

@media(max-width:992px){

.career-life-gallery{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.career-life-section{

padding:70px 25px;

}

.career-life-gallery{

grid-template-columns:1fr;

}

.career-life-heading h2{

font-size:32px;

}

.career-life-item img{

height:260px;

}

}
/*====================================
        CAREER APPLY SECTION
====================================*/

.career-apply-section{
    padding:100px 8%;
    background:#ffffff;
}

.career-apply-container{
    max-width:1300px;
    margin:auto;
}

.career-apply-content{

    display:grid;

    grid-template-columns:1fr 1.2fr;

    gap:60px;

    align-items:center;

}

.career-apply-info h5{

    color:#d4af37;

    letter-spacing:2px;

    font-size:14px;

    margin-bottom:15px;

}

.career-apply-info h2{

    font-size:48px;

    color:#111;

    margin-bottom:20px;

}

.career-apply-info p{

    color:#666;

    line-height:1.8;

    margin-bottom:35px;

}

.career-apply-info ul{

    list-style:none;

    padding:0;

}

.career-apply-info ul li{

    margin:15px 0;

    font-size:17px;

    color:#222;

}

.career-apply-info ul li i{

    color:#d4af37;

    margin-right:12px;

}

/*==========================
        FORM
===========================*/

.career-apply-form{

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    border:1px solid #eee;

}

.career-input-group{

    margin-bottom:22px;

}

.career-input-group input,
.career-input-group select,
.career-input-group textarea{

    width:100%;

    padding:16px 18px;

    border:1px solid #ddd;

    border-radius:12px;

    outline:none;

    font-size:16px;

    transition:.3s;

    box-sizing:border-box;

}

.career-input-group input:focus,
.career-input-group select:focus,
.career-input-group textarea:focus{

    border-color:#d4af37;

    box-shadow:0 0 0 3px rgba(212,175,55,.15);

}

.career-input-group textarea{

    min-height:150px;

    resize:vertical;

}

.career-input-group input[type="file"]{

    padding:12px;

}

.career-submit-btn{

    width:100%;

    padding:18px;

    background:#111;

    color:#fff;

    border:none;

    border-radius:50px;

    cursor:pointer;

    font-size:17px;

    font-weight:600;

    transition:.3s;

}

.career-submit-btn:hover{

    background:#d4af37;

    color:#111;

}

/*==========================
      RESPONSIVE
===========================*/

@media(max-width:992px){

.career-apply-content{

grid-template-columns:1fr;

}

.career-apply-info{

text-align:center;

}

.career-apply-info h2{

font-size:38px;

}

}

@media(max-width:768px){

.career-apply-section{

padding:70px 25px;

}

.career-apply-form{

padding:30px 22px;

}

.career-apply-info h2{

font-size:30px;

}

}

@media(max-width:480px){

.career-apply-info h2{

font-size:26px;

}

.career-input-group input,
.career-input-group select,
.career-input-group textarea{

font-size:15px;

padding:14px 16px;

}

}
/*=====================================
        CAREER FAQ SECTION
======================================*/

.career-faq-section{
    padding:100px 8%;
    background:#f8f8f8;
}

.career-faq-container{
    max-width:1000px;
    margin:auto;
}

.career-faq-heading{
    text-align:center;
    margin-bottom:60px;
}

.career-faq-tag{
    display:inline-block;
    padding:10px 25px;
    background:#111;
    color:#fff;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:20px;
}

.career-faq-heading h2{
    font-size:46px;
    color:#111;
    margin-bottom:20px;
}

.career-faq-heading p{
    color:#666;
    max-width:700px;
    margin:auto;
    line-height:1.8;
    font-size:17px;
}

/* FAQ */

.career-faq-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.career-faq-item{
    background:#fff;
    border-radius:15px;
    border:1px solid #e5e5e5;
    overflow:hidden;
    transition:.3s;
}

.career-faq-item:hover{
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.career-faq-item summary{
    cursor:pointer;
    padding:22px 25px;
    font-size:18px;
    font-weight:600;
    color:#111;
    list-style:none;
    position:relative;
}

.career-faq-item summary::-webkit-details-marker{
    display:none;
}

.career-faq-item summary::after{
    content:"+";
    position:absolute;
    right:25px;
    top:20px;
    font-size:26px;
    color:#d4af37;
    transition:.3s;
}

.career-faq-item[open] summary::after{
    content:"−";
}

.career-faq-item p{
    padding:0 25px 25px;
    color:#666;
    line-height:1.8;
    font-size:16px;
}

/* Responsive */

@media(max-width:768px){

.career-faq-section{
    padding:70px 25px;
}

.career-faq-heading h2{
    font-size:32px;
}

.career-faq-heading p{
    font-size:15px;
}

.career-faq-item summary{
    font-size:17px;
    padding:18px;
}

.career-faq-item p{
    padding:0 18px 20px;
}

}

@media(max-width:480px){

.career-faq-heading h2{
    font-size:26px;
}

.career-faq-tag{
    font-size:11px;
    letter-spacing:1px;
}

.career-faq-item summary{
    font-size:16px;
}

}
.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col h3 {
  margin-bottom: 20px;
  color: #d4af37;
}

/* Quick Links */
.footer-col .quick-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  align-items: center;
}

.footer-col .quick-links a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  white-space: nowrap;
}

.footer-col .quick-links a:hover {
  color: #d4af37;
}
@media (max-width:768px){

.review-form{
    max-width:100%;
    padding:25px;
}

.review-form h2{
    font-size:26px;
}

}

@media (max-width:600px){

body{
    padding:15px;
}

.review-form{
    width:100%;
    max-width:100%;
    margin:20px auto;
    padding:18px;
}

.review-form h2{
    font-size:24px;
    text-align:center;
}

.review-form input,
.review-form textarea,
.review-form select,
.review-form button{
    width:100%;
    font-size:16px;
}

}
/* SEO Content Section */
.seo-content {
  padding: 80px 20px;
  background: linear-gradient(180deg, #fdfcfb 0%, #f7f3ee 100%);
  position: relative;
  overflow: hidden;
}

.seo-content .container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.seo-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: #3a3a3a;
  margin-bottom: 22px;
  font-weight: 300;
}

.seo-content p:last-child {
  margin-bottom: 0;
}

.seo-content a {
  color: #b8860b;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #b8860b;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.seo-content a:hover {
  color: #8a6508;
  border-color: #8a6508;
}

/* Optional: decorative sparkle dots like the rest of the site */
.seo-content::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(184,134,11,0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .seo-content {
    padding: 50px 20px;
  }

  .seo-content p {
    font-size: 15px;
    line-height: 1.8;
  }
}

.instagram-follow{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:40px 0 0;
}

.instagram-follow a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 30px;
    background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
    color:#fff;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    border-radius:50px;
    transition:.35s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.instagram-follow a:hover{
    transform:translateY(-5px) scale(1.03);
    box-shadow:0 18px 40px rgba(0,0,0,.22);
}

/* ===========================================
   ACCESSIBILITY: reduced motion support
   Added — respects users who have "reduce motion"
   turned on at the OS/browser level (vestibular
   disorders, motion sensitivity, battery saving).
=========================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ===================================== */
/* Korean & Chinese Interpretation */
/* ===================================== */

.language-service-section{
    width:100%;
    padding:100px 20px;
    background:#0f172a;
    font-family:Arial, Helvetica, sans-serif;
}

.language-service-container{
    max-width:1200px;
    margin:auto;
}

.language-service-card{

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:50px;

    text-align:center;

    transition:.4s;

    box-shadow:0 20px 45px rgba(0,0,0,.25);
}

.language-service-card:hover{

    transform:translateY(-10px);

    border-color:#d4af37;

    box-shadow:0 30px 60px rgba(212,175,55,.25);

}

.language-service-icon{

    width:90px;

    height:90px;

    background:#d4af37;

    color:#111;

    margin:auto;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:40px;

    margin-bottom:30px;

}

.language-service-title{

    color:#ffffff;

    font-size:34px;

    font-weight:700;

    margin-bottom:20px;

}

.language-service-description{

    color:#d1d5db;

    font-size:17px;

    line-height:1.9;

    max-width:850px;

    margin:auto;

    margin-bottom:35px;

}

.language-service-list{

    list-style:none;

    padding:0;

    margin:0 0 40px;

}

.language-service-list li{

    color:#ffffff;

    padding:12px;

    font-size:17px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.language-service-button{

    display:inline-block;

    background:#d4af37;

    color:#111827;

    text-decoration:none;

    padding:16px 40px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.language-service-button:hover{

    background:#ffffff;

    color:#111827;

}
.language-service-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.language-service-left{
    flex:1;
    text-align:left;
}

.language-service-right{
    flex:0 0 430px;
}

.language-service-right img{
    width:100%;
    border-radius:18px;
    object-fit:cover;
    box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.language-service-left .language-service-icon{
    margin:0 0 30px;
}

.language-service-left .language-service-description{
    max-width:100%;
    margin:0 0 35px;
}

@media (max-width:991px){

    .language-service-content{
        flex-direction:column;
    }

    .language-service-left{
        text-align:center;
    }

    .language-service-left .language-service-icon{
        margin:auto auto 30px;
    }

    .language-service-right{
        flex:unset;
        width:100%;
        max-width:500px;
    }

}
/* ========================= */
/* Responsive */
/* ========================= */

@media(max-width:768px){

.language-service-card{

padding:30px 20px;

}

.language-service-title{

font-size:26px;

}

.language-service-description{

font-size:15px;

}

.language-service-list li{

font-size:15px;

}

.language-service-button{

padding:14px 30px;

}

}
.trio-lang-benefits{
    padding:100px 20px;
    background:#0b1120;
}

.trio-lang-wrapper{
    max-width:1200px;
    margin:auto;
}

.trio-lang-header{
    text-align:center;
    margin-bottom:60px;
}

.trio-lang-header h2{
    color:#fff;
    font-size:42px;
    margin-bottom:15px;
}

.trio-lang-header p{
    color:#bfbfbf;
    max-width:800px;
    margin:auto;
    line-height:1.8;
}

.trio-lang-cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.trio-lang-card{
    background:#111827;
    padding:35px;
    border-radius:18px;
    text-align:center;
    border:1px solid rgba(255,255,255,.08);
    transition:.4s;
}

.trio-lang-card:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
    box-shadow:0 15px 35px rgba(212,175,55,.20);
}

.trio-lang-icon{
    display:block;
    font-size:50px;
    margin-bottom:20px;
}

.trio-lang-card h3{
    color:#fff;
    margin-bottom:15px;
}

.trio-lang-card p{
    color:#cfcfcf;
    line-height:1.8;
}

@media(max-width:768px){

.trio-lang-header h2{
    font-size:30px;
}

.trio-lang-card{
    padding:25px;
}

}
.trio-int-hero{
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px;
    overflow: hidden;
background:
    linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)),
    url("trio-website/Projects/image/translate.png");

background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.trio-int-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.55)
    );
}

.trio-int-content{
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.trio-int-tag{
    display: inline-block;
    padding: 10px 22px;
    border-radius: 40px;
    background: #d4af37;
    color: #111;
    font-weight: 700;
    margin-bottom: 25px;
}

.trio-int-title{
    color: #fff;
    font-size: 64px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.trio-int-text{
    color: #d6d6d6;
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 40px;
}

.trio-int-buttons{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trio-btn-primary{
    background: #d4af37;
    color: #111;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: .35s;
}

.trio-btn-primary:hover{
    background: #fff;
}

.trio-btn-secondary{
    border: 2px solid #fff;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: .35s;
}

.trio-btn-secondary:hover{
    background: #fff;
    color: #111;
}

@media (max-width:768px){

    .trio-int-title{
        font-size: 40px;
    }

    .trio-int-text{
        font-size: 16px;
    }

    .trio-int-buttons{
        flex-direction: column;
        align-items: center;
    }

    .trio-btn-primary,
    .trio-btn-secondary{
        width: 220px;
        text-align: center;
    }
}
.wechat-modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.8);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.wechat-modal img{
    max-width:350px;
    width:90%;
    border-radius:12px;
    background:#fff;
    padding:10px;
}

.close-btn{
    position:absolute;
    top:20px;
    right:30px;
    color:#fff;
    font-size:40px;
    cursor:pointer;
}
.interp-flow-section{
    padding:100px 20px;
    background:#0a0a0a;
}

.interp-flow-container{
    max-width:1200px;
    margin:auto;
}

.interp-flow-header{
    text-align:center;
    margin-bottom:70px;
}

.interp-flow-header h2{
    color:#fff;
    font-size:42px;
    margin-bottom:15px;
}

.interp-flow-header p{
    color:#bdbdbd;
    max-width:760px;
    margin:auto;
    line-height:1.8;
}

.interp-flow-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.interp-flow-item{
    background:#161616;
    border-radius:18px;
    padding:35px;
    text-align:center;
    border:1px solid rgba(255,255,255,.08);
    transition:.4s;
}

.interp-flow-item:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
    box-shadow:0 20px 40px rgba(212,175,55,.20);
}

.interp-flow-count{
    width:75px;
    height:75px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:#d4af37;
    color:#111;
    font-size:24px;
    font-weight:700;
    display:flex;
    justify-content:center;
    align-items:center;
}

.interp-flow-item h3{
    color:#fff;
    margin-bottom:15px;
    font-size:22px;
}

.interp-flow-item p{
    color:#d0d0d0;
    line-height:1.8;
}

@media(max-width:768px){

.interp-flow-header h2{
    font-size:30px;
}

.interp-flow-item{
    padding:25px;
}

}
.global-industry-zone{
    padding:100px 20px;
    background:#101010;
}

.global-industry-wrap{
    max-width:1200px;
    margin:auto;
}

.global-industry-head{
    text-align:center;
    margin-bottom:60px;
}

.global-industry-head h2{
    color:#fff;
    font-size:42px;
    margin-bottom:15px;
}

.global-industry-head p{
    color:#bfbfbf;
    max-width:780px;
    margin:auto;
    line-height:1.8;
}

.global-industry-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.global-industry-card{
    background:#181818;
    border-radius:18px;
    padding:35px;
    text-align:center;
    border:1px solid rgba(255,255,255,.08);
    transition:.4s;
}

.global-industry-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 20px 40px rgba(212,175,55,.18);
}

.global-industry-card i{
    font-size:42px;
    color:#d4af37;
    margin-bottom:20px;
}

.global-industry-card h3{
    color:#fff;
    margin-bottom:15px;
}

.global-industry-card p{
    color:#d0d0d0;
    line-height:1.8;
}

@media(max-width:768px){

.global-industry-head h2{
    font-size:30px;
}

.global-industry-card{
    padding:25px;
}

}
.faq-premium-zone{
    padding:100px 20px;
    background:#0b0b0b;
}

.faq-premium-container{
    max-width:1000px;
    margin:auto;
}

.faq-premium-heading{
    text-align:center;
    margin-bottom:60px;
}

.faq-premium-heading h2{
    color:#fff;
    font-size:42px;
    margin-bottom:15px;
}

.faq-premium-heading p{
    color:#bfbfbf;
    line-height:1.8;
}

.faq-premium-item{
    background:#171717;
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    margin-bottom:20px;
    padding:20px 25px;
    transition:.3s;
}

.faq-premium-item:hover{
    border-color:#d4af37;
}

.faq-premium-item summary{
    color:#fff;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    list-style:none;
}

.faq-premium-item summary::-webkit-details-marker{
    display:none;
}

.faq-premium-item p{
    color:#d0d0d0;
    line-height:1.8;
    margin-top:15px;
}

@media(max-width:768px){

.faq-premium-heading h2{
    font-size:30px;
}

.faq-premium-item{
    padding:18px;
}

}
.quote-connect-section{
    padding:100px 20px;
    background:#111;
}

.quote-connect-wrapper{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.quote-connect-tag{
    display:inline-block;
    background:#d4af37;
    color:#111;
    padding:8px 18px;
    border-radius:30px;
    font-weight:700;
    margin-bottom:20px;
}

.quote-connect-left h2{
    color:#fff;
    font-size:42px;
    margin-bottom:20px;
}

.quote-connect-left p{
    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:35px;
}

.quote-connect-item{
    display:flex;
    align-items:center;
    gap:15px;
    color:#fff;
    margin-bottom:20px;
}

.quote-connect-item i{
    color:#d4af37;
    font-size:20px;
}

.quote-connect-right form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.quote-connect-right input,
.quote-connect-right select,
.quote-connect-right textarea{

    width:100%;
    padding:15px;
    background:#1c1c1c;
    border:1px solid rgba(255,255,255,.08);
    border-radius:10px;
    color:#fff;
    outline:none;
}

.quote-connect-right textarea{
    min-height:150px;
    resize:none;
}

.quote-connect-right button{

    background:#d4af37;
    color:#111;
    border:none;
    padding:16px;
    border-radius:50px;
    cursor:pointer;
    font-weight:700;
    transition:.3s;
}

.quote-connect-right button:hover{
    background:#fff;
}

@media(max-width:768px){

.quote-connect-wrapper{
    grid-template-columns:1fr;
}

.quote-connect-left h2{
    font-size:30px;
}

}
/* =======================================
   Expo Workflow Section
======================================= */

.expo-workflow{
    padding:100px 20px;
    background:#0b0b0b;
}

.expo-workflow-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.expo-step-card{
    background:#171717;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:35px;
    text-align:center;
    transition:.4s;
}

.expo-step-card:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
    box-shadow:0 20px 40px rgba(212,175,55,.20);
}

.expo-step-no{
    width:70px;
    height:70px;
    margin:auto;
    margin-bottom:25px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#d4af37;
    color:#111;
    font-size:24px;
    font-weight:700;
}

.expo-step-card h4{
    color:#fff;
    font-size:22px;
    margin-bottom:15px;
}

.expo-step-card p{
    color:#cfcfcf;
    line-height:1.8;
    font-size:15px;
}

/* =======================================
   Exhibition Services
======================================= */

.expo-service-showcase{
    padding:100px 20px;
    background:#111111;
}

.expo-service-header{
    text-align:center;
    margin-bottom:60px;
}

.expo-service-header span{
    color:#d4af37;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.expo-service-header h2{
    color:#fff;
    font-size:42px;
    margin-top:12px;
}

.expo-service-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.expo-service-card{
    background:#181818;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:35px;
    text-align:center;
    transition:.4s;
}

.expo-service-card:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
    box-shadow:0 20px 40px rgba(212,175,55,.20);
}

.expo-service-card i{
    font-size:48px;
    color:#d4af37;
    margin-bottom:20px;
}

.expo-service-card h4{
    color:#fff;
    font-size:22px;
    margin-bottom:15px;
}

.expo-service-card p{
    color:#cfcfcf;
    line-height:1.8;
    font-size:15px;
}

/* =======================================
   Responsive
======================================= */

@media (max-width:768px){

    .expo-workflow,
    .expo-service-showcase{
        padding:70px 20px;
    }

    .expo-service-header h2{
        font-size:30px;
    }

    .expo-step-card,
    .expo-service-card{
        padding:25px;
    }

    .expo-step-card h4,
    .expo-service-card h4{
        font-size:20px;
    }

}
/* ===========================
   STELLAR PROCESS
=========================== */

.stellar-pathway{
    padding:100px 20px;
    background:#0f0f0f;
}

.stellar-wrapper{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.stellar-box{
    background:#181818;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:40px 30px;
    text-align:center;
    transition:.4s ease;
}

.stellar-box:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 20px 45px rgba(212,175,55,.18);
}

.stellar-count{
    width:70px;
    height:70px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:#d4af37;
    color:#111;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    font-weight:700;
}

.stellar-box h4{
    color:#fff;
    font-size:24px;
    margin-bottom:15px;
}

.stellar-box p{
    color:#cfcfcf;
    line-height:1.8;
    font-size:15px;
}

/* ===========================
   NOVA SERVICES
=========================== */

.nova-zone{
    padding:100px 20px;
    background:#151515;
}

.nova-heading{
    text-align:center;
    margin-bottom:60px;
}

.nova-heading span{
    display:inline-block;
    color:#d4af37;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.nova-heading h2{
    color:#fff;
    font-size:42px;
    margin:0;
}

.nova-layout{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.nova-item{
    background:#1a1a1a;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:40px 25px;
    text-align:center;
    transition:.4s;
}

.nova-item:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 20px 45px rgba(212,175,55,.18);
}

.nova-item i{
    font-size:50px;
    color:#d4af37;
    margin-bottom:20px;
}

.nova-item h4{
    color:#fff;
    font-size:22px;
    margin:0;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:768px){

.stellar-pathway,
.nova-zone{
    padding:70px 20px;
}

.nova-heading h2{
    font-size:30px;
}

.stellar-box,
.nova-item{
    padding:30px 20px;
}

.stellar-box h4,
.nova-item h4{
    font-size:20px;
}

.stellar-count{
    width:60px;
    height:60px;
    font-size:20px;
}

}
/*==============================
   VISION ROUTE
==============================*/

.vision-route{
    padding:100px 20px;
    background:#0d0d0d;
}

.vision-track{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.vision-block{
    background:#171717;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:40px 30px;
    text-align:center;
    transition:.4s ease;
}

.vision-block:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 20px 45px rgba(212,175,55,.18);
}

.vision-index{
    width:70px;
    height:70px;
    margin:auto auto 25px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#d4af37;
    color:#111;
    font-size:24px;
    font-weight:700;
}

.vision-block h4{
    color:#fff;
    font-size:24px;
    margin-bottom:15px;
}

.vision-block p{
    color:#cfcfcf;
    font-size:15px;
    line-height:1.8;
}

/*==============================
   ORBIT SERVICES
==============================*/

.orbit-hub{
    padding:100px 20px;
    background:#111;
}

.orbit-title{
    text-align:center;
    margin-bottom:60px;
}

.orbit-title span{
    display:inline-block;
    color:#d4af37;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.orbit-title h2{
    color:#fff;
    font-size:42px;
    margin:0;
}

.orbit-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.orbit-card{
    background:#181818;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:40px 25px;
    text-align:center;
    transition:.4s ease;
}

.orbit-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 20px 45px rgba(212,175,55,.18);
}

.orbit-card i{
    font-size:50px;
    color:#d4af37;
    margin-bottom:20px;
}

.orbit-card h4{
    color:#fff;
    font-size:22px;
    margin:0;
}

/*==============================
   Responsive
==============================*/

@media(max-width:768px){

    .vision-route,
    .orbit-hub{
        padding:70px 20px;
    }

    .orbit-title h2{
        font-size:30px;
    }

    .vision-block,
    .orbit-card{
        padding:30px 20px;
    }

    .vision-block h4,
    .orbit-card h4{
        font-size:20px;
    }

    .vision-index{
        width:60px;
        height:60px;
        font-size:20px;
    }

}
/*==============================
  ELITE INTERIOR SECTION
==============================*/

.elite-space-section{
    padding:100px 20px;
    background:#111;
}

.elite-space-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.elite-space-card{
    background:#1b1b1b;
    border-radius:20px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    transition:.4s ease;
}

.elite-space-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 20px 40px rgba(212,175,55,.2);
}

.elite-space-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.elite-space-card h3{
    color:#fff;
    font-size:28px;
    font-weight:700;
    margin:25px 25px 15px;
}

.elite-space-card p{
    color:#cfcfcf;
    font-size:16px;
    line-height:1.8;
    margin:0 25px 30px;
}

@media(max-width:768px){

    .elite-space-section{
        padding:70px 20px;
    }

    .elite-space-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .elite-space-card img{
        height:220px;
    }

    .elite-space-card h3{
        font-size:24px;
    }

    .elite-space-card p{
        font-size:15px;
    }

}
/*==============================
   WORKFLOW SECTION
==============================*/

.workflow-zone{
    padding:100px 20px;
    background:#0f0f0f;
}

.workflow-zone h2{
    text-align:center;
    color:#fff;
    font-size:42px;
    margin-bottom:60px;
    font-weight:700;
}

.workflow-layout{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.workflow-box{
    background:#181818;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:40px 25px;
    text-align:center;
    transition:.4s ease;
    position:relative;
    overflow:hidden;
}

.workflow-box::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#d4af37;
    transform:scaleX(0);
    transition:.4s;
}

.workflow-box:hover::before{
    transform:scaleX(1);
}

.workflow-box:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 18px 40px rgba(212,175,55,.18);
}

.workflow-box span{
    width:65px;
    height:65px;
    margin:0 auto 25px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#d4af37;
    color:#111;
    font-size:22px;
    font-weight:700;
}

.workflow-box h3{
    color:#fff;
    font-size:24px;
    margin:0;
    line-height:1.4;
}

/*==============================
   Responsive
==============================*/

@media(max-width:768px){

    .workflow-zone{
        padding:70px 20px;
    }

    .workflow-zone h2{
        font-size:30px;
        margin-bottom:40px;
    }

    .workflow-layout{
        grid-template-columns:1fr;
        gap:20px;
    }

    .workflow-box{
        padding:35px 20px;
    }

    .workflow-box span{
        width:55px;
        height:55px;
        font-size:18px;
    }

    .workflow-box h3{
        font-size:20px;
    }

}
/*==================================================
    Photography & Videography Hero
==================================================*/

.photo-hero{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    overflow:hidden;
    background:
        linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
        url("trio-website/Projects/image/photo.jpg") center/cover no-repeat;
}

.photo-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,
    rgba(0,0,0,.35),
    rgba(0,0,0,.75));
    z-index:1;
}

.photo-hero-content{
    position:relative;
    z-index:2;
    width:90%;
    max-width:900px;
    color:#fff;
}

.photo-tag{
    display:inline-block;
    padding:8px 22px;
    border:1px solid #d4af37;
    color:#d4af37;
    border-radius:40px;
    letter-spacing:3px;
    font-size:13px;
    font-weight:600;
    margin-bottom:30px;
    text-transform:uppercase;
}

.photo-hero h1{
    font-size:68px;
    font-weight:700;
    line-height:1.1;
    margin-bottom:25px;
    color:#fff;
}

.photo-hero h1 span{
    color:#d4af37;
}

.photo-hero p{
    max-width:760px;
    margin:auto;
    font-size:18px;
    line-height:1.9;
    color:#e5e5e5;
}

.photo-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:45px;
    flex-wrap:wrap;
}

.photo-btn,
.photo-btn-outline{
    padding:16px 38px;
    text-decoration:none;
    font-weight:600;
    border-radius:50px;
    transition:.4s;
}

.photo-btn{
    background:#d4af37;
    color:#000;
}

.photo-btn:hover{
    background:#fff;
    color:#000;
    transform:translateY(-5px);
}

.photo-btn-outline{
    border:2px solid #d4af37;
    color:#fff;
}

.photo-btn-outline:hover{
    background:#d4af37;
    color:#000;
    transform:translateY(-5px);
}

.photo-scroll{
    position:absolute;
    bottom:40px;
    left:50%;
    transform:translateX(-50%);
    z-index:3;
}

.photo-scroll span{
    display:block;
    width:30px;
    height:50px;
    border:2px solid #fff;
    border-radius:20px;
    position:relative;
}

.photo-scroll span::before{
    content:"";
    position:absolute;
    top:10px;
    left:50%;
    transform:translateX(-50%);
    width:5px;
    height:10px;
    background:#d4af37;
    border-radius:10px;
    animation:scrollMove 2s infinite;
}

@keyframes scrollMove{

    0%{
        opacity:0;
        top:10px;
    }

    50%{
        opacity:1;
    }

    100%{
        opacity:0;
        top:28px;
    }

}

/*==========================
 Responsive
==========================*/

@media(max-width:991px){

    .photo-hero{
        min-height:90vh;
    }

    .photo-hero h1{
        font-size:48px;
    }

    .photo-hero p{
        font-size:16px;
    }

}

@media(max-width:576px){

    .photo-hero{
        min-height:85vh;
        padding:100px 20px;
    }

    .photo-hero h1{
        font-size:34px;
    }

    .photo-tag{
        font-size:11px;
        letter-spacing:2px;
    }

    .photo-buttons{
        flex-direction:column;
        align-items:center;
    }

    .photo-btn,
    .photo-btn-outline{
        width:100%;
        max-width:260px;
        text-align:center;
    }

}
/*==================================================
    Photography Services
==================================================*/

.photo-services{
    padding:100px 8%;
    background:#111;
}

.section-title{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.section-title span{
    color:#d4af37;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:14px;
    font-weight:600;
}

.section-title h2{
    color:#fff;
    font-size:45px;
    margin:15px 0;
}

.section-title p{
    color:#bdbdbd;
    line-height:1.8;
}

.photo-services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.photo-service-card{
    background:#1b1b1b;
    padding:40px 30px;
    border-radius:18px;
    text-align:center;
    transition:.4s;
    border:1px solid rgba(212,175,55,.15);
}

.photo-service-card:hover{
    transform:translateY(-12px);
    border-color:#d4af37;
    box-shadow:0 20px 45px rgba(212,175,55,.15);
}

.photo-service-card i{
    width:80px;
    height:80px;
    line-height:80px;
    border-radius:50%;
    background:#d4af37;
    color:#111;
    font-size:32px;
    margin-bottom:25px;
}

.photo-service-card h3{
    color:#fff;
    margin-bottom:18px;
    font-size:24px;
}

.photo-service-card p{
    color:#bfbfbf;
    line-height:1.8;
}

@media(max-width:768px){

    .photo-services{
        padding:70px 20px;
    }

    .section-title h2{
        font-size:34px;
    }

}
/*==================================================
    Why Choose Us
==================================================*/

.photo-why{
    padding:100px 8%;
    background:#0b0b0b;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:60px;
    align-items:center;
}

.section-subtitle{
    color:#d4af37;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
    font-weight:600;
}

.photo-why h2{
    color:#fff;
    font-size:46px;
    margin:18px 0 25px;
    line-height:1.2;
}

.photo-why>div>p{
    color:#bfbfbf;
    line-height:1.9;
    margin-bottom:35px;
}

.photo-feature-list{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.feature-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.feature-item i{
    color:#d4af37;
    font-size:24px;
    margin-top:5px;
}

.feature-item h4{
    color:#fff;
    margin-bottom:8px;
    font-size:20px;
}

.feature-item p{
    color:#bdbdbd;
    line-height:1.7;
}

.why-image-box{
    overflow:hidden;
    border-radius:20px;
    border:2px solid rgba(212,175,55,.3);
}

.why-image-box img{
    width:100%;
    display:block;
    transition:.5s;
}

.why-image-box:hover img{
    transform:scale(1.08);
}

@media(max-width:992px){

    .photo-why{
        grid-template-columns:1fr;
    }

    .photo-why h2{
        font-size:36px;
    }

}

@media(max-width:576px){

    .photo-why{
        padding:70px 20px;
    }

    .photo-why h2{
        font-size:30px;
    }

}
/*==========================================
        Portfolio Gallery
==========================================*/

.photo-gallery{
    padding:100px 8%;
    background:#111;
}

.gallery-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-auto-rows:280px;
    gap:20px;

}

.gallery-item{

    position:relative;
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;

}

.gallery-item.large{

    grid-row:span 2;

}

.gallery-item img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;

}

.gallery-overlay{

    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,.9),
    transparent);

    display:flex;
    align-items:flex-end;
    padding:30px;
    opacity:0;
    transition:.4s;

}

.gallery-overlay h3{

    color:#fff;
    font-size:24px;

}

.gallery-item:hover img{

    transform:scale(1.12);

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

.gallery-item::after{

    content:"";
    position:absolute;
    inset:0;
    border:2px solid transparent;
    transition:.4s;

}

.gallery-item:hover::after{

    border-color:#d4af37;

}

@media(max-width:992px){

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.gallery-grid{

grid-template-columns:1fr;
grid-auto-rows:250px;

}

.gallery-item.large{

grid-row:span 1;

}

}
.photo-process{
    padding:100px 8%;
    background:#0b0b0b;
}
.process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-top: 60px;
}
.process-card{
    position: relative;
    background:#161616;
    border:1px solid rgba(212,175,55,.15);
    border-radius:18px;
    padding: 40px 30px;
    text-align: center;
    transition:4s;
    overflow:hidden;
}
.process-card:hover{
    transform:translate(-10px);
    border-color: #d4af37;
    box-shadow:0 20px 45px rgba(212,175,55,.15);
}
.process-number{
    position: absolute;
    top: 20px;
    right:25px;
    font-size:42px;
    font-weight: 700;
    color:rgba(212,175,55,.12);
}
.process-card i{
    width: 80px;
    height:80px;
    line-height: 80px;
    border-radius:50%;
    background:#d4af37;
    color:#111;
    font-size: 30px;
    margin-bottom: 25px;
}
.process-card h3{
    color:#fff;
    margin-bottom:15px;
    font-size:24px;
}
.process-card p{
    color:#bdbdbd;
    line-height:1.8;
}
@media(max-width:768px){
    .photo-process{
        padding:70px 20px;
    }
}
/*==========================================
        Call To Action
==========================================*/

.photo-cta{

    position:relative;
    padding:140px 8%;
    background:url("https://www.trioexhibitions.com/trio-website/Projects/image/photo\ back.jpg") center/cover;
    overflow:hidden;

}

.photo-cta-overlay{

    position:absolute;
    inset:0;
    background:rgba(0,0,0,.75);

}

.photo-cta-content{

    position:relative;
    z-index:2;
    max-width:850px;
    margin:auto;
    text-align:center;

}

.photo-cta-content span{

    color:#d4af37;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:14px;
    font-weight:600;

}

.photo-cta-content h2{

    color:#fff;
    font-size:54px;
    margin:20px 0;

}

.photo-cta-content p{

    color:#ddd;
    line-height:1.9;
    margin-bottom:40px;

}

.photo-cta-buttons{

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;

}

.photo-cta-btn{

    background:#d4af37;
    color:#111;
    padding:16px 40px;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.4s;

}

.photo-cta-btn:hover{

    transform:translateY(-5px);

}

.photo-cta-outline{

    border:2px solid #fff;
    color:#fff;
    text-decoration:none;
    padding:16px 40px;
    border-radius:50px;
    transition:.4s;

}

.photo-cta-outline:hover{

    background:#fff;
    color:#111;

}

@media(max-width:768px){

.photo-cta{

padding:90px 20px;

}

.photo-cta-content h2{

font-size:36px;

}

}
/*==========================================
        Photography FAQ
==========================================*/

.pv-faq-section{
    padding:100px 8%;
    background:#0d0d0d;
}

.pv-faq-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.pv-subtitle{
    display:inline-block;
    color:#d4af37;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.pv-title{
    color:#fff;
    font-size:48px;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.2;
}

.pv-description{
    color:#bdbdbd;
    font-size:17px;
    line-height:1.8;
}

.pv-faq-wrapper{
    max-width:950px;
    margin:0 auto;
}

.pv-faq-card{
    background:#151515;
    border:1px solid rgba(212,175,55,.15);
    border-radius:14px;
    margin-bottom:18px;
    overflow:hidden;
    transition:.35s ease;
}

.pv-faq-card:hover{
    border-color:#d4af37;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(212,175,55,.12);
}

.pv-faq-question{
    width:100%;
    background:transparent;
    border:none;
    outline:none;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 28px;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
    text-align:left;
}

.pv-faq-question i{
    color:#d4af37;
    font-size:18px;
    transition:.35s;
}

.pv-faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.pv-faq-answer p{
    color:#bdbdbd;
    line-height:1.9;
    padding:0 28px 22px;
    margin:0;
}

.pv-faq-card.active .pv-faq-answer{
    max-height:300px;
}

.pv-faq-card.active .pv-faq-question i{
    transform:rotate(45deg);
}

@media(max-width:991px){

    .pv-faq-section{
        padding:80px 5%;
    }

    .pv-title{
        font-size:38px;
    }

}

@media(max-width:768px){

    .pv-title{
        font-size:30px;
    }

    .pv-description{
        font-size:15px;
    }

    .pv-faq-question{
        font-size:16px;
        padding:18px 20px;
    }

    .pv-faq-answer p{
        padding:0 20px 20px;
        font-size:15px;
    }

}
.trust-title{
    text-align:center;
    font-size:48px;
    font-weight:700;
    color:#1d2433;
    margin-bottom:60px;
    width:100%;
}
.trust-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    justify-content:center;
}

.trust-item{
    position:relative;
    display:block;
    height:300px;
    overflow:hidden;
    border-radius:18px;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.trust-item:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.trust-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.trust-item:hover img{
    transform:scale(1.08);
}

.trust-item::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.75),transparent 60%);
    opacity:0;
    transition:.35s;
}

.trust-item:hover::after{
    opacity:1;
}

.trust-item span{
    position:absolute;
    left:20px;
    bottom:20px;
    color:#fff;
    font-size:28px;
    font-weight:700;
    z-index:2;
    opacity:0;
    transform:translateY(20px);
    transition:.35s;
}

.trust-item:hover span{
    opacity:1;
    transform:translateY(0);
}

@media(max-width:1100px){
    .trust-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:700px){
    .trust-grid{
        grid-template-columns:1fr;
    }

    .trust-item{
        height:250px;
    }
}
.about-nav-item{
    position: relative;
    display: inline-block;
}

.about-dropdown-menu{
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: #111;
    border-radius: 8px;
    padding: 10px 0;
    display: none;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
}

.about-dropdown-menu a{
    display: block;
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    transition: .3s;
    white-space: nowrap;
}

.about-dropdown-menu a:hover{
    background: #1c1c1c;
    color: #00bfff;
}

/* Hover Effect */
.about-nav-item:hover .about-dropdown-menu{
    display: block;
}
.germany-gallery{
    padding: 80px 5%;
}

.germany-gallery-heading{
    text-align: center;
    margin-bottom: 50px;
}

.germany-gallery-heading span{
    color: #f97316;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.germany-gallery-heading h2{
    font-size: 42px;
    font-weight: 700;
    margin-top: 10px;
}

.germany-gallery-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.germany-gallery-card{
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
    transition: .35s ease;
}

.germany-gallery-card img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.germany-gallery-card::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.1));
}

.germany-gallery-card span{
    position: absolute;
    left: 20px;
    bottom: 20px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    z-index: 2;
}

.germany-gallery-card:hover{
    transform: translateY(-8px);
}

.germany-gallery-card:hover img{
    transform: scale(1.08);
}

.certificate-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.certificate-content{
    width:900px;
    max-width:95%;
    position:relative;
    padding:30px;
    border-radius:20px;

    background:linear-gradient(
        135deg,
        #fffdf8 0%,
        #fdf8e8 35%,
        #fffaf0 70%,
        #ffffff 100%
    );

    border:2px solid #d4af37;
    box-shadow:0 15px 45px rgba(0,0,0,.35);
}

.close-btn{
    position:absolute;
    top:15px;
    right:20px;
    font-size:30px;
    cursor:pointer;
}

/* Heading */
.certificate-content h2{
    text-align:center;
    margin-bottom:30px;
}

/* Top Row */
.certificate-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* Left & Right Certificate */
.certificate-row > img{
    width:180px;
    height:auto;
    object-fit:contain;
}

/* Flags */
.flags{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:45px; /* Pehle 20px tha */
}

.flag-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    min-width:90px; /* Equal spacing */
}

.flag-item img{
    width:80px;
    height:80px;
    border-radius:50%;
    border:2px solid #d4af37;
    transition:0.3s;
}

.flag-item img:hover{
    transform:scale(1.1);
}

.flag-item span{
    margin-top:10px;
    font-size:16px;
    font-weight:500;
    text-align:center;
}
/* Bottom Certificate */
.bottom-certificate{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    width: 100%;
}

.bottom-certificate img{
    width: 220px;
    height: auto;
}
/* Cursor */
.certificate-img{
    cursor:pointer;
    transition:.3s;
}

.certificate-img:hover{
    transform:scale(1.05);
}

/* Certificate Viewer */
.certificate-viewer{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.9);
    justify-content:center;
    align-items:center;
    z-index:100000;
}

.certificate-viewer img{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
    box-shadow:0 0 25px rgba(255,255,255,.3);
}

.viewer-close{
    position:absolute;
    top:20px;
    right:30px;
    color:#fff;
    font-size:45px;
    cursor:pointer;
    line-height:1;
}

.certificate-content{
    animation:popup .35s ease;
}

@keyframes popup{
    from{
        opacity:0;
        transform:scale(.9);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}
/* Certificate Floating Button */
.certificate{
    width:60px;
    height:60px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:transparent;
    border-radius:50%;
    cursor:pointer;
    transition:.3s;
}

.certificate img{
    width:60px;
    height:60px;
    object-fit:contain;
    display:block;
    filter:drop-shadow(0 0 8px rgba(212,175,55,.6));
    transition:.3s;
}

.certificate:hover img{
    transform:scale(1.12) rotate(8deg);
    filter:drop-shadow(0 0 15px rgba(212,175,55,.9));
}

@media (max-width:768px){

    .certificate-content{
        width:95%;
        padding:20px 15px;
        max-height:90vh;
        overflow-y:auto;
    }

    .certificate-content h2{
        font-size:28px;
        margin-bottom:25px;
    }

    .certificate-row{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:25px;
    }

    .certificate-row > img{
        width:180px;
    }

    .flags{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
    }

    .flag-item{
        min-width:70px;
    }

    .flag-item img{
        width:60px;
        height:60px;
    }

    .flag-item span{
        font-size:14px;
    }

    .bottom-certificate{
        margin-top:30px;
    }

    .bottom-certificate img{
        width:200px;
    }

    .viewer-close,
    .close-btn{
        font-size:28px;
        top:12px;
        right:15px;
    }
}


.viewer-actions{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
}

.cancel-btn{
    background:#d4af37;
    color:#fff;
    border:none;
    padding:12px 35px;
    border-radius:8px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.cancel-btn:hover{
    background:#b89020;
}

